
/*
Theme Name: TeamJara Modern Theme
Theme URI: https://www.teamjara.co.uk
Author: TeamJara
Author URI: https://www.teamjara.co.uk
Description: Custom WordPress theme for TeamJara
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: teamjara
*/

/* ========== GLOBAL & FONT ========== */

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Only prevents horizontal scrolling */
 font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;


  background: #fff;
}

[hidden] {
  display: none !important;
}


.main-header {
  background: #032d42;
  padding:2px  0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-maxwidth {
 width: 90vw;
    max-width: 1400px;;
  margin: 0 auto;

  padding: 0 24px;
}

/* ========== FLEX MENU BAR ========== */
.menu-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

/* ========== LOGO ========== */
.logo {
  margin-right: 40px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo img {
  height: 27px !important;
  width: auto;
  display: block;
  transition: opacity 0.3s ease, height 0.3s ease;
}

/* ========== NAVIGATION MENUS ========== */
.main-navigation {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.center-menu, .right-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.center-menu {
  flex: 1 1 0%;
  justify-content: flex-start; /* Changed from center to flex-start for left alignment */
  gap: 32px;
}



.right-menu {
  flex: 0 0 auto;
  gap: 0;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
  padding: 18px 0;
}

/* Dropdown chevron for menu items with children */
.main-menu > li.menu-item-has-children > a::after {
  content: "⏷";
  font-size: 1em;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 600;
  opacity: 0.8;
  transition: transform 0.15s ease;
  display: inline-block;
  transform: rotate(0deg);
}

/* Rotate chevron when menu is open */
.main-menu > li > a.chevron-rotated::after {
  transform: rotate(180deg);
}

/* Hover states */
.main-menu > li > a:hover, 
.main-menu > li.current-menu-item > a { 
  border-bottom: solid 2px  #fff;
}

/* Active state when dropdown is open */
.main-menu > li[data-mega-open] > a {
  border-bottom: 3px solid #63de4e;
  padding-bottom: 15px; /* Adjust to keep alignment */
}

.main-menu.right-menu .menu-item a {
  color: #032d42 !important;
  background-color: #63de4e;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.main-menu.right-menu .menu-item a:hover {
  background-color: #52cd3d;
}

/* ========== SECONDARY NAVIGATION BAR ========== */
.secondary-nav {
  background: #f1f1f1;
  border-bottom: none !important;
  display: none; /* Hidden by default */
  width: 100%;
}

.secondary-nav.active {
  display: block;
}

.secondary-menu-bar {
  height: 56px; /* Same height as main nav */
  display: flex;
  align-items: center;
    border-top: none !important; 
}

/* ========== MEGA MENU WRAPPERS ========== */
.mega-menu-wrapper {
  display: none;
  width: 100%;
}

.mega-menu-wrapper.active {
  display: block;
}

/* ========== MEGA MENU CONTENT ========== */
.mega-menu-content {
  display: flex;
  gap: 48px;
  padding: 0;
  align-items: center;
  height: 56px;
}

/* LEFT: CTA side */
.mega-menu-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mega-menu-left h3 {
  font-size: 1.2rem;
  margin: 0 ;  
  padding-left: 20px;
  color: #141f33;
  font-weight: 800;
}



.mega-menu-left p {
  display: none; /* Hide paragraph in compact nav bar */
}

.mega-menu-left .btn {
  background: #00fea2;
  color: #032d42;
  border: none;
  padding: 6px 16px;
  font-size: 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.mega-menu-left .btn:hover {
  border-bottom:solid 2px #4dbba9;
}

/* RIGHT: link list */
.mega-menu-links {
  flex: 1 1 auto;
}

.mega-menu-links ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

.mega-menu-links ul li {
  margin: 0;
}

.mega-menu-links a {
  color: #141f33;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.mega-menu-links a:hover {
  border-bottom: solid 2px  #63de4e;
  text-decoration: none;
}

/* ========== ACTIVE STATE - Main header when dropdown is open ========== */
.main-header.mega-menu-open {
  background: #fff !important;
   border-bottom: none !important;  /* Add !important */
}

.main-header.mega-menu-open .menu-bar {
  background: transparent;
   border-bottom: none !important;  /* Add !important */
}

.main-header.mega-menu-open .main-menu > li > a {
  color: #141f33;
}

.main-header.mega-menu-open .main-menu > li > a:hover {
  color: #00fea2;
}

.main-header.mega-menu-open .main-menu > li.menu-item-has-children > a::after {
  color: #141f33;
}

/* Active link indicator when header is white */
.main-header.mega-menu-open .main-menu > li[data-mega-open] > a {
  border-bottom: 3px solid #63de4e;
}

/* ========== INVERTED STATE - When header is already light ========== */
.main-header.mega-menu-open-inverted .secondary-nav {
  background: #032d42;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.mega-menu-open-inverted .mega-menu-left h3 {
  color: #f1f1f1;
}

.main-header.mega-menu-open-inverted .mega-menu-links a {
  color: #f1f1f1;
}

.main-header.mega-menu-open-inverted .mega-menu-links a:hover {
  color: #00fea2;
}

/* ========== PAGE-SPECIFIC SECONDARY NAV STYLING ========== */
.main-header.secondary-menu-active {
  background: #fff !important;
  border-bottom: none;
}

.main-header.secondary-menu-active .menu-bar {
  background: transparent;
}

.main-header.secondary-menu-active .main-menu > li > a {
  color: #141f33;
}

.main-header.secondary-menu-active .main-menu > li > a:hover {
  color: #00fea2;
}

.main-header.secondary-menu-active .main-menu > li.menu-item-has-children > a::after {
  color: #141f33;
}

/* Active link indicator on secondary nav pages */
.main-header.secondary-menu-active .main-menu > li[data-mega-open] > a {
  border-bottom: 3px solid #63de4e;
}

/* Invert secondary nav colors when main header is white */
.main-header.secondary-menu-active .secondary-nav {
  background: #032d42;
  border-bottom: none;
}

.main-header.secondary-menu-active .mega-menu-left h3 {
  color: #f1f1f1;
}

.main-header.secondary-menu-active .mega-menu-links a {
  color: #f1f1f1;
}

.main-header.secondary-menu-active .mega-menu-links a:hover {
  color: #00fea2;
}

/* ========== RESPONSIVE RULES ========== */
@media (max-width: 1400px) {
  .center-menu {
    gap: 24px;
  }
  
  .mega-menu-links ul {
    gap: 20px;
  }
}

@media (max-width: 1200px){
  .logo{ margin-right: 16px; }
  .center-menu{ gap: 18px; }
  .main-menu > li > a{ font-size: 0.88rem; }

  /* Make the CTA button slimmer */
  .main-menu.right-menu .menu-item a{
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}


.main-navigation{ min-width: 0; }
.center-menu{ min-width: 0; }
.right-menu{ flex-shrink: 0; }

@media (max-width: 1200px) {
  .mega-menu-content {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
    gap: 16px;
    align-items: flex-start;
  }
  
  .mega-menu-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .mega-menu-left p {
    display: block;
    font-size: 0.85rem;
    color: #6B7280;
    margin: 0;
  }
  
  .mega-menu-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .secondary-menu-bar {
    height: auto;
  }
}

@media (max-width: 1000px) {
  .main-menu > li > a {
    font-size: 0.85rem;
    padding: 16px 0;
  }
  
  .center-menu {
    gap: 20px;
  }
}

@media (max-width: 800px) {
  .main-header {
    padding: 0;
  }
  
  .menu-bar {
    height: 47px;
    padding: 0;
  }
  
  .logo {
    margin-right: 0;
  }
  
  .logo img {
    height: 25px !important;
    padding: 0;
  }
  
  .main-navigation,
  .center-menu,
  .right-menu,
  .secondary-nav {
    display: none !important;
  }
}



/* ========== MOBILE MENU BUTTON ========== */
/* ========== HAMBURGER MENU ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.hamburger {
  width: 24px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hamburger animation when menu is open */
body.menu-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Change hamburger color when secondary menu is active */
.main-header.secondary-menu-active .hamburger span,
.main-header.mega-menu-open .hamburger span,
.main-header.mega-menu-open-inverted .hamburger span {
  background: #333;
}

@media (max-width: 800px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-navigation {
    display: none;
  }
}

/* ========== MOBILE FULL SCREEN MENU ========== */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
 background: 
    
    radial-gradient(
      circle 800px at 80% 0%,
      rgba(206, 255, 147, 0.12) 5%,
      transparent 40%
    ),
    #032d42;
  z-index: 999999;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 24px;
  box-sizing: border-box;
}

.mobile-menu-overlay.active {
  display: block;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100vh;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
 
}

.mobile-menu-logo {
  height: 30px;
  width: auto;
}

.mobile-menu-close {
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mobile-menu-close:active {
  background: #000;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
  width: 100%;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-item {
  margin-bottom: 0;
  
}

.mobile-menu-item a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu-item a:active {
  color: #00fea2;
}

.mobile-submenu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  padding: 18px 0;
  cursor: pointer;
  float: right;
  transition: transform 0.3s ease;
}

.mobile-menu-item.expanded .mobile-submenu-toggle {
  transform: rotate(90deg);
}








/* Mobile submenu styles */
.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
background: rgba(255, 255, 255, 0.05);
color: #fff;
  border-radius: 8px;
  margin-top: 8px;
}

.mobile-menu-item.expanded .mobile-submenu {
  max-height: 500px;
  padding: 8px 0;
}

.mobile-submenu li {
  border-bottom: none;
}

.mobile-submenu li a {
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 400;
  color: #fff;
}

.mobile-submenu li a:active {
  background: #d0d0d0;
}

.mobile-submenu-toggle {
  transition: transform 0.3s ease;
}

.mobile-menu-item.expanded .mobile-submenu-toggle {
  transform: rotate(90deg);
}


/* Hide all submenu toggle buttons */
.mobile-submenu-toggle {
  display: none !important;
}

/* Add chevrons with CSS instead */
.mobile-menu-item.has-submenu > a::after {
  content: '›';
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  color: #666;
}

.mobile-menu-item {
  position: relative;
}































/* TeamJara Hero Section Styles */

.hero-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 0 0 0;
  background: 
    radial-gradient(
      circle 500px at 40% 20%,
      rgba(247, 255, 230, 0.15) 1%,
      rgba(235, 255, 252, 0.08) 20%,
      transparent 50%
    ),
    radial-gradient(
      circle 800px at 80% 0%,
      rgba(206, 255, 147, 0.12) 5%,
      transparent 40%
    ),
    #032d42;
  position: relative;
  overflow: hidden;
}

.hero-container {
width: 90vw;
    max-width: 1400px;;

  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.hero-content {
  padding: 20px 0;
  margin-bottom: 60px;
}

/* Text Content */
.text-content {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  color: #63de4e;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
}

.title-green {
  color: #63de4e;
  display: block;
}

.title-white {
  color: #FFFFFF;
  display: block;
}

.hero-subtitle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 1px 20px;
  align-items: flex-start;
  min-width: 0;
}

.hero-subtitle {
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #f1f1f1;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

em {
  color: #fff;
  font-style: normal;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 0;
  flex-wrap: wrap;
}

.btn {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: #63de4e;
  border-color: #63de4e;
  color: #032d42;
  text-decoration: none;

  max-width: 300px;
}

.btn-primary:hover {
  background: #5cd044;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 222, 78, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #63de4e;
}

.btn-secondary:hover {
  background: rgba(99, 222, 78, 0.1);
  transform: translateY(-2px);
}

/* =========================
   HERO CAROUSEL
   ========================= */

/* Outer wrapper */
.hero-carousel {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 40px 0 0 0;
  position: relative;
}

.carousel-track {
  display: flex;
   flex-wrap: nowrap;
  will-change: transform;
  gap: 20px;

  /* Layout */
  width: max-content;
  align-items: center;

  /* JS-driven movement */
  will-change: transform;
  user-select: none;

  /* Manual interaction */
  overflow-x: hidden;          /* JS controls movement */
  scroll-behavior: auto;

  /* Hide scrollbars (safety) */
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* Old Edge */

  /* UX */
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-track::-webkit-scrollbar {
  display: none;             /* Chrome / Safari */
}


/* Images */
.carousel-image {
  flex: 0 0 auto;
 
 
  max-width: none;
  height: 250px;
  width: auto;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  user-select: none;
  pointer-events: auto;
}
/* Each set must not shrink to viewport width */
.carousel-set {
  display: flex;
  flex: 0 0 auto;
  width: max-content;
}

/* Auto scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover (desktop hint) */
.carousel-track:hover {
  animation-play-state: paused;
}


/* Responsive */
@media (max-width: 1024px) {
  .hero-section {
    padding: 80px 0 0 0;
  }

  .text-content {
    gap: 60px;
  }

  .hero-title {
    padding-top: 20px 0 0;
    font-size: 2.5rem;
    text-align: left;
}

  .hero-subtitle {
    font-size: 1.125rem;
    text-align: left;
  }

  .carousel-image {
    height: 350px;
  }
}

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

  .hero-container {
    padding: 0 0px;
  }

  .hero-content {
    margin-bottom: 0px;
  }

  .text-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 2rem;
   padding: 10px 20px 0;
    text-align: left;
  }

  .title-green,
  .title-white {
    text-align: center;
  }

  .hero-subtitle-wrapper {
    align-items: left;
    padding: 0 20 0;
  }

  .hero-subtitle {
    font-size: 1.125rem;
    text-align: left;
  }

.cta-buttons {
    justify-content: flex-start;
    align-items: flex-start;
  }
.btn{
  align-self: flex-start;
}
 
  .carousel-image{
  flex: 0 0 auto;
  width: clamp(120px, 28vw, 180px); /* Shows ~3-4 images at once */
  height: auto;
}

  .btn-primary {
  background: #63de4e;
  border-color: #63de4e;
  color: #032d42;
  text-decoration: none;
  padding: 10px 50px;

  max-width: 300px;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #63de4e;
  padding: 10px 50px;
}
}











/* Mission Section Styles */

.h_mission {
  width: 100%;
  padding: 50px 0px;
   background: 
    radial-gradient(
      circle at 20% 70%,
      rgba(93, 204, 187, 0.15) 0%,
      rgba(93, 204, 187, 0.08) 25%,
      transparent 50%
    ),
    #032d42;
}

.h_mission-container {
  width: 90vw;
  max-width: 1400px;;
  margin: 0 auto;
}

.h_mission-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
    padding: 10px 80px;
}

.h_mission-title {
 
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #63de4e;

  margin: 0;
}

.h_mission-text {
 
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7;
  color: #f1f1f1;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .h_mission {
    padding: 60px 5px;
  }

  .h_mission-content {
    gap: 40px;
  }

  .h_mission-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .h_mission {
    padding: 50px 0;
  }

  .h_mission-container {
    width: 90vw;
  }

  .h_mission-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 10px 0;
  }

  .h_mission-title {
    font-size: 1.75rem;
  }

  .h_mission-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .h_mission {
    padding: 36px 0;
  }

  .h_mission-container {
    width: 90vw;
  }

  .h_mission-content {
    padding: 0;
    gap: 18px;
  }

  .h_mission-title {
    font-size: 1.5rem;
  }

  .h_mission-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}








