/**
* Template Name: TheEvent
* Template URL: https://bootstrapmade.com/theevent-conference-event-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: 'lexend', sans-serif;
  --heading-font: 'lexend', sans-serif;
  --nav-font: 'lexend', 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: #2f3138; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0e1b4d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #082169; /* 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: rgba(255, 255, 255, 0.65);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #082169; /* 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: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000820;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #001553;
  --contrast-color: #ffffff;
}
.read-more-btn{
    background: #082169 !important;
   box-shadow: 0 8px 20px rgba(8, 33, 105, 0.35)!important;
}
.demo-btn {
     background:  #082169!important;
}
.company-card h3 {
   border-bottom:  2px solid #0a2a66 !important;
}
.read-more-link{
    color: #082169 !important;
}
.blog-layout {
    padding: 40px 62px!important;
}
@media (min-width: 320px) and (max-width: 767px) {
    .blog-layout {
        padding: 20px 16px!important;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1280px) {
    .blog-layout {
        padding: 40px 84px!important;
        gap: 30px;
    }
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

 .service-card {
      cursor: pointer;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
      border-color: #092167 !important;
    }
    
    .service-card .mb-2,
    .service-card i {
      pointer-events: none;
      opacity: 1 !important;
      visibility: visible !important;
    }

    .promise-card {
      cursor: pointer;
    }
    
    .promise-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
      border-color: #092167 !important;
    }

    /* MARQUEE WRAPPER */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* TRACK */
.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollLogos 35s linear infinite;
}

/* LOGO CARD */
.logo-card {
  background: #ffffff;
  width: 190px;
  height: 150px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* LOGO IMAGE */
.logo-card img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* ANIMATION */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.trusted-clients {
  background: linear-gradient(135deg, #f8f9fa, #e8f4f8);
  padding: 70px 0;
  overflow: hidden;
  margin-bottom: 60px;
}

.trusted-title {
  text-align: center;
  color: #092167;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 50px;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: #ffffff;
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* 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!important;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 10px!important;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff !important;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 10px!important;
}

.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);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 14px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 68px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(1, 8, 33, 0.82);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.15s;
  }

  .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-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.15s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #082169 !important;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #ffff;
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 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;
}


/* Base styles for dropdown */
.navmenu .dropdown ul {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background-color: #fff !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  list-style: none !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  z-index: 1000 !important;
  width: auto !important;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
  .navmenu .dropdown:hover ul {
      display: block !important;
  }
}

/* Ensure dropdown items align properly */
.navmenu .dropdown ul li {
  padding: 8px 15px !important;
  text-align: left !important;
  width: auto !important;
}

/* Dropdown link styles */
.navmenu .dropdown > a {
  cursor: pointer !important;
}

/* Dropdown toggle arrow alignment */
.navmenu .dropdown > a .bi-chevron-down {
  margin-left: 8px !important;
}

/* Mobile-specific styles */
@media (max-width: 991px) {
  .navmenu .dropdown ul {
      position: static !important;
      width: 100% !important;
  }

  .navmenu .dropdown.active ul {
      display: block !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: #000000;
  --heading-color: var(--contrast-color);
  --default-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    color: #fff !important;
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #092167;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 100px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, #0b2983, transparent 30%);;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
}

.hero h2 span {
  color: #47d700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}





.hero .about-info {
  overflow: hidden;
  position: relative;
  padding: 60px 0 40px 0;
  z-index: 2;
  width: 100%;
}

.hero .about-info:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .about-info h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.hero .about-info h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.hero .about-info p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.speakers {
  --default-color: #ffffff;
}

.speakers .member {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.speakers .member .member-info {
  position: absolute;
  padding: 15px 0;
  inset: auto 0 -44px 0;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.4s;
}

.speakers .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 16px;
}

.speakers .member .member-info-content h4 a {
  color: var(--contrast-color);
}

.speakers .member .member-info-content h4 a:hover {
  color: var(--accent-color);
}

.speakers .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.speakers .member .social {
  text-align: center;
  padding-top: 10px;
}

.speakers .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0 4px;
  display: inline-block;
}

.speakers .member .social a:hover {
  color: var(--default-color);
}

.speakers .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.speakers .member:hover .member-info {
  bottom: 0;
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
.schedule {
  --background-color: color-mix(in srgb, var(--alt-background-color), transparent 95%);
}

.schedule .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

.schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

.schedule .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: var(--heading-color);
  color: var(--contrast-color);
  padding: 10px 30px;
}

@media (max-width: 991px) {
  .schedule .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 767px) {
  .schedule .nav-tabs a {
    padding: 8px 50px;
  }

}

@media (max-width: 480px) {
  .schedule .nav-tabs a {
    padding: 8px 30px;
  }
}

.schedule .nav-tabs a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.schedule .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
  .schedule .sub-heading {
    width: 75%;
  }
}

.schedule .tab-pane {
  border: 1px solid #e3e3e3;
  transition: ease-in-out 0.2s;
}

.schedule .schedule-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}

.schedule .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}

.schedule .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}

.schedule .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

.schedule .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.schedule .schedule-item h4 span {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: normal;
  font-size: 16px;
}

.schedule .schedule-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
.venue .container-fluid {
  margin-bottom: 3px;
}

.venue .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.venue .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.venue .venue-info:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.venue .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--contrast-color);
}

@media (max-width: 574px) {
  .venue .venue-info h3 {
    font-size: 24px;
  }
}

.venue .venue-info p {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.venue .venue-gallery-container {
  padding-right: 12px;
}

.venue .venue-gallery {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.venue .venue-gallery img {
  transition: all ease-in-out 0.4s;
}

.venue .venue-gallery:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Hotels Section
--------------------------------------------------------------*/
.hotels .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.hotels .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.hotels .card .card-img img {
  transition: 0.3s ease-in-out;
}

.hotels .card h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
}

.hotels .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.hotels .card a:hover {
  color: var(--accent-color);
}

.hotels .card .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}

.hotels .card .stars i {
  color: #ffc107;
}

.hotels .card p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: italic;
  font-size: 15px;
}

.hotels .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: #0062cc;
  border: 1px solid #041543;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #041543;
  border: 1px solid #0062cc;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid #082169;
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
.sponsors .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.sponsors .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.sponsors .client-logo img {
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .sponsors .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.sponsors .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, black, transparent 85%);
  border-radius: 10px!important;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-family: 'lexend',sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: #082169;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 14px;
  overflow: hidden;
  color: black;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #006bdf;
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, #082169, transparent 97%);
  border-color: color-mix(in srgb, #0e1b4d, transparent 80%);
}

.faq .faq-container .faq-active h3 {
  font-family: 'lexend',sans-serif;
  color: #0e1b4d;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/
.buy-tickets .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  position: relative;
}

.buy-tickets .pricing-item h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
}

.buy-tickets .pricing-item h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.buy-tickets .pricing-item h4 sup {
  font-size: 28px;
}

.buy-tickets .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.buy-tickets .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: left;
  line-height: 20px;
}

.buy-tickets .pricing-item ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.buy-tickets .pricing-item ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.buy-tickets .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.buy-tickets .pricing-item ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.buy-tickets .pricing-item ul .na span {
  text-decoration: line-through;
}

.buy-tickets .buy-btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--heading-font);
}

.buy-tickets .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.buy-tickets .featured {
  background: var(--accent-color);
}

.buy-tickets .featured h3,
.buy-tickets .featured h4,
.buy-tickets .featured h4 span,
.buy-tickets .featured ul,
.buy-tickets .featured ul .na,
.buy-tickets .featured ul i,
.buy-tickets .featured ul .na i {
  color: var(--contrast-color);
}

.buy-tickets .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.buy-tickets .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: #092167;
  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, #092167, transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    padding: 0px 20px 0px 20px;
    /* padding: 50px; */
    font-size: 14px;
    text-align: center !important;
}


.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .contact-info-col .info-item {
  margin-bottom: 38px !important;
}

.contact-info-col {
  gap: 16px !important;
}

.contact-info-col .info-row {
  gap: 16px !important;
}
}

.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: #092167;
  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%);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .details h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.events .details .social {
  margin-bottom: 15px;
}

