/**
* Template Name: Bocor
* Template URL: https://bootstrapmade.com/bocor-bootstrap-template-nice-animation/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #2f2f2f;; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111;;; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FDC134; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #e7f4ff;  /* The default color of the main navmenu links */
  --nav-hover-color: #FDC134; /* 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: #2f2f2f;; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #FDC134; /* 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: #f5f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0b0b0b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #151515;
  --contrast-color: #000000;
}

/* 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);
/* Global reset to prevent horizontal scroll */
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;   /* hides horizontal overflow */
  margin: 0;
  padding: 0;
}

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0; 
  transition: all 0.5s;
  z-index: 997;
  height: 100px;         /* fixed slim height */
  
}

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

.header .logo img {
  /*max-height: 36px;
  margin-right: 8px; */
  max-height: 200px; 
  margin-right: 8px; 
  width: auto;          /* keep proportions */
  object-fit: contain;  /* ensures it fits neatly */

}

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

.header .logo span {
  color: var(--accent-color);
  font-size: 30px;
  font-weight: 700;
}

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

}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

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

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

  .header .navmenu {
    order: 3;

  }
} */
 @media (max-width: 575px) {
  .header .btn-getstarted {
    display: none;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(10, 10, 10, 0.92);
}

/*--------------------------------------------------------------
# Navigation Menu
----------

----------------------------------------------------*/
ul.solutions-dropdown {
 width: 1000px !important; 
 max-width: 1000px !important; 
}



.navmenu ul {
  max-width: 100%;
  width: auto;
}
.navmenu .dropdown ul {
  width: 100%;
  max-width: 100vw;
}


/* Navmenu - Desktop */

@media (max-width: 575px) {
  ul.solutions-dropdown {
    width: 90vw !important;
    max-width: 90vw !important;
    box-sizing: border-box;
  }

  ul.solutions-dropdown li,
  ul.solutions-dropdown a {
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}



@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;

  
   
  }

  .navmenu li {
    position: relative;

  }

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

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

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

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

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

    left: auto;   /* cancel left positioning */
    right: 0;     /* align dropdown to the right edge */
    transform: translateX(-50%); /* center horizontally */

    left:100px;
     width: 300px;  

  
  }


  .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: 22px;
    padding-top: 5px;
    margin-left: -5px;
    padding-right: 5px;
    
  }

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

  /* Show dropdown on hover */
.navmenu .dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  top: 100%; /* aligns below the parent link */
}

.navmenu.text-block {
  display: flex;
  flex-direction: column; /* stack title and sentence */
}

.navmenu .desc {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 2px;   /* reduce vertical gap */
  line-height: 1.2;  /* tighter spacing */
   white-space: normal;   /* let sentences wrap */
  word-break: break-word; /* avoid overflow */
}

}



/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
      overflow-x: hidden;
  }
  

  .navmenu {
    padding: 0;
    z-index: 9997;
    
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

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

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

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static; 
    display: none;
    z-index: 99;
    padding: 10px 0;
    /*margin: 10px 20px;*/
    margin: 10px 0;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;

    width: 95vw !important;
    max-width: 95vw !important;
    min-width: 95vw !important;

    /*left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;*/

    box-sizing: border-box;
    padding: 10px 15px;

  }
    
  .navmenu .dropdown ul li,
  .navmenu .dropdown ul li a {
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.4;
  }


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

@media (max-width: 767px) {
  .navmenu .dropdown ul {
    width: 100%;        /* fit screen */
    max-width: 100%;    /* no overflow */
    overflow-x: hidden; /* prevent sideways scroll */
  }
  .navmenu .dropdown .row {
    flex-direction: column; /* stack columns vertically */
    overflow-x: hidden;
  }
  .navmenu .dropdown .col-lg-6 {
    margin-left: 0;     /* reset desktop offsets */
    overflow-x: hidden;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  background: url("../img/footer-bg.jpg") center center no-repeat;
  background-size: cover;
  font-size: 14px;
  text-align: center;
  padding: 60px 0 30px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
}

.footer .container {
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
 margin-left: -50px;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-left: -50px;
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s 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: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  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 95%);
  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: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

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

/*.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto; 
} */

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

.section-title p {
  margin-bottom: 0;
  font-size: 19px;
  letter-spacing: 0.3px;
  font-weight: 600;

}

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

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

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

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 800;
  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;
  /*width: 12000px;*/
  width: 100%;
  height:auto
}



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

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

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

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

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.paragraph{
  font-size: 22px;             /* slightly larger */
  /*text-transform: uppercase;   /* all caps */
  font-weight: bold;           /* bold text */
  color: #444444;              /* proper color property */
  /*letter-spacing: 2px;         /* spacing between letters */
  text-align: center;          /* center it */
 /* border-top: 2px solid #ccc;  /* decorative line above */
 /* border-bottom: 2px solid #ccc; /* decorative line below */
 /* padding: 10px 0;             /* breathing space */
  padding-top: 20px;
}


.paragraph2 {
  font-size: 22px;             /* slightly larger */
  text-transform: none;
  font-weight: bold;           /* bold text */
  color: #444444;              /* proper color property */
  letter-spacing: 1px;         /* spacing between letters */
  text-align: center;          /* center it */
 /* border-top: 2px solid #ccc;  /* decorative line above */
 /* border-bottom: 2px solid #ccc; /* decorative line below */
  padding: 10px 0;             /* breathing space */
}

.clients h5 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
  word-break: break-word;


}

.clients {
  padding: 10px 0;
  padding-right: 10px; 
  padding-left: 10px;
  /*margin-right: 450px; */
  
}
.clients .swiper {
  padding: 10px 0;
 /* margin-left: -50px;
 margin-right: 50px; */


 }
.clients .swiper-image {
   font-size: 16px;        /* Makes the text big */
  font-weight: 700;       /* Bold for emphasis */
  text-transform: uppercase; /* Optional: makes all letters uppercase */
 /* text-shadow: 2px 2px 5px rgba(0,0,0,0.3); /* Adds subtle shadow for contrast */
  text-align: center;     /* Centers the text */
  margin: 10px 0;         /* Adds spacing around */
 
  /*font-family: Arial, Helvetica, sans-serif;/* Calligraphy-style font */
  color: #777777;               /* White text for contrast */
  text-transform: uppercase;    /* Optional: all caps */
  /*text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  text-align: center;           /* Centers the text */
  /*margin: 20px 0;               /* Spacing around */
  /*background-color: #FDC134; ;    /* Bright background color */
 /* padding: 20px;                /* Space inside background */
 /* border-radius: 10px;          /* Rounded corners */
}





.clients .swiper-wrapper {
  height: auto;

}


.clients .swiper-slide img {
  transition: 0.3s;

}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .wide-img {
 width: 270px;        /* increase width relative to container */
  max-width: 600px;  /* optional: cap the maximum width */
  max-height: 150px;
  margin: 0 auto;    /* center the image horizontally */
  display: block;    /* ensures margin auto works */
  padding-right: 60px; 
  padding-bottom: 10px;

  object-fit: cover;      /* crop to fit box without distortion */

}

.clients .paragraph3 {
  padding-top: 10px;
  font-weight: bold;
  font-size: 18px;
}

/* Additional Growth metrics */
.clients-row {
  display: flex;
  align-items: center;
}

.swiper {
  flex: 1; /* slider takes available width */
}

.growth-metrics {
  display: flex;
  gap: 15px;
  margin-right: -50px;
}

  .text1 { /* Implementataion and managed services-details */
 margin-bottom: 35px;
  
}

.metric {
  display: flex;
  flex-direction: column; /* stacks vertically */
  align-items: center;
  text-align: center;
  color: #D9A62E;



}

.value {
  font-size: 25px;  /* bigger number */
  font-weight: 700;
  line-height: 1;
}

.label {
  font-size: 16px;
  color: #777;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.divider {
  width: 2px;
  background: #ccc;
  height: auto;
  align-self: stretch; /* makes it full height */
}

/*.divider {
  width: 1px;
  background: rgba(0,0,0,0.15);
  height: 60px;
} */

.tech-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  /*height: 260px;*/
  transition: all .3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,.05);

  min-height: 280px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
 
}

.tech-card:hover {
  transform: translateY(-8px);
  border-color: #FDC134;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.tech-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(253,193,52,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-icon i {
  font-size: 32px;
  color: #FDC134;
}

.tech-card h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.tech-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}


/* Trust Banner */
.trust-banner {
  padding: 20px 0;
}