/* Opening Section Styles */

.opening {
  width: 100%;
  padding: 90px 24px;
   background: 
    radial-gradient(
      circle at 60% 70%,
      rgba(93, 204, 187, 0.15) 0%,
      rgba(93, 204, 187, 0.08) 25%,
      transparent 50%
    ),
    #032d42;
  position: relative;
}

.opening-container {
  width: 90vw;
    max-width: 1400px;;
  margin: 0 auto;
}

/* Animated border that expands from center */
.opening::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
  animation: expandFromCenter 2s ease-in-out infinite;
}
.opening-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Visual Side */
.opening-visual {
  position: relative;
}

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

/* Text Side */
.opening-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.opening-label {
 
  font-size: 0.9rem;
  font-weight: 600;
  color: #00fea2;
  margin: 0;
  letter-spacing: 0.5px;
}

.opening-title {
  
  
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #63de4e;
  margin: 0 0 10px;
}

.opening-description {

  font-size: 1.19rem;
  font-weight: 400;
  line-height: 1.7;
  color: #f1f1f1;
  margin: 0;
  max-width: 580px;
}


.opening-description ul{

  font-size: 1.19rem;
  font-weight: 400;
  line-height: 1.7;
  color: #f1f1f1;
  margin: 0;
  max-width: 580px;
}

.opening-cta {
  display: inline-block;
  padding: 18px 36px;
  background: none;
  color: #63de4e;
  border: solid 1px;
  
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  margin-top: 10px;
  transition: all 0.3s ease;
  max-width: fit-content;
}

.opening-cta:hover {

  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 204, 187, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .opening {
      padding: 80px 24px;
  }

  .opening-content {
      gap: 60px;
  }

  .opening-title {
      font-size: 42px;
  }
}

@media (max-width: 768px) {
  .opening {
      padding: 60px 20px;
  }

  .opening-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .opening-visual {
      order: 1;
  }

  .opening-text {
      order: 2;
  }

  .opening-title {
      font-size: 1.5rem;
  }

  .opening-description {
      font-size: 16px;
  }

  .opening-image {
      max-width: 100%;
  }

  .opening-cta {
      width: 100%;
      text-align: center;
  }
}

@media (max-width: 480px) {
  .opening {
      padding: 50px 16px;
  }

  .opening-title {
      font-size: 30px;
  }

  .opening-description {
      font-size: 15px;
  }

  .opening-cta {
      padding: 16px 28px;
      font-size: 15px;
  }
}












/* Logo Strip Section Styles */

.logo-strip {
  width: 100%;
  padding: 90px 24px;
 background: #032d42;
  margin: 0 0;
}

.logo-strip-container {
  width: 90vw;
    max-width: 1400px;;
  margin: 0 auto;
}

.logo-strip-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
   padding: 20px 45px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Left Side - Text */
.logo-strip-text {
  display: flex;
  align-items: center;
}

.logo-strip-title {

  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #63de4e;
  margin: 0;
 
}

/* Right Side - Logos */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.logo-image {
  width: 50%;
  max-width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
    opacity: 1;
  object-fit: contain;


  transition: all 0.3s ease;
}

.logo-image:hover {
 
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .logo-strip {
      padding: 60px 24px;
  }

  .logo-strip-content {
      gap: 60px;
  }

  .logo-strip-title {
      font-size: 42px;
  }

  .logo-grid {
      gap: 30px;
  }

  .logo-image {
      max-width: 140px;
  }
}

@media (max-width: 768px) {
  .logo-strip {
      padding: 50px 20px;
  }

  .logo-strip-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .logo-strip-text {
      order: 1;
      text-align: center;
      justify-content: center;
  }

  .logo-grid {
      order: 2;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
  }

  .logo-strip-title {
      font-size: 36px;
  }

  .logo-item {
      padding: 15px;
  }

  .logo-image {
      max-width: 120px;
  }
}

@media (max-width: 480px) {
  .logo-strip {
      padding: 40px 16px;
  }

  .logo-strip-title {
      font-size: 30px;
  }

  .logo-grid {
      gap: 20px;
  }

  .logo-item {
      padding: 10px;
  }

  .logo-image {
      max-width: 100px;
  }
}










/* Sustainability Section Styles */

.sustainability-section {
  width: 100%;
  padding: 70px 24px;
  background: #F0F9F7;
}

.sustainability-container {
   width: 90vw;
  max-width: 1400px;;
  margin: 0 auto;
}

.sustainability-content {
  display: grid;
  grid-template-columns: 40% 1fr; /* Give more space to right column */
  gap: 80px;
  align-items: stretch;
}

/* Left Side */
.sustainability-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sustainability-label {

  font-size: 16px;
  font-weight: 600;
  color: #4AB8A8;
  margin: 0;
  letter-spacing: 0.5px;
}

.sustainability-title {
 
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #0f425e;
  margin: 0;
  padding: 40px 0;
  width:50%;
}

/* Right Side */
.sustainability-right {
  display: flex;
  margin-top: 140px;
  align-items: stretch; /* Changed to stretch */
  height: 100%; /* Added full height */
}