.events .details .social a {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.events .details .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.events .details .social a i {
  font-size: 16px;
  line-height: 0;
}

.events .details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Custom CSS Styles
--------------------------------------------------------------*/

.hero-content {
    height: 500px !important;
    justify-content: center !important;
  }

  @import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,700");

  
  
  
  
  .unique-service-box {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding-top: 10px;
  }
  
  .unique-service-box .unique-service-icon {
    color: #fff;
    background: #fff;
    font-size: 45px;
    line-height: 100px;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
  }
  
  .unique-service-box .unique-service-icon:before,
  .unique-service-box .unique-service-icon:after {
    content: "";
    background: linear-gradient(to right, #006ee4  50%, transparent 50%);
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    transition: all ease 0.8s;
  }
  
  .unique-service-box:hover .unique-service-icon:before,
  .unique-service-box:hover .unique-service-icon:after {
    transform: rotateZ(180deg);
  }
  
  .unique-service-box:hover .unique-service-icon {
    box-shadow: -5px 1px 5px rgba(0, 0, 0, 0.2);
  }
  
  .unique-service-box .unique-service-icon:after {
    background: #041543;
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .unique-service-box {
    border: 1px solid #e5e4e4;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 20px;
    background: #fff;
    position: relative;
    z-index: 1;
    height: 340px;
  }
  
  .unique-service-box .unique-title {
    color: #041543;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px;
  }
  
  .unique-service-box .unique-description {
    color: #000;
    font-weight: 300;
    font-family: 'lexend',sans-serif;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 0;
  }
  
  .unique-service-box.red .unique-service-icon:before {
    background: linear-gradient(to right, #006ee4 50%, transparent 50%);
  }
  
  .unique-service-box.red .unique-service-icon:after {
    background: #041543;
  }
  
  .unique-service-box.red .unique-title {
    color: #041543;
  }
  
  .unique-service-box.blue .unique-service-icon:before {
    background: linear-gradient(to right, #006ee4 50%, transparent 50%);
  }
  
  .unique-service-box.blue .unique-service-icon:after {
    background: #041543;
  }
  
  .unique-service-box.blue .unique-title {
    color: #041543;
  }
  
  .unique-service-box.green .unique-service-icon:before {
    background: linear-gradient(to right, #006ee4 50%, transparent 50%);
  }
  
  .unique-service-box.green .unique-service-icon:after {
    background: #041543;
  }
  
  .unique-service-box.green .unique-title {
    color: #041543;
  }
  
  /* Purple variant */
  .unique-service-box.purple .unique-service-icon:before {
    background: linear-gradient(to right, #8b5cf6 50%, transparent 50%);
  }
  
  .unique-service-box.purple .unique-service-icon:after {
    background: #6d28d9;
  }
  
  .unique-service-box.purple .unique-title {
    color: #6d28d9;
  }
  
  /* Orange variant */
  .unique-service-box.orange .unique-service-icon:before {
    background: linear-gradient(to right, #f97316 50%, transparent 50%);
  }
  
  .unique-service-box.orange .unique-service-icon:after {
    background: #ea580c;
  }
  
  .unique-service-box.orange .unique-title {
    color: #ea580c;
  }
  
  /* Teal variant */
  .unique-service-box.teal .unique-service-icon:before {
    background: linear-gradient(to right, #14b8a6 50%, transparent 50%);
  }
  
  .unique-service-box.teal .unique-service-icon:after {
    background: #0d9488;
  }
  
  .unique-service-box.teal .unique-title {
    color: #0d9488;
  }
  
  /* Pink variant */
  .unique-service-box.pink .unique-service-icon:before {
    background: linear-gradient(to right, #ec4899 50%, transparent 50%);
  }
  
  .unique-service-box.pink .unique-service-icon:after {
    background: #db2777;
  }
  
  .unique-service-box.pink .unique-title {
    color: #db2777;
  }
  
  @media only screen and (max-width: 990px) {
    .unique-service-box {
      margin: 0 0 30px;
    }
  }
  
p{
  font-family: 'lexend',sans-serif !important;
}
.tab_width {
  width: 100% !important;
}
li {
  font-family: 'lexend', sans-serif !important;
}
section#Dashboards {
  background-color: aliceblue;
}
/* ------------------------------------------
   Basic styling for tabs to mimic the 
   single-row design in your screenshot.
------------------------------------------ */
.approach-tabs .nav-link {
  border: none;
  background: transparent;
  color: #333;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color 0.3s ease;
}

.approach-tabs .nav-link.active {
  color: #EA4896; /* Pink color to highlight the active tab */
}

/* Optional hover effect */
.approach-tabs .nav-link:hover {
  color: #EA4896;
}

/* Icon size, spacing in the tab */
.approach-tabs .icon img {
  width: 244px;
  height: 100px;
  object-fit: cover;
  display: block;
}

/* ------------------------------------------
   Card-like styling for each tab content
------------------------------------------ */
.dashboard-card {
  background-color: #f7fbff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ------------------------------------------
   Titles, paragraphs, and button styling
------------------------------------------ */
.dashboard-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.dashboard-description {
  font-size: 1rem;
  color: #666;
}

/* Example pink button to match the design */
.btn-pink {
  background-color: #EA4896;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}

.btn-pink:hover {
  background-color: #d43b80;
  color: #fff;
}
.nav-tabs {
  border-bottom: none;
  margin-bottom: 0;
  justify-content: center;
}

/* Style each tab link like a pink/pill button */
.approach-tabs .nav-link {
  background: #f653a6; /* Pink color */
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  margin: 0 5px;
  border: none;
  font-weight: 500;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
}

/* Hover and Active states for tabs */
.approach-tabs .nav-link:hover,
.approach-tabs .nav-link.active {
  background: #ff4c98; /* Slightly darker pink on hover/active */
  color: #fff;
}

/* Card (board) styling */
.dashboard-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  /* Remove extra top margin to close gap with tabs */
  margin-top: 0; 
  margin-bottom: 2rem;
}
.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Smaller individual boards inside each tab */
.mini-board {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mini-board:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.mini-board h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.features {
  background-color: #eaf8fc;
  padding: 60px 0;
  text-align: center;
}

.section-title h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #092167;
}

.section-title p {
  font-size: 16px;
  font-weight: 400;
  color: #6c757d;
}

.feature-box {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  height: 320px;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box .icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0e1b4d;
}

.feature-box p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
}

.feature-box .btn-more {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #ffffff;
  background-color: #082169;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.feature-box .btn-more:hover {
  background-color: #1c4d76;
}
.features {
  background-color: #e3f8fd;
  padding: 50px 0;
  text-align: center;
}

.features-title {
  font-size: 16px;
  font-weight: 700;
  color: #008bcd;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.features-heading {
  font-size: 32px;
  font-weight: 900;
  color: #004080;
  margin-bottom: 40px;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
}

.feature-card .icon img {
  width: 80px;
  margin-bottom: 20px;
}

.feature-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #004080;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 20px;
}

.feature-card .btn-more {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  background-color: #008bcd;
  padding: 10px 20px;
  border-radius: 25px;
}

.feature-card .btn-more:hover {
  background-color: #005f8a;
}

.credit-link {
  color: #008bcd;
  text-decoration: underline;
}

.credit-link:hover {
  color: #005f8a;
}
/*HR DASHBOARD */
/* HR Dashboard Section */
.unique1-hr-dashboard-section {
  background: #fff;
  color: #ffffff;
  padding: 60px 20px;
}
 
.unique1-hr-dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
 
/* Left Content */
.unique1-hr-dashboard-content {
  flex: 1;
  min-width: 300px;
}
 
.unique1-hr-dashboard-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}
 
.unique1-hr-dashboard-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #06023b;
}
 
.unique1-cta-button {
  background: #bedeff;
  color: #0056a6;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
 
.unique1-cta-button:hover {
  background: #f1f1f1;
}
 
/* Right Image */
.unique1-hr-dashboard-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
 
.unique1-hr-dashboard-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

 
.about-area{
  padding: 50px 0px;
  overflow: hidden;
  background: url(../img/aboutus1.png) no-repeat center center / cover;
}

.about-content h3{
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: bold;
}
.about-content p{
  margin-bottom: 20px;
}
.about-items span{
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
  color: #082169;
  margin-top: 20px;
  margin-bottom: 5px;
}
.about-items p{
  font-size: 13px;
}
/* HR Dashboard Section Styles */
.hr-dashboard {
  padding: 60px 0;
  background: #f9f9f9;
  color: #333;
}
 
.hr-dashboard .section-title {
  text-align: center;
  margin-bottom: 40px;
}
 
.hr-dashboard .section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #004d99;
}
 
.hr-dashboard .section-title p {
  font-size: 1.2rem;
  color: #666;
}
 
.dashboard-item {
  margin-bottom: 40px;
}
 
.dashboard-card {
  background: #f7fbff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
 
.dashboard-card:hover {
  transform: translateY(-10px);
}
 
.dashboard-card .icon {
  font-size: 3rem;
  color: #004d99;
  margin-bottom: 15px;
}
 
.dashboard-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 10px;
  color: #0e1b4d!important ;
}
 
.dashboard-card p {
  font-size: 1rem;
  color: #0e1b4d;
  margin-bottom: 20px;
}
 
.action-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #004d99;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
}
 
.action-btn:hover {
  background: #003366;
}
 
@media (max-width: 767.98px) {
  .about-area {
      background: #f5f5f5;
  }
  .mbl-hide{
    display: none;
  }
  .dtp-hide{
    display: block !important;
  }
  .abt-middle-sec{
    gap: 30px;
  }
 
}
h2.about_2_section:after {
  /* background-color: #f3f3f3; */
  display: none !important;
}

.dtp-hide{
  display: none;
}
a,
    a:active,
    a:focus {
        color: #ffff;
        text-decoration: none;
        transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -webkit-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-duration: .2s;
        -ms-transition-duration: .2s;
        -moz-transition-duration: .2s;
        -webkit-transition-duration: .2s;
        -o-transition-duration: .2s;
    }
 
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    img {
    max-width: 100%;
    height: auto;
    }
    section {
        padding: 60px 0;
    /* min-height: 100vh;*/
    }
 
    .sec-title{
    position:relative;
    z-index: 1;
    margin-bottom:60px;
    }
 
    .sec-title .title{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #0e1b4d;
    font-weight: 500;
    margin-bottom: 15px;
    }
 
    .sec-title h2{
    position: relative;
    display: block;
    font-size:40px;
    color: #0e1b4d;
    font-weight: bold;
    padding-bottom:18px;
    }
 
    .sec-title h2:before{
    position:absolute;
    content:'';
    left:0px;
    bottom:0px;
    width:50px;
    height:3px;
    background-color:#d1d2d6;
    }
 
    .sec-title .text{
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    margin-top: 35px;
    }
 
    .sec-title.light h2{
    color: #ffffff;
    }
 
    .sec-title.text-center h2:before{
    left:50%;
    margin-left: -25px;
    }
 
    .list-style-one{
    position:relative;
    }
 
    .list-style-one li{
    position:relative;
    font-size:16px;
    line-height:26px;
    color: #222222;
    font-weight:400;
    padding-left:35px;
    margin-bottom: 12px;
    }
 
    .list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: #ff2222;
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
    }
 
    .list-style-one li a:hover{
    color: #44bce2;
    }
 
    .btn-style-one{
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: #092167;
    }
 
    .btn-style-one:hover{
    background-color: #0794c9;
    color: #ffffff;
    }
    .about-section{
    position: relative;
    padding: 120px 0 40px;
    }
 
    .about-section .sec-title{
    margin-bottom: 20px;
    margin-top: 3%;
    }
 
    .about-section .content-column{
    position: relative;
    margin-bottom: 50px;
    }
 
    .about-section .content-column .inner-column{
    position: relative;
    }
 
    .about-section .text{
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    color: #333;
    font-weight: 400;
    font-family: 'lexend',sans-serif;
    }
 
    .about-section .list-style-one{
    margin-bottom: 45px;
    }
 
    .about-section .btn-box{
    position: relative;
    }
 
    .about-section .btn-box a{
    padding: 15px 50px;
    }
 
    .about-section .image-column{
    position: relative;
    }
 
    .about-section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
    }
 
    .about-section .image-column .inner-column{
    position: relative;
    padding-left: 80px;
    padding-bottom: 0px;
    }
    .about-section .image-column .inner-column .author-desc{
    position: absolute;
    z-index: 1;
    background: #0e1b4d;
    padding: 10px 15px;
    left: 13%;
    top: 88%;
    bottom: -4%;
    width: calc(100% - 152px);
    border-radius: 50px;
    }
    @media (max-width: 500px) {
      .about-section .image-column .inner-column .author-desc{
        bottom: -18%;
        width: 70%;
        left: 26%;
    }
    .content-column.col-lg-6.col-md-12.col-sm-12.order-2{
      padding-top: 10%;
    }
    .sec-title h2{
      font-size: 30px;
    }
  }
    
    .about-section .image-column .inner-column .author-desc h2{
    font-family: 'lexend',sans-serif;
    font-size: 20px;
    letter-spacing:0.5px;
    text-align: center;
    color: #fff;
    margin: 0;
    }
    .about-section .image-column .inner-column .author-desc span{
    font-family: 'lexend',sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-align: center;
    color: #fff;
    display: block;
    font-weight: 400;
    }
    .about-section .image-column .inner-column:before{
    content: '';
    position: absolute;
    width: calc(50% + 80px);
    height: calc(100% + 160px);
    top: -80px;
    left: -3px;
    background: transparent;
    z-index: 0;
    border: 44px solid #092167;
    }
 
    .about-section .image-column .image-1{
    position: relative;
    }
    .about-section .image-column .image-2{
    position: absolute;
    left: 0;
    bottom: 0;
    }
 
    .about-section .image-column .image-2 img,
    .about-section .image-column .image-1 img{
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
    border-radius: 46px;
    }
 
    .about-section .image-column .video-link{
    position: absolute;
    left: 70px;
    top: 170px;
    }
 
    .about-section .image-column .video-link .link{
    position: relative;
    display: block;
    font-size: 22px;
    color: #191e34;
    font-weight: 400;
    text-align: center;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    }
 
    .about-section .image-column .video-link .link:hover{
    background-color: #191e34;
    color: #fff;
    }
 
    a, a:hover, a:focus, a:active {
        text-decoration: none;
        outline: none;
    }
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
 
    .section_all {
        position: relative;
        padding-top: 80px;
        padding-bottom: 80px;
        min-height: 100vh;
    }
    .section-title {
        font-weight: 700;
        text-transform: capitalize;
        letter-spacing: 1px;
    }
 
    .section-subtitle {
        letter-spacing: 0.4px;
        line-height: 28px;
        max-width: 550px;
    }
 
    .section-title-border {
        background-color: #000;
        height: 1 3px;
        width: 44px;
    }
 
    .section-title-border-white {
        background-color: #fff;
        height: 2px;
        width: 100px;
    }
    .text_custom {
        color: #00bd2a;
    }
 
    .about_icon i {
        font-size: 22px;
        height: 65px;
        width: 65px;
        line-height: 65px;
        display: inline-block;
        background: #fff;
        border-radius: 35px;
        color: #00bd2a;
        box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
    }
 
    .about_header_main .about_heading {
        max-width: 450px;
        font-size: 24px;
    }
 
    .about_icon span {
        position: relative;
        top: -10px;
    }
 
    .about_content_box_all {
        padding: 28px;
    }


   /* Dasboards content*/
  /* Section Styling */
/* Section Styling */
.unique10-solutions-section {
  padding: 40px 20px;
}

.unique10-container {
  width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.unique10-solutions-header {
  text-align: left;
}

.unique10-section-title {
  color: #082169;
  font-size: 14px;
  font-weight: bold;
}

.unique10-section-heading {
  font-size: 2rem;
  font-weight: bold;
  padding: 0px 0px 20px 0px;
  margin: 10px 0;
}

.unique10-solution-tabs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.unique10-tab-btn {
  padding: 10px 20px;
  border: 2px solid #082169;
  border-radius: 50px;
  background: none;
  cursor: pointer;
  font-weight: bold;
  color: #082169;
  transition: 0.3s;
}

.unique10-tab-btn.active,
.unique10-tab-btn:hover {
  background-color: #082169;
  color: #fff;
}

.unique10-solutions-content {
  display: flex;
  gap: 60px;
}

.unique10-content-left {
  width: 60% ;
}

.unique10-accordion-item {
  margin-bottom: 20px;
  border-top: solid 1px #E5E7EB;
  padding: 20px 0px 20px 0px;
}

.unique10-accordion-title {
  cursor: pointer;
  font-weight: bold;
  color: #041543;
  transition: color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.unique10-accordion-title:hover {
  color: #0056b3;
}

.unique10-accordion-content {
  display: none;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
  color: #333;
}

.arrow {
  font-size: 1.2rem;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.arrow.open {
  transform: rotate(180deg);
}

.unique10-content-right {
  flex: 1;
  height: 465px !important;
}

.unique10-content-right img {
  max-width: 100%;
  border-radius: 10px;
  }

.unique10-accordion-title{
  font-size: 22px !important;
  font-family: 'lexend',sans-serif;
  font-weight: 500;
}

/* Main Scroll Section */
.unique15-scroll-lock-section {
  position: relative;
  height: 400vh; /* Ensure enough height for testing */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9; /* Light background for visibility */
}

/* Content Wrapper */
.unique15-content-wrapper {
  position: fixed;
  width: 40%; /* 40% of the screen width */
  left: 5%; /* Position on the left side */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

/* Individual Content Items */
.unique15-content-item {
  display: none; /* Initially hidden */
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #333;
  padding: 20px;
  margin-bottom: 10px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.unique15-content-item.active {
  display: block; /* Only display the active content */
}

/* Screen Wrapper */
.unique15-screen-wrapper {
  position: fixed;
  width: 50%; /* 50% of the screen width */
  right: 5%; /* Position on the right side */
  height: 70%; /* Height relative to the viewport */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: none; /* Prevent user interaction */
}

/* Monitor Container */
.unique15-monitor {
  position: relative;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background: #ffffff;
  border: 5px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden; /* Ensure the image doesn't overflow */
}

/* Dynamic Image */
#unique15-dynamic-image {
  width: 100%; /* Fill the monitor */
  height: 100%; /* Fill the monitor */
  object-fit: cover; /* Maintain aspect ratio */
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0; /* Initial state hidden */
}

#unique15-dynamic-image.active {
  opacity: 1; /* Fade in the new image */
  transform: scale(1.05); /* Slight zoom effect for better visual transition */
}


.page-title.aos-init.aos-animate {
  height: 500px;
}

/* about us section 1 */
.unique21-features-section {
  background-color: #ffffff;
  padding: 30px;
}

.unique21-features-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: inherit;
}

.unique21-features-text {
  flex: 1;
  padding: 20px;
}

.unique21-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.unique21-feature-item:last-child {
  margin-bottom: 0;
}

.unique21-feature-icon {
  font-size: 30px;
  color: #003c9e;
  margin-right: 15px;
}

.unique21-feature-content h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.unique21-feature-content p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}

.unique21-features-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.unique21-features-image img {
  max-width: 100%;
  height: auto;
}


 /*video section CSS */
 .unique21-video-section {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  margin: 20px;
}

.unique21-video-header {
  margin-bottom: 20px;
}

.unique21-icon {
  margin-bottom: 10px;
}

.unique21-heading {
  font-size: 35px;
  font-weight: 600;
  color: #333;
  margin: 10px 0;
  padding-bottom: 20px;
}

.unique21-highlight {
  color: #1069a7;
  font-weight: bold;
}

.unique21-video-container {
  max-width: 1000px;
  margin: 0 auto;
}

.unique21-video-player {
  width: 100%;
  border-radius: 8px;
  border: 5px solid #082169; /* Outer border */
}

/* Unique22 Section Styles */
.unique22-container {
  text-align: center;
  padding: 20px;
  background-color: #d5f0ff;
  padding-bottom: 60px;
}

.unique22-heading {
  font-family: 'lexend,' sans-serif ;
  font-size: 40px;
  font-weight: bold;
  color: #0e1b4d;
  margin-bottom: 40px;
  margin-top: 30px;
}

.unique22-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.unique22-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  padding: 50px;
  text-align: center;
}

.unique22-vision {
  background-color: #082169; /* Blue background */
  color: #fff;
}

.unique22-mission {
  background-color: #0e1b4d; /* Red background */
  color: #fff;
}

.unique22-icon img {
  width: 50px;
  height: auto;
  margin-bottom: 15px;
}

.unique22-title {
  color:#fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: 'lexend',sans-serif;
}

.unique22-text {
  font-size: 16px;
  line-height: 1.5;
}

.unique22-vision {
  background-color: #0e1b4d; /* Default swapped color */
  transition: background-color 0.3s ease;
}

.unique22-mission {
  background-color: #0e1b4d; /* Default swapped color */
  transition: background-color 0.3s ease;
}

/* Swap colors on hover for .unique22-vision */
.unique22-vision:hover {
  background-color: #0e1b4d; /* Change to .unique22-mission's color */
}

.unique22-vision:hover ~ .unique22-mission {
  background-color: #0e1b4d; /* Change to .unique22-vision's color */
}

/* Swap colors on hover for .unique22-mission */
.unique22-mission:hover {
  background-color: #0e1b4d; /* Change to .unique22-vision's color */
}

.unique22-mission:hover ~ .unique22-vision {
  background-color: #0e1b4d; /* Change to .unique22-mission's color */
}

/* Hr Dashboard*-------------------------------------------------------------------------------------------------------------------------*/

.about-items img {
  width: 40%;
}
.about-img{
  border: 20px solid #082169;
  border-radius: 20px;
}
.col-sm-3 .col-6{
  padding: 0px !important;
}

.icon_image{
  width: 75px;
  height: auto;
}

/* Footer General Styles */
.footer {
  padding: 20px 0 !important;
}

.footer-top {
  padding: 40px 0 !important;
}

.footer-logo {
  height: 68px !important;
}

.footer-description {
  margin-bottom: 20px !important;
  font-family: 'Lexend', sans-serif !important;
}

.social-links {
  margin-top: 60px !important;
}

.social-links a {
  margin-right: 10px !important;
  font-size: 18px !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.social-links a:hover {
  color: #082169 !important;
}

/* Address Section */
.footer-address p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: 'Lexend', sans-serif !important;
}

/* Footer Links */
.footer-links ul {
  list-style: none !important;
  padding: 0 !important;
}

.footer-links ul li {
  margin-bottom: 10px !important;
}

.footer-links ul li a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Lexend', sans-serif !important;
}

.footer-links ul li a:hover {
  text-decoration: underline !important;
}

/* Footer Copyright */
.footer-copy {
  font-family: 'Lexend', sans-serif !important;
  color: #ffffff !important;
}

.dealkay {
  font-family: 'Lexend', sans-serif !important;
}

.dealkay a {
  color: #082169 !important;
  text-decoration: none !important;
}

.dealkay a:hover {
  text-decoration: underline !important;
}

.starter-section{
  padding: 0px !important;
}




/* Case-study------------------------------------------------------------------------------------------------------------------------ */
/* General Styles */
.unique23-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.unique23-container h2 {
  font-size: 2.2rem;
  color: #0067d6;
  margin-bottom: 1rem;
}

.unique23-container h3 {
  font-size: 1.8rem;
  color: #041543;
  margin-top: 2rem;
}

.unique23-container p, ul, li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.unique23-container ul {
  list-style: disc;
  padding-left: 2rem;
  margin-top: 1rem;
}

.unique23-container ul li {
  margin-bottom: 0.8rem;
}

.unique23-container strong {
  color: #0067d6;
}

/* Images */
.unique23-image {
  width: 30%;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Quote */
.unique23-quote {
  font-size: 1.4rem;
  font-style: italic;
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f4f4f4;
  border-left: 4px solid #0067d6;
  color: #041543;
}

.unique23-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  color: #333;
  text-align: right;
}

section.unique23-about-section{
  padding: 0px !important;
}
section.unique23-challenge-section{
  padding: 0px !important;
}
section.unique23-results-section{
  padding: 0px !important;

}

section.unique23-solution-section{
  padding: 0px;
}


/* Add css */

/* Unique styling for the 4T Promise section */
.unique29 {
  background: #0e1a4a;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.unique29-container {
  max-width: 1200px;
  margin: 0 auto;
}

.unique29-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #fff !important;
  text-transform: uppercase;
}

.unique29-title span {
  color: #082169;
}

.unique29-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.unique29-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.unique29-box h3 {
  font-size: 35px;
  margin-bottom: 10px;
  color: #082169;
}

.unique29-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #0e1a4a;
}

.unique29-box:hover {
  background-color: #fff;
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .unique29-title {
      font-size: 1.8rem;
  }

  .unique29-box {
      padding: 15px;
  }
}



/* Unique Styling for Founders Section */
.unique29-founders {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.unique29-founders-container {
  max-width: 1200px;
  margin: 0 auto;
}

.unique29-founders-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Founders Grid */
.unique29-founders-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Founder Card Design */
.unique29-founder {
  background-color: #ffff !important;
  backdrop-filter: blur(10px);
  padding: 30px 30px 20px 30px;
  border-radius: 15px;
  max-width: 400px;
  min-height: 650px;
  text-align: center;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

/* Founder Image */
.unique29-founder-img {
  width: 100%;
  height: 330px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.unique29-founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Founder Name */
.unique29-founder h3 {
  font-size: 22px;
  margin-bottom: 5px;
  margin-top: 15px;
  color: #082169;
}

span.founders_designation {
  display: block;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Founder Description */
.unique29-founder p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #0e1a4a;
  margin-bottom: 15px;
  text-align: left;
  flex-grow: 1;
}

/* Social Icons */
.unique29-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.unique29-socials a {
  color: #082169;
  font-size: 1.5rem;
  transition: 0.3s ease;
}

.unique29-socials a:hover {
  color: #0e1a4a;
  transform: scale(1.1);
  font-size: larger;
}

/* Hover Effect */
.unique29-founder:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.fa-brands, .fab{
  font-size: larger;
}


@media (max-width: 480px) {
  .unique29-founders-title {
      font-size: 1.8rem;
  }

  .unique29-founder {
      max-width: 90%;
  }
}

.testimonial-item-video {
  position: relative;
  background-image: url(/assets/img/gradient-background-with-different-shapes_23-2148800691.jpg) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px; /* Adjust padding as needed */
  border-radius: 15px;
  overflow: hidden;
}

/* Overlay Effect */
.testimonial-item-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); /* Adjust overlay opacity */
  z-index: 1;
}

/* Ensure the video stays on top of the overlay */
.testimonial-item-video .video-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  border: #082169 5px solid;
}

@media (max-width: 480px){
  .testimonial-responsive{
    display: block !important;
  }
  .testimonial-item{
    width: 100% !important;
  }
  .testimonial-item-video{
    width: 100% !important;
  }
}


/* ---------------Pricing Section -------------------
 
/* Ensure styles apply only inside the #pricing section */
#pricing {
  padding: 60px 0;
}
 
/* Page Title - Only affects pricing page */
#pricing .page-title {
  background-color: #092167;
  color: white;
  text-align: center;
  padding: 60px 0;
}
 
/* Pricing Toggle Buttons */
#pricing .pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
 
#pricing .pricing-toggle button {
  padding: 10px 15px;
  border: none;
  background: #ddd;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
 
#pricing .pricing-toggle button.active {
  background: #092167;
  color: white;
}
 
/* Pricing Cards */
#pricing .pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
 
#pricing .pricing-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 320px;
  transition: transform 0.2s ease-in-out;
}
 
#pricing .pricing-card:hover {
  transform: translateY(-5px);
}
 
#pricing .pricing-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
 
#pricing .price {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
 
#pricing .old-price {
  font-size: 16px;
  text-decoration: line-through;
  color: gray;
}
 
#pricing .features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
 
#pricing .features li {
  padding: 5px 0;
  color: #333;
}
 
#pricing .pricing-card button {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
 
#pricing .pricing-card button:hover {
  background: #218838;
}
 

/* ---------------Pricing Section -------------------
 
/* Ensure styles apply only inside the #pricing section */
.unique33-pricing-section {
  text-align: center;
  padding: 50px 20px;
  background: #f8f9fa;
}

.unique33-pricing-toggle {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  gap: 10px;
}

.unique33-toggle-btn {
  padding: 10px 20px;
  border: none;
  background: #ddd;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.unique33-toggle-btn.active {
  background: #082169;
  color: #fff;
}

.unique33-discount {
  color: red;
  font-weight: bold;
}

.unique33-pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.unique33-pricing-card {
  background: #fff;
  height: 670px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
  transition: all 0.3s ease;
}

.unique33-pricing-card.unique33-featured {
  border: 3px solid #082169;
  transform: scale(1.05);
}

.unique33-plan-title {
  font-size: 22px;
  font-weight: bold;
}

.unique33-badge {
  background: #082169;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 15px;
  margin-left: 10px;
}

.unique33-old-price {
  text-decoration: line-through;
  color: red;
  font-size: 14px;
}

.unique33-price {
  font-size: 24px;
  font-weight: bold;
  color: #28a745;
}

.unique33-features {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.unique33-features li {
  padding: 5px 0;
  font-size: 14px;
  text-align: left;
}

.unique33-buy-now {
  background: #082169;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  width: 100%;
  border-radius: 5px;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.unique33-buy-now:hover {
  background: #0056b3;
}

.unique33-featured-btn {
  background: #28a745;
}

.unique33-featured-btn:hover {
  background: #218838;
}

/* Responsive */
@media (max-width: 992px) {
  .unique33-pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .unique33-pricing-card {
    width: 100%;
    max-width: 400px;
  }
}

.unique33-buy-now a{
  color: #fff !important;
}


/*pricing */

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-left: 10px;
  vertical-align: middle;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #082169;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.unique33-currency-switch {
    display: flex
;
    align-items: center;
    justify-content: right;
    /* width: 258px; */
    padding-left: 5%;
    /* margin-left: 0%; */
}

.header i.bi:hover,
.footer i.bi:hover,
.scroll-top i.bi:hover,
.btn i.bi:hover,
.carousel-nav-btn i.bi:hover {
    color: #fff !important;
}

.faq .faq-container .faq-item .faq-toggle {
    color: #082169 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: #006bdf !important;
}

.faq .faq-container .faq-active .faq-toggle {
    color: var(--accent-color) !important;
}


/* Responsive Design */
@media screen and (max-width: 1024px) {
    .unique33-pricing-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}


.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 23px !important;
    padding-left: 52px;
    margin-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0px;
}

/* Blog */

.unique40-container {
    width: 1115px;
    margin: 0 auto;
}
/* Mobile view (480px and below) */
@media screen and (max-width: 480px) {
    .unique40-container {
        padding: 10px;
        width: 100% !important;
    }
}

