/*!
Theme Name: Future Energies
Theme URI: http://www.codenterprise.com/
Author: Code Enterprises
Author URI: http://www.codenterprise.com/
Description: Enterprise WordPress Theme - Optimized & Professional
Version: 2.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: Future Energies
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

TABLE OF CONTENTS:
------------------
PART 1: FOUNDATION (Lines 61-224)
  1. IMPORTS & ROOT VARIABLES
  2. BASE STYLES  
  3. TYPOGRAPHY
  4. LAYOUT & CONTAINERS

PART 2: COMPONENTS (Lines 226-605)
  5. HEADER & NAVIGATION
  6. HERO SECTIONS
  7. BUTTONS
  8. CARDS & HOVER EFFECTS
  9. SERVICE CARDS (Used in services.php & home.php)
  10. FORMS
  11. FLOATING ELEMENTS (WhatsApp, Back to Top)
  12. FOOTER

PART 3: PAGE-SPECIFIC (Lines 524-960)
  13. HOME PAGE SPECIFIC (Stats, Contact Cards, Partners)
  14. ABOUT PAGE SPECIFIC (Achievement Cards, Mission/Vision, Values, Expertise)
  15. CONTACT PAGE SPECIFIC (Contact Forms, Benefits, Info Cards)
  16. PORTFOLIO SPECIFIC (Carousels, Partners, Tech Tags)
  
  NOTE: Services page uses SERVICE CARDS from PART 2 (Line 339)
        No separate services section needed - fully component-based

PART 4: ANIMATIONS & UTILITIES (Lines 962-1120)
  17. ANIMATIONS (@keyframes)
  18. UTILITIES (General)
  19. LOTTIE ANIMATIONS
  20. MAP

PART 6: BACKGROUND & STYLING UTILITIES (Lines 1764-2078)
  26. BACKGROUND UTILITIES
  27. POSITIONING UTILITIES
  28. DECORATIVE ELEMENTS
  29. ICON WRAPPERS
  30. IMAGE FRAME STYLES
  31. ACHIEVEMENT BADGES
  32. TEXT UTILITIES
  33. SIZE UTILITIES

PART 7: ACCESSIBILITY (Lines 2080+)
  34. FOCUS STATES

PART 5: RESPONSIVE - MOBILE FIRST (Lines 1122-1762)
  21. TABLET & DESKTOP (991px)
  22. TABLET & MOBILE LANDSCAPE (768px)
  23. MOBILE PORTRAIT (600px) - PRIMARY
  24. SMALL MOBILE (576px)
  25. DESKTOP ENHANCEMENTS (700px+)

*/