strong {
    font-weight: 600;
    color: inherit;
    font-size: calc(1em + 0.1rem);
    font-family: inherit;
    line-height: inherit;
}
.how-image{
  width: 70%;
}
.sustainability-border {
  width: 0px;
  min-height: 300px;
  height: 100%;


  flex-shrink: 0;
}

.sustainability-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  columns: auto; /* Prevent CSS columns */
  column-count: 1; /* Force single column */
}

.sustainability-paragraph {

  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #0f425e;
  margin: 0;
  break-inside: avoid; /* Prevent breaking across columns */
  display: block; /* Ensure block display */
  width: 100%; /* Full width */
}

/* Responsive */
@media (max-width: 1024px) {
  .sustainability-section {
      padding: 80px 24px;
  }

  .sustainability-content {
      gap: 60px;
  }

  .sustainability-title {
    width: 100%;
      font-size: 46px;
  }

  .sustainability-paragraph {
      font-size: 16px;
  }
}

@media (max-width: 768px) {
  .sustainability-section {
      padding: 90px 20px;
  }

  .sustainability-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .sustainability-left {
      order: 1;
  }

  .sustainability-right {
      order: 2;
  }

  .sustainability-title {
      font-size: 38px;
       width: 100%;
  }

  .sustainability-paragraph {
      font-size: 16px;
  }
}

@media (max-width: 480px) {
  .sustainability-section {
      padding: 90px 16px;
  }

  .sustainability-title {
      font-size: 32px;
       width: 100%;
  }

  .sustainability-label {
      font-size: 15px;
  }

  .sustainability-paragraph {
      font-size: 15px;
  }

  .sustainability-border {
      width: 3px;
  }

  .sustainability-right {
      gap: 16px;
  }
}














/* Quote Section Styles */



.container {
  max-width: 1200px;
  margin: 0 auto;
}

.leadership-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
}

.leadership-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border: 3px solid white;
}

.leadership-quote {
  flex: 1;
}

.leadership-quote blockquote {
  margin: 0 0 20px 0;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 300;
}

.leadership-quote blockquote p {
  margin: 0;
  color: #f1f1f1;
}

.leadership-info .name {
  font-weight: 600;
  font-size: 18px;
color: #63de4e;
  margin: 0 0 5px 0;
}

.leadership-info .title {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
  color: #63de4e;
}

.cta-button {
  text-align: center;
}


@media (max-width: 768px) {
  .leadership-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .leadership-quote blockquote {
    font-size: 22px;
  }
}



.quote-section {
  width: 100%;
  padding: 80px 24px;
 background: 
    radial-gradient(
      circle at 10% 70%,
      rgba(93, 204, 187, 0.15) 0%,
      rgba(93, 204, 187, 0.08) 25%,
      transparent 50%
    ),
    #032d42;
}

.quote-container {
  width: 90vw;
  max-width: 1400px;;
  margin: 0 auto;
}
.quote-title-heading{
color: #63de4e;
font-weight: 800;
font-size: 3rem;

}

.quote-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.quote-mark {

  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: #63de4e;
  margin: 0;
}

.quote-text {
  margin: 0;
  padding: 0;
  border: none;
}

.quote-text p {
  
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: #f1f1f1;
 font-style: italic;
  margin: 0;
}

.quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  text-align: right;
}

.quote-author {

  font-size: 24px;
  font-weight: 600;
  color: #f1f1f1;
  margin: 0;
}

.quote-title {

  font-size: 18px;
  font-weight: 600;
  color: #63de4e;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .quote-section {
      padding: 70px 24px;
  }

  .quote-mark {
      font-size: 70px;
  }

  .quote-text p {
      font-size: 24px;
  }

  .quote-author {
      font-size: 22px;
  }

  .quote-title {
      font-size: 17px;
  }
}

@media (max-width: 768px) {
  .quote-section {
      padding: 60px 20px;
  }

  .quote-mark {
      font-size: 60px;
  }

  .quote-text p {
      font-size: 20px;
  }

  .quote-author {
      font-size: 20px;
  }

  .quote-title {
      font-size: 16px;
  }

  .quote-title-heading{
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .quote-section {
      padding: 50px 16px;
  }
   .quote-title-heading{
    font-size: 2rem;
  }
}
  .quote-mark {
      font-size: 50px;
  }

  .quote-text p {
      font-size: 18px;
      line-height: 1.6;
  }

  .quote-author {
      font-size: 18px;
  }

  .quote-title {
      font-size: 15px;
  }





  

/* =========================================================
   CONTACT WIDGET (RIGHT-SIDE POPUP)
   ========================================================= */

/* Overlay behind widget */
.contact-widget__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9998;
}



/* Widget container */
.contact-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(420px, calc(100vw - 40px));
  z-index: 9999;
}

/* Widget panel */
.contact-widget__panel {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  animation: widgetIn 0.2s ease forwards;
}

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

/* Close button */
.contact-widget__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}

/* Header */
.contact-widget__top {
  background: #0b4a55;
  color: #ffffff;
  padding: 26px 22px 20px;
  text-align: center;
  position: relative;
}

.contact-widget__title {
  margin: 0 0 10px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.contact-widget__label {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 6px;
}

.contact-widget__big {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 1.6rem;
  font-weight: 800;
}

.contact-widget__mid {
  font-size: 1.3rem;
  font-weight: 800;
}

.contact-widget__sep {
  opacity: 0.8;
}

.contact-widget__phone {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-widget__phone:hover {
  text-decoration: underline;
}

.contact-widget__foot {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-widget__link {
  color: #ffffff;
  text-decoration: underline;
}

/* Body rows */
.contact-widget__body {
  background: #ffffff;
  padding: 10px 0;
}

.contact-widget__row {
display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 14px 18px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  align-items: start;
}

.contact-widget__row:hover {
  background: rgba(0, 0, 0, 0.06);
}

.contact-widget__rowTitle {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  
}

.contact-widget__rowDesc {
  display: block;
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.5;
}

.contact-widget__rowLink {
  text-decoration: underline;
}

.contact-widget__row--disabled {
  opacity: 0.6;
  pointer-events: none;
}


/* =========================================================
   FORM MODAL (CENTERED WITH BLUR)
   ========================================================= */

/* Blur + dim overlay */
.form-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
}

/* Modal wrapper */
.form-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  z-index: 10001;
}

/* Modal panel */
.form-modal__panel {
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  padding: 20px 20px 24px;
  position: relative;
}

/* Modal close */
.form-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  font-size: 22px;
  cursor: pointer;
}

/* Modal title */
.form-modal__title {
  margin: 6px 0 16px;
  font-size: 1.5rem;
  line-height: 1.25;
}

/* Ensure form spacing behaves */
.form-modal__body {
  padding-top: 4px;
}


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

@media (max-width: 520px) {
  .contact-widget {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .contact-widget__big {
    font-size: 1.4rem;
  }

  .form-modal__panel {
    border-radius: 12px;
  }
}








/* ========================================
   LANDLORD PRICING CALCULATOR
   ======================================== */

.calculator-section {
    padding: 80px 10px;
    background: #f8f9fa;
}

.calculator-container {
  
    margin: 0 auto;
}

.calculator-container h2 {
    font-size: 2rem;
    color: #032d42;
    text-align: center;
    margin-bottom: 10px;
}



/* Calculator Wrapper */
.calculator-wrapper {
    background: white;
    border-radius: 12px;
    padding: 10px;
    width: 100%;
    
    margin-bottom: 30px;
}

/* Input Section */
.calculator-input {
    margin-bottom: 40px;
}

.calculator-input label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #032d42;
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.input-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #032d42;
    background: white;
    color: #032d42;
    font-size: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.input-btn:hover {
    background: #032d42;
    color: white;
}

.input-btn:active {
    transform: scale(0.95);
}

.property-input {
    flex: 1;
    height: 50px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #032d42;
    max-width: 150px;
}

.property-input:focus {
    outline: none;
    border-color: #63de4e;
}

/* Remove spinner arrows */
.property-input::-webkit-outer-spin-button,
.property-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.property-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.property-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #63de4e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.property-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #63de4e;
    cursor: pointer;
    border: none;
}

/* Results Section */
.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breakdown-card {
    background: #f8f9fa;
    padding: 5px;
    border-radius: 8px;
}

.breakdown-card h3 {
    font-size: 1.1rem;
    color: #032d42;
    margin-bottom: 15px;
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 6px;
    
}

.breakdown-item.alt {
    background: #e6f7ff;
}

.breakdown-label {
    font-size: 0.95rem;
    color: #333;
}

.breakdown-amount {
    font-weight: 700;
    color: #032d42;
    font-size: 1rem;
}