/* Mobile view (480px and below) */
@media (max-width: 480px) {
  .trusted-clients {
    padding: 35px 10px !important;
    margin-bottom: 25px !important;
  }

  .trusted-title {
    font-size: 22px !important;
    margin-bottom: 20px !important;
    padding: 0 10px !important;
  }

  .logo-card {
    width: 115px !important;
    height: 90px !important;
    border-radius: 12px !important;
  }

  .logo-track {
    gap: 18px !important;
    animation: scrollLogos 25s linear infinite !important;
  }

  .logo-card img {
    width: 75% !important;
    height: 75% !important;
  }
}

/* Extra small mobile (375px and below) */
@media (max-width: 375px) {
  .trusted-clients {
    padding: 30px 10px !important;
  }

  .trusted-title {
    font-size: 20px !important;
    margin-bottom: 18px !important;
  }

  .logo-card {
    width: 105px !important;
    height: 82px !important;
  }

  .logo-track {
    gap: 15px !important;
  }
}

/* Mobile view (480px and below) */
@media (max-width: 480px) {
  /* Milestones section wrapper */
  section:has(.timeline-container) {
    padding: 30px 10px !important;
  }

  /* Section title adjustments */
  section:has(.timeline-container) h2 {
    font-size: 1.4rem !important;
    margin-bottom: 8px !important;
  }

  section:has(.timeline-container) > div > div:first-child p {
    font-size: 0.85rem !important;
    padding: 0 8px !important;
  }

  /* Timeline container */
  .timeline-container {
    padding: 0 5px !important;
  }

  .timeline-item {
    margin-bottom: 18px !important;
  }

  /* Milestone cards */
  .timeline-item > div > div {
    padding: 16px !important;
    border-radius: 10px !important;
  }

  .timeline-item h5 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }

  .timeline-item p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }

  /* Year badge */
  .timeline-item div[style*="background: linear-gradient"] {
    font-size: 0.85rem !important;
    padding: 4px 10px !important;
    margin-bottom: 8px !important;
  }
}

/* Extra small mobile (375px and below) */
@media (max-width: 375px) {
  /* Milestones section wrapper */
  section:has(.timeline-container) {
    padding: 28px 8px !important;
  }

  /* Section title */
  section:has(.timeline-container) h2 {
    font-size: 1.3rem !important;
  }

  section:has(.timeline-container) > div > div:first-child p {
    font-size: 0.82rem !important;
  }

  /* Milestone cards */
  .timeline-item > div > div {
    padding: 15px !important;
  }

  .timeline-item h5 {
    font-size: 0.95rem !important;
  }

  .timeline-item p {
    font-size: 0.8rem !important;
  }

  /* Year badge */
  .timeline-item div[style*="background: linear-gradient"] {
    font-size: 0.82rem !important;
    padding: 4px 9px !important;
  }
}

/* Mobile view (480px and below) */
@media (max-width: 480px) {
  /* ALL SECTION HEADINGS - Consistent smaller size */
  section h2,
  .about-section h2,
  .trusted-title,
  section:has(.timeline-container) h2,
  .unique22-heading,
  .unique29-founders-title {
    font-size: 1.4rem !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
  }

  /* ALL SECTION DESCRIPTIONS */
  section p:first-of-type,
  section > div > div:first-child > p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  /* ALL SECTIONS - Consistent padding */
  section,
  .about-section,
  .trusted-clients,
  section:has(.timeline-container),
  .unique22-container,
  .unique29-founders {
    padding: 35px 15px !important;
    margin-bottom: 35px !important;
  }

  /* ALL CARD ROWS - Consistent gap */
  .row.g-4 {
    gap: 15px !important;
    row-gap: 15px !important;
  }

  /* ALL CARDS - Consistent styling */
  .card,
  .stat-card,
  .service-card,
  .promise-card,
  .unique22-card,
  .timeline-item > div > div {
    margin-bottom: 15px !important;
    padding: 18px !important;
  }

  /* Card titles */
  .card h5,
  .card-title,
  .timeline-item h5,
  .unique22-title {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }

  /* Card text */
  .card p,
  .card-text,
  .timeline-item p,
  .unique22-text {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }
}

/* Extra small mobile (375px and below) */
@media (max-width: 375px) {
  /* ALL SECTION HEADINGS - Consistent smallest size */
  section h2,
  .about-section h2,
  .trusted-title,
  section:has(.timeline-container) h2,
  .unique22-heading,
  .unique29-founders-title {
    font-size: 1.25rem !important;
    margin-bottom: 10px !important;
  }

  /* ALL SECTION DESCRIPTIONS */
  section p:first-of-type,
  section > div > div:first-child > p {
    font-size: 0.8rem !important;
  }

  /* ALL SECTIONS - Consistent padding */
  section,
  .about-section,
  .trusted-clients,
  section:has(.timeline-container),
  .unique22-container,
  .unique29-founders {
    padding: 30px 12px !important;
    margin-bottom: 30px !important;
  }

  /* ALL CARD ROWS - Consistent gap */
  .row.g-4 {
    gap: 12px !important;
    row-gap: 12px !important;
  }

  /* ALL CARDS - Consistent styling */
  .card,
  .stat-card,
  .service-card,
  .promise-card,
  .unique22-card,
  .timeline-item > div > div {
    margin-bottom: 12px !important;
    padding: 15px !important;
  }

  /* Card titles */
  .card h5,
  .card-title,
  .timeline-item h5,
  .unique22-title {
    font-size: 0.95rem !important;
    margin-bottom: 6px !important;
  }

  /* Card text */
  .card p,
  .card-text,
  .timeline-item p,
  .unique22-text {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  .about-hero-section {
    padding: 100px 15px 60px 15px !important;
  }

  .about-hero-section h1 {
    font-size: 1.6rem !important;
    margin-bottom: 20px !important;
  }

  .about-hero-section .stat-card {
    height: auto !important;
    min-height: 100px !important;
    padding: 18px 12px !important;
  }

  .about-hero-section h3 {
    font-size: 1.3rem !important;
  }

  .about-hero-section p {
    font-size: 0.85rem !important;
  }
}


@media (max-width: 480px) {
  .unique22-card {
    padding: 20px !important;
  }

  .unique22-icon img {
    width: 50px !important;
  }
}


@media (max-width: 480px) {
  .unique29-founder {
    padding: 20px !important;
  }

  .unique29-founder h3 {
    font-size: 1.1rem !important;
  }

  .unique29-founder p {
    font-size: 0.85rem !important;
  }

  .founders_designation {
    font-size: 0.8rem !important;
  }

  .testimonial-text {
    font-size: 0.82rem !important;
  }

  .testimonial-item h4 {
    font-size: 1rem !important;
  }

  .testimonial-item h5 {
    font-size: 0.85rem !important;
  }

  /* Reset all section margins and paddings to be equal */
  section,
  .about-section,
  .trusted-clients,
  section:has(.timeline-container),
  .unique22-container,
  .unique29-founders,
  .about-hero-section,
  #testimonial,
  #contact {
    padding: 20px 12px !important;
    margin-bottom: 25px !important;
  }

  /* All section headings - equal size and spacing */
  section h2,
  .about-section h2,
  .trusted-title,
  section:has(.timeline-container) h2,
  .unique22-heading,
  .unique29-founders-title,
  .sec-title h2 {
    font-size: 1.4rem !important;
    margin-bottom: 15px !important;
    margin-top: 0 !important;
    line-height: 1.3 !important;
  }

  /* All section descriptions - equal spacing */
  section p:first-of-type,
  section > div > div:first-child > p,
  .sec-title + .text {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
   
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    text-align: left;
  }

  /* All card rows - equal gap */
  .row.g-4,
  .row {
    gap: 8px !important;
    row-gap: 8px !important;
    margin-bottom: 0 !important;
  }

  /* All cards - equal spacing */
  .card,
  .stat-card,
  .service-card,
  .promise-card,
  .unique22-card,
  .timeline-item > div > div,
  .unique29-founder {
    margin-bottom: 8px !important;
    padding: 12px !important;
    margin-top: 0 !important;
  }

  /* Remove extra margins */
  .col-lg-3,
  .col-md-6,
  .col-lg-6 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  /* Timeline items equal spacing */
  .timeline-item {
    margin-bottom: 8px !important;
    margin-top: 0 !important;
  }

  /* Content column spacing */
  .content-column,
  .image-column {
    margin-bottom: 8px !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
  }

  /* Card titles equal spacing */
  .card h5,
  .card-title,
  .timeline-item h5,
  .unique22-title {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
  }

  /* Card text equal spacing */
  .card p,
  .card-text,
  .timeline-item p,
  .unique22-text {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
}

/* Extra small mobile (375px and below) */
@media (max-width: 375px) {
  /* Reset all section margins and paddings to be equal */
  section,
  .about-section,
  .trusted-clients,
  section:has(.timeline-container),
  .unique22-container,
  .unique29-founders,
  .about-hero-section,
  #testimonial,
  #contact {
    padding: 18px 10px !important;
    margin-bottom: 10px !important;
  }

  /* All section headings - equal size and spacing */
  section h2,
  .about-section h2,
  .trusted-title,
  section:has(.timeline-container) h2,
  .unique22-heading,
  .unique29-founders-title,
  .sec-title h2 {
    font-size: 1.25rem !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
  }

  /* All section descriptions - equal spacing */
  section p:first-of-type,
  section > div > div:first-child > p,
  .sec-title + .text {
    font-size: 0.8rem !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    text-align: center;
  }

  /* All card rows - equal gap */
  .row.g-4,
  .row {
    gap: 2px !important;
    row-gap: 2px !important;
    margin-bottom: 0 !important;
  }

  /* All cards - equal spacing */
  .card,
  .stat-card,
  .service-card,
  .promise-card,
  .unique22-card,
  .timeline-item > div > div,
  .unique29-founder {
    margin-bottom: 2px !important;
    padding: 10px !important;
    margin-top: 0 !important;
  }

  /* Remove extra margins */
  .col-lg-3,
  .col-md-6,
  .col-lg-6 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  /* Timeline items equal spacing */
  .timeline-item {
    margin-bottom: 2px !important;
    margin-top: 0 !important;
  }

  /* Content column spacing */
  .content-column,
  .image-column {
    margin-bottom: 2px !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
  }

  /* Card titles equal spacing */
  .card h5,
  .card-title,
  .timeline-item h5,
  .unique22-title {
    font-size: 0.95rem !important;
    margin-bottom: 4px !important;
    margin-top: 0 !important;
  }

  /* Card text equal spacing */
  .card p,
  .card-text,
  .timeline-item p,
  .unique22-text {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 480px) {
  /* Remove all extra top margins */
  .btn-box,
  button,
  .theme-btn {
    margin-top: 12px !important;
  }
  
   #requestDemoBtn {
    margin-top: 0px !important;
    padding: 12.5px 20px !important;
  }

  .about-hero-section h1 {
    margin-bottom: 12px !important;
  }

  .about-hero-section p {
    margin-bottom: 12px !important;
  }

  .unique22-content {
    gap: 12px !important;
  }

  .unique29-founders-content {
    gap: 12px !important;
  }

  .testimonial-responsive {
    gap: 12px !important;
  }
}

@media (max-width: 375px) {
  .btn-box,
  button,
  .theme-btn {
    margin-top: 10px !important;
  }

  .about-hero-section h1 {
    margin-bottom: 10px !important;
  }

  .about-hero-section p {
    margin-bottom: 10px !important;
  }

  .unique22-content {
    gap: 10px !important;
  }

  .unique29-founders-content {
    gap: 10px !important;
  }

  .testimonial-responsive {
    gap: 10px !important;
  }
}

@media (max-width: 480px) {
  .about-hero-section {
    padding: 100px 12px 25px 12px !important;
  }

  .about-hero-section h1 {
    font-size: 1.4rem !important;
    margin-bottom: 12px !important;
  }

  .about-hero-section > .container > div:first-child p {
    font-size: 0.85rem !important;
    margin-bottom: 15px !important;
    padding: 0 8px !important;
  }

  .about-hero-section .row.g-4 {
    gap: 8px !important;
    row-gap: 8px !important;
  }

  .about-hero-section .stat-card {
    min-height: 100px !important;
    padding: 14px 12px !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .about-hero-section .stat-card h3 {
    font-size: 1.3rem !important;
    margin-bottom: 6px !important;
  }

  .about-hero-section .stat-card p {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 375px) {
  .about-hero-section {
    padding: 90px 10px 20px 10px !important;
  }

  .about-hero-section h1 {
    font-size: 1.25rem !important;
    margin-bottom: 10px !important;
  }

  .about-hero-section > .container > div:first-child p {
    font-size: 0.8rem !important;
    margin-bottom: 12px !important;
    padding: 0 6px !important;
  }

  .about-hero-section .row.g-4 {
    gap: 6px !important;
    row-gap: 6px !important;
  }

  .about-hero-section .stat-card {
    min-height: 90px !important;
    padding: 10px 10px !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .about-hero-section .stat-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 5px !important;
  }

  .about-hero-section .stat-card p {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  /* Adjust blue border height for mobile */
  .about-section .image-column .inner-column:before {
    height: calc(100% + 100px) !important;
    top: -50px !important;
  }

  .about-section .image-column .inner-column .author-desc {
    padding: 14px 10px !important;
  }

  .about-section .image-column .inner-column .author-desc h2 {
    font-size: 1rem !important;
    margin-bottom: 3px !important;
  }

  .about-section .image-column .inner-column .author-desc span {
    font-size: 0.7rem !important;
    letter-spacing: 0.1px !important;
  }
}

@media (max-width: 375px) {
  /* Adjust blue border height for small screens */
  .about-section .image-column .inner-column:before {
    height: calc(100% + 80px) !important;
    top: -40px !important;
  }

  .about-section .image-column .inner-column .author-desc {
    padding: 5px 8px !important;
  }

  .about-section .image-column .inner-column .author-desc h2 {
    font-size: 0.75rem !important;
  }

  .about-section .image-column .inner-column .author-desc span {
    font-size: 0.55rem !important;
  }
}

@media (max-width: 480px) {
  /* About section heading */
  .about-section .sec-title h2,
  .about-section .content-column h2 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }

  /* About section paragraph text */
  .about-section .text,
  .about-section .content-column p,
  .about-section .inner-column .text {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
  }
}

@media (max-width: 375px) {
  /* About section heading */
  .about-section .sec-title h2,
  .about-section .content-column h2 {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
  }

  /* About section paragraph text */
  .about-section .text,
  .about-section .content-column p,
  .about-section .inner-column .text {
    font-size: 0.7rem !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
  }
}


@media (max-width: 480px) {
  .trusted-title {
    font-size: 25px !important;
  }

  /* Increase logo card size for mobile */
  .logo-card {
    width: 160px !important;
    height: 120px !important;
  }

  .logo-card img {
    width: 80% !important;
    height: 80% !important;
  }
}

@media (max-width: 375px) {
  .trusted-title {
    font-size: 28px !important;
  }

  /* Increase logo card size for small screens */
  .logo-card {
    width: 140px !important;
    height: 110px !important;
  }

  .logo-card img {
    width: 80% !important;
    height: 80% !important;
  }
}

/* ============================================
   Reduce margin-bottom for text-center mb-5 on Mobile
   ============================================ */

.why-esops-section .text-center.mb-5 {
  margin-bottom: 1rem !important;
}


@media (max-width: 480px) {
  .text-center.mb-5 {
    margin-bottom: 2.5rem !important;
  }
}

@media (max-width: 375px) {
  .text-center.mb-5 {
    margin-bottom: 2.5rem !important;
  }
}


@media (max-width: 480px) {
  #contact .row.gy-4 {
    margin-bottom: 25px !important;
  }

  #contact .row.gy-4.mt-1 {
    margin-top: 25px !important;
  }
}

@media (max-width: 375px) {
  #contact .row.gy-4 {
    margin-bottom: 30px !important;
  }

  #contact .row.gy-4.mt-1 {
    margin-top: 30px !important;
  }
}

/* Hero Section CTA Buttons */
.hero-cta-buttons .btn {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-cta-buttons .btn-primary {
  background: #ffffff;
  border: 2px solid #ffffff;
  color: #082169;
  font-weight: 600;
  font-size: medium;
}

.hero-cta-buttons .btn-primary:hover {
  background: #ffffff;
  color: #082169;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

.hero-cta-buttons .btn-primary i,
.hero-cta-buttons .btn-primary:hover i {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}

.hero-cta-buttons .btn-outline-light {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: medium;
}

.hero-cta-buttons .btn-outline-light:hover {
  background: #ffffff;
  color: #082169;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.hero-cta-buttons .btn-outline-light i,
.hero-cta-buttons .btn-outline-light:hover i {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}

/* Trust Indicators */
.trust-indicators {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  color: #ffffff;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(74, 255, 74, 0.2);
}

.trust-card p {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

/* Why ESOPs Matter Section */
.why-esops-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.why-esops-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23082169" opacity="0.05"/></svg>');
  pointer-events: none;
}

.why-esops-section .container {
  position: relative;
  z-index: 1;
}

.why-esops-heading {
  font-family: 'Lexend', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #082169;
  line-height: 1.3;
  margin-bottom: 20px;
}

.why-esops-benefits {
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  border: 2px solid transparent;
  height: 100%;
  min-height: 250px;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(8, 33, 105, 0.2);
  border-top-color: #082169;
  border-color: #082169;
}

/* Prevent CTA card icon from being affected by hover */
.benefit-cta-card:hover .benefit-icon {
  background: #ffffff !important;
  color: #082169 !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #082169, #1069a7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
}

.benefit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.benefit-content h4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #082169;
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-content p {
  font-family: 'Lexend', sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.7;
  flex: 1;
}

.benefit-cta-card {
  background: linear-gradient(135deg, #082169, #1069a7);
  border-top-color: #082169;
  border-color: #082169;
}

.benefit-cta-card .benefit-icon {
  background: #ffffff !important;
  color: #082169 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
  pointer-events: none !important;
}

.benefit-cta-card:hover .benefit-icon {
  background: #ffffff !important;
  color: #082169 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
  pointer-events: none !important;
}

.benefit-cta-card .benefit-icon i {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}

.benefit-cta-card:hover .benefit-icon i {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}

.benefit-cta-card .benefit-content h4,
.benefit-cta-card .benefit-content p {
  color: #ffffff;
}

.benefit-cta-card .btn-primary {
  background: #ffffff;
  border: none;
  color: #082169;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-cta-card .btn-primary:hover {
  background: #f0f0f0;
  color: #082169;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .why-esops-section {
    padding: 40px 0;
  }
  
  .why-esops-heading {
    font-size: 2.2rem;
  }
  
  .benefit-item {
    min-height: 182px;
  }
}

@media (max-width: 576px) {
  .why-esops-heading {
    font-size: 1.5rem;
  }
  
  .benefit-item {
    padding: 20px 15px;
    min-height: auto;
  }
  
  .benefit-icon {
    width: 65px;
    height: 65px;
    font-size: 30px;
  }
  
  .benefit-content h4 {
    min-height: auto;
  }
}

/* What We Offer Section */
.what-we-offer-section {
  background: #ffffff;
  padding: 40px 0;
  position: relative;
}

.offer-heading {
  font-family: 'Lexend', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #082169;
  line-height: 1.3;
  margin-bottom: 15px;
}

.offer-subheading {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0;
}

.offer-pillar {
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 20px;
  padding: 20px 18px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  /* border-left: 5px solid transparent; */
}

.offer-pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(8, 33, 105, 0.15);
  border-left-color: #082169;
  border-left-width: 3px;
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #082169, #1069a7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #ffffff;
  font-size: 30px;
}

.pillar-title {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #082169;
  margin-bottom: 8px;
  line-height: 1.3;
}

.pillar-description {
  font-family: 'Lexend', sans-serif;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 15px;
}

.pillar-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex: 1;
}

.pillar-features li {
  font-family: 'Lexend', sans-serif;
  font-size: 0.85rem;
  color: #555;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-features li i {
  color: #28a745 !important;
  font-size: 0.9rem;
  flex-shrink: 0;
  opacity: 1 !important;
  visibility: visible !important;
}

.offer-pillar:hover .pillar-features li i {
  color: #28a745 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.pillar-cta {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(135deg, #082169, #1069a7);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.pillar-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(8, 33, 105, 0.3);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .what-we-offer-section {
    padding: 40px 0;
  }
  
  .offer-heading {
    font-size: 2.2rem;
  }
  
  .offer-subheading {
    font-size: 1.1rem;
  }
}