.trust-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.05);
  border: 1px solid #f0f0f0;
}

.trust-main {
  display: flex;
  align-items: center;
  gap: 25px;
}

.trust-icon {
  width: 80px;
  height: 80px;
  background: rgba(253,193,52,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon i {
  font-size: 40px;
  color: #FDC134;
}


.trust-text h4 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
  color: #111;
}

.trust-text p {
  margin: 0;
  color: #666;
  font-size: 17px;
}

.trust-features {
  display: flex;
  align-items: center;
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 20px;
  border-left: 1px solid #e5e5e5;
  
}

.feature-item i {
  font-size: 24px;
  color: #666;
}

.feature-item span {
  font-weight: 500;
  color: #333;
}


@media (max-width: 992px) {

  .trust-card {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .trust-main {
    flex-direction: column;
  }

  .trust-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .feature-item {
    border-left: none;
    padding-left: 0;
  }

  .trust-text h4 {
    font-size: 24px;
  }


  @media (max-width: 480px) {
  .tech-card {
    padding: 18px 14px;
    min-height: 200px;
  }

  .tech-card h5 {
    font-size: 14px;
  }

  .tech-card p {
    font-size: 12px;
  }

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

}
/*End of Trust Banner */

/*--------------------------------------------------------------
# Challenges-Solution Section
--------------------------------------------------------------*/
.challenges .challenges-item {
  background-color: var(--surface-color);
  padding: 50px 30px; 
  margin-top: -40px;
  transition: all ease-in-out 0.3s;
  position: relative;
  /*border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%); */
  text-align: left;
  padding-top: -5px;
  /*margin-bottom: -5px; */
  margin-bottom: -45px;
padding-bottom: 10px; /*reduced space */
}

.nobreak {
  white-space: nowrap;   /* prevents line breaks */
}

.letter-spacingchallenges {
  letter-spacing: 0.5px;
  color: #EE4E53;
  font-weight: 900;
}

.bi-x-circle {
  color: #EE4E53;          /* makes the icon red */
  font-weight: bold;   /* makes the icon bold */
 /* font-size: 1.2em;    /* optional: enlarge slightly */
  margin-right: 8px;   /* spacing before the text */
}

.letter-spacingsolutions {
  letter-spacing: 0.5px;
  color: #D9A62E;
  font-weight: 900;
}

.bi-check-circle {
  color: #D9A62E;          /* makes the icon yellow */
  font-weight: bold;   /* makes the icon bold */
 /* font-size: 1.2em;    /* optional: enlarge slightly */
  margin-right: 8px;   /* spacing before the text */
}


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

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

ul {
  list-style-type: none;   /* removes the default bullet */
  padding-left: 0;         /* optional: removes extra left indent */
}

ul li {
  margin-bottom: 8px;      /* optional: spacing between items */
}


.image-solutions{
  width: 450px;
  height: 350px;
  margin-bottom: -50px;
  margin-top: 0px;
  margin-left: -65px;
}

.glassy-box {
  background: rgba(255, 255, 255, 0.2); /* semi-transparent white */
  backdrop-filter: blur(10px);          /* blur whatever is behind */
  -webkit-backdrop-filter: blur(10px);  /* Safari support */
  border-radius: 12px;                  /* rounded corners */
  border: 1px solid rgba(255, 255, 255, 0.3); /* subtle border */
  padding: 20px;
  color: #fff;                          /* text color for contrast */

}
/*
.challenges .challenges-item:hover {
  background: var(--background-color);
}

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

.challenges .challenges-item:hover .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.challenges .challenges-item:hover .icon i {
  color: var(--accent-color);
} */


/*--------------------------------------------------------------
# End of Challenges-Solution Section
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, #FDC134, #fff8e1);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 6px;
}

.highlight-quote {
  font-size: 1.0rem;
  font-weight: 600;
  line-height: 1.5;
  border-left: 3px solid #FDC134;
  padding-left: 15px;
  margin: 20px 0;
  color: #2f2f2f;


}

.about .content-paragraph {
  padding-top: 0px;
  font-size: 16px;
}

.about .value-subhead {
  font-weight: 600;       /* bold */
  color: "";
  letter-spacing: 0.5px;
}


.about .content ul li ul li i.bi-check-circle {    /*check circles under values */
  font-size: 20px;
  color: #FDC134; /* or a neutral color */
  margin-right: 8px;
  
}

.about .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 15px; /* reduce vertical gap between items */
  /* margin-bottom: 4px; /* reduce vertical gap between items */
  /*line-height: 1.4;   /* tighter line spacing */
}

.about .content ul i {    
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.about .infrastructure-image{
  /*height:450px; */
  margin-top: "";

}

.about .content i.bi-diagram-3 {   
  font-size: 35px;
  color: var(--accent-color);
  margin-right: 20px;
}

.about .content i.bi-fullscreen-exit {    
  font-size: 35px;
  color: var(--accent-color);
  margin-right: 20px;
}
.about .content i.bi-broadcast {
  font-size: 35px;
  color: var(--accent-color);
  margin-right: 20px;
}

.about .button-demo{
margin-top: 50px;
}


/*cta title about section */

.cta-section {
  text-align: center;             /* center everything */
  padding: 60px 20px;             /* breathing space */
 /* background: linear-gradient(to right, #000000, #FDC134); /* theme gradient */ 
 background-color: #ffffff;; /* theme gradient */ 
  color: #fff;                    /* text color */
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  background-color: #FDC134;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #000;
  color: #FDC134;
}

/*--------------------------------------------------------------
# Product Strip Section
--------------------------------------------------------------*/
.product-strip .paragraph{
  font-size: 18px;             /* slightly larger */
  text-transform: uppercase;   /* all caps */
  font-weight: bold;           /* bold text */
  color: #ffffff;              /* proper color property */
  letter-spacing: 2px;         /* spacing between letters */
  text-align: start;          /* start */
 /* border-top: 2px solid #ccc;  /* decorative line above */
 /* border-bottom: 2px solid #ccc; /* decorative line below */
  padding:0;             /* breathing space */
  margin-top: -50px;
  
}


.product-strip .row-wrapper {
  display: flex;              /* enables horizontal layout */
  justify-content: space-between; /* adds spacing between sections */
  align-items: flex-start;    /* aligns items at the top */
  gap: 20px;                /* optional spacing between blocks */
  margin-top: 10px;
  margin-bottom: -50px;

  flex-wrap: wrap;              /* allow items to break into new lines */
  align-items: flex-start;

}


.product-strip .growth-metrics {
  flex: 2;   /* takes twice the space */
  margin-top: -40px;
  margin-left: 100px;
  margin-right: -20px;
  color: #FFFFFF;
}

.product-strip .growth-metricsadd {
  flex: 2;   /* takes twice the space */
  color: #FFFFFF;
  display: block;
}

.product-strip .more-on-tech {
  flex: 1;   /* takes half the space */
  color: #FFFFFF;
  padding-right: 140px;
}

.product-strip .metric {
  flex: 1;
}

.product-strip .metric-header {
  display: flex;          /* icon + text side by side */
  align-items: center;    /* vertically align */
  justify-content: center;/* center them horizontally */
  gap: 0.5rem;            /* space between icon and word */
  margin-bottom: 0.5rem;
}

.product-strip .metric i {
  font-size: 50px;
  color: #ffffff;
}

.product-strip .metric .title {
  font-weight: bold;
}

.product-strip .metric .value {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.product-strip .metric .label {
  display: block;
  color: #ffffff;
}

.product-strip .divider {
 
  position: relative;
  margin: 1rem auto;
  background-color: #111111 ;
}

.product-strip .divider::after {
  content: "";
  position: absolute;
  right: -12px;                 /* place arrow at end */
  top: 50%;                     /* center vertically */
  transform: translateY(-50%);  /* perfect centering */
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #FDC134; /* arrow head */
}

.product-strip .label-product {
  font-size: 15px;
  color: #FFFFFF;
  margin-top: 4px;
  letter-spacing: 1px;
  font-weight: "";
}


.product-strip a.explore-platformlink {
  color: #FDC134;;              /* default link color */
  text-decoration: none;    /* optional: remove underline */
  transition: color 0.3s;   /* smooth color change */
  font-size: 18px;
}

.product-strip a.explore-platformlink:hover {
  color: #fff;              /* link turns white on hover */
}

@media (max-width: 768px) {
  .growth-metrics {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #product-strip .growth-metricsadd img {
    max-width: 100%;        /* still responsive but larger than default */
    min-width: 280px;      /* ensures it never shrinks below this size */
  }
}
/*--------------------------------------------------------------
# End Product Strip Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#Start Product Section
--------------------------------------------------------------*/


.product .title {
  margin-bottom: -30px;
}

.product p {
  font-size: 16px;
}

.product li i { /*retailmedia tech section*/
color: #FDC134;   /* yellow shade */
 font-size: 1.2rem; /* optional: adjust size */
  font-weight: bold;
}

.product .divider {
  border-left: 2px dotted #FDC134; /* dotted vertical line */
  height: auto;
  align-self: stretch;
  background-color: #000;
}


.product .product-item {
  background-color: var(--surface-color);
  /*padding: 50px 30px; */
  /*margin-top: -40px; */
  transition: all ease-in-out 0.3s;
  position: relative;
  /*border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%); */
  text-align: left;
  padding-top: 0px;
  /*margin-bottom: -5px; */
  /*margin-bottom: -30px; */
padding-bottom: 10px; /*reduced space */

}

.product .product-item2 {
  background-color: var(--surface-color);
  /*padding: 50px 30px; */
  transition: all ease-in-out 0.3s;
  position: relative;
  /*border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%); */
  text-align: left;
  font-size: 16px;

}

.product .letter-spacingproduct {
  letter-spacing: 0.5px;
  color: #000000;
  font-weight: 900;
  margin-top: 10px;
  font-size: 16px;
}

.product .letter-spacingproduct3 { /*retailmedia tech paragraph*/
  letter-spacing: 0.5px;
  color: #000000;
  font-weight: 900;
  margin-top: 10px;
  font-size: 18px;

}

.product .letter-spacingproduct2 { /*retailmedia tech paragraph*/
  letter-spacing: 0.5px;
  color: #FDC134;
  font-weight: 900;
  margin-top: 10px;
  font-size: 16px;
}

.product .paragraphretail { /*retailmedia tech paragraph*/
  color: #CECECE;


  
}

.product .paragraph-product{
  margin-top: -10px;
  margin-bottom: 5px;
  font-size: 16px;
}

.product .img {
  border-radius: 8px;
  overflow: hidden;
    max-width: 100%;

  width: 100%;   /* fills the container width */
  height: 200px;  /* keeps aspect ratio */
  /*object-fit: contain; /* scales down, keeps full image visible */
  /*display: block;*/
 object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;

}

.product .img img {
  width: 100%;
  max-width: 100%;
  /*height: 200px;*/
  display: block;
  /*object-fit: contain; /* prevents cropping + overflow */
  object-fit: cover;
/*aspect-ratio: 16 / 9;*/

  height: 100%;
  display: block;


}

.product a.learn-morelink {
  color: #D9A62E;              /* default link color */
  text-decoration: none;    /* optional: remove underline */
  transition: color 0.3s;   /* smooth color change */
  font-weight: bold;
}

.product a.learn-morelink:hover {
  color: #000000;              /* link turns white on hover */
}




@media (max-width: 575px) {
  .product .img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .product .title {
    margin-bottom: 30px;       /* reduce spacing */
    font-size: 20px;           /* scale down title */
    text-align: center;        /* center for mobile */

}


  }

 

@media (max-width: 768px) {
  .product .product-item {
    text-align: center;
  }

  .product .img {
    padding: 0 10px;
  }

  .product .img {
    max-width: 100%;
    margin: 0 auto;
  }
}
  
/*--------------------------------------------------------------
# End Our  Product Section
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Start Measurable Results Section
--------------------------------------------------------------*/
.measurable-results .paragraph{
  font-size: 18px;             /* slightly larger */
  text-transform: uppercase;   /* all caps */
  font-weight: bold;           /* bold text */
  color: #444444;              /* proper color property */
  letter-spacing: 2px;         /* spacing between letters */
  text-align: center;          /* center it */
 /* border-top: 2px solid #ccc;  /* decorative line above */
 /* border-bottom: 2px solid #ccc; /* decorative line below */
  padding: 10px 0;             /* breathing space */
  margin-top: -50px;
}

.measurable-results .imagescreen {
 height: 350px; 
 margin-top: -50px; 
 margin-left: -70px;

  }

.measurable-results .imageprediction {
 margin-left: 40px; 
 margin-top: -40px; 
 height: 400px;
}

.measurable-results .imagehowitworks {
  margin-left: 0; 
    margin-left: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
/* Additional Growth metrics */

.measurable-results .growth-metrics {
  display: flex;
  justify-content: space-between; /* spread items evenly */
  gap: 30px;
  margin-right: 0px;
  margin-top: -15px;
  margin-bottom: -70px;
  flex-wrap: wrap;              /* allow wrapping */
}



.measurable-results .metric { /*icon will appear next to metric */
  /*display: flex;*/
  flex: 1;
  flex-direction: row; /* stacks vertically */
  gap: 0.8rem; /*gap between icon and text*/
  margin: 1rem 0; 
  align-items: center; 
  text-align: left;
  margin-bottom: 20px;
 
}

.measurable-results .value {
  font-size: 25px;  /* bigger number */
  font-weight: 700;
  line-height: 1;
  color: #FDC134;
  margin-right: 10px;
 
}

.measurable-results .label {
  font-size: 15px;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 1px;
  font-weight: bold;
  color: #ffffff;
  
}

.measurable-results .metric i {
  font-size: 25px;   /* adjust icon size */
  background: var(--accent-color); 
  /*color: var(--contrast-color); */
   color: var(--accent-color); 
   background-color: #000; 


  margin: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%; 
  flex-shrink: 0;    

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px; 
  transition: ease-in-out 0.3s;
  /*top: -36px;
 left: calc(50% - 36px); */
  /*border: 6px solid var(--background-color); */
  border: 2px solid var(--accent-color);
  margin-right: 10px;
}


.measurable-results .metric i:hover  {
  background: var(--surface-color); 
 /*color: var(--accent-color); */
  color: #000000; 
 background-color: #ffffff; 
 border: 2px solid var(--accent-color);
}

.measurable-results .text {
  display: flex;
  flex-direction: column;     /* stack value above label */
  align-items: flex-start;    /* align text neatly to the left */
}

.measurable-results .divider {
  width: 2px;
  background: #ccc;
  height: 70px;
  /*align-self: stretch; /* makes it full height */
  /*margin-right: 30px; */
  align-items: center;
  margin-top: 20px;


}


/* Responsive tweak for mobile */

@media (max-width: 575px) {
  .measurable-results .imagehowitworks {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .measurable-results .growth-metrics {
    flex-direction: column;       /* stack vertically */
    align-items: center;
    align-items: flex-start; /* Align to the left when stacked */
    margin: 0;
  }
  

  .measurable-results .metric {
    justify-content: flex-start;  /* align left when stacked */
    flex: 1 1 100%;             /* full width on mobile */
    text-align: center;         /* center text */
    margin: 15px 0;             /* consistent spacing */
  }
}

@media (max-width: 576px) {

  .measurable-results .imagescreen,
  .measurable-results .imageprediction {
    height: auto;
    width: 100%;
    max-width: 100%;

    margin: 0 auto;
    display: block;

  }
}
 


/*--------------------------------------------------------------
# End Measurable Results Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start How It Works Section 
--------------------------------------------------------------*/

.how-itworks .paragraph{
  font-size: 18px;             /* slightly larger */
  text-transform: uppercase;   /* all caps */
  font-weight: bold;           /* bold text */
  color: #444444;              /* proper color property */
  letter-spacing: 2px;         /* spacing between letters */
  text-align: center;          /* center it */
 /* border-top: 2px solid #ccc;  /* decorative line above */
 /* border-bottom: 2px solid #ccc; /* decorative line below */
  padding: 10px 0;             /* breathing space */
  margin-top: -0px;
}


/* Additional Growth metrics */

.how-itworks  .growth-metrics {
  display: flex;
  justify-content: space-between; /* spread items evenly */
  gap: 30px;
  margin-right: 0px;
  margin-top: -15px;
  margin-bottom: -70px;

  flex-wrap: wrap;              /* allow wrapping */
  margin: 0;                    /* reset margins */

}

.how-itworks .metric { /*icon will appear next to metric */
  /*display: flex;*/
  flex: 1;
  flex-direction: row; /* stacks vertically */
  gap: 0.8rem; /*gap between icon and text*/
  margin: 1rem 0; 
  align-items: center; 
  text-align: left;
  margin-bottom: 10px;
  display: flex;                /* enable flex for icon + text */
 
}

.how-itworks .value {
  font-size: 30px;  /* bigger number */
  font-weight: 700;
  line-height: 1;
}

.how-itworks .label {
  font-size: 15px;
  color: #777;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 1px;
  font-weight: bold;
}

.how-itworks  .metric i {
  font-size: 20px;   /* adjust icon size */
  background: var(--accent-color); 
  color: var(--contrast-color); 
  font-weight: bold;

  margin: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%; 
  flex-shrink: 0;    

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px; 
  transition: ease-in-out 0.3s;
  /*top: -36px;
 left: calc(50% - 36px); */
  border: 6px solid var(--background-color); 
}


.how-itworks .metric:hover i  {
  /*background: var(--surface-color); */
 color: var(--accent-color); 
 background-color: #000; 
 border: 2px solid var(--accent-color);
}

.how-itworks .text {
  display: flex;
  flex-direction: column;     /* stack value above label */
  align-items: flex-start;    /* align text neatly to the left */
}

.how-itworks .divider {
  /*width: 2px;
  background: #ccc;
  height: 70px;
  /*align-self: stretch; /* makes it full height */
  /*margin-right: 30px; */
  /*align-items: center;
  margin-top: 20px; */

  width: 0;
  height: 0;
  margin: 40px auto;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 16px solid #000;
  background-color: #F8F8FF;

}

@media (max-width: 768px) {
  .how-itworks .growth-metrics {
    flex-direction: column;     /* stack vertically */
    align-items: center;        /* center items */
    margin: 0;                  /* reset margins */
  }

  .how-itworks .metric {
    flex: 1 1 100%;   
  }
}
/*--------------------------------------------------------------
# End How It Works Section
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .content-box {  /* mother box after title section */
  margin-top: -80px;
 
}

.featured-services .img {
  border-radius: 8px;
  overflow: hidden;
  margin-top: -50px;
  width: 100%;   /* fills the container width */
  height: 250px;  /* keeps aspect ratio */
  object-fit: contain; /* scales down, keeps full image visible */
  display: block;

}

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

.featured-services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%); 
  padding: 50px 20px;
  margin: -100px -30px 0 -30px;      
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  margin-bottom: -50px;
   height: auto;
  min-height: 380px;
 
  

}

.featured-services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

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

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

.services .from-startfeatured { /* impact sub-items */
  text-align: left;
  margin: 0;                  /* no extra vertical spacing */
  font-size: 16px;
  display: inline-block;
  white-space: normal;   /* allow wrapping */
  word-wrap: break-word; /* break long words if needed */
}

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

.featured-services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.featured-services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

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


.featured-services .details .btn-explore-solution {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 800;
  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);
  

}

.featured-services .service-item:hover .btn-explore-solution {
  color: var(--contrast-color);
  /*background: color-mix(in srgb, var(--accent-color), transparent 15%); */
  background-color: #000;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .featured-services .details .btn-explore-solution {
    display: block;          /* allows margin auto centering */
    width: fit-content;      /* keeps natural button size */
    margin: 15px auto 0 auto; /* centers horizontally */

    text-align: center;
  }
}