/* Total Card */
.total-card {
    background: linear-gradient(135deg, #032d42 0%, #0a4d6b 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 600;
}

.total-amount {
    font-size: 2rem;
    font-weight: 700;
}

.cost-per-property {
    text-align: right;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cost-per-property span {
    font-weight: 600;
}

/* CTA Button */
.cta-btn {
    width: 100%;
    padding: 18px;
    background: #63de4e;
    color: #032d42;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #52c93e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 222, 78, 0.3);
}

.cta-btn:active {
    transform: translateY(0);
}

/* Calculator Note */
.calculator-note {
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    border-radius: 8px;
}

.calculator-note p {
    margin: 0;
    color: #856404;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .calculator-section {
        padding: 60px 15px;
    }

    .calculator-container h2 {
        font-size: 2rem;
    }

    .calculator-wrapper {
        padding: 25px;
    }

    .input-group {
        gap: 10px;
    }

    .input-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .property-input {
        font-size: 1.5rem;
        max-width: 120px;
    }

    .total-amount {
        font-size: 1.5rem;
    }

    .breakdown-card {
        padding: 5px;
    }

    .total-card {
        padding: 15px 20px;
    }

    .calculator-note {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .calculator-container h2 {
        font-size: 1.75rem;
    }

    .total-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cost-per-property {
        text-align: left;
        font-size: 0.9rem;
    }
}


/* ========================================
   LANDLORD PRICING SECTION - GRID STYLE
   ======================================== */

.landlord-pricing-section {
    padding: 60px 20px;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 25px;
}

.grid-header {
    background: #0f425e;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #f1f1f1;
}

.grid-cell {
    background: white;
    padding: 18px 20px;
    border: 1px solid #e0e0e0;
    font-size: 1.1rem;
}

.grid-cell.alt {
    background: #daecf6;
}

.grid-cell:nth-child(2n) {
    font-weight: 600;
}

/* Note */
.note {
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

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

@media (max-width: 768px) {
    .landlord-pricing-section {
        padding: 40px 15px;
    }

    .pricing-container h2 {
        font-size: 1.5rem;
    }

    .pricing-grid {
        gap: 6px;
    }

    .grid-header,
    .grid-cell {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .grid-header {
        font-size: 0.9rem;
    }

    .note {
        font-size: 0.85rem;
        padding: 12px 15px;
    }
}

  




/* Partner Program CTA Section */
.partner-cta-section {
  background: #f5f5f5;
  padding:60px 24px;
}

.partner-cta-container {
 width: 90vw;
  max-width: 1400px;;
  margin: 0 auto;
}

.partner-cta-container h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #032d42;
  margin: 0 0 24px 0;
  max-width: 900px;
}

.partner-cta-container p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 32px 0;
  max-width: 900px;
}

.partner-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #032d42;
  border: 2px solid #63de4e;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.partner-cta-btn:hover {
  background: #63de4e;
  color: #032d42;
}

/* Responsive */
@media (max-width: 768px) {
  .partner-cta-section {
    padding: 60px 24px;
  }
  
  .partner-cta-container h2 {
    font-size: 1.5rem;
  }
  
  .partner-cta-container p {
    font-size: 0.9rem;
  }
}

















/* Horizontal Tabs Section */
.horizontal-tabs-section {
    width: 100%;
    padding: 130px 0 0;
    background: 
        radial-gradient(
            circle at 20% 20%,
            rgba(197, 240, 104, 0.15) 0%,
            rgba(93, 204, 187, 0.08) 25%,
            transparent 50%
        ),
        #032d42;
}

/* Wrapper to center content */
.horizontal-tabs-wrapper {
    width: 100%;
}

/* Title Section - centered content */
.horizontal-title {
    width: 90vw;
  max-width: 1400px;;
    margin: 0 auto 40px auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Container for tabs */
.horizontal-tabs-container {
    width: 100%;
    box-sizing: border-box;
}

/* Tab Navigation Wrapper - full width background */
.horizontal-tabs-nav-wrapper {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #E5E7EB;
}

/* Tab Navigation - centered content */
.horizontal-tabs-nav {
    display: flex;
    gap: 0;
    width: 90vw;
  max-width: 1400px;;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    overflow-x: auto;
    scrollbar-width: none;
}

.horizontal-tabs-nav::-webkit-scrollbar {
    display: none;
}

.horizontal-tab {
    background: none;
    border: 1px solid transparent;
    border-bottom: 3px solid transparent;
    padding: 20px 24px;
    line-height: 1.4;
    font-size: 15px;
    font-weight: 600;
    color: #011a3c;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal;
    position: relative;
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.horizontal-tab:hover {
    color: #0D3B52;
    background: #dffcdb;
}

.horizontal-tab.active {
    color: #0D3B52;
    border: 1px solid #999;
    border-bottom: 3px solid #63de4e;
    background: #F0F9F7;
    font-weight: 700;
}

/* Tab Content - full width background */
.horizontal-tabs-content {
    position: relative;
    min-height: 200px;
    padding: 50px 24px;
    background-color: #F0F9F7;
    width: 100%;
}

/* Tab Panels - centered content */
.horizontal-tab-panel {
    display: none !important;
    grid-template-columns: 35% 1fr;
    gap: 10px;
    align-items: start;
    padding: 15px;
    width: 100%;
   width: 90vw;
  max-width: 1400px;;
    margin: 0 auto;
    box-sizing: border-box;
}

.horizontal-tab-panel.active {
    display: grid !important;
    animation: fadeIn 0.4s ease;
}

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

.panel-title {
    
    font-size: 2.5rem;
    font-weight: 600;
    width: 60%;
    line-height: 1.3;
    color: #0D3B52;
    margin: 0;
    grid-column: 1;
}

.panel-text {
   
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #022556;
    margin: 0;
    padding: 0;
    grid-column: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive */
@media (max-width: 1024px) {
    .horizontal-tabs-section {
        padding: 60px 0;
    }

    .horizontal-tab-panel {
        gap: 40px;
    }

    .panel-title {
        font-size: 24px;
    }

    .horizontal-tabs-content {
        padding: 50px 14px;
    }
}

@media (max-width: 768px) {
    .horizontal-tabs-section {
        padding: 50px 0;
    }


      .horizontal-tabs-nav-wrapper {
        position: relative;
    }
    
    .horizontal-tabs-nav-wrapper::after {
        content: '››';
        position: absolute;
        top: 1px;
        right: 15px;
        font-size: 20px;
        font-weight: bold;
        padding: 0 0 10px;
        color: #63de4e;
        animation: scrollHint 1.5s ease-in-out infinite;
        pointer-events: none;
        z-index: 10;
    }
    
    @keyframes scrollHint {
        0%, 100% {
            opacity: 0.4;
            transform: translateX(0);
        }
        50% {
            opacity: 1;
            transform: translateX(5px);
        }
    }

    .horizontal-title {
        padding: 0 20px;
    }

    .horizontal-tabs-nav {
        padding: 0 20px;
    }

   .horizontal-tab {
        font-size: 0.95rem;
        padding: 16px 12px;
        min-width: 140px; /* Increased from 120px */
        max-width: 160px; /* Add max-width to control wrapping */
    }

    .horizontal-tab-panel {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .panel-title,
    .panel-text {
        grid-column: 1 !important;
    }

    .panel-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .panel-text {
        font-size: 1.1rem;
    }

    .horizontal-tabs-content {
        padding: 40px 10px;
        min-height: 300px;
    }
    

}

@media (max-width: 480px) {
    .horizontal-tabs-section {
        padding: 40px 0;
    }

    .horizontal-title {
        padding: 0 16px;
    }

    .horizontal-tabs-nav {
        padding: 0 16px;
    }

    .horizontal-tab {
        font-size: 12px;
        padding: 14px 10px;
        min-width: 100px;
    }

    .panel-title {
        font-size: 20px;
    }

    .panel-text {
        font-size: 1rem;
    }

    .horizontal-tabs-content {
        padding: 30px 16px;
    }
}








.h_mission-service-text{
  color: #f1f1f1;
  font-weight: 800;
  font-size: 1.6rem;
}









/* Tailored Solutions Section */
.tailored-solutions-section {
    width: 100%;
    padding: 120px 0 0;
    background: #fff;
    overflow: hidden; /* Allows circles to bleed off edge */
}

.tailored-container {
    width: 90vw;
  max-width: 1400px;;
    margin: 0 auto;
    padding: 0 24px;
  
    box-sizing: border-box;
}

.tailored-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

/* Left Side */
.tailored-left {
    position: relative;
    min-width: 0;
}

.tailored-title {
 
    font-size: 2.7rem !important;
    font-weight: 800;
    line-height: 1.2;
    color: #0D3B52;
    margin: 0 0  0;
}

.address{
  font-size: 2.5rem !important;
}


/* Decorative Circles - bleed off left edge */
.decorative-circles {
    display: flex;
    gap: 0;
    margin-left: -200px; /* Push circles off the left edge */
}

.circle {
    width: 240px; /* Larger circles like the example */
    height: 240px;
    border-radius: 50%;
    margin-left: -60px; /* Overlap between circles */
}

.circle-1 {
    background: #A8E6F0;
    opacity: 0.6;
}

.circle-2 {
    background: #7DD9ED;
    opacity: 0.7;
}

.circle-3 {
    background: #00fea2;
    opacity: 0.8;
}

/* Right Side - Accordion */
.tailored-right {
    min-width: 0;
    margin:40px 0;
}

.accordion-item {
    border-bottom: 1px dotted #CBD5E1;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

    font-size: 1.8rem;
    font-weight: 500;
    color: #0D3B52;
    text-align: left;
    transition: color 0.3s ease;
}

.accordion-header:hover {
   font-weight: 800;
}

.accordion-header span:first-child {
    flex: 1;
    min-width: 0;
    padding-right: 20px;
    word-break: break-word;
}

.accordion-icon {
    font-size: 28px;
    font-weight: 300;
    color: #00fea2; /* Changed to teal to match example */
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding-bottom: 24px;
}

.accordion-content p {
    font-size: 1.1rem;
    font-weight: 400; /* Changed from 600 to match example */
    line-height: 1.7;
    color: #2C3E50;
    margin: 0;
    word-break: break-word;
}

.accordion-content ul {
    font-size: 1rem;
    font-weight: 400; /* Changed from 600 to match example */
    line-height: 1.8;
    color: #2C3E50;
    margin: 0;
    
}

/* Bottom Roles Section */
.tailored-roles {
    padding-top: 40px;
    border-top: 1px solid #CBD5E1;
}

.roles-title {
    font-size: 28px;
    font-weight: 600;
    color: #0D3B52;
    margin: 0 0 30px 0;
}

.roles-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.role-item {
    
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
}

/* Responsive */
@media (max-width: 1024px) {
    .tailored-content {
        gap: 60px;
        margin-bottom: 60px;
    }

    .tailored-title {
        font-size: 2rem !important;
    }

    .circle {
        width: 200px;
        height: 200px;
    }
    
    .decorative-circles {
        margin-left: -150px;
    }
}

@media (max-width: 768px) {
    .tailored-container {
        padding: 0 20px;
    }

    .tailored-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 50px;
    }

    .tailored-title {
        font-size: 1.7rem !important;
        margin-bottom: 40px;
    }

    .decorative-circles {
        justify-content: center;
        margin-left: 0; /* Center on mobile */
    }

    .circle {
        width: 150px;
        height: 150px;
        margin-left: -40px;
    }

    .accordion-header {
        font-size: 1.7rem;
        padding: 20px 0;
    }

    .accordion-icon {
        font-size: 24px;
    }
    .accordion-content p {
        font-size: 1rem;
    }
    .accordion-content ul {
    font-size: 1.07rem;
    
}


    .roles-title {
        font-size: 24px;
    }

    .roles-list {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .tailored-container {
        padding: 0 16px;
    }

    .tailored-title {
        font-size: 2rem;
    }

    .circle {
        width: 120px;
        height: 120px;
        margin-left: -30px;
    }

    .accordion-header {
        font-size: 18px;
    }

    .accordion-content p {
        font-size: 1rem;
    }

    .role-item {
        font-size: 16px;
    }
}










/* ========== STEPS TIMELINE COMPONENT ========== */
/* Add this to your style.css file */

.steps-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

.steps-timeline {
    position: relative;
}

.steps-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

/* Connecting line between steps */
.steps-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    width: 3px;
    height: calc(100% - 20px);
    background: #032d42;
    opacity: 0.3;
}

.steps-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 4px solid #032d42;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: #032d42;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
}

.steps-content {
    flex: 1;
    background: white;
    border: 3px solid #032d42;
    border-radius: 24px;
    padding: 28px 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.steps-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #032d42;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.steps-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .steps-container {
        padding: 20px 16px;
    }

    .steps-item {
        gap: 16px;
        margin-bottom: 32px;
    }

    .steps-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        border: 3px solid #032d42;
    }

    /* Adjust connecting line position for smaller circles */
    .steps-item:not(:last-child)::after {
        left: 29px;
        top: 60px;
        width: 2px;
    }

    .steps-content {
        padding: 20px 24px;
        border-radius: 18px;
        border: 2px solid #032d42;
    }

    .steps-content h2 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .steps-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .steps-container {
        padding: 20px 12px;
    }

    .steps-item {
        gap: 12px;
    }

    .steps-number {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }

    .steps-item:not(:last-child)::after {
        left: 24px;
        top: 50px;
    }

    .steps-content {
        padding: 16px 20px;
    }

    .steps-content h2 {
        font-size: 1rem;
    }

    .steps-content p {
        font-size: 0.9rem;
    }
}






/* Features Accordion Section */
.features-accordion-section {
    width: 100%;
    padding: 80px 0;
    background: 
    radial-gradient(
      circle at 10% 70%,
      rgba(93, 204, 187, 0.15) 0%,
      rgba(93, 204, 187, 0.08) 25%,
      transparent 50%
    ),
    #032d42;
}

.features-accordion-container {
   width: 90vw;
  max-width: 1400px;;
    margin: 0 auto;
    padding: 0 24px 50px;
    box-sizing: border-box;
}

/* Header with Expand All */
.features-accordion-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.expand-all-btn {
    background: none;
    border: none;

    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.expand-all-btn:hover {
    color: #00fea2;
}

/* Accordion List */
.features-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.features-accordion-item {
    border-bottom: 1px solid #E2E8F0;
}

.features-accordion-item:last-child {
    border-bottom: none;
}

.features-accordion-question {
    width: 100%;
    background: none;
    border: none;
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
   
    
    font-size: 24px;
    font-weight: 600;
    color: #00fea2;
    text-align: left;
    transition: color 0.3s ease;
}

.features-accordion-question:hover {
    color: #00fea2;
}

.features-accordion-question span:first-child {
    flex: 1;
    min-width: 0;
    padding-right: 20px;
    word-break: break-word;
}

.features-accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #f1f1f1;
    transition: transform 0.3s ease;
}

.features-accordion-item.active .features-accordion-icon {
    transform: rotate(180deg);
}

.features-accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.features-accordion-item.active .features-accordion-answer {
    max-height: 500px;
    padding-bottom: 72px;
}


.feature-title{
  font-size: 2.5rem;
  color: #00fea2;
  font-weight: 900;
}

.features-accordion-answer p {

  
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.7;
    color: #f1f1f1;
    margin: 0;
    word-break: break-word;
}




.page-template-services .features-accordion-question,
.page-template-trades .features-accordion-question {
  font-size: 1.7rem;
  font-weight: 600;
}


.page-template-services .features-accordion-answer p,
.page-template-trades .features-accordion-answer p {
  font-size: 1.3rem;
  line-height: 1.6;
}



/* Responsive */
@media (max-width: 1024px) {
    .features-accordion-section {
        padding: 60px 0;
    }
    
    .features-accordion-question {
        font-size: 22px;
        padding: 28px 0;
    }
    
    .features-accordion-answer p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {

  .feature-title{
  font-size: 2rem;
  color: #00fea2;
  font-weight: 700;
}
    .features-accordion-section {
        padding: 50px 0;
    }
    
    .features-accordion-container {
        padding: 0 20px;
    }
    
    .features-accordion-question {
        font-size: 1.2rem;
        padding: 24px 0;
    }
    
    .expand-all-btn {
        font-size: 15px;
    }
    
    .features-accordion-answer p {
        font-size: 1rem;
    }
    
    .features-accordion-item.active .features-accordion-answer {
        padding-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .features-accordion-section {
        padding: 40px 0;
    }
    
    .features-accordion-container {
        padding: 0 16px;
    }
    
    .features-accordion-question {
        font-size: 18px;
        padding: 20px 0;
    }
    
    .features-accordion-icon {
        width: 20px;
        height: 20px;
    }
    
    .features-accordion-answer p {
        font-size: 15px;
    }
}








/* Training Stats Section (ServiceNow style) */
.training-stats-section {
  background: #032d42;
  padding: 130px 24px;
  color: #fff;
}

.training-stats-container {
  width: 90vw;
  max-width: 1400px;;
  margin: 0 auto;
}

.training-stats-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

/* Left side - Text content */
.training-stats-text h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: #fff;
}

body.home .training-stats-section .training-stat-number{
  font-size: 1.5rem !important;
}

.training-stats-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 32px 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 400px;
}

.training-stats-btn {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid #63de4e;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.training-stats-btn:hover {
  background: #63de4e;
  color: #032d42;
}

/* Right side - Stats grid */
.training-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.training-stat-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.training-stat-number {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.training-stat-bar {
  height: 4px;
  width: 80px;
  border-radius: 2px;
}

.training-stat-bar-pink {
  background: #e91e8c;
}

.training-stat-bar-orange {
  background: #ff8c00;
}

.training-stat-bar-green {
  background: #63de4e;
}

.training-stat-label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 280px;
}

/* Responsive */
@media (max-width: 1200px) {
  .training-stats-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .training-stats-grid {
    gap: 40px;
  }
  
  .training-stats-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .training-stats-section {
    padding: 100px 24px;
  }
  .address{
    font-size: 2rem !important;
  }
  .training-stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .training-stats-text h2 {
    font-size: 2rem;
  }
  .training-stats-btn{
    font-size: 0.9rem;
  }
  
  .training-stat-number {
    font-size: 2rem;
  }
.infograph{

  width: 100% !important;
}
}







/* Inverted colors for contact template */
body.page-template-contact .training-stats-section,
body.page-template-contact-php .training-stats-section {
  background: #f8f9fa;
  color: #032d42;
}

body.page-template-contact .training-stats-text h2,
body.page-template-contact-php .training-stats-text h2 {
  color: #032d42;
}

body.page-template-contact .training-stats-text p,
body.page-template-contact-php .training-stats-text p {
  color: rgba(3, 45, 66, 0.9);
}



/* hOMEPAGE TESTIMONIAL */

 .success-stories-section {
             background: 
   
    radial-gradient(
      circle 800px at 80% 0%,
      rgba(206, 255, 147, 0.12) 5%,
      transparent 40%
    ),
    #032d42;
            padding: 80px 20px;
            overflow: hidden;
            position: relative;
        }

        .success-container {
            max-width: 1400px;;
            margin: 0 auto;
        }

        .success-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
            gap: 20px;
        }

        .success-title {
            font-size: 3rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
        }

        .slider-controls {
            display: flex;
            gap: 15px;
        }

        .control-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: transparent;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .control-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .control-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .slider-wrapper {
            position: relative;
            overflow: visible;
        }

        .slider-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .story-card {
            min-width: calc(100% - 120px);
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 60px;
            align-items: center;
            flex-shrink: 0;
        }

        .story-image-wrapper {
            position: relative;
        }

        .story-image {
            width: 300px;
            height: 300px;
            border-radius: 5%;
            object-fit: cover;
            border: 8px solid rgba(255, 255, 255, 0.1);
        }

        .story-content {
            color: #ffffff;
            max-width: 700px;
        }

        .client-label {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
        }

        .client-name {
            font-size: 2.5rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 30px 0;
            line-height: 1.2;
        }

        .story-description {
            font-size: 1.25rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
        }

        .read-more-btn {
            display: inline-block;
            padding: 16px 40px;
            background: #00fea2;
            color: #333;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .read-more-btn:hover {
         
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(1, 58, 2, 0.4);
        }

        /* Peek effect - show next slide slightly */
        .story-card:not(:first-child) {
            opacity: 0.4;
        }

        /* Override peek effect for active card */