@media (max-width: 576px) {
  .offer-heading {
    font-size: 1.5rem;
  }
  
  .offer-pillar {
    padding: 22px 16px;
  }

  .pillar-title {
    font-size: 1.1rem;
  }
  
  .pillar-description {
    font-size: 0.88rem;
  }
  
  .pillar-features li {
    font-size: 0.85rem;
  }
}

/* Features Carousel Styles */
.features-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 20px 20px;
  overflow: visible;
}

.features-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.features-carousel-track {
  display: flex;
  gap: 25px;
  width: max-content;
  /*animation: scrollFeatures 40s linear infinite;*/
   align-items: stretch;
}

/* Pause animation on hover */
.features-carousel-track:hover {
  animation-play-state: paused;
}

.carousel-card {
  flex: 0 0 280px;
  min-width: 280px;
  flex-shrink: 0;
}

.carousel-card .unique-service-box {
  margin: 0;
  height: 100%;
}

/* Arrow buttons */
.carousel-nav-btn {
  display: flex;               /* Override the display:none */
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 1000;
  background: #082169;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.carousel-nav-btn.prev { left: 0px; }
.carousel-nav-btn.next { right: 0px; }

.carousel-nav-btn:hover {
  background: #041543;
}

/* Animation for continuous scroll */
@keyframes scrollFeatures {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .carousel-card {
    flex: 0 0 260px;
    min-width: 260px;
  }
}

@media (max-width: 576px) {
  .carousel-card {
    flex: 0 0 220px;
    min-width: 220px;
  }
}

/* Built for All Teams Section */
.built-for-teams-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 0;
  position: relative;
}

.teams-heading {
  font-family: 'Lexend', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #082169;
  line-height: 1.3;
  margin-bottom: 8px;
}

.teams-subheading {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0;
}

.team-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(8, 33, 105, 0.15);
  border-color: #082169;
}

.team-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #082169, #1069a7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: 35px;
}

.team-title {
  font-family: 'Lexend', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #082169;
  margin-bottom: 18px;
  line-height: 1.3;
}

.team-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex: 1;
}

.team-features li {
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  color: #555;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.team-features li i {
  color: #28a745;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .built-for-teams-section {
    padding: 40px 0;
  }
  
  .teams-heading {
    font-size: 2.2rem;
  }
  
  .teams-subheading {
    font-size: 1.1rem;
  }
  
  .team-card {
    margin-bottom: 20px;
  }
}


@media (max-width: 576px) {
  .teams-heading {
    font-size: 1.5rem;
  }
  
  .team-card {
    padding: 22px 16px;
  }
  
  .team-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  
  .team-title {
    font-size: 1.1rem;
  }
  
  .team-features li {
    font-size: 0.85rem;
  }
}

/* Trusted Expertise Section */
.trusted-expertise-section {
  background: #ffffff;
  padding: 40px 0;
  position: relative;
}

.expertise-heading {
  font-family: 'Lexend', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #082169;
  line-height: 1.3;
  margin-bottom: 25px;
  text-align: center;
}

.expertise-description {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
  text-align: center;
}

.promise-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #082169;
}

.promise-title {
  font-family: 'Lexend', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #082169;
  margin-bottom: 25px;
  text-align: center;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.promise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(8, 33, 105, 0.15);
}

.promise-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #082169, #1069a7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
}

.promise-content h4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #082169;
  margin-bottom: 5px;
}

.promise-content p {
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.expertise-footer {
  font-family: 'Lexend', sans-serif;
  font-size: 1.05rem;
  color: #082169;
  font-weight: 600;
  line-height: 1.7;
  font-style: italic;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .trusted-expertise-section {
    padding: 40px 0;
  }
  
  .expertise-heading {
    font-size: 2.2rem;
  }
}


@media (max-width: 576px) {
  .expertise-heading {
    font-size: 1.5rem;
  }
  
  .expertise-description {
    font-size: 0.95rem;
  }
  
  .promise-section {
    padding: 20px 15px;
  }
  
  .promise-title {
    font-size: 1.3rem;
  }
  
  .promise-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* How It Works Section */
.how-it-works-section {
  background: #f8f9fa;
  padding: 40px 0;
  position: relative;
}

.works-heading {
  font-family: 'Lexend', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #082169;
  line-height: 1.3;
  margin-bottom: 15px;
}

.works-subheading {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0;
}

.workflow-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 50px;
  padding: 0 30px;
}

.workflow-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, #1069a7, #1069a7);
  z-index: 0;
}

.workflow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 200px;
}

.workflow-circle {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 4px solid #1069a7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1069a7;
  font-size: 25px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(16, 105, 167, 0.2);
  transition: all 0.3s ease;
}

.workflow-step:hover .workflow-circle {
  background: #1069a7;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(16, 105, 167, 0.4);
}

.workflow-title {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #082169;
  margin-bottom: 12px;
  line-height: 1.3;
}

.workflow-description {
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .workflow-circle {
    width: 80px;
    height: 80px;
    font-size: 25px;
    font-size: 42px;
  }
  
  .workflow-timeline::before {
    top: 50px;
  }
  
  .workflow-step {
    max-width: 180px;
  }
}

@media (max-width: 991px) {
  .how-it-works-section {
    padding: 40px 0;
  }
  
  .works-heading {
    font-size: 2.2rem;
  }
  
  .works-subheading {
    font-size: 1.1rem;
  }
  
  .workflow-timeline {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
  }
  
  .workflow-timeline::before {
    display: none;
  }
  
  .workflow-step {
    max-width: 400px;
  }
  
  .workflow-circle {
    width: 80px;
    height: 80px;
    font-size: 25px;
  }
}


@media (max-width: 576px) {
  .works-heading {
    font-size: 1.5rem;
  }
  
  .workflow-circle {
    width: 80px;
    height: 80px;
    font-size: 25px;
  }
  
  .workflow-title {
    font-size: 1.05rem;
  }
  
  .workflow-description {
    font-size: 0.85rem;
  }
}

/* Testimonial Section Star Ratings */
.star-rating {
  font-size: 2rem;
  color: #ffd700;
  letter-spacing: 5px;
}

.star-rating i {
  text-shadow: 0 2px 5px rgba(255, 215, 0, 0.5);
}

.testimonial-stars {
  font-size: 1.5rem;
  color: #ffd700;
  letter-spacing: 3px;
}

.testimonial-stars i {
  text-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
}

/* Latest Blogs Section */
.latest-blogs-section {
  background: #ffffff;
  padding: 60px 0;
}

.blogs-heading {
  font-family: 'Lexend', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #082169;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blogs-subheading {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.blog-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(8, 33, 105, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(8, 33, 105, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #082169;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.blog-card-date {
  font-family: 'Lexend', sans-serif;
  font-size: 0.85rem;
  color:#082169;
}

.blog-card-link {
  font-family: 'Lexend', sans-serif;
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  

  /* Button styles */
  background-color: #1069a7;
  padding: 8px 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 8px rgba(16, 105, 167, 0.3);
}

.blog-card-date i {
  pointer-events: none;
}

.blog-card-link:hover {
  background-color: #092167;
  color: #ffffff;
  box-shadow: 0 5px 14px rgba(9, 33, 103, 0.4);
  transform: translateY(-2px);
}

.blog-card-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.blog-card-link:hover i {
  transform: translateX(4px);
}

/* Lead Capture Form Section */
.lead-capture-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 50px 0;
  position: relative;
}

.lead-capture-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(8, 33, 105, 0.1);
  text-align: center;
}

.lead-capture-heading {
  font-family: 'Lexend', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #082169;
  margin-bottom: 15px;
  line-height: 1.3;
}