/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .impact-paragraph {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #D9A62E;
  
}

.services .container-challenge {
  height: 360px;

}



.services .from-start { /* impact sub-items */
  text-align: left;
  margin: 0;                  /* no extra vertical spacing */
  padding:  "";             /* small breathing space */
  font-size: 16px;
  display: inline-block;
  white-space: normal;   /* allow wrapping */
  word-wrap: break-word; /* break long words if needed */
} 

.services .big-box {
background-color: #F5F9FC;


}

.services .glassy-background {
  background: rgba(255, 255, 255, 0.2); /* semi-transparent white */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); 
  backdrop-filter: blur(px); /* frosted glass blur */
  -webkit-backdrop-filter: blur(50px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 0px;
  margin-right: auto;
  margin-left: auto;
 
} 

.services .service-item {
 background-color: var(--surface-color); 
  padding: 50px 30px; 
  margin-top: 36px;
  transition: all ease-in-out 0.3s;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  text-align: center;
}

.services .spansolution { /* solution items under index page */
 font-size: 16px;
}



.services .service-itemheight {  /*Esl tech section, capabilities */
  height: 250px;
}

.services .service-itemheight2 {  /*Esl tech section, capabilities */
  height: 240px;
  padding-right: 10px;
  padding-left: 10px;
}