.story-card.active {
    opacity: 1 !important;
}

        /* Mobile Responsive */
@media (max-width: 1024px) {
    .story-card {
        min-width: calc(100% - 80px);
        gap: 40px;
    }

    .story-image {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .success-stories-section {
        padding: 60px 10px; /* Increased from 15px to 20px */
    }

    .success-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
        gap: 25px;
        padding: 0 5px; /* Added padding */
    }

    .success-title {
        font-size: 2rem;
    }

    .slider-controls {
        align-self: flex-end;
    }

    .control-btn {
        width: 48px;
        height: 48px;
    }

    .story-card {
        min-width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
        padding: 0 10px; /* Added padding inside card */
    }

    .story-image-wrapper {
        justify-self: flex-start;
        padding: 0 5px; /* Added padding around image */
    }

    .story-image {
        width: 280px;
        height: 280px;
        border: 6px solid rgba(255, 255, 255, 0.1);
    }

    .story-content {
        max-width: 100%;
        text-align: left;
        padding: 0 10px; /* Added padding for text content */
    }

    .client-label {
        font-size: 0.75rem;
        margin-bottom: 12px; /* Added bottom spacing */
    }

    .client-name {
        font-size: 1.75rem;
        margin-bottom: 20px;
        padding-right: 10px; /* Added right padding for breathing room */
    }

    .story-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
        padding-right: 15px; /* Added right padding */
    }

    .read-more-btn {
        padding: 14px 32px;
        font-size: 0.9rem;
        display: inline-block;
        margin-left: 0; /* Ensure left alignment */
    }

    /* Reduce peek effect on mobile */
    .story-card:not(:first-child) {
        opacity: 0.2;
    }
    
    /* Override for active card on mobile */
    .story-card.active {
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .success-stories-section {
        padding: 50px 10px; /* Adequate padding for small screens */
    }

    .success-title {
        font-size: 1.75rem;
        padding: 0 5px; /* Added padding */
    }

    .control-btn {
        width: 44px;
        height: 44px;
    }

    .story-card {
        min-width: calc(100% - 30px); /* Increased from 20px */
        padding: 0 15px; /* More padding on small screens */
    }

    .story-image {
        width: 240px;
        height: 240px;
    }

    .story-content {
        padding: 0 15px; /* More padding on small screens */
    }

    .client-name {
        font-size: 1.5rem;
    }

    .story-description {
        font-size: 0.9rem;
        padding-right: 10px;
    }

    .read-more-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}