.lead-capture-subheading {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.lead-capture-form {
  margin-top: 30px;
}

.lead-input {
  font-family: 'Lexend', sans-serif;
  padding: 12px 18px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.lead-input:focus {
  border-color: #082169;
  box-shadow: 0 0 0 0.2rem rgba(8, 33, 105, 0.15);
  outline: none;
}

.lead-input::placeholder {
  color: #999;
}

.btn-lead-submit {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #082169, #1069a7);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(8, 33, 105, 0.2);
  margin-top: 10px;
}

.btn-lead-submit:hover {
  background: linear-gradient(135deg, #1069a7, #082169);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(8, 33, 105, 0.3);
}


@media (max-width: 576px) {
  .lead-capture-heading {
    font-size: 1.5rem;
  }
  
  .lead-capture-subheading {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .btn-lead-submit {
    width: 100%;
    padding: 12px 20px;
  }
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #082169, #1069a7);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(8, 33, 105, 0.2);
}

/* Features Section Heading - Match Other Section Styles */
#features .section-title h2 {
  color: #082169 !important;
  font-family: 'Lexend', sans-serif !important;
  font-size: 2.2rem;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  background: none !important;
}

#features .section-title h2:after {
  display: none !important;
}

#features .section-title p {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  color: #666;
}

.lead-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

.required-star {
  color: #e53935;
  margin-left: 2px;
}

.lead-capture-form .lead-label {
  text-align: left;
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .hero {
    min-height: 100vh;
    padding: 120px 0 60px 0;
  }

  .hero .hero-h12-content {
    font-size: 48px !important;
    line-height: 1.2;
    margin-bottom: 1px;
  }

  .hero p {
    font-size: 22px !important;
    line-height: 1.6;
    margin-bottom: 1px;
  }

  .hero-cta-buttons {
    gap: 20px !important;
  }

  .hero-cta-buttons .btn {
    padding: 16px 40px !important;
    font-size: 18px !important;
  }

  .trust-card {
    height: 140px;
    padding: 20px !important;
  }

  .trust-card i {
    font-size: 2.5rem !important;
  }

  .trust-card p {
    font-size: 16px !important;
  }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero {
    min-height: 100vh;
    padding: 100px 0 50px 0;
  }

  .hero .hero-h12-content {
    font-size: 42px !important;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 20px !important;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .hero-cta-buttons {
    gap: 18px !important;
  }

  .hero-cta-buttons .btn {
    padding: 14px 35px !important;
    font-size: 17px !important;
  }

  .trust-card {
    height: 130px;
    padding: 18px !important;
  }

  .trust-card i {
    font-size: 2.2rem !important;
  }

  .trust-card p {
    font-size: 15px !important;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero {
    min-height: 90vh;
    padding: 90px 0 40px 0;
  }

  .hero .hero-h12-content {
    font-size: 36px !important;
    line-height: 1.3;
    margin-bottom: 18px;
  }

  .hero p {
    font-size: 18px !important;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .hero-cta-buttons {
    gap: 16px !important;
  }

  .hero-cta-buttons .btn {
    padding: 13px 30px !important;
    font-size: 16px !important;
  }

  .trust-indicators {
    margin-top: 35px !important;
  }

  .trust-card {
    height: 120px;
    padding: 16px !important;
  }

  .trust-card i {
    font-size: 2rem !important;
  }

  .trust-card p {
    font-size: 14px !important;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero {
    min-height: 85vh;
    padding: 80px 0 40px 0;
  }

  .hero .hero-h12-content {
    font-size: 32px !important;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 17px !important;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .hero-cta-buttons {
    gap: 14px !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-cta-buttons .btn {
    padding: 12px 28px !important;
    font-size: 15px !important;
    flex: 0 1 auto;
  }

  .trust-indicators {
    margin-top: 32px !important;
  }

  .trust-card {
    height: 115px;
    padding: 14px 10px !important;
  }

  .trust-card i {
    font-size: 1.8rem !important;
  }

  .trust-card p {
    font-size: 13px !important;
  }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 60px 0 30px 0;
  }

  .hero .container {
    padding: 20px 15px;
  }

  .hero .hero-h12-content {
    font-size: 26px !important;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 15px !important;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .hero-cta-buttons {
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 20px !important;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    padding: 13px 24px !important;
    font-size: 15px !important;
  }

  .trust-indicators {
    margin-top: 30px !important;
    padding: 0 10px;
  }

  .trust-indicators .row {
    gap: 10px !important;
  }

  .trust-card {
    height: auto;
    min-height: 100px;
    padding: 12px 10px !important;
  }

  .trust-card i {
    font-size: 1.6rem !important;
    margin-bottom: 8px !important;
  }

  .trust-card p {
    font-size: 12px !important;
    line-height: 1.4;
  }
}

/* Mobile Medium (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
  .hero {
    min-height: auto;
    padding: 55px 0 28px 0;
  }

  .hero .container {
    padding: 18px 15px;
  }

  .hero .hero-h12-content {
    font-size: 23px !important;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 14.5px !important;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .hero-cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    padding: 13px 22px !important;
    font-size: 14.5px !important;
  }

  .hero-cta-buttons .btn i {
    font-size: 15px !important;
  }

  .trust-indicators {
    margin-top: 28px !important;
    padding: 0 10px;
  }

  .trust-indicators .row {
    gap: 8px !important;
  }

  .trust-indicators .col-md-4,
  .trust-indicators .col-sm-6 {
    flex: 1 1 30% !important;
    max-width: 32% !important;
  }

  .trust-card {
    height: auto;
    min-height: 95px;
    padding: 10px 8px !important;
  }

  .trust-card i {
    font-size: 1.4rem !important;
    margin-bottom: 6px !important;
  }

  .trust-card p {
    font-size: 11px !important;
    line-height: 1.35;
  }
}

/* iPhone XR / 11 and similar (414px) */
@media (min-width: 400px) and (max-width: 430px) {
  .hero {
    padding: 50px 0 25px 0;
  }

  .hero .container {
    padding: 16px 12px;
  }

  .hero .hero-h12-content {
    font-size: 22px !important;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 14px !important;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .hero-cta-buttons {
    margin-top: 16px !important;
    gap: 10px !important;
  }

  .hero-cta-buttons .btn {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }

  .trust-indicators {
    margin-top: 26px !important;
  }

  .trust-card {
    min-height: 92px;
    padding: 10px 8px !important;
  }

  .trust-card i {
    font-size: 1.35rem !important;
  }

  .trust-card p {
    font-size: 11px !important;
  }
}

/* Mobile Small (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
  .hero {
    min-height: auto;
    padding: 50px 0 25px 0;
  }

  .hero .container {
    padding: 15px 10px;
  }

  .hero .hero-h12-content {
    font-size: 22px !important;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 14px !important;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .hero-cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    padding: 12px 18px !important;
    font-size: 14px !important;
  }

  .hero-cta-buttons .btn i {
    font-size: 14px !important;
    margin-right: 6px !important;
  }

  .trust-indicators {
    margin-top: 25px !important;
    padding: 0 5px;
  }

  .trust-indicators .row {
    gap: 6px !important;
  }

  .trust-indicators .col-md-4,
  .trust-indicators .col-sm-6 {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 8px;
  }

  .trust-card {
    height: auto;
    min-height: 85px;
    padding: 12px 10px !important;
  }

  .trust-card i {
    font-size: 1.3rem !important;
    margin-bottom: 6px !important;
  }

  .trust-card p {
    font-size: 11px !important;
    line-height: 1.3;
  }
}

/* Mobile Extra Small (max 374px) */
@media (max-width: 374px) {
  .hero {
    min-height: auto;
    padding: 45px 0 20px 0;
  }

  .hero .container {
    padding: 12px 8px;
  }

  .hero .hero-h12-content {
    font-size: 20px !important;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 13px !important;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  .hero-cta-buttons {
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    padding: 11px 16px !important;
    font-size: 13px !important;
  }

  .hero-cta-buttons .btn i {
    font-size: 13px !important;
  }

  .trust-indicators {
    margin-top: 22px !important;
    padding: 0 5px;
  }

  .trust-indicators .row {
    gap: 6px !important;
  }

  .trust-indicators .col-md-4,
  .trust-indicators .col-sm-6 {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 6px;
  }

  .trust-card {
    height: auto;
    min-height: 80px;
    padding: 10px 8px !important;
  }

  .trust-card i {
    font-size: 1.2rem !important;
    margin-bottom: 5px !important;
  }

  .trust-card p {
    font-size: 10.5px !important;
    line-height: 1.3;
  }
}


@media (max-width: 1024px) {
  /* Header adjustments */
  .header .logo img {
    max-height: 55px;
    margin-right: 40px;
  }

  /* Hero section */
  .hero h2 {
    font-size: 36px;
  }

  .hero p {
    font-size: 20px;
  }

  /* Section titles */
  .section-title h2 {
    font-size: 28px;
  }

  /* Feature cards */
  .unique-service-box {
    height: auto;
    min-height: 320px;
    padding: 30px 15px;
  }

  /* Dashboard cards */
  .dashboard-card {
    padding: 20px;
  }

  /* Pricing cards */
  .pricing-card {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================
   SMALL MOBILE RESPONSIVE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  /* Global */
  body {
    font-size: 13px;
  }

  section,
  .section {
    padding: 30px 0;
  }

  /* Header */
  .header {
    padding: 10px 0;
  }

  .header .logo img {
    max-height: 45px;
    margin-right: 10px;
  }

  .header .cta-btn {
    font-size: 11px;
    padding: 5px 12px;
    margin: 0 0 0 10px;
  }

  /* Hero */
  .hero {
    padding: 60px 0 0 0;
    min-height: 70vh;
  }

  .hero h2,
  .hero-h12-content {
    font-size: 22px !important;
    line-height: 1.2;
  }

  .hero p {
    font-size: 14px !important;
  }

  .hero-cta-buttons .btn {
    font-size: 13px;
    padding: 10px 15px !important;
  }

  .trust-card {
    padding: 10px !important;
  }

  .trust-card i {
    font-size: 1.2rem !important;
  }

  .trust-card p {
    font-size: 12px !important;
  }

  /* Section Titles */
  .section-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .why-esops-heading,
  .offer-heading,
  .teams-heading,
  .works-heading,
  .expertise-heading,
  .section-title h2 {
    font-size: 20px !important;
  }

  .offer-subheading,
  .teams-subheading,
  .works-subheading {
    font-size: 13px !important;
  }

  /* Benefits */
  .benefit-item {
    padding: 15px 10px;
  }

  .benefit-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .benefit-content h4 {
    font-size: 15px;
  }

  .benefit-content p {
    font-size: 12px;
  }

  /* Pillars */
  .offer-pillar {
    padding: 20px 15px;
  }

  .pillar-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .pillar-title {
    font-size: 16px;
  }

  .pillar-description,
  .pillar-features li {
    font-size: 12px;
  }

  /* Features Carousel */
  .carousel-card {
    min-width: 260px;
  }

  .unique-service-box {
    min-height: 280px;
    padding: 20px 12px;
  }

  .unique-service-box .unique-service-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 30px;
    margin: 0 auto 15px;
  }

  .unique-service-box .unique-title {
    font-size: 14px;
  }

  .unique-service-box .unique-description {
    font-size: 12px;
    line-height: 16px;
  }

  /* Team Cards */
  .team-card {
    padding: 20px 15px;
  }

  .team-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .team-title {
    font-size: 16px;
  }

  .team-features li {
    font-size: 12px;
  }

  /* Promise Items */
  .promise-item {
    padding: 15px 12px;
  }

  .promise-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .promise-content h4 {
    font-size: 15px;
  }

  .promise-content p {
    font-size: 12px;
  }

  /* Workflow */
  .workflow-step {
    padding: 15px 10px;
  }

  .workflow-circle {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .workflow-title {
    font-size: 16px;
  }

  .workflow-description {
    font-size: 12px;
  }

  /* Dashboard Solutions */
  .unique10-section-heading {
    font-size: 20px;
  }

  .unique10-tab-btn {
    font-size: 12px;
    padding: 7px 14px;
  }

  .unique10-accordion-title {
    font-size: 15px !important;
  }

  .unique10-accordion-content {
    font-size: 13px;
  }

  /* About Section */
  .about-section {
    padding: 40px 0 15px;
  }

  .about-section .image-column .inner-column:before {
    border-width: 15px;
    width: calc(50% + 30px);
    height: calc(100% + 60px);
    top: -30px;
  }

  .about-section .image-column .inner-column .author-desc {
    width: 70%;
    left: 15%;
    bottom: -15%;
    padding: 6px 10px;
  }

  .about-section .image-column .inner-column .author-desc h2 {
    font-size: 14px;
  }

  .about-section .image-column .inner-column .author-desc span {
    font-size: 9px;
  }

  .sec-title h2 {
    font-size: 22px;
  }

  .sec-title .text {
    font-size: 13px;
    line-height: 20px;
  }

  /* Founders */
  .unique29-founders {
    padding: 40px 10px;
  }

  .unique29-founders-title {
    font-size: 24px;
  }

  .unique29-founder {
    padding: 20px 15px;
  }

  .unique29-founder-img {
    width: 180px;
    height: 180px;
  }

  .unique29-founder h3 {
    font-size: 18px;
  }

  .unique29-founder p {
    font-size: 13px;
  }

  /* Vision/Mission */
  .unique22-heading {
    font-size: 24px;
  }

  .unique22-card {
    padding: 25px 15px;
  }

  .unique22-title {
    font-size: 17px;
  }

  .unique22-text {
    font-size: 13px;
  }

  /* Pricing */
  .unique33-pricing-card {
    max-width: 100%;
    padding: 20px 15px;
  }

  .unique33-plan-title {
    font-size: 20px;
  }

  .unique33-price {
    font-size: 22px;
  }

  .unique33-features li {
    font-size: 13px;
  }

  /* Feature Boxes */
  .feature-box {
    min-height: 260px;
    padding: 15px 12px;
  }

  .feature-box .icon img {
    width: 60px;
    height: 60px;
  }

  .feature-box h3 {
    font-size: 15px;
  }

  .feature-box p {
    font-size: 12px;
  }

  /* HR Dashboard */
  .unique1-hr-dashboard-title {
    font-size: 22px;
  }

  .unique1-hr-dashboard-description {
    font-size: 13px;
  }

  .unique1-cta-button {
    font-size: 14px;
    padding: 10px 20px;
  }

  /* Video Section */
  .unique21-heading {
    font-size: 20px;
  }

  .unique21-video-player {
    border-width: 5px;
  }

  /* 4T Promise */
  .unique29-title {
    font-size: 20px;
  }

  .unique29-box h3 {
    font-size: 24px;
  }

  .unique29-box p {
    font-size: 13px;
  }

  /* Footer */
  .footer-logo {
    height: 50px !important;
  }

  .footer h4 {
    font-size: 14px;
  }

  .footer p,
  .footer a {
    font-size: 12px;
  }

  /* Contact */
  .contact .php-email-form {
    padding: 15px 10px;
  }

  .contact .info-item {
    padding: 12px 0 15px 0;
    border-radius: 12px;
  }

  .contact .info-item h3 {
    font-size: 16px;
  }

  .contact .info-item p {
    font-size: 12px;
  }

  /* Page Title */
  .page-title {
    padding: 80px 0 40px 0;
  }

  .page-title h1 {
    font-size: 26px;
  }

  .page-title .breadcrumbs ol {
    font-size: 13px;
  }

  /* Case Study */
  .unique23-container h2 {
    font-size: 20px;
  }

  .unique23-container h3 {
    font-size: 18px;
  }

  .unique23-container p,
  .unique23-container ul,
  .unique23-container li {
    font-size: 13px;
  }

  .unique23-quote {
    font-size: 14px;
    padding: 12px;
  }
}

/* ============================================
   EXTRA SMALL MOBILE (max-width: 375px)
   ============================================ */
@media (max-width: 375px) {
  .hero h2,
  .hero-h12-content {
    font-size: 20px !important;
  }

  .hero p {
    font-size: 13px !important;
  }

  .section-title h2,
  .why-esops-heading,
  .offer-heading,
  .teams-heading,
  .works-heading {
    font-size: 18px !important;
  }

  .trusted-title {
    font-size: 20px !important;
  }

  .logo-card {
    width: 100px !important;
    height: 80px !important;
  }

  .unique-service-box {
    min-height: 260px;
  }

  .unique-service-box .unique-service-icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    font-size: 28px;
  }

  .unique29-founders-title {
    font-size: 22px;
  }

  .unique22-heading {
    font-size: 22px;
  }

  .unique33-plan-title {
    font-size: 18px;
  }
}

/* ============================================
   LANDSCAPE MOBILE ORIENTATION
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 60px 0;
  }

  .hero-content {
    padding: 15px;
  }

  .trust-indicators {
    margin-top: 20px !important;
  }
}

/* ============================================
   CONTAINER RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================ */
@media (hover: none) and (pointer: coarse) {
  /* Increase touch target sizes */
  .btn,
  button,
  a.btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* Remove hover effects on touch devices */
  .service-card:hover,
  .promise-card:hover,
  .feature-box:hover,
  .dashboard-card:hover {
    transform: none;
  }

  /* Improve scrolling */
  .unique10-solution-tabs,
  .features-carousel-wrapper {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header,
  .footer,
  .hero-cta-buttons,
  .scroll-top,
  .mobile-nav-toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

  img {
    max-width: 100% !important;
  }
}


/* Mobile view (480px and below) */
@media (max-width: 480px) {
  /* Hero section */
  #hero.hero {
    padding: 80px 0 40px 0 !important;
  }

  .hero-content {
    padding: 0 15px !important;
  }

  /* Hero heading */
  .hero-h12-content {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }

  .hero-h12-content span {
    display: block !important;
    margin-top: 5px;
  }

  .hero-content p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
  }

  /* CTA Buttons */
  .hero-cta-buttons {
    margin-top: 15px !important;
    gap: 10px !important;
  }

  .hero-cta-buttons .btn {
    font-size: 0.9rem !important;
    padding: 10px 18px !important;
    width: 100%;
  }

  .hero-cta-buttons .btn i {
    font-size: 0.9rem !important;
    margin-right: 5px !important;
  }

  /* Trust Indicators */
  .trust-indicators {
    margin-top: 25px !important;
    padding: 0 10px;
  }

  .trust-card {
    padding: 12px !important;
    margin-bottom: 10px;
  }

  .trust-card i {
    font-size: 1.5rem !important;
    margin-bottom: 6px !important;
  }

  .trust-card p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }

  .trust-indicators .row {
    gap: 10px !important;
  }

  .trust-indicators .col-md-4 {
    padding: 0 8px !important;
  }
}

/* Mobile view (480px and below) */
@media (max-width: 480px) {
  #why-esops {
    padding: 30px 0 !important;
  }

  .text-center.mb-3 {
    margin-bottom: 35px !important;
    padding: 0 15px;
  }

  .section-badge {
    font-size: 0.8rem !important;
    padding: 5px 12px !important;
  }

  .why-esops-heading {
    font-size: 1.4rem !important;
    margin-top: 10px !important;
    line-height: 1.3 !important;
  }

  .benefit-item {
    padding: 15px !important;
    margin-bottom: 12px;
  }

  .benefit-icon {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.3rem !important;
    margin-bottom: 10px !important;
  }

  .benefit-content h4 {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
  }

  .benefit-content p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }

  .benefit-cta-card .btn {
    font-size: 0.85rem !important;
    padding: 8px 16px !important;
  }

  .why-esops-benefits .row {
    gap: 12px !important;
  }

  .why-esops-benefits .col-lg-4 {
    padding: 0 8px !important;
  }
}



@media (min-width: 769px) and (max-width: 1024px) {

  /* ── Global ── */
  body { font-size: 14px; }
  section, .section { padding: 10px 0 !important; }
  .container { padding-left: 20px; padding-right: 20px; }

  /* ── Header ── */
  .header { padding: 12px 0; }
  .header .logo img { max-height: 55px; margin-right: 30px; }
  .header .cta-btn  { font-size: 13px; padding: 7px 18px; }

  /* ── Hero ── */
  #hero.hero { padding: 90px 0 50px !important; min-height: auto !important; }
  .hero-content { height: auto !important; padding: 0 25px !important; }
  .hero-h12-content { font-size: 30px !important; line-height: 1.3 !important; }
  .hero-content p   { font-size: 16px !important; }

  /* Hero buttons — 2 side by side */
  .hero-cta-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 12px !important;
  }
  .hero-cta-buttons .btn {
    padding: 12px 22px !important;
    font-size: 14px !important;
    white-space: nowrap;
  }

  /* Trust cards — 3 in one row */
  .trust-indicators { margin-top: 28px !important; }
  .trust-indicators .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    --bs-gutter-x: 0 !important;
    margin: 0 !important;
  }
  .trust-indicators .col-md-4,
  .trust-indicators .col-sm-6 {
    flex: 1 1 0 !important;
    width: 33.33% !important;
    max-width: 33.33% !important;
    padding: 0 !important;
  }
  .trust-card {
    height: auto !important; min-height: 100px;
    padding: 14px 10px !important;
    display: flex !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important;
  }
  .trust-card i { font-size: 1.6rem !important; margin-bottom: 6px !important; }
  .trust-card p { font-size: 12px !important; line-height: 1.3; margin: 0 !important; }

  /* ── Section badges & headings ── */
  .section-badge { font-size: 11px; padding: 5px 13px; }
  .why-esops-heading, .offer-heading, .teams-heading,
  .works-heading, .expertise-heading, .pricing-heading,
  .lead-capture-heading { font-size: 1.7rem !important; text-align: center !important; }
  .offer-subheading, .teams-subheading, .works-subheading,
  .pricing-subheading, .lead-capture-subheading { font-size: 0.95rem !important; }

  /* ── ROW ALIGNMENT — leftover cards under first card ── */
  .why-esops-benefits .row,
  .what-we-offer-section .row.g-4,
  .built-for-teams-section .row.g-4,
  #pricing .row.g-3 {
    justify-content: flex-start !important;
  }

  /* ── Why ESOPs — 3 per row (col-lg-4 col-md-6 → force 33.33%) ── */
  .why-esops-benefits .col-lg-4.col-md-6 {
    flex: 0 0 calc(33.33% - 8px) !important;
    width: calc(33.33% - 8px) !important;
    max-width: calc(33.33% - 8px) !important;
  }
  .benefit-item {
    padding: 18px 14px !important; height: 100%;
    min-height: 220px !important;
  }
  .benefit-icon  { width: 52px !important; height: 52px !important; font-size: 24px !important; }
  .benefit-content h4 { font-size: 14px !important; min-height: auto !important; }
  .benefit-content p  { font-size: 12px !important; }

  /* ── What We Offer — 3 per row ── */
  .what-we-offer-section .col-lg-4.col-md-6 {
    flex: 0 0 calc(33.33% - 8px) !important;
    width: calc(33.33% - 8px) !important;
    max-width: calc(33.33% - 8px) !important;
  }
  .offer-pillar { padding: 22px 16px !important; height: 100%; }
  .pillar-icon  { width: 60px !important; height: 60px !important; font-size: 28px !important; }
  .pillar-title { font-size: 15px !important; }
  .pillar-description, .pillar-features li { font-size: 13px !important; }

  /* ── Features Carousel ── */
  .features-carousel-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .carousel-card { flex: 0 0 240px; min-width: 240px; }
  .unique-service-box { height: auto; min-height: 300px; }

  /* ── Built for Teams — 2 per row (4 cards = 2+2) ── */
  .built-for-teams-section .col-lg-3.col-md-6 {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
  }
  .team-card  { padding: 22px 16px !important; height: 100%; }
  .team-icon  { width: 60px !important; height: 60px !important; font-size: 28px !important; }
  .team-title { font-size: 15px !important; }
  .team-features li { font-size: 13px !important; }

  /* ── 4T Promise — 2×2 ── */
  .promise-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px;
  }
  .promise-item  { padding: 14px !important; }
  .promise-icon  { width: 44px !important; height: 44px !important; font-size: 20px !important; }
  .promise-content h4 { font-size: 14px !important; }
  .promise-content p  { font-size: 12px !important; }

  /* ── How It Works — horizontal scroll ── */
  .workflow-timeline {
    display: flex !important; flex-direction: row !important;
    overflow-x: auto !important; -webkit-overflow-scrolling: touch !important;
    flex-wrap: nowrap !important; gap: 14px !important;
    padding: 10px 5px !important; margin-top: 30px !important;
  }
  .workflow-timeline::before { display: none !important; }
  .workflow-step {
    flex: 0 0 160px !important; min-width: 160px !important;
    max-width: 160px !important; padding: 16px 10px !important;
    text-align: center;
  }
  .workflow-circle { width: 60px !important; height: 60px !important; font-size: 24px !important; margin: 0 auto 12px !important; }
  .workflow-title       { font-size: 13px !important; }
  .workflow-description { font-size: 11px !important; }

  /* ── Testimonials — stacked ── */
  .testimonial-responsive { flex-direction: column !important; gap: 15px !important; }
  .testimonial-item, .testimonial-item-video {
    width: 100% !important; max-width: 100% !important;
  }

  /* ── Pricing — 3 per row ── */
  #pricing .row.g-3 .col-lg-4.col-md-6 {
    flex: 0 0 calc(33.33% - 8px) !important;
    width: calc(33.33% - 8px) !important;
    max-width: calc(33.33% - 8px) !important;
  }
  .pricing-card { padding: 18px 14px !important; height: 100%; }
  .pricing-title { font-size: 14px !important; }
  .pricing-description, .pricing-features li { font-size: 12px !important; }

  /* ── Lead Form — 2 per row ── */
  .lead-capture-card { padding: 30px 20px !important; }
  .lead-capture-form .col-md-6 {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
  }
  .col-12 { flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important; }
}

@media (min-width: 577px) and (max-width: 768px) {

  /* ── Global ── */
  body { font-size: 13px; }
  section, .section { padding: 32px 0 !important; }
  .container { padding-left: 15px; padding-right: 15px; }

  /* ── Hero ── */
  #hero.hero { padding: 80px 0 40px !important; min-height: auto !important; }
  .hero-content { height: auto !important; padding: 0 15px !important; }
  .hero-h12-content { font-size: 24px !important; line-height: 1.3 !important; }
  .hero-content p   { font-size: 14px !important; }

  /* Hero buttons — 2 side by side */
  .hero-cta-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }
  .hero-cta-buttons .btn {
    flex: 1 1 0 !important;
        max-width: 62% !important;
        padding: 10px 12px !important;
        font-size: 12px !important;
        text-align: center;
        white-space: nowrap;
        line-height: 1.3;
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
    
  }
  .hero-cta-buttons .btn i { display: block !important; margin: 0 0 3px !important; }

  /* Trust cards — 3 in one row */
  .trust-indicators { margin-top: 20px !important; padding: 0 4px; }
  .trust-indicators .row {
    display: flex !important; flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 6px !important; --bs-gutter-x: 0 !important; margin: 0 !important;
  }
  .trust-indicators .col-md-4,
  .trust-indicators .col-sm-6 {
    flex: 1 1 0 !important; width: 33.33% !important;
    max-width: 33.33% !important; padding: 0 !important;
  }
  .trust-card {
    height: auto !important; min-height: 85px;
    padding: 10px 6px !important;
    display: flex !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important;
    border-radius: 8px;
  }
  .trust-card i { font-size: 1.3rem !important; margin-bottom: 5px !important; }
  .trust-card p { font-size: 11px !important; line-height: 1.3; margin: 0 !important; }

  /* ── Section badges & headings ── */
  .section-badge { font-size: 11px; padding: 5px 12px; }
  .why-esops-heading, .offer-heading, .teams-heading,
  .works-heading, .expertise-heading, .pricing-heading,
  .lead-capture-heading { font-size: 1.4rem !important; text-align: center !important; }

  /* ── ROW ALIGNMENT — leftover cards under first card ── */
  .why-esops-benefits .row,
  .what-we-offer-section .row.g-4,
  .built-for-teams-section .row.g-4,
  #pricing .row.g-3 {
    justify-content: flex-start !important;
  }

  /* ── Why ESOPs — 2 per row (6 cards = 3 rows of 2) ── */
  .why-esops-benefits .col-lg-4.col-md-6 {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
  }
  .benefit-item { padding: 16px 12px !important; height: 100%; }
  .benefit-icon  { width: 46px !important; height: 46px !important; font-size: 21px !important; }
  .benefit-content h4 { font-size: 13px !important; min-height: auto !important; }
  .benefit-content p  { font-size: 11px !important; }

  /* ── What We Offer — 2 per row (3 cards → 2+1, 1 under first) ── */
  .what-we-offer-section .col-lg-4.col-md-6 {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
  }
  .offer-pillar { padding: 18px 13px !important; height: 100%; }
  .pillar-icon  { width: 52px !important; height: 52px !important; font-size: 24px !important; }
  .pillar-title { font-size: 13px !important; }
  .pillar-description, .pillar-features li { font-size: 11px !important; }

  /* ── Features Carousel — scroll ── */
  .features-carousel-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .carousel-card { flex: 0 0 210px; min-width: 210px; }
  .unique-service-box { height: auto; min-height: 270px; padding: 18px 12px; }
  .unique-service-box .unique-service-icon {
    width: 70px; height: 70px; line-height: 70px; font-size: 30px; margin: 0 auto 12px;
  }
  .unique-service-box .unique-title       { font-size: 13px; }
  .unique-service-box .unique-description { font-size: 11px; line-height: 1.4; }

  /* ── Built for Teams — 2 per row (4 cards = 2+2) ── */
  .built-for-teams-section .col-lg-3.col-md-6 {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
  }
  .team-card  { padding: 5px 13px !important; height: 100%; }
  .team-icon  { width: 52px !important; height: 52px !important; font-size: 24px !important; }
  .team-title { font-size: 13px !important; }
  .team-features li { font-size: 11px !important; }

  /* ── 4T Promise — 2×2 ── */
  .promise-grid {
    display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 10px;
  }
  .promise-item  { padding: 12px 10px !important; }
  .promise-icon  { width: 40px !important; height: 40px !important; font-size: 18px !important; }
  .promise-content h4 { font-size: 13px !important; }
  .promise-content p  { font-size: 11px !important; }

  /* ── How It Works — horizontal scroll ── */
  .workflow-timeline {
    display: flex !important; flex-direction: row !important;
    overflow-x: auto !important; -webkit-overflow-scrolling: touch !important;
    flex-wrap: nowrap !important; gap: 10px !important;
    padding: 8px 4px !important; margin-top: 25px !important;
  }
  .workflow-timeline::before { display: none !important; }
  .workflow-step {
    flex: 0 0 140px !important; min-width: 140px !important;
    max-width: 140px !important; padding: 14px 8px !important; text-align: center;
  }
  .workflow-circle { width: 55px !important; height: 55px !important; font-size: 22px !important; margin: 0 auto 10px !important; }
  .workflow-title       { font-size: 12px !important; }
  .workflow-description { font-size: 10px !important; }

  /* ── Testimonials — stacked ── */
  .testimonial-responsive { flex-direction: column !important; gap: 12px !important; }
  .testimonial-item, .testimonial-item-video { width: 100% !important; max-width: 100% !important; }

  /* ── Pricing — 2 per row (3 cards → 2+1, 1 under first) ── */
  #pricing .row.g-3 .col-lg-4.col-md-6 {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
  }
  .pricing-card { padding: 16px 12px !important; height: 100%; }
  .pricing-title { font-size: 13px !important; }
  .pricing-description, .pricing-features li { font-size: 11px !important; }

  /* ── Lead Form — 2 per row ── */
  .lead-capture-card { padding: 24px 16px !important; }
  .lead-capture-form .col-md-6 {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
  }
  .col-12 { flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important; }
  .lead-input { font-size: 12px; padding: 8px 10px; }
  .btn-lead-submit { font-size: 13px; width: 100%; }
}