.services .service-item .icon {  /*icon with black background */
  /*background: var(--accent-color); */
  background-color: #000;
  color: var(--contrast-color); 
  margin: 0;
  width: 72px;
  height: 72px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--background-color);
}

.services .service-item .icon2 { /*icon with yellow background*/
  background: var(--accent-color); 
  color: var(--contrast-color); 
  margin: 0;
  width: 72px;
  height: 72px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--background-color);
}
.services .service-item h3 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 18px;
  transition: ease-in-out 0.3s;
}

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

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

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

.services .service-item:hover .icon {
  background: var(--surface-color); 
  border: 2px solid var(--accent-color);
}

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


/*styling for bi bi checkboxes */
ul.nobreak {
  margin: 0;
  padding: 0;
  list-style: none;
 

  
}

ul.nobreak li {
  display: flex;              /* icon + text side by side */
  align-items: flex-start;    /* align at the top */
  margin-bottom: 4px;         /* spacing between items */

}

ul.nobreak li i {
  margin-right: 10px;         /* gap between icon and text */
  font-size: 18px;            /* adjust icon size */
  flex-shrink: 0;             /* icon stays fixed size */

  display: flex;
}

ul.nobreak li span {
  flex: 1;                    /* text fills remaining space */
  white-space: normal;        /* allow wrapping */
  word-wrap: break-word;      /* break long words if needed */
}



@media (max-width: 576px) {
  .services .service-itemheight,
  .services .service-itemheight2 {
    height: auto;
    min-height: 230px; /* keeps cards looking consistent */
  }
}

@media (max-width: 576px) {
  ul.nobreak li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;

    flex-wrap: wrap;        /* KEY FIX */
    white-space: normal;
     min-width: 0;            /* CRITICAL FIX */
      flex-direction: row;        /* FORCE side-by-side */
      /* gap: 10px;*/
      text-align: left !important;
  }

  ul.nobreak li span,
  ul.nobreak li {
    white-space: normal;    /* allow text wrapping */
    word-break: break-word;
    word-break: normal;
    text-align: left !important;

    
  }

  ul.nobreak li i {
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;

    flex: 0 0 auto;
    text-align: left !important;
  }
}








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

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

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

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

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

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

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

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

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

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

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

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

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

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

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

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

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



/*added new FAQ Style */


 .faq .accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
   
}

.faq .accordion .accordion-button {
    /*background: var(--light); */
   /*background:  var(--accent-color); */
   background-color: #F8F8FF;
    border-radius: 2px;
    color: #000000;
}

.faq .accordion .accordion-button:not(.collapsed) {
    color: #000;
    /*background: var(--primary); */
    background:  var(--accent-color); 
    box-shadow: none;
    font-weight: bold;
}

.faq .accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); 
    background-color: none; /*up and down arrow color*/
}

.faq .accordion .accordion-body {
    padding: 15px 0 0 0;

}


/*** Footer ***/


.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;   /* removes underline */
    border-bottom: 1px solid transparent; /* reserve space for underline */
    box-shadow: none;        /* remove Bootstrap’s focus shadow */
    outline: none;           /* remove focus outline */
    border: none;            /* ensure no border appears */
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
    /*content: ">"; */
    color: #D9A62E;      /* match your accent color */
    font-weight: bold;
    content: none !important;   /* removes the generated square */
      
}

.footer .btn.btn-link:hover {
    color:#FDC134;
    /*letter-spacing: 1px; */
    box-shadow: none;
    text-decoration: none;   /* keep it clean on hover/focus */
    outline: none;
  
}

/*.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary); */



.footer .copyrightspace  {
    color: var(--primary);
}

.footer .copyright {
  /*padding: 25px 0; */
  border-top: 1px solid rgba(17, 17, 17, .1);
  padding: 15px 10px;
  text-align: center;
   

    
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--dark);
} 