/* About Page Content */

.white-features {
  background: #ffffff;
  padding: 80px 24px;

  /* safety net: prevents accidental horizontal scroll */
  overflow-x: hidden;
}

.white-features__inner {
  width: 90vw;
  max-width: 1400px;;
  margin: 0 auto;
  width: 100%;

  display: grid;

  /* key fix: let grid columns shrink properly */
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);

  gap: 80px;
  align-items: center;
  position: relative;
}

/* Image */
.white-features__image {
  min-width: 0; /* helps grid shrinking */
  
}

.white-features .white-features__inner {
  align-items: start;
}

.white-features .white-features__content h2:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.white-features .white-features__image {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.white-features__image img {
  width: 100%;          /* key fix: responsive */
    /* keeps your intended desktop size */
  height: auto;
  
  object-fit: cover;
  display: block;       /* removes inline img spacing quirks */
}

#pricing .white-features__image {
  padding-top: 0;
  margin-top: 0;
}

#pricing .white-features__image h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

#pricing .white-features__inner {
  align-items: start;
}

#pricing .tailored-title {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* Content */
.white-features__content {
  min-width: 0; /* key fix: prevent text overflow in grid */
}

.white-features__content h2 {

  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #0d3b52;

  /* handles long words safely */
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.white-features__content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;

  max-width: 52ch;
  margin-bottom: 32px;

  /* handles long strings safely */
  overflow-wrap: anywhere;
  word-break: break-word;
}

.white-features__content ul {
  font-size: 1.1rem;
  line-height: 1.7;
  color:#333;

  max-width: 52ch;
  margin-bottom: 32px;

  /* handles long strings safely */
  overflow-wrap: anywhere;
  word-break: break-word;
}


/* Main CTA */
.white-features__cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid #66e26f;
  color: #0d3b52;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.white-features__cta:hover {
  background: #66e26f;
  color: #0d3b52;
}

/* (Kept in case you reuse pills elsewhere) */
.white-features__pill {
  background: #66e26f;
  color: #0d3b52;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
}

.white-features__pill:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .white-features__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Optional: center the image nicely on mobile */
  .white-features__image img {
    max-width: 100%;
  }

}

.infograph{

  width: 70%;
}







/* News Hero Section trades & services */
.news-hero-section {
 background: 
    radial-gradient(
      circle 1000px at 20% 50%,
      rgba(218, 255, 143, 0.15) 0%,
      rgba(203, 242, 236, 0.08) 25%,
      transparent 50%
    ),
    radial-gradient(
      circle 2000px at 70% 30%,
      rgba(255, 214, 12, 0.12) 0%,
      transparent 20%
    ),
    #032d42;
  padding: 100px 24px 80px;
  position: relative;

  overflow: hidden;
}
.news-hero-section .partner-cta-btn {
    
    color: #f1f1f1;
}




@keyframes spotlight-move {
  0%, 100% {
    transform: translate(0%, 0%);
  }
  25% {
    transform: translate(20%, 10%);
  }
  50% {
    transform: translate(-10%, 20%);
  }
  75% {
    transform: translate(10%, -10%);
  }
}










/* Success Banner (hero strip) */
.success-banner {

  background: #d8faed; /* adjust to match your theme */
  padding: 100px 20px 40px;
}

.success-banner__container {
  width: 85vw;
  max-width: 1400px;;
  margin: 0 auto;
}

.success-banner__grid {
  display: grid;
 grid-template-columns: 50% 50%;
  gap: 48px;
  align-items: center;
}

.success-banner__title {
  margin: 0 0 14px;
  font-size: 2.9rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #222;
}

.success-banner__lead {
  margin: 0 0 22px;
  font-size: 1.2rem;
  line-height: 1.6;
  color:#333;
  max-width: 60ch;
}

.success-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: #fff;
  color: #0b4a55;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.success-banner__btn:hover {
  opacity: 0.92;
}

/* Right visual */
.success-banner__visual {
  position: relative;
  min-height: 180px;
  display: grid;
  place-items: center;
  justify-items: end;
}



.success-banner__img {
  position: relative;
  z-index: 2;
 
  width: 60%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
  .success-banner__grid {
    grid-template-columns: 1fr;
  }

  .success-banner__visual {
    justify-items: start;
    min-height: 220px;
  }

  .success-banner__shape {
    right: auto;
    left: 0;
    width: 100%;
    height: 170px;
  }

  .success-banner__img {
    height: 220px;
  }

  .success-banner__title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .success-banner {
    padding: 100px 20px 40px;
  }

  .success-banner__title {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
  }

  .success-banner__lead {
    font-size: 1rem;
  }

  .success-banner__visual {
    display: none;
  }
}




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

.compliance {
  padding: 60px 0;
  background-color: #fff;
}

.compliance__container {
  width: 85vw;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each heading + body block */
.compliance__block {
  padding: 20px 0;
  
}

.compliance__block:first-child {
  padding-top: 0;
}

.compliance__block:last-child {
  border-bottom: none;
}

.compliance__heading {
  
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.compliance__text {
  
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
  margin: 0 0 14px 0;
  max-width: 100%;
}

.compliance__list li{

 font-size: 1.1rem;
  line-height: 1.4;
  color: #333;
  margin: 0 0 14px 0;
  max-width: 100%;

}

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

/* Responsive */
@media (max-width: 768px) {
  .compliance {
    padding: 40px 0;
  }

  .compliance__block {
    padding: 28px 0;
  }
}

@media (max-width: 480px) {
  .compliance__container {
    width: 90vw;
  }

  .compliance__block {
    padding: 24px 0;
  }
}

@media (max-width: 600px) {
  .compliance {
    padding: 32px 0;
  }

  .compliance__container {
    width: 90vw;
  }

  .compliance__block {
    padding: 20px 0;
  }

  .compliance__heading {
    font-size: 1.3rem;
    margin: 0 0 12px 0;
  }

  .compliance__text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .compliance__list li {
    font-size: 1rem;
    line-height: 1.5;
  }
}








/* Success Banner (hero strip) */
.success-banner_compliance {

  background: #011754; /* adjust to match your theme */
  padding: 100px 20px 40px;
}

.success-banner_compliance__container {
  width: 85vw;
  max-width: 1400px;;
  margin: 0 auto;
}

.success-banner_compliance__grid {
  display: grid;
 grid-template-columns: 90% 10%;
  gap: 48px;
  align-items: center;
}

.success-banner_compliance__title {
  margin: 0 0 14px;
  font-size: 2.9rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #fff;
}

.success-banner_compliance__lead {
  margin: 0 0 22px;
  font-size: 1.2rem;
  line-height: 1.6;
  color:#fff;
  max-width: 60ch;
}

.success-banner_compliance__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: #fff;
  color: #0b4a55;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.success-banner_compliance__btn:hover {
  opacity: 0.92;
}

/* Right visual */
.success-banner_compliance__visual {
  position: relative;
  min-height: 180px;
  display: grid;
  place-items: center;
  justify-items: end;
}



.success-banner_compliance__img {
  position: relative;
  z-index: 2;
 
  width: 60%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
  .success-banner_compliance__grid {
    grid-template-columns: 1fr;
  }

  .success-banner_compliance__visual {
    justify-items: start;
    min-height: 220px;
  }

  .success-banner_compliance__shape {
    right: auto;
    left: 0;
    width: 100%;
    height: 170px;
  }

  .success-banner_compliance__img {
    height: 220px;
  }

  .success-banner_compliance__title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .success-banner_compliance {
    padding: 70px 20px 32px;
  }

  .success-banner_compliance__title {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
  }

  .success-banner_compliance__lead {
    font-size: 1rem;
  }

  .success-banner_compliance__visual {
    display: none;
  }
}




/* Why TeamJara Intro Text Section */
.intro-text-section {
    background: 
    radial-gradient(
      circle 500px at 40% 20%,
      rgba(247, 255, 230, 0.15) 1%,
      rgba(235, 255, 252, 0.08) 20%,
      transparent 50%
    ),
    radial-gradient(
      circle 800px at 80% 0%,
      rgba(206, 255, 147, 0.12) 5%,
      transparent 40%
    ),
    #032d42;
    padding: 120px 40px 80px;
}

.intro-text-container {
    width: 90vw;
  max-width: 1400px;;
    margin: 0 auto;
}

.intro-text-content {
    max-width: 1000px;
}

.intro-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 30px 0;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

.intro-text-content ul li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .intro-text-section {
        padding: 80px 30px;
    }
    
    .intro-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .intro-description {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .intro-text-section {
        padding: 90px 20px;
    }
    
    .intro-heading {
        font-size: 28px;
    }
    
    .intro-description {
        font-size: 16px;
    }
}









/* Module Start */
.module-start {
  padding: 72px 0;
}

.module-start__container {
  width: 85vw;
  max-width: 1400px;
  margin: 0 auto;
}

.module-start__title {
  font-size: 2.3rem;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.module-start__lead {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 44px;
  max-width: 80ch;
}

.module-start__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: center;
}

.module-start__media {
  border-radius: 18px;
  overflow: hidden;
  background: #eef6ff;
}

.module-start__img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.module-start__content {
  padding-top: 6px;
}

.module-start__subTitle {
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0 0 18px;
}

.module-start__text {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 85ch;
}

/* Responsive */
@media (max-width: 900px) {
  .module-start__title {
    font-size: 2rem;
  }

  .module-start__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .module-start__img {
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  .module-start {
    padding: 40px 0;
  }

  .module-start__title {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
  }

  .module-start__lead {
    font-size: 1rem;
    margin: 0 0 28px;
  }

  .module-start__subTitle {
    font-size: 1rem;
  }

  .module-start__text {
    font-size: 1rem;
  }

  .module-start__img {
    min-height: 220px;
  }
}










/* Module Point */
.module-point {
  padding: 52px 0;
}

.module-point__container {
  width: 85vw;
  max-width: 1400px;;
  margin: 0 auto;
}

.module-point__title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
  width: 70%;
  letter-spacing: -0.02em;
}

.module-point__lead {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 44px;
  max-width: 80ch;
}

.module-point__grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 64px;
  align-items: center;
}