/* ================================================================
   3. SMALL MOBILE  ≤576px
   Why ESOPs: 2×3  |  Offer: 2+1  |  Teams: 2×2  |  Pricing: 2+1
   Trust: 3 in a row  |  Buttons: 2 side by side
================================================================ */
@media (max-width: 576px) {

  /* ── Global ── */
  body { font-size: 13px; }
  .container { padding-left: 12px; padding-right: 12px; max-width: 100%; }
  .row { --bs-gutter-x: 10px; --bs-gutter-y: 10px; }

  /* ── Header ── */
  .header { padding: 10px 0; }
  .header .logo img { max-height: 44px; margin-right: 10px; }
  .header .cta-btn  { font-size: 11px; padding: 5px 12px; margin-left: 8px; }

  /* ── Hero ── */
  #hero.hero { padding: 70px 0 30px !important; min-height: auto !important; }
  .hero-content { height: auto !important; padding: 0 10px !important; }
  .hero-h12-content { font-size: 19px !important; line-height: 1.3 !important; margin-bottom: 10px !important; }
  /* Override inline style on <p> */
  .hero-content > p,
  .hero-content p[style] { font-size: 12px !important; line-height: 1.5 !important; margin-bottom: 12px !important; color:white;}

  /* ── Hero Buttons — always 2 side by side ── */
  .hero-cta-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 6px !important;
    margin-top: 12px !important;
    width: 100%;
  }
  .hero-cta-buttons .btn {
    flex: 1 1 0 !important;
    width: 50% !important;
    max-width: 50% !important;
    padding: 9px 6px !important;
    font-size: 11px !important;
    text-align: center; white-space: normal; line-height: 1.3; border-radius: 6px;
  }
  .hero-cta-buttons .btn i {
    display: block !important;
    font-size: 13px !important;
    margin: 0 0 3px !important;
  }

  /* ── Trust Cards — stacked vertically one below the other ── */
  .trust-indicators { 
    margin-top: 20px !important; 
    padding: 0 10px; 
    width: 100%; 
  }
  
  .trust-indicators .row {
    flex-direction: column !important;
    gap: 10px !important;
  }
  
  .trust-indicators .col-md-4,
  .trust-indicators .col-sm-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .trust-card {
    height: auto;
    min-height: 85px;
    padding: 14px 12px !important;
  }
  
  .trust-card i {
    font-size: 1.5rem !important;
    margin-bottom: 8px !important;
  }
  
  .trust-card p {
    font-size: 12px !important;
    line-height: 1.4;
  }
  /* Override Bootstrap g-4 gap */
  .trust-indicators .row,
  .trust-indicators .row.g-4 {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    row-gap: 0 !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
    margin: 0 !important;
  }
  .trust-indicators .col-md-4,
  .trust-indicators .col-sm-6 {
    flex: 0 0 calc(33.33% - 4px) !important;
    width: calc(33.33% - 4px) !important;
    max-width: calc(33.33% - 4px) !important;
    padding: 0 !important; margin: 0 !important;
  }
  .trust-card {
    height: 100% !important; min-height: 72px;
    padding: 8px 4px !important;
    display: flex !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important;
    border-radius: 7px;
  }
  .trust-card i { font-size: 1rem !important; margin-bottom: 4px !important; }
  .trust-card p { font-size: 9.5px !important; line-height: 1.25; margin: 0 !important; padding: 0 2px !important; }

  /* ── Section badges & headings ── */
  .section-badge { font-size: 10px; padding: 4px 11px; }
  .text-center.mb-3, .text-center.mb-5 { margin-bottom: 14px !important; }
  .why-esops-heading, .offer-heading, .teams-heading,
  .works-heading, .expertise-heading, .pricing-heading,
  .lead-capture-heading { font-size: 1.25rem !important; line-height: 1.3 !important; text-align: center !important; }
  .offer-subheading, .teams-subheading, .works-subheading,
  .pricing-subheading, .lead-capture-subheading { font-size: 0.8rem !important; }

  /* ── ROW ALIGNMENT — leftover cards under FIRST card ── */
  .why-esops-benefits .row,
  .what-we-offer-section .row.g-4,
  .built-for-teams-section .row.g-4,
  #pricing .row.g-3 {
    justify-content: flex-start !important;
  }

  /* ── Why ESOPs — 2 per row (6 cards = 3 rows of 2) ── */
  .why-esops-benefits .col-lg-4.col-md-6 {
    flex: 0 0 calc(50% - 5px) !important;
    width: calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
  }
  .benefit-item {
    padding: 14px 10px !important; height: 100%;
    min-height: auto !important; margin: 0 !important;
  }
  .benefit-icon {
    width: 42px !important; height: 42px !important;
    font-size: 19px !important; margin-bottom: 8px !important;
  }
  .benefit-content h4 { font-size: 12px !important; margin-bottom: 5px !important; min-height: auto !important; line-height: 1.3 !important; }
  .benefit-content p  { font-size: 11px !important; line-height: 1.4 !important; margin: 0 !important; }

  /* ── What We Offer — 2 per row (3 cards → 2+1, 1 sits under col 1) ── */
  .what-we-offer-section .col-lg-4.col-md-6 {
    flex: 0 0 calc(50% - 5px) !important;
    width: calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
  }
  .offer-pillar { padding: 15px 11px !important; height: 100%; margin: 0 !important; }
  .pillar-title { font-size: 12px !important; margin-bottom: 5px !important; }
  .pillar-description    { font-size: 10px !important; }
  .pillar-features li    { font-size: 10px !important; padding: 2px 0 !important; }
  .pillar-cta { padding: 8px 16px !important; font-size: 11px !important; }

  /* ── Features Carousel — horizontal scroll ── */
  .features-carousel-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .carousel-card { flex: 0 0 190px; min-width: 190px; }
  .unique-service-box {
    height: auto; min-height: 250px; padding: 16px 10px;
  }
  .unique-service-box .unique-service-icon {
    width: 65px; height: 65px; line-height: 65px;
    font-size: 28px; margin: 0 auto 10px;
  }
  .unique-service-box .unique-title       { font-size: 12px; }
  .unique-service-box .unique-description { font-size: 11px; line-height: 1.4; }

  /* ── Built for Teams — 2 per row (4 cards = exactly 2+2) ── */
  .built-for-teams-section .col-lg-3.col-md-6 {
    flex: 0 0 calc(50% - 5px) !important;
    width: calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
  }
  .team-card  { padding: 14px 11px !important; height: 100%; margin: 0 !important; }
  .team-icon  { width: 46px !important; height: 46px !important; font-size: 21px !important; margin-bottom: 8px !important; }
  .team-title { font-size: 12px !important; margin-bottom: 6px !important; }
  .team-features li { font-size: 10px !important; padding: 2px 0 !important; }

  /* ── 4T Promise — 2×2 grid ── */
  .expertise-heading     { font-size: 1.2rem !important; }
  .expertise-description { font-size: 11px !important; }
  .promise-section { padding: 16px 12px !important; }
  .promise-title   { font-size: 1.1rem !important; margin-bottom: 12px !important; }
  .promise-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }
  .promise-item {
    padding: 11px 9px !important;
    display: flex; align-items: flex-start; gap: 8px;
  }
  .promise-icon       { width: 36px !important; height: 36px !important; font-size: 16px !important; flex-shrink: 0; }
  .promise-content h4 { font-size: 12px !important; margin-bottom: 2px !important; }
  .promise-content p  { font-size: 10px !important; margin: 0 !important; }
  .expertise-footer   { font-size: 11px !important; }

  /* ── How It Works — horizontal scroll (5 steps) ── */
  .workflow-timeline {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    padding: 6px 2px !important;
    margin-top: 20px !important;
    align-items: flex-start !important;
  }
  .workflow-timeline::before { display: none !important; }
  .workflow-step {
    flex: 0 0 125px !important;
    min-width: 125px !important;
    max-width: 125px !important;
    padding: 12px 7px !important;
    text-align: center; margin: 0 !important;
  }
  .workflow-circle {
    width: 50px !important; height: 50px !important;
    font-size: 20px !important; margin: 0 auto 8px !important;
  }
  .workflow-title       { font-size: 11px !important; margin-bottom: 4px !important; }
  .workflow-description { font-size: 10px !important; line-height: 1.3 !important; }

  /* ── Video ── */
  .unique21-video-section { padding: 16px 10px; }
  .unique21-heading       { font-size: 1rem !important; text-align: center !important; }
  .unique21-video-player  { width: 100%; border-width: 4px; }

  /* ── Testimonials — stacked ── */
  .testimonial-responsive { flex-direction: column !important; gap: 12px !important; }
  .testimonial-item, .testimonial-item-video {
    width: 100% !important; max-width: 100% !important; margin-bottom: 12px !important;
  }
  #testimonial h2 { font-size: 1.4rem !important; }

  /* ── Pricing — 2 per row (3 cards → 2+1, sits under first) ── */
  #pricing .row.g-3 .col-lg-4.col-md-6 {
    flex: 0 0 calc(50% - 5px) !important;
    width: calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
  }
  .pricing-card { padding: 14px 10px !important; height: 100%; margin: 0 !important; }
  .pricing-icon  { width: 44px !important; height: 44px !important; font-size: 20px !important; }
  .pricing-title { font-size: 12px !important; }
  .pricing-description   { font-size: 10px !important; }
  .pricing-features li   { font-size: 10px !important; padding: 2px 0 !important; }
  .pricing-badge         { font-size: 8px !important; padding: 3px 7px !important; }
  .pricing-cta           { padding: 7px 14px !important; font-size: 11px !important; }
  .btn-full-pricing      { padding: 11px 24px !important; font-size: 0.95rem !important; }

  /* ── Lead Capture Form — 2 inputs per row ── */
  .lead-capture-card { padding: 20px 12px !important; }
  .lead-capture-heading  { font-size: 1.2rem !important; }
  .lead-capture-subheading { font-size: 0.8rem !important; }

  /* Override Bootstrap col-md-6 to 2 per row in form */
  .lead-capture-form .col-md-6 {
    flex: 0 0 calc(50% - 5px) !important;
    width: calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
  }
  /* col-12 stays full width */
  .lead-capture-form .col-12 {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .lead-label { font-size: 11px !important; margin-bottom: 3px !important; }
  .lead-input { padding: 7px 9px; font-size: 11px; }
  .btn-lead-submit { padding: 10px 18px; font-size: 12px; width: 100%; }

  /* ── FAQ ── */
  .faq-item h3   { font-size: 13px !important; }
  .faq-content p { font-size: 11px !important; }
  .section-title h2 { font-size: 1.3rem !important; }

  /* ── Footer ── */
  .footer h4 { font-size: 13px; }
  .footer p, .footer a { font-size: 11px; }

  /* ── Page title ── */
  .page-title { padding: 80px 0 35px !important; }
  .page-title h1 { font-size: 1.4rem !important; }

  /* ── About section ── */
  .about-section { padding: 50px 0 25px !important; }
  .about-section .image-column .inner-column:before {
    height: calc(100% + 100px) !important; top: -50px !important;
  }
  .about-section .image-column .inner-column .author-desc {
    width: 75%; left: 13%; bottom: -10%;
    padding: 7px 10px !important;
  }
  .about-section .image-column .inner-column .author-desc h2 {
    font-size: 0.9rem !important;
  }
  .about-section .image-column .inner-column .author-desc span {
    font-size: 0.5rem !important;
  }
  .sec-title h2  { font-size: 1.3rem !important; }
  .sec-title .text { font-size: 12px !important; }

  /* ── Trusted Clients ── */
  .trusted-title { font-size: 1.3rem !important; }
  .logo-card { width: 120px !important; height: 92px !important; }
  .logo-card img { width: 75% !important; height: 75% !important; }
}


/* ================================================================
   4. EXTRA-SMALL MOBILE  ≤375px — tighten further
================================================================ */
@media (max-width: 375px) {

  #hero.hero { padding: 65px 0 28px !important; }
  .hero-h12-content { font-size: 17px !important; }
  .hero-content > p,
  .hero-content p[style] { font-size: 11px !important; }
  .hero-cta-buttons .btn { font-size: 10px !important; padding: 8px 5px !important; }

  .trust-card p { font-size: 9px !important; }
  .trust-card i { font-size: 0.9rem !important; }

  .why-esops-heading, .offer-heading, .teams-heading,
  .pricing-heading, .lead-capture-heading { font-size: 1.1rem !important; }

  .benefit-content h4 { font-size: 11px !important; }
  .pillar-title { font-size: 11px !important; }
  .team-title   { font-size: 11px !important; }
  .pricing-title { font-size: 11px !important; }

  .workflow-step { flex: 0 0 115px !important; min-width: 115px !important; }
  .workflow-circle { width: 44px !important; height: 44px !important; font-size: 18px !important; }

  .logo-card { width: 105px !important; height: 82px !important; }
  .trusted-title { font-size: 1.1rem !important; }
}