.col-5th {
  flex: 0 0 19%;
  max-width: 19%;
  margin-top: "-250px";

}
.footer .box-spaces {
  margin-top: -150px;
  margin-bottom: -60px;
}
.footer .logo{
  height: 180px; 
  /*width: 210px; */
  
  display: block;              /* prevents inline text wrapping */
  max-width: 180px;            /* responsive size */
  height: auto;                /* keeps aspect ratio */
  /*margin: 0 auto 15px auto;    /* centers logo and adds spacing */
  margin: 50px 0 15px -50px;    /* centers logo and adds spacing */

}


.footer .header-footer{
 /* text-align: right; */
  text-align: start;
}

.footer p {
  margin: 0;              /* remove default margins */
  padding: 6px 0;         /* equal vertical spacing */
  display: flex;          /* align icon + text neatly */
  align-items: center;    /* vertically center icon with text */


}





/* Responsive tweaks for footer */
@media (max-width: 768px) {
  .footer .col-5th {
    flex: 1 1 100%;        /* full width on mobile */
    max-width: 100%;       /* prevent overflow */
    margin: 0 !important;  /* reset custom margins */
    text-align: center;    /* center content */
  }

  .footer .logo {
    max-width: 150px;      /* scale down logo */
    /*margin: 10px auto 0px auto;*/
       margin: 10px 0 5px 0px;  /* left-aligned */
    display: block;
   

    
  }

  .footer .social-links {
    justify-content: center;
    margin-top: 10px !important;
  }

  .footer .copyright {
    margin-top: 0px !important;
    font-size: 14px;       /* smaller text */
    display: block;
        padding-left: 10px;
    padding-right: 10px;
   
  }

  .footer h5 {
    margin-top: 20px;
    text-align: center;
  }

  .footer .btn-link {
    display: block;        /* stack links vertically */
    text-align: center;
    margin: 5px 0;
  }
}

@media (max-width: 575px) {
  .footer .header-footer {
    text-align: left !important;
  }
}





/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;

}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

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

.button-contact {
  background-color: #FFD700;   /* yellow */
  color: #000;                 /* black text */
  border: none;                /* remove border */
  padding: 12px 24px;          /* size */
  font-size: 16px;             /* readable text */
  font-weight: bold;           /* bold text */
  border-radius: 6px;          /* rounded corners */
  cursor: pointer;             /* pointer on hover */
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 200px;
  margin-top: 20px; 
  margin-left: 200px;
  display: block;
}

.button-contact:hover {
  background-color: #000;      /* black background */
  color: #FFD700;              /* yellow text */
}



.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .button-contact {
    margin: 20px auto 0 auto;  /* centers horizontally */
    width: 85%;                /* makes it responsive */
    max-width: 260px;
  }
}

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

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

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

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

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

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

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

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

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

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/

.service-details .services-list {
  background-color: var(--surface-color); 
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
  
}

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

}

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

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

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

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

.service-details .h3privacy {  /* Privacy Policy h3 */
  font-size: 26px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
   scroll-margin-top: 100px; /* Adjust to your header height */

}

/*h3::after {
  content: "";
  display: block;
  width: 60px; /* length of the dash 
  height: 3px; /* thickness 
  background: #FDC134; 
  margin-top: 6px; /* space between text and dash 
  margin-bottom: 6px;
  margin-left: 10px; */



.service-details h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;

}

.service-details p {
  font-size: 16px;
  margin-bottom: 10px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  margin-bottom: -10px;
  font-size: 16px;  
}

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

.service-details .h3b {
  margin-top: 25px;
}

.service-details .img {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;   /* fills the container width */
  height: 150px;  /* keeps aspect ratio */
  object-fit: contain; /* scales down, keeps full image visible */
  display: block;
  margin-top: 15px;
  margin-bottom: 20px;
}

.service-details .spanb {
  font-weight: "";

}

.service-details .btn-section {
  text-align: center;             /* center everything */
  padding: 60px 20px;            
  /*background: linear-gradient(to right, #000000, #FDC134); /* theme gradient 
  background-color: #ffffff;; /* theme gradient */
  color: #fff;                    /* text color */
  margin-left: -50px;
  margin-top: -20px;
  margin-bottom: -90px;
}

.service-details .btn-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-details .btn-button {
  /*display: inline-block; */
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  background-color: #FDC134;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;

  display: block;              /* makes it a block element */
  width: fit-content;          /* keeps it only as wide as needed */
  margin: 0 auto;              /* centers horizontally */
}

.service-details .btn-button:hover {
  background-color: #000;
  color: #FDC134;
} 

.service-details .btn2-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-details .btn2-button {
  color: #000;
  background-color: #FDC134;
  font-family: var(--heading-font);
  font-weight: 800;
  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);
  /*margin-top: 10px;
  margin-bottom: -40px; */


  width: fit-content;
  margin: 10px auto -40px auto; /* centers horizontally */
}

.service-details .btnwrapper {
  display: flex;
  justify-content: center;
  align-items: center;
} 

.service-details .btn2-button:hover {
  background-color: #000;
  color: #FDC134;
} 

.service-details .glassy-background {
  background: rgba(255, 255, 255, 0.2); /* semi-transparent white */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(px); /* frosted glass blur */
  -webkit-backdrop-filter: blur(50px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

/* Additional Growth metrics */
.service-details .clients-row {
  display: flex;
  align-items: center;
}

.service-details .swiper {
  flex: 1; /* slider takes available width */
}

.service-details .growth-metrics {
  display: flex;
  flex-wrap: wrap;          /* allows items to wrap into multiple rows */
  justify-content: center;  /* centers items horizontally */
  gap: 20px;  
  margin-left: -100px; 
  margin-right: -100px;
  margin-bottom: 20px;
}

.service-details .metric {
  flex: 0 0 calc(26% - 20px); /* 3 items per row */
  box-sizing: border-box;
  background: #f8f8ff;      /* optional styling */
  border-radius: 8px;
  text-align: center;
  padding-right: 5px;
  padding-left: 5px;
  padding-bottom: 10px;
  padding-top: 10px;
}


.service-details .metric i {
  font-size: 30px;   /* adjust icon size */
  background: var(--accent-color); 
  color: var(--contrast-color); 

  margin: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%; 
  flex-shrink: 0;    

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px; 
  transition: ease-in-out 0.3s;
  /*top: -36px;
 left: calc(50% - 36px); */
  border: 6px solid var(--background-color); 
}

.service-details .metric:hover i  {
  /*background: var(--surface-color); */
 color: var(--accent-color); 
 background-color: #000; 
 border: 2px solid var(--accent-color);
}


.service-details .value {
  font-size: 20px;  /* bigger number */
  font-weight: 700;
  line-height: 1;
 
}

.service-details .label {
  font-size: 15px;
  color: #777;
  margin-top: 5px;
  text-transform: none;
  letter-spacing: 0px;

}

.service-details .circle-badge {
  width: 20px;          /* equal width */
  height: 20px;         /* equal height */
  display: inline-flex; /* flexbox for centering */
  align-items: center;  /* vertical centering */
  justify-content: center; /* horizontal centering */
  font-size: 12px;      /* adjust text size */
  background-color:#000000;
  color: #ffffff;
}      

/*.service-details .divider {
  width: 2px;
  background: #ccc;
  height: auto;
  align-self: stretch; /* makes it full height */


/*.divider {
  width: 1px;
  background: rgba(0,0,0,0.15);
  height: 60px;
} */

/* Responsive tweak for mobile */

@media (max-width: 768px) {
  .service-details .growth-metrics {
    flex-direction: column;       /* stack vertically */
    align-items: center;
    align-items: flex-start; /* Align to the left when stacked */
    margin: 0;
  }
  

  .service-details .metric {
    justify-content: flex-start;  /* align left when stacked */
    flex: 1 1 100%;             /* full width on mobile */
    text-align: center;         /* center text */
    margin: 15px 0;             /* consistent spacing */
  }
}

@media (max-width: 575px) {

  .service-details .btn2-button {
    display: block;
    width: 90%;
    max-width: 280px;
    text-align: center;
    margin: 20px auto 0 auto;
    font-size: 14px;
    padding: 12px 20px;
  }

}

/* Mobile optimization */
@media (max-width: 575px) {

  .service-details .btn-button {
    display: block; 
    /*width: fit-content; */
    max-width: 100%; 
    margin: 20px auto;
    text-align: center;
    font-size: 1rem;
    padding: 12px 24px; 

    width: auto;
    margin: 10px auto;
    white-space: normal;        /* allows wrapping */
    overflow-wrap: break-word;  /* prevents overflow */
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 1.3;
   }
  }



/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  font-size: "";
  /* Add your styles here */
}



/*--------------------------------------------------------------
# Start One Platform Section
--------------------------------------------------------------*/

.one-platform .growth-metrics {
  display: flex;
  justify-content: space-between; /* spread items evenly */
  gap: 10px;
  margin-right: -55px;
  margin-top: -15px;
  margin-bottom: -30px; /*3 boxes moved down */
  flex-wrap: wrap;              /* allow wrapping */
}


.one-platform .metric { /*icon will appear next to metric */
  /*display: flex;*/
  flex: 1;
  flex-direction: row; /* stacks vertically */
  gap: 0.8rem; /*gap between icon and text*/
  margin: 1rem 0; 
  align-items: center; 
  text-align: left;
  margin-right: 60px; /*increased width*/
 
}

.one-platform .value {
  font-size: 20px;  /* bigger number */
  font-weight: 700;
 /* line-height: 0.5; */
  padding-bottom: 10px;
}

.one-platform .label {
  font-size: 15px;
  color: #777;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0.5px;
  font-weight: bold;
  
}

.one-platform .metric i {
  font-size: 40px;   /* adjust icon size */
  background: var(--accent-color); 
  color: var(--contrast-color); 

  margin: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%; 
  flex-shrink: 0;    

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px; 
  transition: ease-in-out 0.3s;
  /*top: -36px;
 left: calc(50% - 36px); */
  border: 6px solid var(--background-color); 
}


.one-platform .metric:hover i  {
  /*background: var(--surface-color); */
 color: var(--accent-color); 
 background-color: #000; 
 border: 2px solid var(--accent-color);
}

.one-platform .text {
  display: flex;
  flex-direction: column;     /* stack value above label */
  align-items: flex-start;    /* align text neatly to the left */
}


.one-platform h2 {
  margin-top: 30px;
}

.one-platform h3 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #FDC134;;
}

