/**
* Template Name: Scout
* Template URL: https://bootstrapmade.com/scout-bootstrap-multipurpose-template/
* Updated: May 05 2025 with Bootstrap v5.3.5
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

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

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #52413a;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffe800;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #52413a;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffe800;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f8f5f4;
  --surface-color: #ffffff;
}

.yellow-background {

  --background-color: #ffe800;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #343333;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.header.scrolled {
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.header .logo img {
  max-height: 90px;
  width: autopx;
  margin-right: 8px;
}

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

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

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

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

  .header .navmenu {
    order: 3;
  }
}


/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  /* --background-color: rgba(244, 239, 237, 0.95); */
  background-color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
  display: block;
   
}

.footer .footer-about .logo img {
   max-height: 100px;
    width: auto;
    display: inline-block;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

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

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

.footer-logo {
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    left:0;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

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

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

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

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

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

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 82px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

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

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

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}


/* .hero-bg-video{
    transform:scale(1.25);
} */

.hero .hero-content {
  margin-bottom: 2rem;
}

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 60px;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: -2;
  transform-origin: center center;
  will-change: transform;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Show desktop video by default */
.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

html,
body {
  overflow-x: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .hero .hero-content {
    margin-bottom: 0;
  }
}

.hero .hero-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero .hero-tag i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.hero .hero-tag span {
  color: var(--accent-color);
  font-weight: 600;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  color: var(--accent-color);
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.hero .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
}

.hero .hero-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.hero .hero-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.hero .hero-features li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .hero-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero .hero-cta .btn-link {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero .hero-cta .btn-link i {
  margin-right: 0.5rem;
}

.hero .hero-cta .btn-link:hover {
  color: var(--accent-color);
}

.hero .hero-image-wrapper {
  position: relative;
  padding: 0 40px;
}

.hero .hero-image-wrapper .hero-image {
  border-radius: 10px;
}

.hero .hero-image-wrapper .stat-card {
  position: absolute;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}

.hero .hero-image-wrapper .stat-card.top-right {
  top: 40px;
  right: 0px;
}

.hero .hero-image-wrapper .stat-card.bottom-left {
  bottom: 40px;
  left: 0px;
}

.hero .hero-image-wrapper .stat-card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.hero .hero-image-wrapper .stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.hero .hero-image-wrapper .stat-card .stat-icon {
  align-self: flex-end;
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 575px) {
  .hero .hero-image-wrapper {
    padding: 0;
  }

  .hero .hero-image-wrapper .stat-card {
    position: relative;
  }

  .hero .hero-image-wrapper .stat-card.top-right,
  .hero .hero-image-wrapper .stat-card.bottom-left {
    inset: auto;
    margin-top: 30px;
  }
}

/* .hero-video{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-bg-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.25),
        rgba(0,0,0,.25)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#fff;
}

.hero-title{
    font-size:clamp(2rem,6vw,4rem);
    font-weight:800;
    line-height:1;
}

.hero-title span{
    color:#00bfff;
}

.hero-subtitle{
    font-size:1.2rem;
    max-width:600px;
}

.scroll-indicator{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    color:#fff;
}

.hero-video::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#00bfff;
    filter:blur(180px);
    opacity:.3;
    top:-150px;
    right:-100px;
}

 .hero-title .title-hy{
  color:#ffe800
} */
/* Tablet */
@media (max-width: 991px) {
  .hero-video {
    height: 80vh;
  }

  .hero-bg-video {
    object-position: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-video {
    height: 70vh; /* You can change to 100vh if you want full screen */
  }

  .hero-bg-video {
    object-fit: cover;
    object-position: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-video {
    height: 60vh;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  .hero-video {
    min-height: 100vh;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


#about {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #545454;
}

/* Decorative circles */
#about::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: #FFD400;
  opacity: .10;
  border-radius: 50%;
  top: -120px;
  right: -100px;
}

#about::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: #FFD400;
  opacity: .08;
  border-radius: 50%;
  bottom: -80px;
  left: -60px;
}

.about-bg {
  display: none;
}

.about .container {
  position: relative;
  z-index: 2;
}

/* Heading */

.about .section-heading {
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 15px;
}

.about .section-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #FFD400;
  margin: 18px auto 0;
  border-radius: 5px;
}

.about .lead {
  color: #fff !important;
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}

/* Cards */
.about .feature-box {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  transition: all .4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.about .feature-box:hover {
  transform: translateY(-12px);
  border-color: #FFD400;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, .12),
    0 0 0 3px rgba(255, 212, 0, .25);
}

/* Main About Card */
.about-main {
  border-top: 6px solid #FFD400;
}

/* Focus Card */
.about-focus {
  background: #FFD400 !important;
  color: #222;
}

.about-focus h4 {
  color: #222;
  font-weight: 700;
}

.about-focus ul {
  padding: 0;
  margin: 0;
}

.about-focus li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.about-focus li:last-child {
  border-bottom: none;
}

.about-focus i {
  color: #222;
  font-size: 18px;
}

/* Mission & Vision */

.about-card .icon-container {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #FFF4B5;
  color: #D39E00;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin: 0 auto 25px;
}

.about-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-card p {
  color: #666;
  line-height: 1.8;
}

/* Typography */
.about h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.about p {
  color: #666;
  line-height: 1.9;
}

/* Responsive */
@media(max-width:991px) {

  #about {
    padding: 70px 0;
  }

  .about .feature-box {
    padding: 30px;
  }

  .about .section-heading {
    font-size: 2.2rem;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-card {

  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(18px);
  overflow: hidden;
  cursor: pointer;
  transition: .45s;
  border: 1px solid rgba(255, 180, 0, .15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.stats-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, .15);
}

.stats-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 180, 0, .12);
  border-radius: 50%;
  top: -120px;
  right: -120px;
  transition: .6s;

}

.stats-card:hover::before {
  transform: scale(1.4);
}

.stats-content {
  position: relative;
  z-index: 2;
}

.stats-content h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats-content p {
  line-height: 1.7;
  color: #666;
}

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

.stats-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff7df;
  color: #545454;
  font-size: 30px;
  transition: .45s;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.stats-card:hover .stats-icon {
  transform: rotate(-12deg) scale(1.15);
  background: #ffb400;
  color: #fff;
}



.stats-card:nth-child(2) {
  animation-delay: .4s;
}

.stats-card:nth-child(3) {
  animation-delay: .8s;
}

.stats-card:nth-child(4) {
  animation-delay: 1.2s;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ==========================
   Tablet View
========================== */
@media (max-width: 991px) {

  .stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-card {
    padding: 25px;
  }

  .stats-content h5 {
    font-size: 20px;
  }
}


/* ==========================
   Mobile View
========================== */
@media (max-width: 767px) {

  .stats {
    padding: 60px 0;
  }

  .stats-overview {
    text-align: center !important;
    margin-bottom: 30px;
  }

  .stats-overview h3 {
    font-size: 28px;
  }

  .stats-overview h5 {
    font-size: 20px;
    line-height: 1.4;
  }

  .stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stats-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    border-radius: 18px;
    gap: 18px;
  }

  .stats-card::before {
    width: 180px;
    height: 180px;
    top: -90px;
    right: -90px;
  }

  .stats-icon {
    width: 65px;
    height: 65px;
    font-size: 28px;
    border-radius: 16px;
  }

  .stats-content h5 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .stats-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
  }

}


/* ==========================
   Small Mobile
========================== */
@media (max-width: 480px) {

  .stats {
    padding: 50px 0;
  }

  .stats-overview h3 {
    font-size: 24px;
  }

  .stats-overview h5 {
    font-size: 18px;
  }

  .stats-card {
    padding: 22px 18px;
  }

  .stats-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .stats-content h5 {
    font-size: 18px;
  }

  .stats-content p {
    font-size: 14px;
  }

}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 100px 0;
  background: #fff;
}

.services .section-heading {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.services .services-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.services .services-description {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.service-card {
  height: 100%;
  padding: 45px 35px;
  border-radius: 20px;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, .08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: .35s;
}

.service-card:hover {
  transform: translateY(-10px);
  background: var(--accent-color);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-icon,
.service-card:hover .read-more-btn {
  color: #000;
}

.service-icon {
  font-size: 60px;
  color: var(--accent-color);
  margin-bottom: 25px;
  transition: .35s;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 700;
}

.service-card p {
  line-height: 1.8;
  margin-bottom: 30px;
}

.read-more-btn {
  text-decoration: none;
  color: var(--accent-color);
  font-weight: 600;
}

.read-more-btn i {
  margin-left: 6px;
}

.services-image {
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.services-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: .5s;
}

.services-image:hover img {
  transform: scale(1.08);
}

@media(max-width:991px) {

  .services {
    padding: 70px 0;
  }

  .services .services-title {
    font-size: 34px;
  }

  .services-image img {
    min-height: 350px;
  }

  .service-card {
    padding: 35px 25px;
  }

}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  color: #FFD700;
}

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    font-size: 16px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 13px;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.how-we-work .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.how-we-work .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

.how-we-work .step-item:last-child {
  margin-bottom: 0;
}

.how-we-work .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.how-we-work .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.how-we-work .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.how-we-work .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.how-we-work .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.how-we-work .step-info:hover {
  transform: translateY(-5px);
}

.how-we-work .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.how-we-work h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.how-we-work p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .how-we-work .steps-wrapper::before {
    left: 25px;
  }

  .how-we-work .step-item .step-content {
    flex-direction: row !important;
  }

  .how-we-work .step-icon {
    width: 60px;
    height: 60px;
  }

  .how-we-work .step-icon i {
    font-size: 24px;
  }

  .how-we-work .step-info {
    padding: 20px;
  }

  .how-we-work h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .how-we-work .step-content {
    gap: 20px;
  }

  .how-we-work .step-icon {
    width: 50px;
    height: 50px;
  }

  .how-we-work .step-icon i {
    font-size: 20px;
  }

  .how-we-work .step-info {
    padding: 15px;
  }

  .how-we-work h3 {
    font-size: 1.2rem;
  }

  .how-we-work p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.faq .faq-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.faq .faq-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.faq .faq-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.faq .faq-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq .faq-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

.faq .faq-list .faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-list .faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-list .faq-item h3:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq .faq-list .faq-item h3 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq .faq-list .faq-item h3 .question {
  flex: 1;
}

.faq .faq-list .faq-item h3 .faq-toggle {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 15px;
}

.faq .faq-list .faq-item .faq-content {
  padding: 15px;
  display: none;
}

.faq .faq-list .faq-item .faq-content p {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.faq .faq-list .faq-item .faq-content p:last-child {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-list .faq-item.faq-active h3 {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

.faq .faq-cta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 30px;
  border-radius: 10px;
}

.faq .faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.faq .faq-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .faq .faq-list .faq-item h3 {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq .faq-list .faq-item h3 .num {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 0.8rem;
  }

  .faq .faq-list .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-list .faq-item .faq-content.faq-active .content-inner {
    padding: 15px 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.call-to-action .cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.call-to-action .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.call-to-action .cta-buttons .btn-primary {
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-buttons .btn-outline {
  padding: 0.8rem 2rem;
  background-color: transparent;
  color: var(--default-color);
  border: 2px solid var(--default-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .cta-buttons .btn-outline:hover {
  background-color: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

.call-to-action .cta-image {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action .cta-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.call-to-action .cta-image img:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .call-to-action .cta-wrapper {
    flex-direction: column;
    padding: 2.5rem;
  }

  .call-to-action .cta-content {
    text-align: center;
  }

  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }

  .call-to-action .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .call-to-action .cta-buttons {
    justify-content: center;
  }

  .call-to-action .cta-image img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-wrapper {
    padding: 2rem;
  }

  .call-to-action .cta-content h2 {
    font-size: 1.8rem;
  }

  .call-to-action .cta-content p {
    font-size: 1rem;
  }

  .call-to-action .cta-buttons .btn-primary,
  .call-to-action .cta-buttons .btn-outline {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
}

.contact .container {
  max-width: 1200px;
}

.contact .contact-main-wrapper {
  position: relative;
  display: flex;
  grid-template-columns: 1fr;
  gap: 30px;
  justify-content: center;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

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


.service-details .service-sidebar{
    position: sticky;
    top: 110px;      /* below fixed header */
    align-self: flex-start;
    height: fit-content;
}

.service-details .service-sidebar .service-overview {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.service-details .service-sidebar .service-overview .overview-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}

.service-details .service-sidebar .service-overview .overview-header h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .service-overview .overview-content {
  padding: 30px;
}

.service-details .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-overview .overview-content p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-sidebar .key-benefits {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .key-benefits h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.service-details .service-sidebar .key-benefits h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-sidebar .key-benefits ul {
  padding-left: 0;
  list-style: none;
}

.service-details .service-sidebar .key-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .key-benefits ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.service-details .service-sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-card .contact-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .contact-card .contact-header i {
  font-size: 24px;
}

.service-details .service-sidebar .contact-card .contact-header h4 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .contact-card .contact-info {
  padding: 30px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .service-content .image-gallery {
  margin-bottom: 40px;
}

.service-details .service-content .image-gallery .service-details-slider {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination {
  bottom: 20px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--contrast-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next::after,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next:hover,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: scale(1.1);
}

.service-details .service-content .section-header {
  margin-bottom: 25px;
}

.service-details .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .section-header .divider {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-content .details-content {
  margin-bottom: 40px;
}

.service-details .service-content .details-content p {
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

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

.service-details .service-content .service-features {
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-details .service-content .service-features .feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  z-index: -1;
  transition: 0.4s;
}

.service-details .service-content .service-features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-features .feature-card:hover:before {
  height: 100%;
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.service-details .service-content .service-features .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 26px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container {
  position: relative;
}

.service-details .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-content .implementation-steps .step-container .step:last-child {
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container .step .step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content {
  flex: 1;
}

.service-details .service-content .implementation-steps .step-container .step .step-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: sticky;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .service-details .service-content .service-features .feature-card {
    margin-bottom: 20px;
  }
}

.service-banner {
  position: relative;
  overflow: hidden;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background:
    /* linear-gradient(
    135deg,
    rgba(184, 187, 192, 0.92),
    rgba(181, 183, 189, 0.88)
    ), */
    url("../media/services/corporate-training-banner.jfif") center center/cover;
  color: #fff;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(255, 193, 7, .12),
      transparent 45%);
  pointer-events: none;
}

.service-banner .container {
  position: relative;
  z-index: 2;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 193, 7, .15);
  color: #FFC107;
  margin-bottom: 25px;
  font-weight: 600;
}

.service-banner h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.service-banner h1 span {
  color: #FFC107;
}

.service-banner p {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 40px;
  max-width: 650px;
}

.banner-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  padding: 15px 35px;
  background: #ffe800;
  color: #111;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: .4s;
}

.btn-primary-custom:hover {

  transform: translateY(-5px);
  color: #111;
  box-shadow: 0 15px 35px rgba(255, 193, 7, .35);
}

.btn-outline-custom {

  padding: 15px 35px;
  border: 2px solid rgba(255, 255, 255, .3);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: .4s;
}

.btn-outline-custom:hover {

  background: #fff;
  color: #111;
}

.banner-image {
  position: relative;
  text-align: center;
}

.banner-image img {
  width: 100%;
  max-width: 520px;
  animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {

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

  50% {
    transform: translateY(-20px);
  }

}

@media(max-width:991px) {

  .service-banner {
    padding: 140px 0 80px;
    text-align: center;
  }

  .service-banner h1 {
    font-size: 46px;
  }

  .service-banner p {
    font-size: 18px;
    margin: auto;
    margin-bottom: 35px;
  }

  .banner-buttons {
    justify-content: center;
  }

  .banner-image {
    margin-top: 50px;
  }
}

@media(max-width:576px) {

  .service-banner h1 {
    font-size: 34px;
  }

  .service-banner p {
    font-size: 16px;
  }

}

/*=========================================
   SERVICES FEATURES
=========================================*/

.service-features {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
}

.section-header h3 {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.section-header .divider {
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  margin: auto;
  border-radius: 20px;
}

.feature-card {
  position: relative;
  overflow: hidden;

  background: #fff;
  border-radius: 24px;
  padding: 40px 35px;

  height: 100%;

  border: 1px solid rgba(0, 0, 0, .08);

  transition: .45s ease;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, .06);
}

/* Gradient Hover */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(135deg,
      rgba(255, 193, 7, .08),
      transparent 65%);

  opacity: 0;
  transition: .45s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform:
    translateY(-15px) rotateX(4deg);

  box-shadow:
    0 30px 70px rgba(0, 0, 0, .12);
}

.icon-wrapper {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  background: rgba(255, 193, 7, .12);
  color: var(--accent-color);
  margin-bottom: 25px;
  transition: .45s;
}

.feature-card:hover .icon-wrapper {
  transform:
    rotate(-10deg) scale(1.1);
  background: var(--accent-color);
  color: #fff;
  box-shadow:
    0 15px 35px rgba(255, 193, 7, .35);
}

.feature-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--heading-color);
  transition: .3s;
}

.feature-card p {
  line-height: 1.8;
  color: #666;
  margin: 0;
  transition: .3s;
}

.feature-card:hover h4 {
  color: var(--accent-color);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 193, 7, .08);
  transition: .5s;
}

.feature-card:hover::after {
  transform: scale(1.4);
}

/* Floating */
.feature-card:nth-child(odd) {
  transform: translateY(25px);
}

.feature-card:nth-child(odd):hover {
  transform:
    translateY(10px) rotateX(4deg);
}

@media(max-width:991px) {

  .feature-card:nth-child(odd) {
    transform: none;
  }

  .section-header h3 {
    font-size: 34px;
  }

  .feature-card {
    padding: 30px;
  }

}

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

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.leadership-intro {
  padding: 50px 0;
  background: #fff;
}

.section-tag {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  /* background: rgba(22, 22, 20, 0.12); */
  color: #ffe800;
  font-weight: 600;
  letter-spacing: 1px;
  /* margin-bottom:25px; */
}

.section-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0px;
}

.section-title span {
  color: var(--accent-color);
}

.section-description {
  max-width: 850px;
  margin: auto;
  font-size: 19px;
  line-height: 1.9;
  color: #666;

}

.section-buttons {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media(max-width:991px) {

  .leadership-intro {
    padding: 80px 0;
  }

  .section-title {
    font-size: 38px;
  }

  .section-description {
    font-size: 17px;
  }

}

/*==================================
 LEADERSHIP TRAINING
==================================*/

.leadership-details {
  padding: 40px 0;
  background: #f8fafc;
}

.section-header {
  margin-bottom: 20px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: #000;
  color: #ffe800;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.section-header p {
  max-width: 780px;
  margin: auto;
  color: #64748b;
  font-size: 18px;
  line-height: 1.8;
}

/*==================================
OVERVIEW
==================================*/

.overview-box {
  background: #fff;
  border-radius: 24px;
  padding: 60px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, .05);
  margin-bottom: 80px;
}

.overview-box p {
  color: #475569;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 25px;
}

/*==================================
TRAINING CARDS
==================================*/

.training-card {
  height: 100%;
  background: #fff;
  padding: 35px;
  border-radius: 22px;
  text-align: center;
  transition: .45s;
  border: 1px solid #edf2f7;
  overflow: hidden;
  position: relative;
}

.training-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg,
      #ffe800,
      #ffe800);
  left: 0;
  top: 0;

  transform: scaleX(0);
  transition: .45s;
}

.training-card:hover::before {
  transform: scaleX(1);
}

.training-card i {
  font-size: 46px;
  color: #ffe800;
  margin-bottom: 25px;
  transition: .4s;

}

.training-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.training-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, .08);
}

.training-card:hover i {
  transform: rotateY(180deg) scale(1.15);
}

/*==================================
OUTCOMES
==================================*/

.outcomes-box {
  margin-top: 100px;
  border-radius: 25px;
  padding: 55px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.outcomes-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.outcomes-box li {
  padding: 18px 0;
  font-size: 18px;
  color: #475569;
  border-bottom: 1px solid #edf2f7;
  position: relative;
  padding-left: 38px;
}

.outcomes-box li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/*==================================
IDEAL FOR
==================================*/

.ideal-section {
  margin-top: 100px;
}

.ideal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.ideal-list span {
  padding: 15px 30px;
  background: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: .35s;
  border: 1px solid #e5e7eb;
}

.ideal-list span:hover {
  background: #ffe800;
  color: #000;
  transform: translateY(-5px);
}

/*==================================
CTA
==================================*/

.leadership-cta {
  margin-top: 100px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-align: center;
  padding: 90px 60px;
  border-radius: 30px;
}

.leadership-cta h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #ffe800;
}

.leadership-cta p {
  max-width: 720px;
  margin: auto auto 40px;
  color: #cbd5e1;
  line-height: 1.9;
}

.leadership-cta .btn-primary-custom {
  padding: 18px 45px;
  font-size: 18px;
}

/* ---------
-------corporate training ---- */

.corporate-banner {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.corporate-banner .service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.corporate-banner h1 {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
}

.banner-breadcrumb a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: .3s;
}

.banner-breadcrumb a:hover {
  color: var(--accent-color);
}

.banner-breadcrumb span {
  color: var(--accent-color);
  font-weight: 600;
}

.banner-breadcrumb i {
  font-size: 12px;
}

@media(max-width:991px) {

  .corporate-banner {
    padding: 140px 0 80px;
  }

  .corporate-banner h1 {
    font-size: 42px;
  }

}

.corporate-intro {
  padding: 100px 0;
  background: #fff;
}



.corporate-intro .section-title {
  font-size: 48px;
  font-weight: 700;
  /* margin-bottom: 25px; */
  line-height: 1.2;
}

.corporate-intro .section-title span {
  color: var(--accent-color);
}

.corporate-intro .section-description {
  max-width: 750px;
  padding-top: 0;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}

.training-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.training-item {
  padding: 18px 28px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
  font-weight: 600;
  transition: .35s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.training-item i {
  color: var(--accent-color);
  font-size: 20px;
}

.training-item:hover {
  transform: translateY(-8px);
  background: var(--accent-color);
  color: #000;
}

.training-item:hover i {
  color: #000;
}

@media(max-width:991px) {

  .corporate-intro {
    padding: 70px 0;
  }

  .corporate-intro .section-title {
    font-size: 36px;
  }

  .training-tags {
    gap: 15px;
  }

  .training-item {
    width: 100%;
    justify-content: center;
  }
}

.training-programs {
  background: #f8f9fa;
  padding: 100px 0;
}

.program-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  transition: .4s;
  display: flex;
  flex-direction: column;
}

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

.program-header {
  background: #2f2f2f;
  color: #fff;
  text-align: center;
  padding: 35px 25px;
  position: relative;
}

.program-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #2f2f2f;
  transform: translateX(-50%) rotate(45deg);
}

.program-header i {
  font-size: 42px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.program-header h3 {
  font-size: 26px;
  margin: 0;
  color: #fff;
}

.program-card ul {
  list-style: none;
  padding: 35px;
  margin: 0;
  flex: 1;
}

.program-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 28px;
}

.program-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.program-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: #000;
  padding: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
}

.program-btn:hover {
  background: #111;
  color: #fff;
}

.program-btn i {
  transition: .3s;
}

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

.training-tabs {
  padding: 100px 0;
  background: #f8f9fa;
}

.training-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;

}

.tab-btn {
  flex: 1;
  background: #2f2f2f;
  color: #fff;
  border: none;
  padding: 22px;
  font-size: 20px;
  font-weight: 600;
  transition: .4s;
}

.tab-btn:hover {
  background: #3d3d3d;
}

.tab-btn.active {
  background: var(--accent-color);
  color: #111;
  position: relative;

}

.tab-btn.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  transform: translateX(-50%) rotate(45deg);
}

.training-content {
  background: #fff;
  padding: 60px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
  border-radius: 0 0 20px 20px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-pane h3 {
  font-size: 34px;
  margin-bottom: 20px;
}

.tab-pane p {
  color: #666;
  line-height: 1.8;
}

.tab-pane ul {
  margin-top: 30px;
  columns: 2;
  padding-left: 20px;
}

.tab-pane li {
  margin-bottom: 12px;
}

.btn-program {
  display: inline-block;
  padding: 14px 35px;
  background: var(--accent-color);
  color: #111;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: .35s;
}

.btn-program:hover {
  background: #111;
  color: #fff;
}

@media(max-width:991px) {

  .training-nav {
    display: block;
  }

  .tab-btn {
    width: 100%;
  }

  .training-content {
    padding: 30px;
  }

  .tab-pane ul {
    columns: 1;
  }
}


<!-----------------------
Digital marketing 
--------------------------->
.hero-modern{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:#FFC107;
    overflow:hidden;
    position:relative;
}

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

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.25);
    color:#222;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:30px;
}

.hero-modern h1{
    font-size:72px;
    font-weight:800;
    line-height:1.05;
    color:#222;
}

.hero-modern h1 span{
    color:#fff;
}

.hero-modern p{
    margin-top:25px;
    font-size:20px;
    line-height:1.8;
    color:#333;
    max-width:550px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-dark-custom{
    background:#222;
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-dark-custom:hover{
    background:#000;
    color:#fff;
}

.btn-light-custom{
    border:2px solid #222;
    color:#222;
    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-light-custom:hover{
    background:#222;
    color:#fff;
}

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-shape{
    position:absolute;
    width:650px;
    height:650px;
    background:#f5b800;
    border-radius:45% 55% 60% 40%;
    right:-80px;
    top:-40px;
}

.hero-image img{
    position:relative;
    z-index:2;
    max-width:520px;
    width:100%;
}

@media(max-width:991px){

.hero-modern{
padding:140px 0 80px;
text-align:center;
}

.hero-modern h1{
font-size:48px;
}

.hero-modern p{
margin:auto;
margin-top:20px;
}

.hero-buttons{
justify-content:center;
flex-wrap:wrap;
}

.hero-image{
margin-top:60px;
}

.hero-shape{
width:420px;
height:420px;
right:50%;
transform:translateX(50%);
}

}

@media(max-width:576px){

.hero-modern h1{
font-size:36px;
}

.hero-modern p{
font-size:16px;
}

.hero-shape{
width:320px;
height:320px;
}

}