/* ================================================================
   5. TOUCH DEVICES — remove hover, improve scrollbars
================================================================ */
@media (hover: none) and (pointer: coarse) {
  .workflow-timeline,
  .features-carousel-wrapper {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .workflow-step,
  .carousel-card { scroll-snap-align: start; }
}

@media (max-width: 576px) {

  /* ── Global ── */
  body { font-size: 14px; }
  section, .section { padding: 10px 0 !important; }
  .container { padding-left: 16px !important; padding-right: 16px !important; max-width: 100% !important; }

  /* ── ALL ROWS — single column, centered ── */
  .row,
  .row.g-4,
  .row.g-3 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* ── ALL COLUMNS → full width ── */
  [class*="col-"] {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* ────────────────────────────────────────────────────────────
     HERO SECTION
  ──────────────────────────────────────────────────────────── */
  #hero.hero {
    padding: 80px 0 35px !important;
    min-height: auto !important;
  }
  .hero-content {
    height: auto !important;
    padding: 0 16px !important;
  }
  .hero-h12-content {
    font-size: 20px !important;
    line-height: 1.35 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }
  /* Override inline style font-size on <p> */
  .hero-content p,
  .hero-content p[style] {
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
    text-align: center !important;
  }

  /* ── Hero Buttons — stacked, full width, centered ── */
  .hero-cta-buttons {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin-top: 5px !important;
    width: 100% !important;
  }
  .hero-cta-buttons .btn {
    width: 100% !important;
    max-width: 340px !important;
    padding: 9px 20px !important;
    font-size: 10px !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }
  .hero-cta-buttons .btn i {
    font-size: 15px !important;
    display: inline !important;
    margin: 0 !important;
  }

  /* ── Trust Cards — stacked, full width, centered ── */
  .trust-indicators {
    margin-top: 20px !important;
    width: 100% !important;
    padding: 0 !important;
  }
  /* Override Bootstrap row completely */
  .trust-indicators .row,
  .trust-indicators .row.g-4 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
    margin: 0 !important;
  }
  .trust-indicators .col-md-4,
  .trust-indicators .col-sm-6 {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .trust-card {
    width: 100% !important;
    height: auto !important;
    min-height: 75px !important;
    padding: 14px 16px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    border-radius: 10px !important;
    text-align: left !important;
  }
  .trust-card i {
    font-size: 1.6rem !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }
  .trust-card p {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  /* ────────────────────────────────────────────────────────────
     SECTION BADGES & HEADINGS
  ──────────────────────────────────────────────────────────── */
  .section-badge { font-size: 11px !important; padding: 5px 13px !important; }

  .why-esops-heading,
  .offer-heading,
  .teams-heading,
  .works-heading,
  .expertise-heading,
  .pricing-heading,
  .lead-capture-heading,
  .section-title h2 {
    font-size: 1.3rem !important;
    line-height: 1.35 !important;
    text-align: center !important;
    margin-top: 8px ;
    margin-bottom: 10px;
  }
   .about_2_section{
     margin-top: 10px!important;
     margin-bottom:10px!important;
   }

  .offer-subheading,
  .teams-subheading,
  .works-subheading,
  .pricing-subheading,
  .lead-capture-subheading,
  .section-title p {
    font-size: 0.85rem !important;
    text-align: center !important;
  }

  /* ────────────────────────────────────────────────────────────
     WHY ESOPs — 1 per row, centered
  ──────────────────────────────────────────────────────────── */
  .why-esops-benefits .row.g-4 {
    flex-direction: column !important;
    align-items: center !important;
  }
  .why-esops-benefits .col-lg-4.col-md-6 {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .benefit-item {
    padding: 20px 18px !important;
    height: auto !important;
    min-height: auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin: 0 !important;
  }
  .benefit-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
    margin-bottom: 12px !important;
    flex-shrink: 0 !important;
  }
  .benefit-content { width: 100% !important; }
  .benefit-content h4 {
    font-size: 15px !important;
    margin-bottom: 8px !important;
    min-height: auto !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }
  .benefit-content p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    text-align: center !important;
  }

  /* ────────────────────────────────────────────────────────────
     WHAT WE OFFER — 1 per row, centered
  ──────────────────────────────────────────────────────────── */
  .what-we-offer-section .col-lg-4.col-md-6 {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .offer-pillar {
    padding: 10px 18px !important;
    height: auto !important;
    margin: 0 !important;
    text-align: center !important;
  }
  .pillar-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
    margin: 0 0 14px !important;
  }
  .pillar-title       { font-size: 16px !important; margin-bottom: 8px !important; text-align: left;}
  .pillar-description { font-size: 13px !important; }
  .pillar-features li { font-size: 13px !important; padding: 4px 0 !important; }
  .pillar-cta         { display: inline-block !important; margin-top: 14px !important; }

  /* ────────────────────────────────────────────────────────────
     FEATURES CAROUSEL — keep scroll (too many cards)
  ──────────────────────────────────────────────────────────── */
  .features-carousel-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  /* Reset row override inside carousel */
  .features-carousel-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 16px !important;
    width: max-content !important;
  }
  .carousel-card {
    flex: 0 0 220px !important;
    min-width: 220px !important;
    width: 220px !important;
  }
  .unique-service-box {
    height: auto !important;
    min-height: 270px !important;
    padding: 20px 14px !important;
  }
  .unique-service-box .unique-service-icon {
    width: 75px !important;
    height: 75px !important;
    line-height: 75px !important;
    font-size: 32px !important;
    margin: 0 auto 14px !important;
  }
  .unique-service-box .unique-title       { font-size: 13px !important; }
  .unique-service-box .unique-description { font-size: 12px !important; line-height: 1.4 !important; }

  /* ────────────────────────────────────────────────────────────
     BUILT FOR TEAMS — 1 per row, centered
  ──────────────────────────────────────────────────────────── */
  .built-for-teams-section .col-lg-3.col-md-6 {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .team-card {
    padding: 10px 18px !important;
    height: auto !important;
    margin: 0 !important;
    text-align: center !important;
  }
  .team-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
    margin: 0 0 14px !important;
  }
  .team-title { font-size: 16px !important; margin-bottom: 5px !important; text-align: left; }
  .team-features { text-align: left !important; }
  .team-features li { font-size: 13px !important; padding: 5px 0 !important; }

  /* ────────────────────────────────────────────────────────────
     TRUSTED EXPERTISE / 4T PROMISE — 1 per row, centered
  ──────────────────────────────────────────────────────────── */
  .expertise-heading {
    font-size: 1.3rem !important;
    text-align: center !important;
  }
  .expertise-description { font-size: 13px !important; text-align: center !important; }
  .promise-section { padding: 20px 14px !important; }
  .promise-title   { font-size: 1.2rem !important; text-align: center !important; }

  /* 4T promise — 1 per row, centered */
  .promise-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .promise-item {
    width: 100% !important;
    padding: 16px 14px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    justify-content: flex-start !important;
  }
  .promise-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 22px !important;
    flex-shrink: 0 !important;
  }
  .promise-content h4 { font-size: 15px !important; margin-bottom: 4px !important; }
  .promise-content p  { font-size: 13px !important; margin: 0 !important; }
  .expertise-footer   { font-size: 13px !important; text-align: center !important; }

  /* ────────────────────────────────────────────────────────────
     HOW IT WORKS — STRAIGHT VERTICAL LINE
  ──────────────────────────────────────────────────────────── */
  .workflow-timeline {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 10px 0 !important;
    margin-top: 20px !important;
    position: relative !important;
    overflow: visible !important;
  }

  /* Vertical connecting line through all steps */
  .workflow-timeline::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 40px !important;
    bottom: 40px !important;
    left: 50% !important;
    width: 3px !important;
    background: linear-gradient(180deg, #1069a7, #082169) !important;
    transform: translateX(-50%) !important;
    z-index: 0 !important;
  }

  .workflow-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 300px !important;
    padding: 0 16px 28px !important;
    position: relative !important;
    z-index: 1 !important;
    flex: unset !important;
    min-width: unset !important;
  }

  .workflow-circle {
    width: 65px !important;
    height: 65px !important;
    font-size: 26px !important;
    margin: 0 auto 14px !important;
    background: #ffffff !important;
    position: relative !important;
    z-index: 2 !important;
  }
  .workflow-title {
    font-size: 15px !important;
    margin-bottom: 6px !important;
    font-weight: 700 !important;
  }
  .workflow-description {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #555 !important;
  }

  /* ────────────────────────────────────────────────────────────
     VIDEO SECTION
  ──────────────────────────────────────────────────────────── */
  .unique21-video-section { padding: 20px 16px !important; }
  .unique21-heading {
    font-size: 1.15rem !important;
    text-align: center !important;
    margin-bottom: 14px !important;
  }
  .unique21-video-player { width: 100% !important; border-width: 5px !important; }

  /* ────────────────────────────────────────────────────────────
     TESTIMONIALS — stacked
  ──────────────────────────────────────────────────────────── */
  .testimonial-responsive {
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }
  .testimonial-item,
  .testimonial-item-video {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
  }
  #testimonial h2 { font-size: 1.5rem !important; }

  /* ────────────────────────────────────────────────────────────
     PRICING — 1 per row, centered
  ──────────────────────────────────────────────────────────── */
  #pricing .row.g-3 {
    flex-direction: column !important;
    align-items: center !important;
  }
  #pricing .row.g-3 .col-lg-4.col-md-6 {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .pricing-card {
    padding: 22px 18px !important;
    height: auto !important;
    margin: 0 !important;
    text-align: center !important;
  }
  .pricing-icon  { width: 55px !important; height: 55px !important; font-size: 26px !important; margin: 0 auto 10px !important; }
  .pricing-title { font-size: 16px !important; }
  .pricing-description   { font-size: 13px !important; }
  .pricing-features      { text-align: left !important; }
  .pricing-features li   { font-size: 13px !important; padding: 4px 0 !important; }
  .pricing-cta           { padding: 10px 24px !important; font-size: 13px !important; }
  .btn-full-pricing      { padding: 12px 28px !important; font-size: 1rem !important; width: 100% !important; text-align: center !important; }

  /* ────────────────────────────────────────────────────────────
     LEAD CAPTURE FORM — inputs stacked (1 per row)
  ──────────────────────────────────────────────────────────── */
  .lead-capture-card {
    padding: 24px 16px !important;
    text-align: center !important;
  }
  .lead-capture-heading  { font-size: 1.25rem !important; }
  .lead-capture-subheading { font-size: 0.85rem !important; }

  .lead-capture-form .row {
    flex-direction: column !important;
    align-items: center !important;
  }
  .lead-capture-form .col-md-6,
  .lead-capture-form .col-12 {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .lead-label   { font-size: 13px !important; text-align: left !important; }
  .lead-input   { font-size: 13px !important; padding: 10px 12px !important; }
  .btn-lead-submit {
    width: 100% !important;
    padding: 13px 20px !important;
    font-size: 14px !important;
  }

  /* ────────────────────────────────────────────────────────────
     FAQ
  ──────────────────────────────────────────────────────────── */
  .faq-item h3   { font-size: 14px !important; line-height: 1.4 !important; }
  .faq-content p { font-size: 13px !important; line-height: 1.5 !important; }
  .section-title h2 { font-size: 1.3rem !important; }
  .section-title p  { font-size: 0.85rem !important; }

  /* ────────────────────────────────────────────────────────────
     TRUSTED CLIENTS / LOGO STRIP
  ──────────────────────────────────────────────────────────── */
  .trusted-title { font-size: 1.3rem !important; text-align: center !important; }
  .logo-card { width: 130px !important; height: 100px !important; }
  .logo-card img { width: 75% !important; height: 75% !important; }

  /* ────────────────────────────────────────────────────────────
     HEADER
  ──────────────────────────────────────────────────────────── */
  .header { padding: 10px 0 !important; }
  .header .logo img { max-height: 60px !important; margin-right: 10px !important; }
  .header .cta-btn  { font-size: 11px !important; padding: 6px 13px !important; }

  /* ────────────────────────────────────────────────────────────
     ABOUT SECTION
  ──────────────────────────────────────────────────────────── */
  .about-section { padding: 50px 0 30px !important; }
  .about-section .image-column .inner-column:before {
    height: calc(100% + 90px) !important;
    top: -45px !important;
  }
  .about-section .image-column .inner-column .author-desc {
    width: 75%; left: 13%; bottom: -8%;
    padding: 8px 12px !important;
  }
  .about-section .image-column .inner-column .author-desc h2 {
    font-size: 0.9rem !important;
  }
  .about-section .image-column .inner-column .author-desc span {
    font-size: 0.5rem !important;
  }
  .sec-title h2    { font-size: 1.3rem !important; }
  .sec-title .text { font-size: 13px !important; }

  /* ────────────────────────────────────────────────────────────
     FOOTER
  ──────────────────────────────────────────────────────────── */
  .footer h4 { font-size: 14px; }
  .footer p, .footer a { font-size: 12px; }

  /* ────────────────────────────────────────────────────────────
     PAGE TITLE
  ──────────────────────────────────────────────────────────── */
  .page-title { padding: 80px 0 35px !important; }
  .page-title h1 { font-size: 1.4rem !important; }

}

/* ================================================================
   EXTRA SMALL — ≤375px
================================================================ */
@media (max-width: 375px) {

  .hero-h12-content { font-size: 18px !important; }
  .hero-content p,
  .hero-content p[style] { font-size: 12px !important;  }
  .hero-cta-buttons .btn { font-size: 9px !important; padding: 11px 16px !important; }

  .trust-card p { font-size: 12px !important; }

  .why-esops-heading,
  .offer-heading,
  .teams-heading,
  .pricing-heading,
  .lead-capture-heading { font-size: 1.15rem !important; }

  .benefit-content h4, .pillar-title,
  .team-title, .pricing-title { font-size: 14px !important; }

  .workflow-circle { width: 58px !important; height: 58px !important; font-size: 22px !important; }
  .workflow-title  { font-size: 14px !important; }
}
@media (max-width: 576px) {


  .trust-indicators .col-md-4,
  .trust-indicators .col-sm-6 {
    flex: 1 1 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .trust-card {
    height: 100% !important;
    min-height: 80px !important;
    padding: 10px 5px !important;
    display: flex !important;
    flex-direction: column !important;     /* icon top, text below */
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0 !important;
    border-radius: 8px !important;
  }

  .trust-card i {
    font-size: 1.2rem !important;
    margin-bottom: 5px !important;
    display: block !important;
  }

  .trust-card p {
    font-size: 10px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    text-align: center !important;
    padding: 0 2px !important;
  }
}

/* Extra small — same 3-in-a-row but tighter */
@media (max-width: 375px) {
  .trust-card { min-height: 72px !important; padding: 8px 3px !important; }
  .trust-card i { font-size: 1rem !important; }
  .trust-card p { font-size: 9px !important; }
}


/* ================================================================
   FIX 2 — PRICING CARDS: 2 per row on mobile (≤576px)
================================================================ */
@media (max-width: 576px) {

  /* Override the 1-per-row from mobile-responsive.css */
  #pricing .row.g-3 {
    display: flex !important;
    flex-direction: row !important;        /* horizontal grid */
    flex-wrap: wrap !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 10px !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
    margin: 0 !important;
  }

  /* Each pricing card → exactly 50% minus gap */
  #pricing .row.g-3 .col-lg-4.col-md-6 {
    flex: 0 0 calc(50% - 5px) !important;
    width: calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
    padding: 0 !important;
  }

  .pricing-card {
    padding: 16px 10px !important;
    height: 100% !important;
    text-align: center !important;
  }

  .pricing-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
    margin: 0 auto 8px !important;
  }

  .pricing-title       { font-size: 13px !important; margin-bottom: 4px !important; }
  .pricing-description { font-size: 11px !important; margin-bottom: 6px !important; }

  .pricing-features {
    text-align: left !important;
    margin-bottom: 8px !important;
  }
  .pricing-features li { font-size: 11px !important; padding: 2px 0 !important; }

  .pricing-badge { font-size: 8px !important; padding: 3px 7px !important; }

  .pricing-cta {
    display: block !important;
    padding: 8px 10px !important;
    font-size: 11px !important;
    margin-top: auto !important;
  }

  /* "See Full Pricing" button stays full width */
  .btn-full-pricing {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    margin-top: 16px !important;
  }
}

@media (max-width: 375px) {
  #pricing .row.g-3 .col-lg-4.col-md-6 {
    flex: 0 0 calc(50% - 4px) !important;
    width: calc(50% - 4px) !important;
    max-width: calc(50% - 4px) !important;
  }
  .pricing-title { font-size: 12px !important; }
  .pricing-features li { font-size: 10px !important; }
  .pricing-icon  { width: 38px !important; height: 38px !important; font-size: 17px !important; }
}


/* ================================================================
   FIX 3 — PRICING CARDS: Clean 3-column on iPad (577px – 1024px)
================================================================ */
@media (min-width: 577px) and (max-width: 1024px) {

  #pricing .row.g-3 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;           /* force single row */
    align-items: stretch !important;
    justify-content: center !important;
    gap: 12px !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  /* Each card takes equal 1/3 of available width */
  #pricing .row.g-3 .col-lg-4.col-md-6 {
    flex: 1 1 0 !important;
    width: 0 !important;                   /* flex will size it */
    max-width: calc(33.33% - 8px) !important;
    padding: 0 !important;
  }

  .pricing-card {
    padding: 20px 14px !important;
    height: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .pricing-icon  {
    width: 52px !important;
    height: 52px !important;
    font-size: 24px !important;
    margin: 0 auto 10px !important;
  }

  .pricing-title       { font-size: 14px !important; }
  .pricing-description { font-size: 12px !important; }
  .pricing-features    { text-align: left !important; flex: 1 !important; }
  .pricing-features li { font-size: 12px !important; padding: 3px 0 !important; }
  .pricing-badge       { font-size: 9px !important; }

  .pricing-cta {
    display: block !important;
    padding: 9px 12px !important;
    font-size: 12px !important;
    margin-top: auto !important;
  }

  /* "See Full Pricing" stays centered */
  .btn-full-pricing {
    padding: 12px 28px !important;
    font-size: 1rem !important;
  }
}


/* ===================================
   ESOP Assessment Modal Styles
   =================================== */

.esop-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.esop-modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.esop-modal-content {
  position: relative;
  background-color: #ffffff;
  margin: auto;
  width: 100%;
  max-width: 1100px;
  height: auto;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.esop-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #2c3e50;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
  line-height: 0;
  padding: 0;
  margin: 0;
}

.esop-modal-close:hover,
.esop-modal-close:focus {
  color: #e74c3c;
  transform: scale(1.2);
}

.esop-modal-body {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  overflow: hidden;
}

.esop-modal-image {
  flex: 0 0 45%;
  min-width: 300px;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.esop-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.esop-modal-image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  padding: 20px;
  width: 90%;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.esop-modal-image-overlay h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  line-height: 1.2;
}

.esop-modal-image-overlay p {
  font-size: 18px;
  opacity: 1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-weight: 500;
}

.esop-modal-form {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.esop-modal-form-content {
  flex: 1;
  overflow-y: visible;
  overflow-x: hidden;
  padding: 20px 35px;
  padding-bottom: 10px;
}

.esop-modal-form-content::-webkit-scrollbar {
  width: 8px;
}

.esop-modal-form-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.esop-modal-form-content::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 10px;
}

.esop-modal-form-content::-webkit-scrollbar-thumb:hover {
  background: #764ba2;
}

.esop-modal-form-footer {
  padding: 15px 35px;
  background: #ffffff;
  border-top: 2px solid #f0f0f0;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.esop-modal-form h2 {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.esop-modal-subtitle {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 15px;
}

.esop-assessment-form .form-group {
  margin-bottom: 20px;
}

.esop-assessment-form label {
  display: block;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.esop-assessment-form .required {
  color: #e74c3c;
}

.esop-assessment-form input[type="text"],
.esop-assessment-form input[type="email"],
.esop-assessment-form input[type="tel"],
.esop-assessment-form select,
.esop-assessment-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.esop-assessment-form input:focus,
.esop-assessment-form select:focus,
.esop-assessment-form textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.esop-assessment-form textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit-esop {
  width: 100%;
  padding: 14px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-esop:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-submit-esop:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .esop-modal {
    padding: 10px;
  }
  
  .esop-modal-content {
    width: 100%;
    height: calc(100vh - 20px);
    max-height: none;
  }
  
  .esop-modal-body {
    flex-direction: column;
  }
  
  .esop-modal-image {
    flex: 0 0 150px;
    min-height: 150px;
    min-width: 100%;
  }
  
  .esop-modal-image-overlay h3 {
    font-size: 22px;
  }
  
  .esop-modal-image-overlay p {
    font-size: 14px;
  }
  
  .esop-modal-form {
    padding: 30px 20px;
    flex: 1;
  }
  
  .esop-modal-form-content {
    padding: 30px 20px;
  }
  
  .esop-modal-form-footer {
    padding: 15px 20px;
  }
  
  .esop-modal-form h2 {
    font-size: 24px;
  }
  
  .esop-modal-close {
    right: 15px;
    top: 15px;
    font-size: 28px;
    width: 35px;
    height: 35px;
  }
   .press-release-section {
    padding: 50px 0;
  }
  
  .press-badge {
    font-size: 18px;
    padding: 6px 18px;
  }
  
  .press-headline {
    font-size: 1.4rem;
  }
  
  .press-body {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .press-logo-card {
    padding: 40px 20px;
  }
  
  .press-logo {
    max-width: 140px;
  }
   .unique33-pricing-toggle {
        flex-direction: column;
        align-items: center;
    }
    .unique33-pricing-card.unique33-featured {
    margin-top: 20px;
    }
    
    .unique33-pricing-card{
        margin-top: 20px !important;
    }

    .unique33-pricing-container {
        grid-template-columns: 1fr;
    }

    .unique33-pricing-card {
        width: 90%;
        margin: auto;
    }

    .unique33-buy-now {
        width: 100%;
    }
    .demo-schedule{
        margin-left: 20px;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
  .esop-modal {
    padding: 5px;
  }
  
  .esop-modal-content {
    height: calc(100vh - 10px);
  }
  
  .esop-modal-image {
    flex: 0 0 120px;
    min-height: 120px;
  }
  
  .esop-modal-form {
    padding: 25px 15px;
  }
  
  .esop-modal-form-content {
    padding: 25px 15px;
  }
  
  .esop-modal-form-footer {
    padding: 15px;
  }
  
  .esop-modal-form h2 {
    font-size: 20px;
  }
  
  .esop-modal-subtitle {
    font-size: 13px;
  }
}

.press-release-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.press-badge {
  display: inline-block;
  background-color: #f0f4ff;
  color: #082169;
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0px;
  padding: 8px 24px;
  border-radius: 30px;
  border: 1px solid #cdd8f5;
  text-transform: uppercase;
}

.press-logo-card {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  border-radius: 20px;
  padding: 60px 30px;
  border: 1px solid #d0d8f5;
  position: relative;
  overflow: hidden;
}

.press-circle-1 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(8, 33, 105, 0.06);
  border-radius: 50%;
}

.press-circle-2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: rgba(8, 33, 105, 0.04);
  border-radius: 50%;
}

.press-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.press-featured-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.press-line {
  height: 2px;
  width: 30px;
  background: #082169;
  border-radius: 2px;
}

.press-featured-label span {
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #082169;
  letter-spacing: 2px;
}

.press-headline {
  font-family: 'Lexend', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #082169;
  line-height: 1.3;
  margin-bottom: 20px;
}

.press-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #082169, #1069a7);
  border-radius: 2px;
  margin-bottom: 24px;
}

.press-body {
  font-family: 'Lexend', sans-serif;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 28px;
}

.press-body strong {
  color: #082169;
}

.press-highlight {
  border-bottom: 2px solid #1069a7;
}

.press-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.press-tag {
  background: #f0f4ff;
  color: #082169;
  font-family: 'Lexend', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #cdd8f5;
}

.press-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #082169;
  color: #fff;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(8, 33, 105, 0.25);
}