.one-platform .image-icon {
  height: 62px;
  width: 62px;
  margin-top: -55px;
  margin-right: 10px;
}

.one-platform  .glassy-background {
  background: rgba(255, 255, 255, 0.2); /* semi-transparent white */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(px); /* frosted glass blur */
  -webkit-backdrop-filter: blur(50px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}


.one-platform .growth-metricsesl {
  display: flex;
  justify-content: space-between; /* spread items evenly */
  gap: 5px;
  margin-right: -65px;
  margin-top: 15px;
  margin-bottom: -30px; /*3 boxes moved down */
  flex-wrap: wrap;              /* allow wrapping */
}

.one-platform .growth-metricses2 { /*ESL tech section, measurable impact section */
  display: flex;
  justify-content: space-between; /* spread items evenly */
  gap: 5px;
 /* margin-left: 120px; */
   margin-right: -65px;
   margin-left: 120px;
  margin-top: 15px;
  margin-bottom: -30px; /*3 boxes moved down */
  flex-wrap: wrap;   
  height: 200px;           /* allow wrapping */
}


.one-platform .metricesl { /*icon will on top of metric */
  /*display: flex;*/
  flex: 1;
  flex-direction: column; /* stack vertically (icon above text) */
  gap: 0.8rem; /*gap between icon and text*/
  margin: 1rem 0; 
  align-items: center; 
  text-align: center; /* center text under icon */
  margin-right: 5px; /*increased width*/
  
}


.one-platform .metrices2 { /*icon will on top of metric,  ESL tech section, measurable impact section */
  /*display: flex;*/
  flex: 1;
  flex-direction: column; /* stack vertically (icon above text) */
  gap: 0.8rem; /*gap between icon and text*/
  margin: 1rem 0; 
  align-items: center; 
  text-align: center; /* center text under icon */
  margin-right: 5px; /*increased width*/
  width: 220px;
  
}

.one-platform .valueesl {
  font-size: 19px;  /* bigger number */
  font-weight: 700;
 /* line-height: 0.5; */
  padding-bottom: 10px;
}

.one-platform .valuees2 {  /* ESL tech section, measurable impact section */
  font-weight: 700;
  font-size: 18px;  /* bigger number */
  font-weight: 500;
 /* line-height: 0.5; */
  padding-bottom: 10px;
}

.one-platform .labelesl {
  font-size: 15px;
  color: #777;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0.5px;
  font-weight: bold;
  
}

.one-platform .labeles2 { /* ESL tech section, measurable impact section */
  font-size: 16px;
  color: #777;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0.5px;
  font-weight: bold;
  
}

.one-platform .textesl {
  display: flex;
  flex-direction: column;     /* stack value above label */
  align-items: flex-start;    /* align text neatly to the left */
}

.one-platform .image-iconesl {
  height: 62px;
  width: 62px;
  margin-top: -55px;

}

/* Responsive tweak for mobile */

@media (max-width: 768px) {
  .one-platform .growth-metricsesl,
  .one-platform .growth-metricses2 {
    flex-direction: column;     /* stack items vertically */
    align-items: center;        /* center items */
    margin: 0;                  /* reset margins */
    gap: 20px;                  /* spacing between boxes */
  }
  

 /* .one-platform .metric {
    justify-content: flex-start;  align left when stacked 
    flex: 1 1 100%;             full width on mobile 
    text-align: center;         center text 
    margin: 15px 0;             consistent spacing */
  }


  .one-platform .metric
   .one-platform .metricesl
   
   {
    
    flex: 1 1 100%;               /* full width */
    flex-direction: column;       /* icon above text */
    text-align: center;           /* center text */
    margin: 0;                    /* reset margins */
  }

  .one-platform .metric i 
 {
    font-size: 32px;              /* slightly smaller icon */
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .one-platform .value {
    font-size: 18px;              /* scale down numbers */
  }

  .one-platform .label {
    font-size: 14px;              /* scale down labels */
  }
  
/* Responsive tweaks for mobile  Business Outcome ESL product*/ 
@media (max-width: 768px) {
  .one-platform .growth-metricses2 {
    flex-direction: column;     /* stack items vertically */
    align-items: center;        /* center items */
    margin: 0;                  /* reset margins */
    gap: 20px;                  /* spacing between boxes */
    height: auto;               /* remove fixed height */
  }

  .one-platform .metrices2 {
    flex: 1 1 100%;             /* full width on mobile */
    text-align: center;         /* center text */
    margin: 10px 0;             /* consistent spacing */
    width: auto;                /* remove fixed width */
    height: auto;               /* allow natural height */
  }

  .one-platform .textesl {
    align-items: center;        /* center text under icon */
    text-align: center;
  }

  .one-platform .valuees2 {
    font-size: 16px;            /* scale down numbers */
  }

  .one-platform .labeles2 {
    font-size: 14px;            /* scale down labels */
  }
}



 
/*--------------------------------------------------------------
# End One Platform Section
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Start of IOT Details Section
--------------------------------------------------------------*/


.iot-details .details3 {
  display: flex;
  flex-direction: column;   /* stack children vertically */
  align-items: center;      /* center horizontally */
}

.iot-details .icon-img3 {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;       /* spacing below the icon */
  object-fit: contain;
  flex-shrink: 0;       /* prevents icon from shrinking */
  vertical-align: middle;
} 



.iot-details .icon-img {
  width: 44px; 
  height: 44px;
  margin-right: 8px;
  vertical-align: middle;
  margin-right: 10px;   /* spacing between icon and text */
  flex-shrink: 0;       /* prevents icon from shrinking */
}

.iot-details .icon-img2 {
  width: 54px; 
  height: 54px;
  margin-right: 8px;
  vertical-align: middle;
  margin-right: 10px;   /* spacing between icon and text */
  flex-shrink: 0;       /* prevents icon from shrinking */
}


.iot-details h3 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}
.iot-details .h3b {
  font-size: 26px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
}

.iot-details .h3c {
  font-size: 26px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
}


/* Additional Growth metrics */
.iot-details .clients-row {
  display: flex;
  align-items: center;
}

.iot-details .growth-metrics {
  display: flex;
  flex-wrap: wrap;          /* allows items to wrap into multiple rows */
  /*justify-content: center;  /* centers items horizontally */
  /*gap: 15px;  */
  margin-left: -130px; 
  margin-right: -130px;
  margin-bottom: 20px;

    justify-content: space-between;
  gap: 20px;
}


.iot-details .growth-metrics2 {  /* row 2 on growth metrics */
  display: flex;
  flex-wrap: wrap;          /* allows items to wrap into multiple rows */
 /*justify-content: center;  /* centers items horizontally */
  gap: 15px;  
  margin-left: 80px; 
  margin-right: -40px;
  margin-bottom: 10px;

}

.iot-details .metric {
  flex: 0 0 calc(16% - 20px); /* 5 items per row */
  box-sizing: border-box;
  /*background: #f8f8ff;      /* optional styling */
  border-radius: 8px;
  text-align: center;
  padding-right: 5px;
  padding-left: 0px;
  padding-bottom: 10px;
  padding-top: 10px;

}

.iot-details .metric2 { /* Row 2 on usecases*/
  flex: 0 0 calc(30% - 20px); /* 5 items per row */
  box-sizing: border-box;
  background: #f8f8ff;      /* optional styling */
  border-radius: 8px;
  text-align: center;
  padding-right: 5px;
  padding-left: 0px;
  padding-bottom: 10px;
  padding-top: 10px;
  height: 130px;

}


.iot-details .metric i {
  font-size: 30px;   /* adjust icon size */
  background: var(--accent-color); 
  color: var(--contrast-color); 

  margin: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%; 
  flex-shrink: 0;    

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px; 
  transition: ease-in-out 0.3s;
  /*top: -36px;
 left: calc(50% - 36px); */
  border: 6px solid var(--background-color); 
  
}

.iot-details .metric:hover i  {
  /*background: var(--surface-color); */
 color: var(--accent-color); 
 background-color: #000; 
 border: 2px solid var(--accent-color);
}


.iot-details .value {
  font-size: 20px;  /* bigger number */
  font-weight: 700;
  line-height: 1;
 
}

.iot-details .label {
  font-size: 15px;
  color: #777;
  margin-top: 5px;
  text-transform: none;
  letter-spacing: 0px;

}

.iot-details .label2 {
  font-size: 16px;
  color: #777;
  margin-top: 5px;
  text-transform: none;
  letter-spacing: 0px;
  font-weight: bold;

}

.iot-details .circle-badge {
  width: 20px;          /* equal width */
  height: 20px;         /* equal height */
  display: inline-flex; /* flexbox for centering */
  align-items: center;  /* vertical centering */
  justify-content: center; /* horizontal centering */
  font-size: 12px;      /* adjust text size */
  background-color:#FDC134;
  color: #ffffff;
}      

.iot-details .glassy-background {
  background: rgba(255, 255, 255, 0.2); /* semi-transparent white */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(px); /* frosted glass blur */
  -webkit-backdrop-filter: blur(50px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 0px;
}


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

.iot-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  margin-bottom: -10px;
  font-size: 16px;
}

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

.iot-details .growth-metrics3 { /* metrics below usecases*/
  display: flex;
  gap: 20px;
  padding-left: 70px;
  margin-top: 40px; 
  margin-bottom: -10px;
  
}

.iot-details .metric3 { /* metrics below usecases*/
  display: flex;
  flex-direction: column; /* stacks vertically */
  align-items: center;
  text-align: center;
  background-color: #FDC134;
  width: 210px;
  height: 125px;
}

.iot-details .value3 { /* metrics below usecases*/
  font-size: 24px;  /* bigger number */
  font-weight: 700;
  line-height: 1;
}

.iot-details .label3 { /* metrics below usecases*/
  font-size: 15px;
  margin-top: 4px;
  text-transform: none;
  /*letter-spacing: 0.5px; */
  font-weight: bold;
}

.iot-details .divider3 { /* metrics below usecases*/
  width: 2px;
  background: #ccc;
  height: auto;
  align-self: stretch; /* makes it full height */
  background-color: #FDC134;
}


.iot-details .p1 { /* metrics below usecases*/
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;

}



/* Responsive tweak for mobile */

@media (max-width: 768px) {
  .service-details .growth-metrics {
    flex-direction: column;       /* stack vertically */
    align-items: center;
    align-items: flex-start; /* Align to the left when stacked */
    margin: 0;
  }
  

  .iot .metric {
    justify-content: flex-start;  /* align left when stacked */
    flex: 1 1 100%;             /* full width on mobile */
    text-align: center;         /* center text */
    margin: 15px 0;             /* consistent spacing */
  }
}

/* Responsive tweak for mobile, Business Outcomes */

@media (max-width: 768px) {
  .iot-details .growth-metrics2,
  .iot-details .growth-metrics3 {
    flex-direction: column;     /* stack items vertically */
    align-items: center;        /* center items */
    margin: 0;                  /* reset margins */
    gap: 20px;                  /* spacing between boxes */

    width: 100%;

  }


 .iot-details .metric3 {
    flex: 1 1 100%;             /* full width on mobile */
    text-align: center;         /* center text */
    margin: 10px 0;             /* consistent spacing */
    width: auto;                /* remove fixed width */
    height: auto;               /* allow natural height */
  }

  .iot-details .metric2 {
    flex: 1 1 100%;         /* full width on mobile */
    max-width: 90%;         /* keep some margin on sides */
    margin-bottom: 15px;    /* spacing between boxes */

    text-align: center;
    margin: 10px 0;           /* consistent spacing */
    width: auto;
    height: auto;

  }

 .iot-details .text {
    margin-bottom: 15px !important; /* reduce spacing */
    text-align: center;

  }

 .iot-details .value3 {
    font-size: 18px;            /* scale down numbers */
  }

 .iot-details .label2,
 .iot-details .label3 {
    font-size: 14px;            /* scale down labels */
  }

 .iot-details .divider3 {
    display: none;              /* hide dividers on mobile */
  }

}

  











/*--------------------------------------------------------------
# End IOT Details Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# why-choose section
--------------------------------------------------------------*/

.why-choose .growth-metrics {
  display: flex;
  justify-content: space-between; /* spread items evenly */
  gap: 10px;
  margin-right: 0px;
  margin-top: -15px;
  margin-bottom: -70px;
  flex-wrap: wrap;              /* allow wrapping */
}


.why-choose  .metric { /*icon will appear next to metric */
  /*display: flex;*/
  flex: 1;
  flex-direction: row; /* stacks vertically */
  gap: 0.8rem; /*gap between icon and text*/
  margin: 1rem 0; 
  align-items: center; 
  text-align: left;
  margin-bottom: 20px;
 
}

.why-choose  .value {
  font-size: 20px;  /* bigger number */
  font-weight: 700; 
 
 
}

.why-choose  .label {
  font-size: 15px;
 /* color: #777; */
  margin-top: 5px;
  text-transform: none;
  
}

.why-choose  .metric i {
  font-size: 35px;   /* adjust icon size */
  background: var(--accent-color); 
  color: var(--contrast-color); 

  margin: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%; 
  flex-shrink: 0;    

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px; 
  transition: ease-in-out 0.3s;
  /*top: -36px;
 left: calc(50% - 36px); */
  border: 6px solid var(--background-color); 
}


.why-choose  .metric:hover i  {
  /*background: var(--surface-color); */
 color: var(--accent-color); 
 background-color: #000; 
 border: 2px solid var(--accent-color);
}

.why-choose  .text {
  display: flex;
  flex-direction: column;     /* stack value above label */
  align-items: flex-start;    /* align text neatly to the left */
}

.why-choose  .divider {
  width: 2px;
  background: #ccc;
  height: 170px;
  /*align-self: stretch; /* makes it full height */
  /*margin-right: 30px; */
  align-items: center;
  margin-top: 20px;
  margin-top: 40px;


}


.why-choose  .header2 {
  padding-bottom: 80px; 
  padding-top: 70px;

   }

.why-choose  .header3 {
   margin-top: -30px; 
   margin-bottom: -30px;

}

/* Responsive tweak for mobile */

@media (max-width: 768px) {
  .why-choose  .growth-metrics {
    flex-direction: column;       /* stack vertically */
    align-items: center;
    align-items: flex-start; /* Align to the left when stacked */
    margin: 0;
  }
  

  .why-choose  .metric {
    justify-content: flex-start;  /* align left when stacked */
    flex: 1 1 100%;             /* full width on mobile */
    text-align: center;         /* center text */
    margin: 15px 0;             /* consistent spacing */
  }
}


/*--------------------------------------------------------------
# why-choose section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# transform-end section
--------------------------------------------------------------*/
.transform-end .paragraph1 {
  font-size: 18px;             /* slightly larger */
  font-weight: 700;

}

.transform-end  {
  background-color: #FDC134;
  margin-bottom: 20px;
   margin-top: -20px;
}



.transform-end .transform-retail {
flex: 2;   /* takes twice the space */
  /*margin-top: 10px;
  margin-left: 100px;
  margin-right: -20px; */
  color: #000000;

  display: flex;
  justify-content: center;
  gap: 20px;
}

.transform-end .transform-heading {
  flex: 1;   /* takes half the space */
  color: #000000;
  margin-top: 70px;
}

.transform-end h3 {
  color: #000000;
  font-weight: bold;
  font-size: 30px;

  }

.transform-end .imagecustomer {
  padding-right: -60px; 
  height: 400px; 
  display: block;

}


.transform-end .row-wrapper {
  display: flex;              /* enables horizontal layout */
  justify-content: space-between; /* adds spacing between sections */
  align-items: flex-start;    /* aligns items at the top */
  gap: 20px;                /* optional spacing between blocks */
  margin-top: -20px;
  margin-bottom: -20px;

  flex-wrap: wrap;              /* allow items to break into new lines */
  align-items: flex-start;
 margin-left: 90px; 


}

.transform-end .btn-explore-solution {
  /*color: var(--contrast-color);
  background: var(--accent-color); */
  color: var(--contrast-color);
  background: #000000;
  font-family: var(--heading-font);
  font-weight: 800;
  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);
  margin-top: 10px;
 /* margin-bottom: -40px;*/

  margin-top: 10px;

}