@font-face {
  font-family: "SF Pro Text";
  src: url("./assets/fonts/sf-pro/SF-Pro-Text-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("./assets/fonts/sf-pro/SF-Pro-Text-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("./assets/fonts/sf-pro/SF-Pro-Text-Semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("./assets/fonts/sf-pro/SF-Pro-Text-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./assets/fonts/sf-pro/SF-Pro-Display-Regular.otf")
    format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./assets/fonts/sf-pro/SF-Pro-Display-Semibold.otf")
    format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./assets/fonts/sf-pro/SF-Pro-Display-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

html,
body {
  margin: 0;
  height: 100%;
  font-family:
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}
header.header nav ul li a {
  transition: color 0.3s ease;
  font-size: 18px;
  font-weight: 600;
}
/* Header nav hover effect */
header.header nav ul li a:hover {
  color: #ff7a00 !important;
}
.fe-custom-dropdown {
  background: #f9fafb;
  border: none;
  border-radius: 0;
  padding: 20px 0 !important;
  min-width: 250px !important;
}

.fe-custom-dropdown .dropdown-item {
  color: #000 !important;
  font-size: 16px;
  background: transparent !important;
}

.fe-custom-dropdown .dropdown-item:hover {
  background: #ffffff !important;
  color: #ff7a00 !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}
.footer a:hover {
  color: #ff7a00 !important;
}
.footer-link:hover {
  color: #ff7a00;
}
p {
  font-family: inherit;
}
.fe-hero-section {
  height: 100vh;
  position: relative;
}
.fe-home-section-two {
  margin-top: 0;
}

/* Cards hover effect (Optional but looks premium) */
.fe-home-section-two .box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fe-home-section-two .box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06) !important;
}

/* Home hero: flex column so stats sit in document flow below copy (stable gap vs Firefox) */
.fe-home-main .fe-hero {
  min-height: 800px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.fe-home-main .fe-hero .fe-hero-overlay {
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.fe-home-section-two .row img.img-fluid {
  display: block;
}
.header {
  width: 100%;
  position: fixed;
  height: 107px;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #0a293466; /* your exact color */
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}
.header-logo {
  width: 56px;
  height: 74px;
  top: 20px;
  left: 30px;
  opacity: 1;
}

header.header.scrolled {
  background: #092b34 !important;
  height: 90px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(0);
  animation: slideDown 0.35s ease forwards;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
header.header {
  transform: translateY(0);
}
/* Only top-level nav links — not .dropdown-item (white on #F9FAFB menu would disappear) */
header.header.scrolled nav > ul > li > a,
header.header.scrolled i {
  color: #ffffff !important;
}

header.header.scrolled .fe-custom-dropdown .dropdown-item {
  color: #000000 !important;
}
.fs-14 {
  font-size: 14px;
  font-weight: 600;
}
.fs-18 {
  font-size: 18px;
}
.fs-80 {
  font-size: 80px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0%;
}
.fs-24 {
  font-size: 24px;
  font-weight: 500;
}
/* Custom Wrapper Class */
.info-card-item {
  position: relative;
  overflow: hidden;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer; /* Hover experience behtar karne ke liye */
}

/* Common Transition */
.info-card-item h2,
.info-card-item p,
.info-card-item span {
  transition: all 0.4s ease-in-out;
}

.info-card-item h2,
.info-card-item p {
  margin: 0;
}

/* Span styling */
.info-card-item span {
  position: absolute;
  width: 90%;
  max-width: 280px;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  visibility: hidden;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

/* --- HOVER EFFECTS --- */

/* h2 aur p move up */
.info-card-item:hover h2,
.info-card-item:hover p {
  transform: translateY(-40px);
  color: #ff8c00;
}

/* Span becomes visible and slides up */
.info-card-item:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Left side se smooth entry animation */

.slide-from-left-delay {
  opacity: 0;
  transform: translateX(-500px);
}

.slide-from-left-delay.active-slide {
  animation: slideFromLeft 1.6s ease-out forwards;
}

@keyframes slideFromLeft {
  from {
    transform: translateX(-500px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-from-bottom {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease;
}
.slide-from-bottom.show {
  opacity: 1;
  transform: translateY(0);
}
.big-crane {
  position: absolute;
  left: 30%;
  bottom: 65px;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: auto;
  z-index: 2;
}
.logo-scrolled {
  display: none;
}
header.header.scrolled .logo-default {
  display: none;
}
header.header.scrolled .logo-scrolled {
  display: block;
}
header.header a.btn,
header.header a.btn:hover,
header.header a.btn:focus,
header.header a.btn:active {
  color: #fff !important;
}
/* ===== Fade In Base ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.faq-section {
  background: url("./assets/images/carasoul-img.jpg") no-repeat top center;

  background-size: cover;
  background-position: center;
  height: 900px;
  padding: 60px 30px;
  position: relative;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* default color */
.faq-number,
.faq-title,
.faq-plus {
  color: white;
  transition: 0.3s;
}

/* active item color */
.faq-item.active .faq-number,
.faq-item.active .faq-title,
.faq-item.active .faq-plus {
  color: #ff7a00;
}
/* header hover */
.faq-item:hover .faq-title,
.faq-item:hover .faq-plus {
  color: #ff7a00;
}
.webgl-water {
  width: 100%;
  height: 100%;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

/* canvas styling (WebGL inject karta hai) */
.webgl-water canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.company-img {
  max-height: 40px;
}

.box {
  background: #fff;
  padding: 25px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.box:hover {
  transform: translateY(-5px);
}

.right-card {
  background: #fff;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.right-card ul li {
  margin-bottom: 12px;
  font-size: 16px;
}

.text-orange {
  color: #0f8b8d; /* same teal tone */
}
.fs-64 {
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif !important;
  font-weight: 600;
  font-style: Bold;
  font-size: 64px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}
.fs-50 {
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif !important;
  font-weight: 600;
  font-style: Bold;
  font-size: 50px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
}
.fs-40 {
  font-size: 40px;
  font-weight: 700;
}
.flame-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  pointer-events: none; /* Taake image par click na ho sake */
  max-width: 40%; /* Laptop par size sahi rahega */
}

/* Mobile ke liye settings */
@media (max-width: 768px) {
  .flame-img {
    max-width: 70%;
    opacity: 0.3; /* Mobile par zyada tez na lage */
  }
}
.fs-60 {
  font-size: 60px;
  font-weight: 700;
}
.fs-30 {
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}
.fs-32 {
  font-size: 32px;
  font-weight: 500;
}
.fs-16 {
  font-size: 16px;
}
.text-orange {
  color: #ff7b00;
}
.btn-orange:hover {
  background-color: #e86e00 !important;
  border-color: #e86e00 !important;
  color: #fff !important;
}
.moving-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 1; /* crane se neeche */
  pointer-events: none;
}
.btn-outline-orange {
  border: 1px solid #ff7a00;
  color: #ff7a00;
  background-color: transparent;
  transition: all 0.3s ease;
}
.btn-outline-orange:hover {
  background: linear-gradient(0deg, #002a29, #002a29);
  color: #fff;
  border-color: #002a29;
}
.moving-text .track {
  display: inline-block;
  white-space: nowrap;
  font-size: 164px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.08); /* light opacity */
  animation: scrollText 100s linear infinite;
}
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.bg-orange {
  background-color: #ff7a00;
  color: #fff;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 0;
}

/* Circle layer */
.bg-orange::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #002a29;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.9s ease;
  z-index: -1;
  border: 1px solid #002a29;
}

/* Hover effect */
.bg-orange:hover::before {
  width: 200%;
  height: 200%;
}

.bg-orange:hover {
  color: #fff;
}
.fe-blog-section {
  overflow: hidden;
  position: relative;
}
.company-img {
  transition: all 0.3s ease;
  transform: scale(1);
}

/* hover effect */
.col:hover .company-img {
  transform: scale(1.15) translateY(-8px);
  filter: brightness(0) saturate(100%);
}
.fs-140 {
  font-weight: 700;
  font-size: 140px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  background: linear-gradient(
    to bottom,
    #ffffff 20%,
    rgba(255, 255, 255, 0.2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.image-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.253); /* adjust 0.3 - 0.6 */
  z-index: 1;
}
.custom-gutter {
  --bs-gutter-x: 30px !important;
  --bs-gutter-y: 30px !important;
}
.right-card ul {
  position: relative;
  padding-left: 35px;
}

.right-card ul::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(255, 123, 0, 1); /* line color */
}

.right-card ul li {
  position: relative;
  margin-bottom: 40px;
}

.right-card ul li img {
  position: absolute;
  left: -35px;
}
.img-card {
  width: 183.05809020996094;
  height: 199.53646850585938;
  angle: 0 deg;
  opacity: 1;
  top: 1663px;
  left: 1090.07px;
}
.fs-45 {
  font-weight: 600;
  font-size: 45px;
  vertical-align: start;
}
.btn-arrow {
  width: 54;
  height: 50;
  top: 283px;
  left: 96px;
  angle: 0 deg;
  opacity: 1;
}
.footer {
  background: url("assets/images/footer-img.jpg") center/cover no-repeat;
  opacity: 0.2;
}

.footer .overlay {
  position: absolute;
  inset: 0;
  background-color: #092b34de;
}

.footer h1 {
  font-size: 100px;
  opacity: 0.3;
}

.footer h2 {
  font-size: 60px;
  opacity: 0.9;
}

.footer ul li {
  margin-bottom: 8px;
  cursor: pointer;
}

.footer input::placeholder {
  color: #ccc;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
}

.footer-col {
  padding: 0 12px;
}

/* Custom widths */
.footer-col-1 {
  width: 20%;
}

.footer-col-2 {
  width: 20%;
}

.footer-col-3 {
  width: 30%;
}

.footer-col-4 {
  width: 30%;
}

@media (max-width: 768px) {
  .footer-col-1,
  .footer-col-2,
  .footer-col-3,
  .footer-col-4 {
    width: 100%;
  }
}
/* ==========================================================
   RESPONSIVE LAYER (safe, layout-preserving)
   ========================================================== */

/* clip: hides horizontal bleed without forcing overflow-y:auto (pair rule with overflow-x:hidden did — double scrollbar in Chrome) */
.fe-home-main {
  overflow-x: clip;
}

.fe-menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 6px;
}

.fe-menu-toggle i {
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}

.fe-mobile-menu {
  width: min(86vw, 340px);
  background: #0c2c23 !important;
  color: #fff;
}
.fs-20 {
  font-family:
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}
.fe-mobile-menu.offcanvas-start {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.fe-mobile-menu .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.fe-mobile-menu .offcanvas-title,
.fe-mobile-menu .fe-mobile-menu-list a {
  color: #fff !important;
}

.fe-mobile-menu .offcanvas-body {
  overflow-y: auto;
}

.fe-mobile-menu-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fe-mobile-menu-list li a:hover {
  color: #ff7a00 !important;
}

@media (max-width: 991.98px) {
  .header {
    position: relative !important;
    padding: 0.85rem 1rem !important;
    min-height: 76px;
    height: auto;
  }

  .header .fe-header-left {
    width: 100%;
    justify-content: space-between;
    margin: 0 !important;
  }

  .header .header-logo {
    margin-left: 0 !important;
  }

  .fe-home-section-two {
    margin-top: 0 !important;
  }

  /* First section: keep hero readable on mobile/tablet */
  .fe-hero-section {
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .fe-hero-section > img {
    inset: 0;
    height: 100%;
    object-fit: cover;
  }

  .fe-hero-section > .container.position-absolute.fade-in {
    position: relative !important;
    margin-top: 84px !important;
    z-index: 2;
  }

  .fe-hero-section > .container.position-absolute.fade-in p.fs-24 {
    margin-top: 0 !important;
  }

  .fe-hero-section > .container.position-absolute.fade-in h1.fs-80 {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.08;
    margin-bottom: 0.75rem;
  }

  .fe-hero-section > .container.position-absolute.fade-in a {
    width: 190px !important;
    height: 48px !important;
  }

  .fe-hero-section > .container.position-absolute.d-flex.justify-content-end {
    position: relative !important;
    margin: 0.75rem 0 0.5rem !important;
    justify-content: flex-start !important;
    z-index: 2;
  }

  .fe-hero-section
    > .container.position-absolute.d-flex.justify-content-end
    p.fs-40 {
    margin-top: 0 !important;
    margin-inline-start: 0 !important;
  }

  .fe-hero-section > .position-absolute.text-white {
    display: none;
  }

  /* Fourth section: prevent clipping of cards/content on mobile. */
  .fe-home-main
    section.position-relative.overflow-hidden[style*="margin-top: -65px"] {
    margin-top: 0 !important;
    overflow: visible !important;
  }

  .fe-home-main
    section.position-relative.overflow-hidden[style*="margin-top: -65px"]
    > .position-absolute.top-0.start-0.w-100.px-5.py-4 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    padding: 1rem !important;
  }

  .fe-home-main .fs-80 {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .fe-home-main .fs-64 {
    font-size: clamp(1.75rem, 7vw, 2.75rem);
  }

  .fe-home-main .fs-40 {
    font-size: clamp(1.25rem, 5vw, 2rem);
  }

  .fe-home-main .fs-164 {
    font-size: clamp(2.8rem, 12vw, 6rem);
  }

  .footer > .position-relative.py-5.px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .footer .col-md-6.mt-5 p[style*="margin-inline-start"] {
    margin-inline-start: 0 !important;
  }
}

@media (min-width: 992px) {
  .header .header-logo {
    margin-left: 20px !important;
  }

  .header > .d-none.d-lg-flex.align-items-center.gap-3 {
    margin-right: 40px !important;
  }
}

/* Contact template: shorter hero than full-screen home landing. */
.fe-contact-page .fe-hero-section.fe-contact-hero {
  height: auto;
  min-height: 52vh;
  overflow: hidden;
}

.fe-contact-page .fe-hero-section.fe-contact-hero > img.position-absolute {
  display: block;
}

@media (min-width: 992px) {
  .fe-contact-page .fe-hero-section.fe-contact-hero {
    min-height: 58vh;
  }
}
.fe-hero-section {
  position: relative;
  overflow: hidden;
}

/* background image layer */
.fe-hero-section > img {
  z-index: 0;
  object-fit: cover;
}

/* overlay MUST be between image and content */
.image-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* 👈 lighter than current */
  z-index: 1;
  pointer-events: none;
}

/* content always top */
.fe-hero-section .what-we-do-hero-section {
  position: relative;
  z-index: 2;
}

/* CF7: submit is an <input>; Bootstrap .btn uses variables that override .bg-orange. */
.fe-contact-page .wpcf7-form input[type="submit"],
.fe-contact-page .wpcf7-form input.wpcf7-submit {
  --bs-btn-bg: #ff7a00;
  --bs-btn-border-color: #ff7a00;
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #e86e00;
  --bs-btn-hover-border-color: #e86e00;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: #e86e00;
  --bs-btn-active-border-color: #e86e00;
  --bs-btn-active-color: #fff;
  background-color: #ff7a00 !important;
  color: #fff !important;
  border-color: #ff7a00 !important;
  opacity: 1 !important;
  min-height: 48px;
  padding-inline: 1.75rem;
}

.fe-contact-page .wpcf7-form input[type="submit"]:hover,
.fe-contact-page .wpcf7-form input.wpcf7-submit:hover {
  background-color: #e86e00 !important;
  border-color: #e86e00 !important;
  color: #fff !important;
}

/* Contact page (Figma-aligned) */
.fe-contact-main {
  position: relative;
  overflow: hidden;
}

.fe-contact-main::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 22%;
  width: 420px;
  height: 420px;
  background: url("./assets/images/flame.png") no-repeat center/contain;
  opacity: 0.12;
  pointer-events: none;
}

.fe-contact-info {
  position: relative;
  z-index: 2;
}

.fe-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #0b2f3a;
  color: #ff7a00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.fe-contact-icon i {
  font-size: 1.1rem;
}

.fe-contact-form-card {
  position: relative;
  z-index: 2;
}

.fe-contact-form-card .wpcf7-form-control {
  border-radius: 4px;
}

@media (max-width: 991.98px) {
  .fe-contact-main::after {
    display: none;
  }
}

/* ===== FLOATING ACTIONS ===== */

.fe-floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fe-float-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.fe-float-btn i {
  font-size: 1.2rem;
  line-height: 1;
}

.fe-back-to-top {
  background: #ff7a00;
}

.fe-back-to-top.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
}

.fe-back-to-top:not(.is-hidden):hover {
  background: #e86e00;
}

.fe-whatsapp {
  background: #25d366;
}

.fe-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
  color: #fff;
}

.input-wrapper {
  border: 1px solid #535353;
  border-radius: 6px;
  overflow: hidden;
  align-items: stretch;
}
.input-wrapper input {
  color: #fff;
  caret-color: #fff;
}
.input-wrapper input:focus {
  outline: none;
}
.icon-btn {
  border: 1px solid #ff7b00;
  background-color: transparent;
  color: #ff7b00;
  flex-shrink: 0;
  align-self: stretch;
  min-width: 3rem;
  padding: 0.5rem 0.85rem;
  line-height: 1;
}

/* Bootstrap Icons: tight line-height / flex row + overflow:hidden on wrapper clips glyphs */
.icon-btn i {
  color: #ff7b00;
  line-height: 1;
  display: block;
  font-size: 1.25rem;
}

/* 🔥 button hover controls icon */
.icon-btn:hover {
  background-color: #ff7b00;
}

/* icon becomes white when button is hovered */
.icon-btn:hover i {
  color: #fff;
}

.no-break {
  white-space: nowrap;
}

/* ===============================
   Engagement Tiers Section
================================= */

.fe-engagement-tiers .fe-tier-card {
  background: #f2f2f2;
}
.fe-tier-head.fe-tier-basic {
  background: #5a676c;
}

.fe-tier-head.fe-tier-advanced {
  background: #0b3f4f;
}

.fe-tier-head.fe-tier-ultimate {
  background: #ff7a00;
}

.fe-tier-card.fe-tier-basic {
  --tier-color: #5a676c;
}

.fe-tier-card.fe-tier-advanced {
  --tier-color: #0b3f4f;
}

.fe-tier-card.fe-tier-ultimate {
  --tier-color: #ff7a00;
}

.fe-engagement-tiers .fe-tier-list {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
}

.fe-engagement-tiers .fe-tier-list li {
  margin-bottom: 0.3rem;
}

/* Important: positioning context */
.fe-tier-card .card-body {
  position: relative;
  overflow: visible;
}

/* Left + Right borders grow upward */
.fe-tier-card .card-body::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-left: 2px solid var(--tier-color);
  border-right: 2px solid var(--tier-color);
  transition: height 0.4s ease;
}

/* Bottom border grows from center */
.fe-tier-card .card-body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--tier-color);
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

/* Hover trigger */
.fe-tier-card:hover .card-body::before {
  height: 100%;
}

.fe-tier-card:hover .card-body::after {
  width: 100%;
}

/* -------------------------------
   Optional: smoother animation
-------------------------------- */
.fe-tier-card .card-body::before,
.fe-tier-card .card-body::after {
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Our Solution page (screenshot-aligned sections) */
/* Contact Hero Section */
.fe-contact-hero .fe-contact-hero-image {
  object-fit: cover;
  z-index: 0;
}

.fe-contact-hero-content {
  z-index: 2;
  margin-top: 107px;
}
.fe-solution-intro-strip {
  background: #083643;
}

.fe-framework-accordion .accordion-item {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.fe-framework-accordion .accordion-button {
  background: #092b34;
  color: #ffffff;
  font-weight: 600;
  min-height: 56px;
  gap: 0.6rem;
  box-shadow: none;
  padding: 30px 20px;
  position: relative;
}

.fe-framework-accordion .accordion-button:not(.collapsed) {
  background: #092b34;
  color: #ffffff;
  box-shadow: none;
  padding: 30px 20px;
}

.fe-framework-accordion .accordion-button::after {
  content: "\f286"; /* arrow-up */
  font-family: "bootstrap-icons";
  background-image: none !important;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background-color: transparent;
  color: #ffffff;
  background-color: #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transform: none !important;
  margin-left: auto;
  transition: all 0.3s ease;
}

/* Open accordion */
.fe-framework-accordion .accordion-button:not(.collapsed)::after {
  content: "\f282"; /* arrow-down */
  background-color: #ff7a00;
  color: #fff;
}

.fe-framework-accordion .accordion-body {
  background: #092b34ed;
  color: #ffffff;
  font-size: 20px;
  line-height: 21px;
  font-weight: 500;
  padding: 30px 20px;
}
/* 6-Step Framework Section */
.fe-framework-section {
  padding: 80px 30px 50px;
  background-color: #f9fafb;
}

.fe-framework-section .fe-framework-card-body {
  padding: 70px;
}
/* Solution Outcome Section */
.fe-solution-outcome {
  padding: 80px 30px;
}

.fe-solution-outcome .fe-outcome-arrow {
  display: inline-block;
  margin: 0 6px;
}
/* Proven Impact Metrics Section */
.fe-impact-metrics {
  padding: 80px 30px;
  background-color: #f9fafb;
}
.fe-impact-metrics .fe-impact-card-body {
  position: relative;
  overflow: hidden;
}
.fe-impact-metrics .fe-impact-card-body {
  padding: 20px;
  box-shadow: 0px 15px 22px -15px gray;
}
.fe-impact-metrics .fe-impact-card-body:hover {
  background-color: #fff1d5;
}
/* Investor Value Band Section */
.fe-investor-value-band {
  padding: 50px 30px;
}

.fe-investor-value-band .fe-value-box {
  max-width: 760px;
}

.fe-investor-value-band .fe-value-description {
  max-width: 647px;
  margin-inline-start: 37px;
}
.fe-solution-outcome {
  background: #083643;
}

.fe-solution-value-band {
  background: #083643;
}
/* Investors page (screenshot-aligned) */
.fe-investor-thesis {
  padding: 50px 30px;
}
.fe-investor-thesis .container-fluid,
.fe-investor-value-band .value-box {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
}

.fe-investor-thesis,
.fe-investor-value-band {
  background: #092b34;
}
.fe-investor-value-band {
  padding: 50px 30px 80px 30px;
}
.fe-investor-edge {
  background: url("./assets/images/test_curosual.png") no-repeat top center;
  background-size: cover;
  height: 790px;
  padding: 60px 30px 0px 30px;
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
  z-index: 3;
}
.custom-icon {
  font-size: 39px;
  font-weight: 900 !important;
  -webkit-text-stroke: 3px;
  position: relative;
  top: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.fe-opportunity-list {
  display: grid;
  gap: 20px;
}

.fe-opportunity-item {
  background: #ffffff;
  border: 1px solid #e9dcbb;
  border-radius: 6px;
  font-size: 20px;
  line-height: 21px;
  font-weight: 500;
  color: #000000;
}
.fe-opportunity-list .fe-opportunity-item {
  position: relative;
  padding-left: 18px;
  border-radius: 12px;
  box-shadow: 0px 10px 15px -9px gray;
}

/* Dot/Bullet styling */
.fe-opportunity-item::before {
  content: "•";
  color: #ff6600;
  font-weight: bold;
  font-size: 20px;
}
.investor-apportunity-bottom-icon {
  position: absolute;
  bottom: -38px;
  width: 250px;
  opacity: 0.8;
  z-index: 0;
  height: 230px;
  left: 0px;
}

/* Right Top Image */
.investor-apportunity-top-icon {
  position: absolute;
  top: 0px;
  right: 0;
  width: 250px;
  opacity: 0.8;
  z-index: 0;
  height: 250px;
}

.fe-investor-edge-list {
  display: grid;
  gap: 0.65rem;
}

.fe-investor-edge-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgb(255, 255, 255);
  border-radius: 4px;
  padding: 0.8rem 0.9rem;
  font-size: 20px;
  line-height: 21px;
}

/* Table */
.fe-investor-matrix {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

/* Header */
.fe-investor-matrix thead th {
  background: #ff7a00;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  padding: 40px 30px;
  line-height: 1.4;

  /* borders */
  border-bottom: 2px solid #ff7a00 !important;
  border-right: 2px solid #ff7a00 !important;
}

/* First Header */
.fe-investor-matrix thead th:first-child {
  border-top-left-radius: 12px;
  border-left: 2px solid #f28c28 !important;
}

/* Last Header */
.fe-investor-matrix thead th:last-child {
  border-top-right-radius: 12px;
}

/* Body Cells */
.fe-investor-matrix tbody td {
  padding: 50px 30px;
  border-right: 2px solid #f28c28 !important;
  border-bottom: 2px solid #f28c28 !important;
  vertical-align: middle;
  background: #fff;
  line-height: 1.5;
  color: #000000;
}

/* Left border for first column */
.fe-investor-matrix tbody td:first-child {
  border-left: 2px solid #f28c28 !important;
}

/* Column Widths */
.fe-investor-matrix thead th:nth-child(1),
.fe-investor-matrix tbody td:nth-child(1) {
  width: 29%;
}

.fe-investor-matrix thead th:nth-child(2),
.fe-investor-matrix tbody td:nth-child(2) {
  width: 29%;
  text-align: center;
}

.fe-investor-matrix thead th:nth-child(3),
.fe-investor-matrix tbody td:nth-child(3) {
  width: 42%;
}

/* Arrow Icon */
.fe-investor-matrix .matrix-value i {
  font-size: 36px;
  font-weight: 700;
  vertical-align: middle;
}

.Value-Creation-Model-top-icon {
  position: absolute;
  top: -97px;
  right: 0;
  width: 323px;
  opacity: 0.8;
  z-index: 0;
  height: 336px;
}

.Value-Creation-Model-bottom-icon {
  position: absolute;
  bottom: -58px;
  width: 250px;
  opacity: 0.8;
  z-index: 0;
  height: 230px;
  left: 0px;
}
/* First Column Text */

/* Mobile */
@media (max-width: 767px) {
  .fe-investor-matrix thead th,
  .fe-investor-matrix tbody td {
    padding: 18px 14px;
  }

  .fe-investor-matrix .matrix-value {
    font-size: 28px;
  }

  .fe-investor-matrix .matrix-value i {
    font-size: 24px;
  }

  .fe-investor-matrix tbody td:first-child {
    font-size: 16px;
  }

  .fe-investor-matrix tbody td:last-child {
    font-size: 13px;
  }
}
.mb-40 {
  margin-bottom: 40px;
}
/* Projects page (screenshot-aligned map/route layout) */
.fe-projects-intro-strip {
  background: #083643;
  padding: 40px 0px;
}
/* Container section adjustments */
.project-section-container {
  padding: 80px 30px 40px 30px;
  background: #f4f6f8;
  min-height: auto;
  border-radius: 10px;
  position: relative;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Main Layout Grid: Left side for cards, Right side for Dashboard Panel */
.fe-project-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 2;
  justify-content: center;
}

/* Left side cards container (2 Columns Grid) */
.fe-project-cards-grid {
  display: grid;
  grid-template-columns: repeat(
    2,
   1fr
  ); /* Dono columns strictly 364px ke honge */
  gap: 20px;
}

/* Individual Region Card Styling */
.fe-project-card {
  background: #ffffff;
  border-radius: 4px;
  border: 3px solid #eef2f5;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  padding: 45px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 169px;
}

/* Full width logic for the last item (South Asia) */
.fe-project-card--fullwidth {
  grid-column: span 2;
  width: 100%; /* Yeh dono columns (364px + 364px + gap) ki space cover karega */
}
.fe-project-card:hover {
  border: 3px solid #ff9100;
}

/* Left square box inside card (e.g., US or Globe icon container) */
.fe-card-icon-box {
  width: 80px;
  height: 80px;
  border: 2px solid #0a252c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 45px;
  color: #0a252c;
  flex-shrink: 0;
}

.fe-project-card:hover .fe-card-icon-box {
  border: 2px solid #ff9100;
  color: #ff9100;
}

.fe-project-card:hover .fe-card-icon-box img {
  filter: brightness(0) saturate(100%) invert(61%) sepia(98%) saturate(1425%)
    hue-rotate(359deg) brightness(102%) contrast(103%);
}
.fe-card-icon-box img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* Card Text Info */
.fe-card-info {
  display: flex;
  flex-direction: column;
}

.fe-card-info .region-tag {
  color: #f47b20;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
}

.fe-card-info .operation-title {
  color: #050f11;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
}

/* Right Side Dashboard Panel Styling */
.fe-project-dashboard {
  background: #ffffff;
  border: 1px solid #b6c3c7;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Row blocks inside Dashboard */
.fe-dashboard-row {
  background: #0a2229; /* Dark Slate Green from Screenshot */
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff;
  border-radius: 2px;
}

.fe-db-icon {
  width: 32px;
  color: #f47b20; /* Orange Icons */
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fe-db-icon img {
  width: 55px;
  height: 55px;
  background-color: #ffa50040;
}

.fe-db-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fe-db-label {
  color: #f47b20;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.fe-db-value {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .fe-project-layout {
    flex-direction: column;
  }
  .fe-project-dashboard {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .fe-project-cards-grid {
    grid-template-columns: 1fr;
  }
  .fe-project-card--fullwidth {
    grid-column: span 1;
  }
}
.feature-your-project {
  padding: 60px 30px;
  background: url("./assets/images/watch-img.png") no-repeat top center;
  background-size: cover;
}
/* End of Our Solution page (screenshot-aligned sections) */
.data-section {
  position: relative;
  padding: 80px 30px;
  overflow: hidden;
}
.data-section > div {
  position: relative;
  z-index: 1;
}
.data-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/images/test_curosual.png") no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.data-section {
  padding: 80px 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.our-approach {
  padding: 30px 30px 60px 30px;
  background: url("./assets/images/watch-img.png") no-repeat top center;
}
.main-heading {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 60px;
}

.main-heading span {
  color: #ff7a00;
  margin: 0 8px;
}

.sub-text {
  max-width: 1090px;
  font-size: 24px;
  margin-bottom: 56px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.data-section .card,
.our-approach .card {
  padding: 25px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02); /* very light overlay */
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.data-section .card h3,
.our-approach .card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
}
.our-approach .main-heading {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 500;
  color: #ff7b00;
}

.data-section .card p,
.our-approach .card p {
  font-size: 18px;
  line-height: 21px;
}

.who-we-are-hero-section section.position-relative {
  padding-top: 105px;
}

.who-we-are-hero {
  padding: 80px 30px 135px 30px;
}
.our-story {
  background-color: #f9fafb;
  padding: 80px 30px 50px 30px !important;
}
.out-story-text {
  background-color: white;
  position: relative;
  z-index: 3;
  padding: 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.our-story-image {
  border: 4px solid #ff7b00;
  padding: 10px;
  background: transparent;
}
.our-story-image:hover {
  border: 4px solid black;
}
.our-story-image img {
  width: 100%;
  height: auto;
  display: block;
}
.bottom-left-shape {
  position: absolute;
  bottom: -93px;
  left: 0;
  width: 250px; /* Aap apni marzi se size adjust kar sakte hain */
  opacity: 0.8; /* Agar thora light rakhna ho */
}
.our-values {
  padding: 80px 30px;
}
.our-values .title {
  font-size: 24px;
  font-weight: 500;
  color: #f7701e;
  margin-bottom: 40px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.commitment-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.commitment-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.commitment-text {
  padding: 10px 30px 20px 30px;
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  color: #666;
  margin: 0px;
}

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

@media (max-width: 480px) {
  .commitment-grid {
    grid-template-columns: 1fr;
  }
}
.our-values-section {
  position: relative;
  overflow: hidden; /* important so images bahar na niklein */
}

/* Left Bottom Image */
.left-bottom-shape {
  position: absolute;
  bottom: 40px; /* adjust as needed */
  width: 250px;
  opacity: 0.8;
  z-index: 0;
  height: 250px;
}

/* Right Top Image */
.right-top-shape {
  position: absolute;
  top: -25px;
  right: 0;
  width: 250px;
  opacity: 0.8;
  z-index: 0;
  height: 250px;
}
/* Content ko upar lane ke liye */
.our-values {
  position: relative;
  z-index: 2;
}
.what-we-do-hero-section {
  margin-top: 107px;
}
.section-spacing {
  padding: 80px 30px;
  background-color: #f9fafb;
}
.mb-30 {
  margin-bottom: 30px;
}
.p-30 {
  padding: 30px !important;
}
.p-25 {
  padding: 15px 25px !important;
}
.line-height-100 {
  line-height: 100%;
}
.letter-spacing-0 {
  letter-spacing: 0%;
}
#service-lines .card {
  position: relative;
}

#service-lines .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: #ff7b00;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

#service-lines .card:hover::after {
  width: 100%;
}
section.core-services {
  padding: 30px 15px 80px 15px;
  background-color: #092b34 !important;
}

#service-lines .left-shape {
  position: absolute;
  bottom: 215px;
  left: -16px;
  width: 220px;
  opacity: 0.8;
  z-index: 0;
}

#service-lines .right-shape {
  position: absolute;
  top: 251px;
  right: 0px;
  width: 220px;
  opacity: 0.8;
  z-index: 0;
}
/* SECTION */
.project-section {
  position: relative;
  overflow: hidden;
}

/* Reusable content width utility */
.fe-content-40 {
  width: 40%;
  max-width: 40%;
  flex: 0 0 40%;
}
.fe-content-42 {
  width: 42%;
  max-width: 42%;
  flex: 0 0 42%;
}
.fe-content-46 {
  width: 46%;
  max-width: 46%;
  flex: 0 0 46%;
}
/* Full cover background utility */
.fe-bg-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Parent section helper */
.fe-section-bg {
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .fe-content-40 {
    width: 70%;
    max-width: 70%;
    flex-basis: 70%;
  }
  .fe-content-42 {
    width: 70%;
    max-width: 70%;
    flex-basis: 70%;
  }
}

@media (max-width: 768px) {
  .fe-content-40 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .fe-content-42 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}
.fe-hero-copy {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 70px 30px 30px 30px;
}
.fe-hero-copy-2 {
  background-color: rgba(0, 0, 0, 0.06);
  padding: 70px 30px 30px 30px;
}
@media (max-width: 768px) {
  .fe-hero-copy {
    padding: 25px;
  }
  .fe-hero-copy-2 {
    padding: 25px;
  }
}
.line-height-128 {
  line-height: 128%;
}

.icon-12 {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}
.quote-box {
  border-left: 2px solid #000;
  background: rgba(128, 128, 128, 0.1); /* light gray with low opacity */
  padding: 12px 16px;
}
/* END OF FLOATING ACTIONS */