.press-cta:hover {
  background-color: #0a2d8f;
  box-shadow: 0 6px 20px rgba(8, 33, 105, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.press-cta svg {
  transition: transform 0.3s ease;
}

.press-cta:hover svg {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .press-release-section {
    padding: 60px 0;
  }
  
  .press-badge {
    font-size: 20px;
    padding: 6px 20px;
  }
  
  .press-headline {
    font-size: 1.6rem;
  }
  
  .press-body {
    font-size: 1rem;
  }
  
  .press-logo-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .press-release-section {
    padding: 40px 0;
  }
  
  .press-badge {
    font-size: 16px;
    padding: 6px 16px;
  }
  
  .press-headline {
    font-size: 1.2rem;
  }
  
  .press-body {
    font-size: 0.9rem;
  }
  
  .press-tag {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
  
  .press-cta {
    font-size: 0.9rem;
    padding: 12px 28px;
  }
}


/* ============================================================
   FORM VALIDATION STYLES
   ============================================================ */

/* Input field transitions for smooth color changes */
.lead-input,
.form-control,
.esop-assessment-form input,
.esop-assessment-form select,
.esop-assessment-form textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Valid field styling - Green border */
.lead-input.valid,
.form-control.valid,
.esop-assessment-form input.valid,
.esop-assessment-form select.valid {
  border-color: #28a745 !important;
  border-width: 2px !important;
}

/* Invalid field styling - Red border */
.lead-input.invalid,
.form-control.invalid,
.esop-assessment-form input.invalid,
.esop-assessment-form select.invalid {
  border-color: #dc3545 !important;
  border-width: 2px !important;
}

/* Error message styling */
.field-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: block;
  font-weight: 500;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus state for inputs */
.lead-input:focus,
.form-control:focus,
.esop-assessment-form input:focus,
.esop-assessment-form select:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(8, 33, 105, 0.15);
}

/* Success message animation */
#leadCaptureSuccess,
#assessmentSuccess {
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Error message animation */
#leadCaptureError,
#assessmentError {
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Form group spacing for error messages */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

/* Ensure parent elements have proper positioning */
.col-md-6,
.col-12 {
  position: relative;
}

.expertise-heading a:hover {
  text-decoration: underline; /* or any hover style you prefer */
}

.dashboard-card {
    background: #ffff !important;
    height: 16rem;
    margin-bottom: 0 !important;
    width: 100%;
}
.section-title p {
    margin-bottom: 15px !important;
}
/* Default (mobile): 2 per row */
  .stats-grid { display: flex; flex-wrap: wrap; width: 100%; }
  .stats-grid-item { width: 24%; padding: 8px; box-sizing: border-box; text-align: center; }
/* Mobile: 320px - 767px → 1 card per row */
@media (min-width: 320px) and (max-width: 767px) {
    .dashboard-item .col-lg-4 {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }
    .dashboard-item .col-12 {
        width: 100% !important;
        max-width: 100% !important;
    }
    .dashboard-card {
        height: auto !important;
        min-height: unset !important;
        padding-bottom: 20px !important;
    }
    .dashboard-item {
        display: block !important;
    }

    /* Stats: 2 per row */
    .stats-grid-item { width: 50% !important; }
    #dashboard{
   margin-top: 110px !important;
}
}

/* Tablet: 768px - 1023px → 2 cards per row */
@media (min-width: 768px) and (max-width: 1023px) {
    .dashboard-item .col-lg-4 {
        width: 50% !important;
        max-width: 50% !important;
        margin-bottom: 20px !important;
    }
    .dashboard-card {
        height: auto !important;
        min-height: unset !important;
        padding-bottom: 20px !important;
    }
    .dashboard-item {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    /* Stats: 4 per row on tablet */
    .stats-grid-item { width: 25% !important; }
}

/* iPad Pro: 1024px x 1366px → 3 cards per row (desktop layout) */
@media (width: 1024px) and (height: 1366px) {
    .dashboard-item .col-lg-4 {
        width: 33.33% !important;
        max-width: 33.33% !important;
    }
    .dashboard-card {
        height: 16rem !important;
        margin-bottom: -15px !important;
    }

    /* Stats: 4 per row */
    .stats-grid-item { width: 25% !important; }
}

#dashboard{
   margin-top: 50px;
}

/* Professional Contact Form */
#contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(8,33,105,0.08);
}

#contact-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

#contact-form .form-control {
    padding: 14px 18px;
    border-radius: 10px;
    border: 1.5px solid #e0e6f0;
    font-size: 14px;
    color: #333;
    background: #fff!important;
    transition: all 0.3s ease;
    box-shadow: none;
}

#contact-form .form-control:focus {
    border-color: #082169;
    box-shadow: 0 0 0 3px rgba(8,33,105,0.08);
    background: #fff;
    outline: none;
}

#contact-form .form-control::placeholder {
    color: #aab0c0;
    font-size: 14px;
}

#contact-form button[type="submit"] {
    display: block;
    margin: 0 auto;
    width: 60%;
    background: #082169;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(8,33,105,0.25);
    letter-spacing: 0.3px;
}

#contact-form button[type="submit"]:hover {
    background: #0a2d8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8,33,105,0.35);
}

@media (max-width: 767px) {
    #contact-form {
        padding: 25px 18px;
       
    }
    #contact-form button[type="submit"] {
        width: 100%;
    }

    /* Stack 2-column rows into 1 column on mobile */
    #contact-form .form-row-2col {
        flex-direction: column;
        gap: 18px;
    }
}
/* Fix intl-tel-input to match other fields */
.iti {
    width: 100%;
}

.iti__flag-container {
    border-radius: 8px 0 0 8px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=tel] {
    width: 100% !important;
    padding: 16px 15px 12px 52px !important;
    border-radius: 8px !important;
    border: 1.5px solid #e0e6f0;
    font-size: 14px !important;
    transition: all 0.3s !important;
    box-shadow: none !important;
    height: auto !important;
}

.iti--allow-dropdown input:focus,
.iti--allow-dropdown input[type=tel]:focus {
    border-color: #082169 !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(8,33,105,0.08) !important;
    outline: none !important;
}

/* ── Global fixes: Bootstrap overrides inside modal ── */
.esop-modal .esop-assessment-form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: 0 !important;
  width: 100% !important;
}

.esop-modal .esop-assessment-form .row > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
}

.esop-modal .esop-assessment-form .form-group {
  width: 100% !important;
  margin-bottom: 0 !important;
  box-sizing: border-box !important;
}

.esop-modal .esop-assessment-form input[type="text"],
.esop-modal .esop-assessment-form input[type="email"],
.esop-modal .esop-assessment-form input[type="tel"],
.esop-modal .esop-assessment-form input[type="number"],
.esop-modal .esop-assessment-form select,
.esop-modal .esop-assessment-form textarea {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
}

/* ── Prevent horizontal scroll ── */
.esop-modal-content {
  overflow: hidden;
}

.esop-modal-form-content {
  overflow-y: auto;
  overflow-x: hidden;
}

/* ── Image hidden by default (mobile-first) ── */
.esop-modal-image {
  display: none;
}

.esop-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ══════════════════════════════════════════
   DESKTOP (≥ 1025px)
   Image: ✅ | Fields: 2 per row
══════════════════════════════════════════ */
@media (min-width: 1025px) {
  .esop-modal {
    padding: 16px;
    align-items: center;
  }

  .esop-modal-content {
    max-width: 920px;
    border-radius: 16px;
    max-height: 90vh;
    overflow: hidden;
  }

  .esop-modal-body {
    display: grid !important;
    grid-template-columns: 42% 58% !important;
    min-height: 520px;
    flex-direction: unset !important;
    align-items: unset !important;
  }

  .esop-modal-image {
    display: block;
    overflow: hidden;
    min-height: 520px;
  }

  .esop-modal-image img {
    height: 100%;
  }

  .esop-modal-form {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .esop-modal-form-content {
    flex: 1;
    padding: 36px 36px 16px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .esop-modal-form-footer {
    padding: 14px 36px 24px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .esop-modal-form-content h2 { font-size: 22px; }
  .esop-modal-subtitle { font-size: 13px; }

  .esop-modal .esop-assessment-form .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    flex-direction: unset !important;
    align-items: unset !important;
  }

  .esop-modal .esop-assessment-form .col-12 {
    grid-column: 1 / -1 !important;
  }

  .esop-modal .esop-assessment-form label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
  }

  .esop-modal .esop-assessment-form input,
  .esop-modal .esop-assessment-form textarea {
    font-size: 13px !important;
    padding: 9px 12px !important;
  }

  .esop-modal .esop-assessment-form textarea {
    min-height: 85px;
  }

  .btn-submit-esop {
    font-size: 15px;
    padding: 13px 20px;
  }
}

/* ══════════════════════════════════════════
   iPAD PRO (1024px – 1366px)
   Image: ✅ | Fields: 2 per row
══════════════════════════════════════════ */
@media (min-width: 1024px) and (max-width: 1366px) {
  .esop-modal {
    padding: 16px;
    align-items: center;
  }

  .esop-modal-content {
    max-width: 860px;
    max-height: 88vh;
    border-radius: 14px;
    overflow: hidden;
  }

  .esop-modal-body {
    display: grid !important;
    grid-template-columns: 40% 60% !important;
    min-height: 500px;
    flex-direction: unset !important;
    align-items: unset !important;
  }

  .esop-modal-image {
    display: block;
    overflow: hidden;
    min-height: 500px;
  }

  .esop-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .esop-modal-close {
    top: 14px;
    right: 16px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .esop-modal-form {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
  }

  .esop-modal-form-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 28px 28px 12px;
  }

  .esop-modal-form-footer {
    padding: 14px 28px 22px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .esop-modal-form-content h2 { font-size: 20px; margin-bottom: 4px; }
  .esop-modal-subtitle { font-size: 12px; margin-bottom: 12px; }

  .esop-modal .esop-assessment-form .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    flex-direction: unset !important;
    align-items: unset !important;
  }

  .esop-modal .esop-assessment-form .col-12 {
    grid-column: 1 / -1 !important;
  }

  .esop-modal .esop-assessment-form .form-group { margin-bottom: 0; }

  .esop-modal .esop-assessment-form label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
  }

  .esop-modal .esop-assessment-form input,
  .esop-modal .esop-assessment-form textarea {
    font-size: 12px !important;
    padding: 8px 11px !important;
  }

  .esop-modal .esop-assessment-form textarea { min-height: 75px; max-height: 90px; }
  .btn-submit-esop { font-size: 14px; padding: 12px 20px; }
}

/* ══════════════════════════════════════════
   iPAD AIR (820px – 1023px)
   Image: ✅ | Fields: 2 per row
══════════════════════════════════════════ */
@media (min-width: 820px) and (max-width: 1023px) {
  .esop-modal {
    padding: 14px;
    align-items: center;
  }

  .esop-modal-content {
    max-width: 760px;
    max-height: 88vh;
    border-radius: 14px;
    overflow: hidden;
  }

  .esop-modal-body {
    display: grid !important;
    grid-template-columns: 38% 62% !important;
    min-height: 480px;
    flex-direction: unset !important;
    align-items: unset !important;
  }

  .esop-modal-image {
    display: block;
    overflow: hidden;
    min-height: 480px;
  }

  .esop-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .esop-modal-close {
    top: 12px;
    right: 14px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .esop-modal-form {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
  }

  .esop-modal-form-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 22px 10px;
  }

  .esop-modal-form-footer {
    padding: 12px 22px 18px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .esop-modal-form-content h2 { font-size: 18px; margin-bottom: 4px; }
  .esop-modal-subtitle { font-size: 12px; margin-bottom: 10px; }

  .esop-modal .esop-assessment-form .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    flex-direction: unset !important;
    align-items: unset !important;
  }

  .esop-modal .esop-assessment-form .col-12 {
    grid-column: 1 / -1 !important;
  }

  .esop-modal .esop-assessment-form .form-group { margin-bottom: 0; }

  .esop-modal .esop-assessment-form label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
  }

  .esop-modal .esop-assessment-form input,
  .esop-modal .esop-assessment-form textarea {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }

  .esop-modal .esop-assessment-form textarea { min-height: 70px; max-height: 85px; }
  .btn-submit-esop { font-size: 13px; padding: 11px 18px; }
}

/* ══════════════════════════════════════════
   iPAD MINI (768px – 819px)
   Image: ❌ | Fields: 2 per row
══════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 819px) {
  .esop-modal {
    padding: 12px;
    align-items: center;
  }

  .esop-modal-content {
    max-width: 580px;
    height: auto;
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
  }

  .esop-modal-body {
    display: grid !important;
    grid-template-columns: 1fr !important;
    flex-direction: unset !important;
    align-items: unset !important;
  }

  .esop-modal-image { display: none !important; }

  .esop-modal-close {
    top: 12px;
    right: 14px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .esop-modal-form {
    display: flex;
    flex-direction: column;
  }

  .esop-modal-form-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 24px 10px;
  }

  .esop-modal-form-footer {
    padding: 12px 24px 18px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .esop-modal-form-content h2 {
    font-size: 20px;
    margin-bottom: 4px;
    text-align: center;
  }

  .esop-modal-subtitle {
    font-size: 13px;
    margin-bottom: 12px;
    text-align: center;
  }

  .esop-modal .esop-assessment-form .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    flex-direction: unset !important;
    align-items: unset !important;
  }

  .esop-modal .esop-assessment-form .col-12 {
    grid-column: 1 / -1 !important;
  }

  .esop-modal .esop-assessment-form .form-group { margin-bottom: 0; }

  .esop-modal .esop-assessment-form label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
  }

  .esop-modal .esop-assessment-form input,
  .esop-modal .esop-assessment-form textarea {
    font-size: 13px !important;
    padding: 9px 12px !important;
  }

  .esop-modal .esop-assessment-form textarea { min-height: 75px; max-height: 90px; }
  .btn-submit-esop { font-size: 14px; padding: 12px 20px; }
}

/* ══════════════════════════════════════════
   MOBILE LARGE (≤ 767px)
   Image: ❌ | Fields: 2 per row
══════════════════════════════════════════ */
@media (max-width: 767px) {
  .esop-modal {
    padding: 10px;
    align-items: center;
  }

  .esop-modal-content {
    max-width: 100%;
    height: auto;
    max-height: 92vh;
    border-radius: 12px;
    overflow: hidden;
  }

  .esop-modal-body {
    display: grid !important;
    grid-template-columns: 1fr !important;
    flex-direction: unset !important;
    align-items: unset !important;
  }

  .esop-modal-image { display: none !important; }

  .esop-modal-form {
    display: flex;
    flex-direction: column;
  }

  .esop-modal-form-content {
    flex: 1;
    padding: 22px 18px 10px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .esop-modal-form-footer {
    padding: 10px 18px 16px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .esop-modal-form-content h2 { font-size: 18px; margin-bottom: 4px; }
  .esop-modal-subtitle { font-size: 13px; margin-bottom: 12px; }

  .esop-modal .esop-assessment-form .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    flex-direction: unset !important;
    align-items: unset !important;
  }

  .esop-modal .esop-assessment-form .col-12 {
    grid-column: 1 / -1 !important;
  }

  .esop-modal .esop-assessment-form .form-group { margin-bottom: 0; }

  .esop-modal .esop-assessment-form label {
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
  }

  .esop-modal .esop-assessment-form input,
  .esop-modal .esop-assessment-form textarea {
    font-size: 13px !important;
    padding: 9px 11px !important;
  }

  .esop-modal .esop-assessment-form textarea { min-height: 75px; max-height: 90px; }
  .btn-submit-esop { font-size: 13px; padding: 11px 18px; }
}

/* ══════════════════════════════════════════
   MOBILE SMALL (≤ 480px)
   Image: ❌ | Fields: 1 per row
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .esop-modal { padding: 8px; }

  .esop-modal-content {
    border-radius: 10px;
    max-height: 90vh;
    overflow: hidden;
  }

  .esop-modal-close {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    font-size: 17px;
  }

  .esop-modal-form-content {
    padding: 16px 14px 8px !important;
    overflow-x: hidden;
  }

  .esop-modal-form-footer { padding: 8px 14px 12px !important; }

  .esop-modal-form-content h2 { font-size: 16px; margin-bottom: 3px; }
  .esop-modal-subtitle { font-size: 12px; margin-bottom: 10px; }

  .esop-modal .esop-assessment-form .row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    flex-direction: unset !important;
    align-items: unset !important;
  }

  .esop-modal .esop-assessment-form .col-12 {
    grid-column: 1 / -1 !important;
  }

  .esop-modal .esop-assessment-form label { font-size: 12px; margin-bottom: 4px; }

  .esop-modal .esop-assessment-form input,
  .esop-modal .esop-assessment-form textarea {
    font-size: 14px !important;
    padding: 10px 12px !important;
  }

  .esop-modal .esop-assessment-form textarea { min-height: 65px; max-height: 80px; }
  .btn-submit-esop { font-size: 13px; padding: 10px 16px; }
}

/* ══════════════════════════════════════════
   EXTRA SMALL MOBILE (≤ 375px)
══════════════════════════════════════════ */
@media (max-width: 375px) {
  .esop-modal { padding: 5px; }

  .esop-modal-form-content { padding: 14px 12px 6px !important; }
  .esop-modal-form-footer { padding: 6px 12px 10px !important; }

  .esop-modal-form-content h2 { font-size: 15px; }
  .esop-modal-subtitle { font-size: 11px; }

  .esop-modal .esop-assessment-form label { font-size: 11px; }

  .esop-modal .esop-assessment-form input,
  .esop-modal .esop-assessment-form textarea {
    font-size: 13px !important;
    padding: 9px 10px !important;
  }

  .esop-modal .esop-assessment-form textarea { min-height: 60px; max-height: 72px; }
  .btn-submit-esop { font-size: 12px; padding: 9px 14px; }
}

/* ══════════════════════════════════════════
   MOBILE: reduce card height (no empty space)
══════════════════════════════════════════ */
@media (max-width: 767px) {
  .esop-modal-content {
    height: auto !important;
  }

  .esop-modal-form {
    height: auto !important;
  }

  .esop-modal-form-content {
    padding-bottom: 8px !important;
  }

  .esop-assessment-form .form-group:last-child {
    margin-bottom: 0 !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .workflow-step:hover .workflow-circle {
    background: #ffffff !important;
    color: #1069a7 !important;
    transform: none !important;
    box-shadow: 0 5px 20px rgba(16, 105, 167, 0.2) !important;
  }

  .workflow-circle i.bi {
    color: #1069a7 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Carousel - Mobile Arrow Navigation */
@media (max-width: 768px) {
  .features-carousel-wrapper {
    position: relative;
    overflow: hidden !important;
    padding: 20px 60px !important;
  }

  .features-carousel {
    overflow: hidden !important;
  }

  .features-carousel-track {
    display: flex !important;
    animation: none !important;
  }

  .carousel-nav-btn {
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(8, 33, 105, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    pointer-events: auto !important;
    touch-action: manipulation;
  }

  .carousel-nav-btn.prev { left: 5px; }
  .carousel-nav-btn.next { right: 5px; }

  .carousel-nav-btn:active {
    background: #041543;
  }
}

@media (max-width: 576px) {
  .carousel-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .press-tags
  {
      margin-bottom: 15px;
  }
  
}

@media (min-width: 320px) and (max-width: 767px) {
    .blog-sidebar {
        width: 100%!important;
        flex: 1 1 100%!important;
        position: relative;
        margin-left: 0!important;
    }
    

}