.transform-end .btn-explore-solution:hover {
  /*color: var(--contrast-color);*/
  color: #000000;
  background: color-mix(in srgb, var(--accent-color), transparent 15%); 
  background-color: #ffffff; 
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}



@media (max-width: 768px) {
  .growth-metrics {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .transform-end .row-wrapper,
  .transform-end .transform-retail {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .transform-end .btn-explore-solution {
    display: block;
    width: fit-content;
    margin: 10px auto 0 auto;
    text-align: center;
  }
}


@media (max-width: 576px) {
  .transform-end .btn-explore-solution {
    display: block;
    width: 90%;
    max-width: 300px;

    margin: 10px auto 0 auto;
    text-align: center;

    white-space: normal;
    word-wrap: break-word;
  }
}

@media (max-width: 576px) {
  .transform-end .imagecustomer {
    width: 100%;
    height: auto;

    object-fit: cover;    /* keeps image nicely filled */
    margin: 0 auto;
  }
}


/*--------------------------------------------------------------
# transform-end section
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Header buttons for IoT Section
--------------------------------------------------------------*/

 .transform-retail2 {
 flex: 2;   /* takes twice the space */
  margin-top: 10px;
 /* margin-left: -60px;
  margin-right: -20px; */
  color: #000000;
  gap: 20px;


  display: flex;
  flex-wrap: wrap;          /* allow wrapping on small screens */
  justify-content: center;  /* center buttons horizontally */
  margin: 40px 0 0 0;       /* remove negative margins */


}

.btn-explore-solution2 {  /* used for button in header section   */
  /*color: var(--contrast-color);
  background: var(--accent-color); */
  color: var(--contrast-color);
  background:#FDC134;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  /*display: inline-block; */
   display: inline-flex;          /* use flexbox for centering */
  /*padding: 10px 28px 12px 28px; */
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  height: 50px;

  align-items: center;           /* vertical centering */
  justify-content: center;       /* horizontal centering */
  padding: 0 28px;               /* horizontal padding only */
  line-height: 1;                /* reset line-height */

}

 .btn-explore-solution2:hover {  /* used for button in header section   */
  /*color: var(--contrast-color);*/
  color: #000000;
  background: color-mix(in srgb, var(--accent-color), transparent 15%); 
  background-color: #ffffff; 
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}


.btn-explore-solution3 {  /* used for button in esl tech capability section   */
  /*color: var(--contrast-color);
  background: var(--accent-color); */
  color: black;
  background:#FDC134;
  font-family: var(--heading-font);
  font-weight: 800;
  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);
  margin-top: 10px;
  margin-bottom: -40px;
  width: 260px;
 
}

 .btn-explore-solution3:hover {  /* used for button in esl tech  capability section   */
  /*color: var(--contrast-color);*/
  color: white;
  background: color-mix(in srgb, var(--accent-color), transparent 15%); 
  background-color: black;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-explore-solution4 {  /* used for button in iot tech section   */
  /*color: var(--contrast-color);
  background: var(--accent-color); */
  color: black;
  background:#FDC134;
  font-family: var(--heading-font);
  font-weight: 800;
  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);
  width: 350px;
  margin-top: 10px;
  margin-left: 30px;
}

 .btn-explore-solution4:hover {  /* used for button in iot tech section   */
  /*color: var(--contrast-color);*/
  color: white;
  background: color-mix(in srgb, var(--accent-color), transparent 15%); 
  background-color: black;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.glassy-background {
  background: rgba(255, 255, 255, 0.2); /* semi-transparent white */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); 
  backdrop-filter: blur(px); /* frosted glass blur */
  -webkit-backdrop-filter: blur(50px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 0px;
}

img.img-hover-zoom {
  transition: transform 0.3s ease; /* smooth zoom */
}

img.img-hover-zoom:hover {
  transform: scale(1.1); /* increase size by 10% */
}




/* Mobile adjustments */
@media (max-width: 768px) {
  .transform-retail2 {
    flex-direction: column; /* stack buttons vertically */
    align-items: center;    /* center them */
  }

 
}

@media (max-width: 576px) {
  .btn-explore-solution2 {
    display: inline-flex;

    width: auto;
    max-width: 100%;

    margin-left: 0;        /* prevents left overflow */
    margin-right: 0;

    padding: 0 20px;       /* slightly tighter for small screens */

    box-sizing: border-box;

    align-self: flex-start;   /* forces true left start */
    margin-bottom: 0px;  /* try 3–6px range */
  }
}

@media (max-width: 576px) {
  .transform-retail2 {
    /*flex-direction: column;*/
    gap: 10px;

     display: flex;
    align-items: flex-start;  /* start from left */
  }
}



@media (max-width: 576px) {
  .dropdown-menu {
    left: 0 !important;
    right: auto !important;
    width: 95vw;
  }
}

@media (max-width: 576px) {
  .btn-explore-solution4 {
    width: 90%;
    max-width: 300px;

    margin: 15px auto 0 auto;   /* centers button */
    display: block;             /* enables centering */
    text-align: center;
  }
}




/*Hardware Options*/

.hardwareoptions {
width: 350px;

}

.hardwareoptions2 {
/*margin-left: 170px; */

margin-top: 80px;
  margin: 80px auto 0 auto;
  justify-content: center;

}

.hardwareoptionsimage {
    max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 576px) {
  .hardwareoptions {
    width: 90%;
    max-width: 370px;
    margin: 0 auto;          /* centers box */
    text-align: center;
  }

  .hardwareoptions2 {
    margin-left: 0;          /* remove forced shift */
    margin-top: 20px;
    display: flex;
    /*justify-content: center;*/
   
    margin-right: 0;
    width: 100%;
    text-align: start;
  }
}

@media (max-width: 575px) {
  .hardwareoptionsimage {
    width: 100%;
    /*max-width: 300px; /* adjust as needed */
    height: auto;
    margin: 0 auto;
    display: block;

       max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}

/*Hardware Options*/


/*Title in IOT tech use cases*/

.titleadditions { 
 margin-bottom: -30px; 
 margin-top: 20px;
}


.titleadditions2 { 
margin-top: 30px;
margin-right: -80px; 
padding-bottom: 120px;
}

.titleadditions3 { 
margin-left: -10px; 
margin-top: -20px;
}

.titleadditions4 { 
margin-top: 20px; 
margin-bottom: -32px;
}

@media (max-width: 576px) {
  .titleadditions {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: start;
  }

  .titleadditions2 {
    margin: 20px auto 0 auto;   /* centers properly */
    padding-bottom: 60px;

    width: 100%;
    max-width: 100%;

    text-align: start;
    box-sizing: border-box;
  }
}

@media (max-width: 576px) {
  .titleadditions3 {
    margin-left: 0;
    margin-top: 10px;
    text-align: start;
  }

  .titleadditions4 {
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: start;
  }
}

.hero-title {
  color: #ffffff;
  font-size: 45px;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 28px;
    margin-right: 0;     /* important */
    text-align: center;  /* optional but cleaner */
    padding: 0 10px;     /* prevents edge touching */
  }
}

/*Title in IOT tech use cases*/

/*Retail Media Header image*/

.retailtechhimage {
  margin-left: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 575px) {
  .retailtechhimage {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
/*Retail Media Header image*/