.module-point__media {
  border-radius: 18px;
  overflow: hidden;
}

.module-point__img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.module-point__content {
  padding-top: 4px;
}

.module-point__subTitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 18px;
  line-height: 1.3;
}

.module-point__list {
  margin: 0 0 24px;
  padding-left: 20px;
}

.module-point__list li {
  font-size: 0.98rem;
  line-height: 1.3;
  margin-bottom: 14px;
  max-width: 90ch;
  color: #333;
}

.module-point__actions {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.module-point__link {
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.module-point__link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .module-point__title {
    font-size: 2rem;
  }

  .module-point__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .module-point__img {
    min-height: 260px;
  }

  .module-point__title {
  
 
  width: 100%;

}
}














/* Info Banner */
.info-banner {
  padding: 32px 0;
}

.info-banner__container {
  width: 85vw;
  max-width: 1500px;
  margin: 0 auto;
  background: #eef8ff;
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.info-banner__title {
  margin: 0 0 6px;
  font-size: 1.6rem;
  line-height: 1.25;
}

.info-banner__text {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 90ch;
}

.info-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  background: #0a58ca;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.info-banner__btn:hover {
  opacity: 0.92;
}

/* Responsive */
/* Responsive */
@media (max-width: 900px) {
  .info-banner__container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .info-banner__action {
    margin-top: 12px;
  }
}

@media (max-width: 600px) {
  .info-banner {
    padding: 20px 0;
  }

  .info-banner__container {
    padding: 22px 20px;
    border-radius: 12px;
  }

  .info-banner__title {
    font-size: 1.3rem;
  }

  .info-banner__text {
    font-size: 1rem;
  }

  .info-banner__btn {
    width: 100%;
    justify-content: center;
  }
}




/* Quick Point */
.quick-point {
  padding: 64px 0;
}

.quick-point__container {
  width: 85vw;
  max-width: 1400px;;
  margin: 0 auto;
 
}

.quick-point__title {
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.quick-point__lead {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 0 40px;
  max-width: 78ch;
}

.quick-point__grid {
  display: grid;
   grid-template-columns: 50% 50%;
  gap: 64px;
  align-items: center;
}

.quick-point__media {
  border-radius: 18px;
  overflow: hidden;
}

.quick-point__img {
  display: block;
  width: 100%;
  height: 80%;
  min-height: 360px;
  object-fit: cover;
}

.quick-point__content {
  padding-top: 4px;
}

.quick-point__subTitle {
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 0 0 16px;
}

.quick-point__list {
  margin: 0;
  padding-left: 20px; /* bullet indent */
}

.quick-point__listItem {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .quick-point__title {
    font-size: 2rem;
  }

  .quick-point__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quick-point__img {
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  .quick-point {
    padding: 40px 0;
  }

  .quick-point__title {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
  }

  .quick-point__lead {
    font-size: 1rem;
    margin: 0 0 28px;
  }

  .quick-point__subTitle {
    font-size: 1.1rem;
  }

  .quick-point__listItem {
    font-size: 1rem;
  }

  .quick-point__img {
    min-height: 220px;
  }
}


.mini_section {
  width: 85vw;
  max-width: 1400px;
  margin: 80px auto;
}

.mini_section_container {
  width: 100%;
}

/* Header */
.mini_section_header h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.mini_section_header p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 750px;
  color: #333;
  margin-bottom: 50px;
}

/* Two column layout */
.mini_section_content {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.mini_section_image {
  flex: 1;
}

.mini_section_image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.mini_section_text {
  flex: 1;
}

.mini_section_text h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.mini_section_text ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.mini_section_text ul li {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 1.1rem;
  color: #333;
}

.mini_section_link {
  display: inline-block;
  text-decoration: none;
  color: #1a73e8;
  font-weight: 500;
}

.mini_section_link:hover {
  text-decoration: underline;
}

/* Bottom 3 columns */
.mini_section_features {
  display: flex;
  gap: 40px;
}

.feature_box {
  flex: 1;
}

.feature_box h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature_box p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .mini_section_content {
    flex-direction: column;
  }

  .mini_section_features {
    flex-direction: column;
  }
}



/* FAQ */
.faq {
  padding: 64px 0;
}

.faq__container {
  width: 85vw;
  max-width: 1400px;;
  margin: 0 auto;
  padding: 40px;
}

.faq__title {
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.faq__list {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.faq__question {
  list-style: none; /* hide default marker */
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 10px 0;
}

/* Hide default disclosure triangle (Chrome/Safari) */
.faq__question::-webkit-details-marker {
  display: none;
}

/* Custom chevron icon (like screenshot) */
.faq__question::before {
  content: "›";
  font-size: 1.2rem;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 180ms ease;
  display: inline-block;
  margin-top: -1px;
}

/* Rotate chevron when open */
.faq__item[open] .faq__question::before {
  transform: rotate(90deg);
}

.faq__answer {
  padding: 0 0 12px 28px; /* indent to align with text after chevron */
}

.faq__answer p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 100ch;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
  .faq__title {
    font-size: 2rem;
  }

  .faq__answer {
    padding-left: 22px;
  }
}

@media (max-width: 600px) {
  .faq {
    padding: 40px 0;
  }

  .faq__container {
    width: 85vw;
    padding: 24px 0;
  }

  .faq__title {
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
  }

  .faq__question {
    font-size: 1rem;
    font-weight: 700;
  }

  .faq__answer p {
    font-size: 1rem;
  }

  .faq__answer {
    padding-left: 18px;
  }
}




.finance-section{
  background: var(--bg);
  color: var(--text);
  padding: 56px 16px;
  
}

.finance-section__container{
  max-width: 1400px;;
  width: 85vw;
  margin: 0 auto;
}

.finance-section__title{
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.finance-section__lead{
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 74ch;
}

/* Top split */
.finance-section__top{
  display: grid;
   grid-template-columns: 55% 45%;
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.finance-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
}

.finance-media__img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Right bullets */
.finance-points{
  padding-top: 4px;
}

.finance-point{
  padding: 16px 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}

.finance-point:first-child{
  padding-top: 0;
}

.finance-point:last-child{
  border-bottom: 0;
}

.finance-point__title{
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
}

.finance-point__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.85rem;
}

/* Bottom cards */
.finance-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px;
}

.finance-card{
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  padding: 18px 18px 16px;
}

.finance-card__title{
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 1.1rem;
}

.finance-card__text{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

.finance-card__link{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  color: #2563eb;
}

.finance-card__link:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .finance-section__top {
    grid-template-columns: 1fr;
  }

  .finance-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .finance-section {
    padding: 40px 16px;
  }

  .finance-section__title {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
  }

  .finance-section__lead {
    font-size: 1rem;
    margin: 0 0 20px;
  }

  .finance-section__top {
    gap: 20px;
    margin-bottom: 20px;
  }

  .finance-point__title {
    font-size: 1rem;
  }

  .finance-point__text {
    font-size: 0.85rem;
  }

  .finance-card__title {
    font-size: 1rem;
  }

  .finance-card__text {
    font-size: 0.95rem;
  }

  .finance-card__link {
    font-size: 0.95rem;
  }
}




















/* Compact View */
.compact-view {
  padding: 64px 0;
}

.compact-view__container {
  width: 85vw;
  max-width: 1400px;;
  margin: 0 auto;
}

.compact-view__title {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.compact-view__lead {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 70ch;
}

.compact-view__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.compact-view__itemTitle {
  font-size: 1.1rem;
  margin: 0 0 10px;
}

.compact-view__itemText {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 62ch;
}

.compact-view__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  text-decoration: none;
}

.compact-view__link:hover {
  text-decoration: underline;
}

.compact-view__footnote {
  margin: 56px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 120ch;
  color: red;
}

/* Responsive */
@media (max-width: 900px) {
  .compact-view__title {
    font-size: 2rem;
  }

  .compact-view__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .compact-view {
    padding: 40px 0;
  }

  .compact-view__title {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
  }

  .compact-view__lead {
    font-size: 1rem;
    margin: 0 0 28px;
  }

  .compact-view__itemTitle {
    font-size: 1rem;
  }

  .compact-view__itemText {
    font-size: 1rem;
    line-height: 1.4;
  }

  .compact-view__link {
    font-size: 1rem;
  }

  .compact-view__footnote {
    margin: 36px 0 0;
    font-size: 0.9rem;
  }
}



/* Bottom CTA */
.bottom-cta {
  padding: 92px 0;
}

.bottom-cta__container {
  width: 85vw;
  max-width: 1500px;
  margin: 0 auto;
  background: #eef8ff;
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.bottom-cta__title {
  margin: 0 0 6px;
  font-size: 1.6rem;
  line-height: 1.25;
}

.bottom-cta__text {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 90ch;
}

.bottom-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  border: 2px solid #0a58ca;
  color: #0a58ca;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.bottom-cta__btn:hover {
  background: #0a58ca;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .bottom-cta__container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bottom-cta__action {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .bottom-cta {
    padding: 48px 0;
  }

  .bottom-cta__container {
    padding: 22px 20px;
    border-radius: 12px;
  }

  .bottom-cta__title {
    font-size: 1.3rem;
  }

  .bottom-cta__text {
    font-size: 1rem;
  }

  .bottom-cta__btn {
    width: 100%;
    justify-content: center;
  }
}







/* Contact & FAQ Section */
.contact-faq-section {
   background: #032d42;
    padding: 200px 10px;
    color: #ffffff;
}

.contact-faq-container {
    width: 90vw;
  max-width: 1400px;;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Contact Form */
.contact-form-wrapper {
    background: #faf8f8;
    padding: 20px;
    border-radius: 8px;
    color: #333333;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 20px 12px;
    border: 0px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group select {
    color: #999999;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 35px;
}

.form-group select:not([value=""]) {
    color: #333333;
}

.form-group select option:not(:first-child) {
    color: #333333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 12px;
    color: #666666;
    cursor: pointer;
    line-height: 1.5;
}

.form-disclaimer {
    font-size: 11px;
    color: #666666;
    line-height: 1.5;
    margin: 8px 0;
}

.submit-btn {
    background: #00fea2;
    color: #222;
    padding: 17px 45px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 8px;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #689f38;
}

.form-note {
    font-size: 11px;
    color: #333;
    margin-top: 8px;
}

/* Right Column - FAQ */
.faq-wrapper {
    padding: 20px 0;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-header {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-header:hover {
    color: #a3d5ff;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0 0 10px 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .contact-faq-section {
        padding: 40px 15px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-title,
    .faq-title {
        font-size: 24px;
    }
}
/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
    animation: fadeIn 0.5s ease-in;
}

.success-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

.success-icon svg {
    stroke: #4caf50;
}

.success-message h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2e7d32;
    margin: 0 0 15px 0;
}

.success-message p {
    font-size: 16px;
    color: #666666;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.back-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #7cb342;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: #689f38;
}

/* Error Message */
.error-message {
    background: #ffebee;
    border-left: 4px solid #f44336;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    position: relative;
    animation: slideDown 0.3s ease-out;
}

.error-message p {
    margin: 0;
    color: #c62828;
    font-size: 14px;
    line-height: 1.5;
}

.close-error {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #c62828;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 1;
}

.close-error:hover {
    color: #b71c1c;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

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

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .success-message {
        padding: 40px 20px;
    }
    
    .success-message h2 {
        font-size: 26px;
    }
    
    .success-icon {
        width: 64px;
        height: 64px;
    }
    
    .success-icon svg {
        width: 48px;
        height: 48px;
    }
}





/* ========== FOOTER ========== */
.main-footer {
  width: 100%;
  background: #fcfcfc;
  color: #333;
  padding: 80px 0 40px 0;
  position: relative;
}

.footer-container {
  
  max-width: 1400px;;
  margin: 0 auto;
  width: 90vw;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Footer Top Section */
.footer-top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  margin-bottom: 20px;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: flex-start;
}

.footer-logo img {
  height: 20px;
  width: auto;
  display: block;
}

/* Footer Columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {

  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #333;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {

  font-size: 0.9rem;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #222;
  font-weight: 700;
}

/* Footer Bottom Section */
.footer-bottom {
  border-top: 1px solid #999;
  padding-top: 32px;
}

/* Legal Links */
.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-legal a {

  font-size: 0.9em;
  color: #0f425e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #222;
  font-weight: 700;
}

/* Company Info */
.footer-info {
  max-width: 900px;
}

.footer-info p {

  font-size: 0.85em;
  line-height: 1.6;
  color: #0f425e;
  margin: 0;
}

/* Lightning Icon */
.footer-icon {
  position: absolute;
  bottom: 40px;
  right: 20px;
  color: #4e3380;
}

.footer-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1400px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 20px 0 40px 0;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-icon {
    right: 30px;
    bottom: 30px;
  }

  .footer-icon svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 400px) {
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

  .footer-heading {
    font-size: 0.8em;
  }

  .footer-links a {
    font-size: 0.95em;
  }

  .footer-info p {
    font-size: 0.8em;
  }
}





















/* 404 Error Section */
.error-404-section {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.error-404-container {
    width: 90vw;
  max-width: 1400px;;

    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Left Side - Content */
.error-404-content {
    z-index: 2;
    position: relative;
}

.error-404-title {
    font-size:5rem;
    font-weight: 600;
    color: #1a2b4a;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.error-404-subtitle {
    font-size: 3rem;
    font-weight: 600;
    color: #1a2b4a;
    margin: 0 0 20px 0;
}

.error-404-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 40px 0;
    max-width: 450px;
}

.error-404-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #63de4e;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.error-404-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Right Side - Image with Circles */
.error-404-image-wrapper {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-person {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Decorative Circles - CRITICAL: Positioned from screen edge */
.error-404-circles {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    /* Extend beyond container to screen edge */
    width: calc(50vw + 100px);
    pointer-events: none;
}

.error-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
}

/* Yellow circle - top left behind person */
.circle-yellow {
    width: 350px;
    height: 350px;
    background: #ffd966;
    top: 50px;
    left: 0;
    z-index: 1;
}

/* Mint/green circle - overlapping yellow */
.circle-mint {
    width: 280px;
    height: 280px;
    background: #a8e6cf;
    top: 120px;
    left: 200px;
    z-index: 1;
}

/* Light blue circle - behind person, middle */
.circle-light-blue {
    width: 400px;
    height: 400px;
    background: #a3d5ff;
    top: 100px;
    left: 300px;
    z-index: 1;
}

/* Red circle - largest, extends to screen edge on right */
.circle-red {
    width: 500px;
    height: 500px;
    background:#032d42;
    top: 50px;
    /* Position to extend beyond viewport */
    right: -150px;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .error-404-container {
        gap: 60px;
    }
    
    .error-404-title {
        font-size: 60px;
    }
    
    .error-404-subtitle {
        font-size: 24px;
    }
    
    .circle-yellow {
        width: 300px;
        height: 300px;
    }
    
    .circle-mint {
        width: 240px;
        height: 240px;
    }
    
    .circle-light-blue {
        width: 350px;
        height: 350px;
    }
    
    .circle-red {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 968px) {
    .error-404-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .error-404-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .error-404-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .error-404-image-wrapper {
        height: 500px;
        order: -1;
    }
    
    /* Adjust circles for mobile */
    .error-404-circles {
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .circle-yellow {
        width: 250px;
        height: 250px;
        left: -50px;
    }
    
    .circle-mint {
        width: 200px;
        height: 200px;
        left: 120px;
    }
    
    .circle-light-blue {
        width: 300px;
        height: 300px;
        left: 150px;
    }
    
    .circle-red {
        width: 200px;
        height: 200px;
        right: -100px;
    }
}

@media (max-width: 640px) {
    .error-404-section {
        padding: 40px 0;
    }
    
    .error-404-container {
        padding: 0 20px;
    }
    
    .error-404-title {
        font-size: 48px;
    }
    
    .error-404-subtitle {
        font-size: 20px;
    }
    
    .error-404-description {
        font-size: 14px;
    }
    
    .error-404-image-wrapper {
        height: 400px;
    }
    
    .error-404-person {
        max-width: 350px;
    }
    
    /* Further reduce circles for mobile */
    .circle-yellow {
        width: 200px;
        height: 200px;
    }
    
    .circle-mint {
        width: 150px;
        height: 150px;
    }
    
    .circle-light-blue {
        width: 250px;
        height: 250px;
    }
    
    .circle-red {
        width: 280px;
        height: 280px;
    }
}





/* Cookie Consent Banner Styles */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.cookie-consent-banner.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-consent-container {
  width: 90vw;
  max-width: 1400px;;
  margin: 0 auto;
  padding: 32px 24px;
}

.cookie-consent-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
}

/* Logo */
.cookie-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.consent-logo-img {
  width: 140px;
  height: 40px;
  object-fit: contain;
}

.consent-powered {

  font-size: 10px;
  line-height: 1.3;
  color: #64748B;
  text-align: center;
}

/* Text Content */
.cookie-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-title {

  font-size: 20px;
  font-weight: 600;
  color: #1E293B;
  margin: 0;
}

.cookie-description,
.cookie-details,
.cookie-reject-info {

  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.cookie-link {
  color: #3B82F6;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-link:hover {
  color: #2563EB;
}

.cookie-show-details {
  background: none;
  border: none;
  color: #3B82F6;

  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.cookie-show-details:hover {
  color: #2563EB;
}

.arrow {
  font-size: 18px;
  line-height: 1;
}

/* Buttons */
.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.cookie-btn {
  padding: 12px 28px;
  border-radius: 4px;

  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-allow {
  background: #FFFFFF;
  color: #1E293B;
  border-color: #CBD5E1;
}

.btn-allow:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
}

.btn-reject {
  background: #FFFFFF;
  color: #1E293B;
  border-color: #CBD5E1;
}

.btn-reject:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
}

/* Responsive */
@media (max-width: 1024px) {
  .cookie-consent-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cookie-logo {
    flex-direction: row;
    justify-content: center;
  }

  .cookie-buttons {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .cookie-consent-container {
    padding: 24px 20px;
  }

  .cookie-title {
    font-size: 18px;
  }

  .cookie-description,
  .cookie-details,
  .cookie-reject-info {
    font-size: 13px;
  }

  .cookie-buttons {
    max-width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-consent-container {
    padding: 20px 16px;
  }

  .cookie-title {
    font-size: 16px;
  }

  .cookie-description,
  .cookie-details,
  .cookie-reject-info,
  .cookie-show-details {
    font-size: 12px;
  }
}

































/* MOBILE OVERFLOW FIX - Add at end of file */
@media (max-width: 768px) {
  * {
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  body, html {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
}














@media (max-width: 768px) {

  /* NAV: remove all horizontal padding */
  header,
  .site-header,
  .main-navigation,
  .nav-maxwidth {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* HERO: remove all horizontal padding */
  .hero-section,
  .hero-container,
  .hero-section .hero-container,
  .hero-section .text-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

}


@media (max-width: 768px){

  /* Catch-all: centre common content containers */
  .container,
  .nav-maxwidth,
  .hero-container,
  .tailored-container,
  .quote-container,
  .partner-cta-container,
  .section-container,
  .content-container
  .horizontal-tabs-content 
  .horizontal-tab-panel
  .opening-container
  .opening-content{
    width: 100%;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    left: auto;
    right: auto;
    transform: none;
    box-sizing: border-box;
  }

}
