

/*--------------------------------------------------------------
# Google Fonts
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@500;600;700;800&display=swap');


/*--------------------------------------------------------------
# Font Variables
--------------------------------------------------------------*/
:root {

  /* Body Font */
  --default-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Heading Font */
  --heading-font: "Montserrat", sans-serif;

  /* Navigation Font */
  --nav-font: "Montserrat", sans-serif;

}


/*--------------------------------------------------------------
# Global Color Variables
--------------------------------------------------------------*/
:root {

  /* Main Background */
  --background-color: #FFFFFF;

  /* Body Text */
  --default-color: #5D6478;

  /* Heading Text */
  --heading-color: #1B2550;

  /* Brand Primary (Logo Blue) */
  --accent-color: #202E62;

  /* Brand Secondary (Logo Orange) */
  --secondary-color: #F89939;

  /* Card Background */
  --surface-color: #FFFFFF;

  /* Text on Dark Background */
  --contrast-color: #FFFFFF;

  /* Light Section */
  --light-background: #F8F9FC;

  /* Alternate Section */
  --section-background: #EEF2FA;

  /* Borders */
  --border-color: #E5E8F2;

  /* Hover Blue */
  --accent-hover: #16224A;

  /* Orange Hover */
  --secondary-hover: #E78620;

  /* Success */
  --success-color: #27AE60;

  /* Warning */
  --warning-color: #F4B400;

  /* Danger */
  --danger-color: #E74C3C;

  /* ===== Extended ===== */
            --shadow-sm: 0 2px 8px rgba(32, 46, 98, 0.06);
            --shadow-md: 0 6px 24px rgba(32, 46, 98, 0.08);
            --shadow-lg: 0 12px 40px rgba(32, 46, 98, 0.10);
            --radius: 16px;
            --radius-sm: 10px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}


/*--------------------------------------------------------------
# Navigation Colors
--------------------------------------------------------------*/
:root {

  /* Desktop Navigation */
  --nav-color: #202E62;

  /* Active / Hover */
  --nav-hover-color: #F89939;

  /* Mobile */
  --nav-mobile-background-color: #FFFFFF;

  /* Dropdown */
  --nav-dropdown-background-color: #FFFFFF;
  --nav-dropdown-color: #202E62;
  --nav-dropdown-hover-color: #F89939;

}


/*--------------------------------------------------------------
# Background Presets
--------------------------------------------------------------*/

.light-background {

  --background-color: #F8F9FC;
  --surface-color: #FFFFFF;

}


.dark-background {

  --background-color: #202E62;

  --default-color: #F4F6FA;

  --heading-color: #FFFFFF;

  --surface-color: #24356F;

  --contrast-color: #FFFFFF;

}


.accent-background {

  --background-color: #202E62;

  --default-color: #FFFFFF;

  --heading-color: #FFFFFF;

  --accent-color: #F89939;

  --surface-color: #24356F;

  --contrast-color: #FFFFFF;

}


/*--------------------------------------------------------------
# Smooth Scroll
--------------------------------------------------------------*/

:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/

body {

  color: var(--default-color);

  background: var(--background-color);

  font-family: var(--default-font);

  font-size: 16px;

  line-height: 1.8;

  font-weight: 400;

}


a {

  color: var(--accent-color);

  text-decoration: none;

  transition: all .3s ease;

}

.accent{

  color: var(--accent-color) !important;

}

.secondary{

  color: var(--secondary-color) !important;

}


a:hover {

  color: var(--secondary-color);

}


h1,
h2,
h3,
h4,
h5,
h6 {

  color: var(--heading-color);

  font-family: var(--heading-font);

  font-weight: 700;

  line-height: 1.2;

  letter-spacing: -.02em;

}

.navmenu {

  font-family: var(--nav-font);

  font-weight: 600;

  letter-spacing: .3px;

}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  /* --background-color: var(--nav-hover-color); */
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 10%);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

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

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

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

.header .logo span {
  font-size: 32px;
  margin-left: 2px;
  color: var(--nav-hover-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .topbar{
  display: none !important;
  /* transition: all 1s ease-in-out !important; */
}

@media (max-width:526px){

  .header .topbar {
    display: none !important;
  }

  .header .logo img {
    max-height: 50px;
    margin-right: 8px;
  }
}

/*--------------------------------------------------------------
# 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;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-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-color);
    font-weight: 700;
  }

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

.footer .footer-about .logo img {
  max-height: 80px;
  margin-right: 6px;
}

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

.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 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--default-color);
  border-color: var(--default-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(--default-color);
}

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

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

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

/*--------------------------------------------------------------
# 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 {
  --background-color: var(--accent-color);
  --default-color: #fff;
  --heading-color: #fff;
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  /* border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-hover);
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title nav ol a:hover {
  color: var(--default-color);
}

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# 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 {
  width: 100%;
  position: relative;
  padding: 140px 0 0 0;
}

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

.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h2 .accent {
  color: var(--conrast-color);
}

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

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .btn-get-started:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: var(--default-color);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

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

.hero .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: var(--default-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.hero .icon-box {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: var(--background-color);
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero .icon-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .icon-box:hover {
  background-color: color-mix(in srgb, var(--background-color), white 10%);
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

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

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


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background-color: transparent;
}

.call-to-action .container {
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  clip-path: inset(0 round 15px);
}

.call-to-action .container img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
}

.call-to-action .container:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container .content {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-to-action p {
  color: var(--default-color);
  margin-bottom: 20px;
}

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 60%) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

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

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





/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--accent-color);
  height: 100%;
  padding: 20px;
}

.contact .info-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .info-item:hover i {
  background: var(--contrast-color);
  color: var(--accent-color);
}

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}





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

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/* --------------------------
 * Stats Section
 * -------------------------- */

  /* :root{

      --background-color:#fff;
      --default-color:#64748B;
      --heading-color:#1E293B;
      --accent-color:#2B205F;
      --border:#E2E8F0;

  } */

.stats{

    padding:80px 0;
    /* background:#fff; */
    position:relative;
    overflow:hidden;

}

.stats::before{

    content:"";
    position:absolute;

    width:650px;
    height:650px;

    background:radial-gradient(rgba(43,32,95,.04),transparent 70%);

    top:-250px;
    right:-200px;

}

.stats-wrapper{

    display:grid;

    grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;

    align-items:center;

}

.divider{

    width:1px;
    height:140px;

    background:linear-gradient(
        transparent,
        #d8dee8,
        transparent
    );

}

.stat-item{

    text-align:center;
    position:relative;

}

.stat-item h3{

    display:inline-block;

    font-size:70px;
    font-weight:700;

    color:var(--heading-color);
    line-height:1;

}

.stat-item small{

    font-size:30px;

    color:var(--accent-color);

    font-weight:700;

}

.stat-item h4{

    margin-top:20px;

    font-size:18px;

    color:var(--default-color);

    font-weight:500;

    line-height:1.6;

    max-width:220px;

    margin-inline:auto;

}

/* Hover */

.stat-item:hover h3{

    color:var(--accent-color);

    transition:.4s;

}

.stat-item::after{

    content:"";

    width:55px;
    height:3px;

    background:var(--accent-color);

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:-18px;

    transition:.4s;

}

.stat-item::after{

    opacity:.15;

}

.stat-item:hover::after{

    width:90px;
    opacity:1;

}

@media(max-width:991px){

.stats-wrapper{

grid-template-columns:repeat(2,1fr);

gap:60px;

}

.divider{

display:none;

}

}

@media(max-width:600px){

.stats-wrapper{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:36px;

}

.stat-item h3{

font-size:58px;

}

}



 


/* ----------------------------
  * Service section
  ----------------------------- */

  /* :root {

    --background-color:#ffffff;
    --default-color:#475569;
    --heading-color:#1E293B;
    --accent-color:#2B205F;
    --surface-color:#ffffff;
    --contrast-color:#ffffff;
  
  } */
  
  .services{
      background:var(--background-color);
  }
  
  
  .service-card{
  
      position:relative;
      background:var(--surface-color);
      border-radius:20px;
      overflow:hidden;
      box-shadow:0 10px 35px rgba(0,0,0,.08);
      transition:.35s;
      height:100%;
  }
  
  .service-card:hover{
  
      transform:translateY(-10px);
      box-shadow:0 18px 45px rgba(43,32,95,.18);
  
  }
  
  .service-img{
  
      height:230px;
      overflow:hidden;
  }
  
  .service-img img{
  
      width:100%;
      height:100%;
      object-fit:cover;
      transition:.5s;
  
  }
  
  .service-card:hover img{
  
      transform:scale(1.08);
  
  }
  
  .service-icon{
  
      width:82px;
      height:82px;
      border-radius:50%;
      background:var(--accent-color);
      color:#fff;
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      top:190px;
  
      display:flex;
      align-items:center;
      justify-content:center;
  
      font-size:34px;
      border:5px solid #fff;
      transition:.4s;
  
  }
  
  .service-card:hover .service-icon{
  
      transform:translateX(-50%) rotate(360deg);
  
  }
  
  .service-body{
  
      padding:30px 25px 30px;
  }
  
  .service-body h4{
  
      color:var(--heading-color);
      font-weight:700;
      /* text-align:center; */
      margin-bottom:20px;
      font-size: 22px;
  
  }

  .service-card:hover .service-body h4{
  
    color: var(--secondary-hover);

}
  

  
  @media(max-width:991px){
  
  .service-img{
  
  height:220px;
  
  }
  
  .service-icon{
  
  top:180px;
  
  }
  
  }
  
  @media(max-width:767px){
  
  .service-img{
  
  height:210px;
  
  }
  
  .service-icon{
  
  width:72px;
  height:72px;
  font-size:28px;
  top:175px;
  
  }
  
  .service-body{
  
  padding:55px 20px 25px;
  
  }
  
  }

 


    /* ==========================
       * Why choose Us
        ========================== */



        .page-wrapper {
            /* max-width: 1200px; */
            /* width: 100%; */
            margin: 0 auto;
        }

        /* ===== FEATURE CARDS ===== */
        .feature-card {
            background: var(--surface-color);
            border-radius: 16px;
            padding: 1.1rem 1rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: all 0.25s ease;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(43, 32, 95, 0.08);
            border-color: rgba(43, 32, 95, 0.12);
        }

        .feature-card .icon-wrapper {
            width: 38px;
            height: 38px;
            min-width: 38px;
            border-radius: 14px;
            background: rgba(43, 32, 95, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            font-size: 1.1rem;
            transition: 0.2s;
        }

        .feature-card:hover .icon-wrapper {
            background: var(--accent-color);
            color: var(--contrast-color);
        }

        .feature-card .feature-content {
            flex: 1;
        }

        .feature-card .feature-content p {
            font-size: 1rem;
            font-weight: 500;
            color: var(--heading-color);
            margin: 0;
            line-height: 1.4;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            /* body {
                padding: 1.5rem 0.75rem;
            } */

            .section-header h1 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            .feature-card {
                padding: 1.25rem 1rem;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .feature-card .icon-wrapper {
                width: 44px;
                height: 44px;
                min-width: 44px;
                font-size: 1.25rem;
            }
        }

        @media (max-width: 576px) {
            .section-header h1 {
                font-size: 1.6rem;
            }

            .section-header .badge-icon {
                font-size: 0.65rem;
                padding: 0.3rem 0.9rem;
            }

            .feature-card {
                padding: 1rem 0.75rem;
            }

            .feature-card .feature-content p {
                font-size: 0.92rem;
            }
        }

        /* ===== ANIMATION ===== */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeUp 0.6s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.05s;
        }
        .delay-2 {
            animation-delay: 0.10s;
        }
        .delay-3 {
            animation-delay: 0.15s;
        }
        .delay-4 {
            animation-delay: 0.20s;
        }
        .delay-5 {
            animation-delay: 0.25s;
        }
        .delay-6 {
            animation-delay: 0.30s;
        }
        .delay-7 {
            animation-delay: 0.35s;
        }
        .delay-8 {
            animation-delay: 0.40s;
        }
        .delay-9 {
            animation-delay: 0.45s;
        }
        .delay-10 {
            animation-delay: 0.50s;
        }
  

        /* ============================================ */
        /* ===== HERO SECTION – FULL SCREEN ===== */
        .hero {
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: url('../img/h.webp') no-repeat center center / cover;
            padding: 2rem 1.5rem;
        }

        /* Dark overlay for readability */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 820px;
            width: 100%;
            text-align: center;
            color: #fff;
            padding: 1rem 0;
        }

        /* ===== HERO TYPOGRAPHY ===== */
        .hero-content .brand-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -1px;
            line-height: 1.15;
            margin-bottom: 1rem;
        }

        .hero-content h1 .highlight {
            color: var(--nav-hover-color);
        }

        .hero-content .tagline {
            font-size: 1.25rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.85);
            max-width: 640px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        /* ===== BUTTONS ===== */
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .btn-primary-custom {
            background: var(--accent-color);
            color: var(--contrast-color);
            border: none;
            padding: 0.85rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 8px 24px rgba(43, 32, 95, 0.30);
        }

        .btn-primary-custom:hover {
            background: #1f1647;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(43, 32, 95, 0.40);
        }

        .btn-outline-custom {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
            padding: 0.85rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-outline-custom:hover {
            background: rgba(255, 255, 255, 0.10);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-content .tagline {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.4rem;
            }

            .hero-content .tagline {
                font-size: 1rem;
                padding: 0 0.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 360px;
                margin: 0 auto;
            }

            .btn-primary-custom,
            .btn-outline-custom {
                width: 100%;
                justify-content: center;
                padding: 0.75rem 1.5rem;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.9rem;
            }

            .hero-content .brand-badge {
                font-size: 0.6rem;
                padding: 0.3rem 0.9rem;
            }

            .hero-content .tagline {
                font-size: 0.9rem;
            }
        }

        /* ===== SCROLL INDICATOR (optional) ===== */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            color: rgba(255, 255, 255, 0.4);
            font-size: 1.8rem;
            animation: bounceDown 2s infinite;
            display: none;
        }

        @keyframes bounceDown {
            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }

        @media (min-height: 800px) {
            .scroll-indicator {
                display: block;
            }
        }

        /* -----------------------
          * Breadcrumb section
          ------------------------- */

          .br-section{
            background-image: url('../img/h2.webp');
            background-position: center;
            background-size: cover;
            padding-top: 180px;
          }


/*--------------------------------------------------------------
# six step process section
--------------------------------------------------------------*/

/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  min-height: 100vh;
} */

.cards-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 40px;
}

.card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 40px 30px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Positioning for scattered layout */
.card-1 {
  transform: rotate(-2deg);
  margin-top: 20px;
}

.card-2 {
  transform: rotate(1deg);
  margin-top: 50px;
}

.card-3 {
  transform: rotate(2deg);
  margin-top: -10px;
}

.card-4 {
  transform: rotate(-1deg);
  margin-top: 30px;
}

.card-5 {
  transform: rotate(1.5deg);
  margin-top: 10px;
  grid-column: 1;
}

/* Pin styling */
.pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pin::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 15px;
  background: inherit;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.pin-red { background: #f87171; }
.pin-blue { background: #60a5fa; }
.pin-purple { background: #a78bfa; }
.pin-orange { background: #fb923c; }
.pin-black { background: #1f2937; }

/* Card content */
.card-content .number {
  display: inline-block;
  font-size: 14px;
  color: #f97316;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

/* Responsive design */
@media (max-width: 768px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }
  
  .card-1 {
    transform: rotate(4deg);
    margin-top: 0;
  }

  .card-2{
    transform: rotate(-2deg);
  }

  .card-4{
    transform: rotate(-3deg);
  }
}



/* -----------------------------
   * Industries We serve
-------------------------------- */

.section{
  padding:80px 5%;
}

#industries .swiper{
  padding-bottom:50px;
  padding-top: 15px;
}

#industries .card{
  border-radius:20px;
  overflow:hidden;
  position:relative;
  height:320px;
  /* background:#111; */
  transition:0.4s;
  padding: 0 !important;
}

#industries .card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

#industries .card::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:60%;
  background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

#industries .card-content{
  position:absolute;
  bottom:20px;
  left:20px;
  z-index:2;
}

#industries .card-content h3{
  margin:0;
  color: #fff;
  font-size:20px;
}

#industries .card:hover img{
  transform:scale(1.1);
}

#industries .card:hover{
  transform:translateY(-10px);
}

#industries .swiper-slide{
  width:260px;
}


/* ----------------------------
    * Comodity Experts section
    ---------------------------- */
    /* ===== CONTAINER ===== */
    .prc-container {
        max-width: 1280px;
        width: 100%;
        margin: 0 auto;
        background: var(--background-color);
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        padding: 40px 32px 48px;
        transition: var(--transition);
    }

    /* ===== HEADER ===== */
    .prc-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 32px;
        padding-bottom: 20px;
        border-bottom: 2px solid var(--border-color);
    }

    .prc-header h1 {
        font-size: 28px;
        font-weight: 800;
        color: var(--heading-color);
        letter-spacing: -0.5px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .prc-header h1 i {
        color: var(--secondary-color);
        font-size: 30px;
    }

    .prc-badge {
        background: var(--section-background);
        color: var(--accent-color);
        font-size: 13px;
        font-weight: 600;
        padding: 6px 18px;
        border-radius: 40px;
        border: 1px solid var(--border-color);
        letter-spacing: 0.3px;
    }

    /* ===== TABS ===== */
    .prc-tabs {
        display: flex;
        gap: 6px;
        margin-bottom: 32px;
        background: var(--light-background);
        border-radius: var(--radius-sm);
        padding: 5px;
        border: 1px solid var(--border-color);
        flex-wrap: wrap;
    }

    .prc-tab-btn {
        flex: 1;
        min-width: 140px;
        padding: 14px 24px;
        border: none;
        background: transparent;
        border-radius: var(--radius-sm);
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: var(--default-color);
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        white-space: nowrap;
    }

    .prc-tab-btn i {
        font-size: 18px;
        color: var(--default-color);
        transition: var(--transition);
    }

    .prc-tab-btn:hover {
        background: rgba(32, 46, 98, 0.05);
        color: var(--accent-color);
    }

    .prc-tab-btn:hover i {
        color: var(--accent-color);
    }

    .prc-tab-btn.prc-active {
        background: var(--secondary-hover);
        color: var(--accent-color);
        box-shadow: var(--shadow-sm);
    }

    .prc-tab-btn.prc-active i {
        color: var(--accent-color);
    }

    .prc-tab-btn .prc-tab-count {
        font-size: 11px;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.2);
        color: var(--accent-color);
        padding: 1px 10px;
        border-radius: 30px;
        line-height: 1.6;
    }

    .prc-tab-btn.prc-active .prc-tab-count {
        background: rgba(255, 255, 255, 0.25);
    }

    .prc-tab-btn:not(.prc-active) .prc-tab-count {
        background: var(--section-background);
        color: var(--default-color);
    }

    /* ===== TAB PANELS ===== */
    .prc-tab-panels {
        position: relative;
    }

    .prc-tab-panel {
        display: none;
        animation: prcFadeUp 0.4s ease forwards;
    }

    .prc-tab-panel.prc-active {
        display: block;
    }

    @keyframes prcFadeUp {
        0% {
            opacity: 0;
            transform: translateY(12px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ===== GRID ===== */
    .prc-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }

    /* ===== CARDS ===== */
    .prc-card {
        background: var(--surface-color);
        border-radius: var(--radius-sm);
        padding: 22px 24px 24px;
        border: 1px solid var(--border-color);
        transition: var(--transition);
        box-shadow: var(--shadow-sm);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    /* Gradient removed — using solid accent color instead */
    /* .prc-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--accent-color);
        opacity: 0;
        transition: var(--transition);
    } */

    .prc-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--secondary-hover);
    }

    .prc-card:hover::after {
        opacity: 1;
    }

    .prc-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--light-background);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--accent-color);
        margin-bottom: 14px;
        transition: var(--transition);
        flex-shrink: 0;
    }

    .prc-card:hover .prc-card-icon {
        background: var(--accent-color);
        color: var(--contrast-color);
    }

    .prc-card-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 4px;
        letter-spacing: -0.2px;
    }

    .prc-card-sub {
        font-size: 13px;
        color: var(--default-color);
        opacity: 0.8;
        margin-top: 2px;
    }

    /* ===== NESTED TAGS ===== */
    .prc-nested-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid var(--border-color);
    }

    .prc-nested-tags .prc-tag {
        background: var(--section-background);
        color: var(--heading-color);
        font-size: 12px;
        font-weight: 500;
        padding: 4px 14px;
        border-radius: 30px;
        border: 1px solid var(--border-color);
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .prc-nested-tags .prc-tag i {
        font-size: 11px;
        color: var(--secondary-color);
    }

    .prc-nested-tags .prc-tag:hover {
        background: var(--accent-color);
        color: var(--contrast-color);
        border-color: var(--accent-color);
    }

    .prc-nested-tags .prc-tag:hover i {
        color: var(--contrast-color);
    }

    /* ===== CARD WITH NESTED (special background) ===== */
    .prc-card-nested .prc-card-icon {
        background: var(--section-background);
    }

    .prc-card-nested .prc-nested-tags .prc-tag i {
        color: var(--secondary-color);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .prc-container {
            padding: 28px 20px 36px;
        }

        .prc-header h1 {
            font-size: 24px;
        }

        .prc-grid {
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 16px;
        }
    }

    @media (max-width: 768px) {
        /* body {
            padding: 20px 12px;
        } */

        .prc-container {
            padding: 20px 16px 28px;
            border-radius: 12px;
        }

        .prc-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 24px;
            padding-bottom: 16px;
        }

        .prc-header h1 {
            font-size: 20px;
        }

        .prc-header h1 i {
            font-size: 22px;
        }

        .prc-badge {
            font-size: 11px;
            padding: 4px 14px;
        }

        .prc-tabs {
            gap: 4px;
            padding: 4px;
            margin-bottom: 24px;
            overflow-x: auto;
            flex-wrap: nowrap;
            -webkit-overflow-scrolling: touch;
        }

        .prc-tab-btn {
            min-width: 100px;
            padding: 10px 16px;
            font-size: 13px;
            white-space: nowrap;
            flex: 0 0 auto;
        }

        .prc-tab-btn i {
            font-size: 15px;
        }

        .prc-tab-btn .prc-tab-count {
            font-size: 10px;
            padding: 0 8px;
        }

        .prc-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .prc-card {
            padding: 18px 18px 20px;
        }

        .prc-card-icon {
            width: 42px;
            height: 42px;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .prc-card-title {
            font-size: 15px;
        }

        .prc-nested-tags {
            gap: 6px;
            margin-top: 10px;
            padding-top: 10px;
        }

        .prc-nested-tags .prc-tag {
            font-size: 11px;
            padding: 3px 12px;
        }
    }

    @media (max-width: 480px) {
        .prc-container {
            padding: 16px 12px 24px;
            border-radius: 10px;
        }

        .prc-header h1 {
            font-size: 18px;
        }

        .prc-tab-btn {
            min-width: 80px;
            padding: 8px 12px;
            font-size: 12px;
        }

        .prc-tab-btn i {
            font-size: 13px;
        }

        .prc-card {
            padding: 14px 14px 16px;
        }

        .prc-card-title {
            font-size: 14px;
        }
    }

    /* ===== SCROLLBAR ===== */
    .prc-tabs::-webkit-scrollbar {
        height: 3px;
    }

    .prc-tabs::-webkit-scrollbar-track {
        background: var(--border-color);
        border-radius: 10px;
    }

    .prc-tabs::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 10px;
    }

    /* ----------------------------------------
       * Founder profile section
        --------------------------------------- */
        /* ===== FOUNDER CARD ===== */
        .founder-card {
            background: var(--surface-color);
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(32, 46, 98, 0.08);
            padding: 40px 40px 40px 40px;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }
        .founder-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 80px rgba(32, 46, 98, 0.12);
        }
        /* .founder-card .accent-stripe {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        } */

        .founder-avatar {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-background), var(--section-background));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4.5rem;
            color: var(--accent-color);
            border: 4px solid var(--secondary-color);
            box-shadow: 0 12px 30px rgba(248, 153, 57, 0.20);
            flex-shrink: 0;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .founder-card:hover .founder-avatar {
            transform: scale(1.03);
            box-shadow: 0 16px 40px rgba(248, 153, 57, 0.30);
        }

        .founder-name {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--heading-color);
            margin-bottom: 2px;
        }
        .founder-role {
            font-size: 1rem;
            font-weight: 600;
            color: var(--secondary-color);
            letter-spacing: 0.02em;
        }
        .founder-bio {
            color: var(--default-color);
            font-size: 0.98rem;
            line-height: 1.8;
        }
        .founder-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 40px;
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid var(--border-color);
        }
        .founder-stats .stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .founder-stats .stat-item i {
            color: var(--secondary-color);
            font-size: 1.2rem;
            width: 28px;
            text-align: center;
        }
        .founder-stats .stat-item strong {
            color: var(--heading-color);
            font-weight: 700;
        }
        .founder-stats .stat-item span {
            color: var(--default-color);
            font-size: 0.95rem;
        }

        /* ===== CAPABILITIES GRID ===== */
        .capability-card {
            background: var(--surface-color);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 4px 16px rgba(32, 46, 98, 0.04);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .capability-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(248, 153, 57, 0.03), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 20px;
        }
        .capability-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 20px 50px rgba(32, 46, 98, 0.10);
            border-color: var(--secondary-color);
        }
        .capability-card:hover::before {
            opacity: 1;
        }
        .capability-card .icon-wrap {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--light-background);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px auto;
            font-size: 1.5rem;
            color: var(--accent-color);
            transition: all 0.4s ease;
            border: 1px solid var(--border-color);
        }
        .capability-card:hover .icon-wrap {
            background: var(--secondary-color);
            color: var(--contrast-color);
            border-color: var(--secondary-color);
            transform: scale(1.08);
            box-shadow: 0 8px 24px rgba(248, 153, 57, 0.30);
        }
        .capability-card h5 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 6px;
        }
        .capability-card p {
            font-size: 0.9rem;
            color: var(--default-color);
            margin-bottom: 0;
        }

        /* ===== TEAM SECTION ===== */
        .team-section {
            background: var(--light-background);
        }

        .team-intro-text {
            font-size: 1.05rem;
            color: var(--default-color);
            max-width: 700px;
            margin: 0 auto;
        }
        .team-intro-text i {
            color: var(--secondary-color);
        }

        /* ===== COUNTER / FUN FACT ===== */
        .counter-box {
            background: var(--surface-color);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 16px rgba(32, 46, 98, 0.04);
        }
        .counter-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(32, 46, 98, 0.08);
        }
        .counter-box .number {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--accent-color);
            line-height: 1.2;
        }
        .counter-box .number .orange {
            color: var(--secondary-color);
        }
        .counter-box .label {
            font-size: 0.9rem;
            color: var(--default-color);
            font-weight: 500;
            margin-top: 2px;
        }

        /* ===== RESPONSIVE TWEAKS ===== */
        @media (max-width: 991.98px) {
            .section-padding {
                padding: 60px 0;
            }
            /* .section-title {
                font-size: 2.1rem;
            } */
            .hero-banner h1 {
                font-size: 2.1rem;
            }
            .founder-card {
                padding: 30px 24px;
            }
            .founder-avatar {
                width: 110px;
                height: 110px;
                font-size: 3.4rem;
            }
            .founder-name {
                font-size: 1.6rem;
            }
            .founder-stats {
                gap: 12px 24px;
            }
        }

        @media (max-width: 767.98px) {
            .section-padding {
                padding: 48px 0;
            }
            /* .section-title {
                font-size: 1.8rem;
            } */
            .hero-banner {
                padding: 40px 0 30px 0;
            }
            .hero-banner h1 {
                font-size: 1.7rem;
            }
            .hero-banner .logo-icon {
                font-size: 2rem;
            }
            .hero-banner p {
                font-size: 0.95rem;
            }
            .founder-card {
                padding: 24px 18px;
                border-radius: 18px;
            }
            .founder-avatar {
                width: 90px;
                height: 90px;
                font-size: 2.8rem;
            }
            .founder-name {
                font-size: 1.4rem;
            }
            .founder-role {
                font-size: 0.9rem;
            }
            .founder-bio {
                font-size: 0.92rem;
            }
            .founder-stats {
                flex-direction: column;
                gap: 8px 0;
            }
            .capability-card {
                padding: 22px 16px;
            }
            .capability-card .icon-wrap {
                width: 56px;
                height: 56px;
                font-size: 1.4rem;
            }
            .counter-box .number {
                font-size: 2rem;
            }
            .section-subtitle {
                font-size: 0.95rem;
                padding: 0 12px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-banner h1 {
                font-size: 1.5rem;
            }
            .hero-banner .logo-icon {
                font-size: 1.6rem;
                margin-right: 6px;
            }
            /* .section-title {
                font-size: 1.6rem;
            } */
            .founder-card {
                padding: 20px 14px;
            }
            .founder-avatar {
                width: 76px;
                height: 76px;
                font-size: 2.2rem;
                border-width: 3px;
            }
            .founder-name {
                font-size: 1.2rem;
            }
            .capability-card {
                padding: 18px 12px;
            }
            .capability-card h5 {
                font-size: 0.95rem;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fade-up {
            animation: fadeUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            opacity: 0;
        }
        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
        .delay-4 {
            animation-delay: 0.4s;
        }
        .delay-5 {
            animation-delay: 0.5s;
        }

        /* ===== SCROLL REVEAL (simple JS-driven) ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== MISC ===== */
        .text-accent {
            color: var(--accent-color);
        }
        .text-secondary-orange {
            color: var(--secondary-color);
        }
        .bg-soft-blue {
            background: var(--light-background);
        }
        .border-soft {
            border-color: var(--border-color);
        }
        .gap-2 {
            gap: 0.5rem;
        }
        .gap-3 {
            gap: 1rem;
        }

        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--light-background);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-hover);
        }

        .btn-outline-accent {
            color: var(--accent-color);
            border: 2px solid var(--accent-color);
            border-radius: 50px;
            padding: 10px 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            background: transparent;
        }
        .btn-outline-accent:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(32, 46, 98, 0.20);
        }
        .btn-accent {
            background: var(--accent-color);
            color: var(--contrast-color);
            border: none;
            border-radius: 50px;
            padding: 10px 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .btn-accent:hover {
            background: var(--accent-hover);
            color: var(--contrast-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(32, 46, 98, 0.25);
        }

        /* ----------------------------------------
          * Why choose us section
          -------------------------------------- */

          .why-section {
            /* background: #0f172ad7; */
            background: var(--accent-hover);
            padding: 100px 5%;
            /* font-family: 'Poppins', sans-serif; */
          }
          
          .why-container {
            display: flex;
            align-items: center;
            gap: 60px;
          }
          
          /* IMAGE */
          .why-image {
            width: 50%;
          }
          
          .why-image img {
            width: 100%;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
          }
          
          /* CONTENT */
          .why-content {
            width: 50%;
          }
          
          .why-content h2 {
            font-size: 36px;
            color: var(--secondary-color);
            margin-bottom: 25px;
          }
          
          /* LIST */
          .why-content ul {
            list-style: none;
            padding: 0;
          }
          
          .why-content ul li {
            /* color: #cbd5e1; */
            font-size: 16px;
            margin-bottom: 15px;
            padding-left: 30px;
            color: var(--contrast-color);
            position: relative;
            transition: 0.3s;
          }
          
          /* CHECK ICON */
          .why-content ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
          }
          
          /* HOVER EFFECT */
          .why-content ul li:hover {
            color: var(--secondary-hover);
            transform: translateX(8px);
          }
          
          /* =====================
             RESPONSIVE
          ===================== */
          
          /* Tablet */
          @media (max-width: 992px) {
            .why-container {
              flex-direction: column;
            }
          
            .why-image,
            .why-content {
              width: 100%;
            }
          
            .why-content {
              text-align: center;
            }
          
            .why-content ul li {
              padding-left: 0;
            }
          
            .why-content ul li::before {
              position: static;
              margin-right: 8px;
            }
          }
          
          /* Mobile */
          @media (max-width: 600px) {
            .why-content h2 {
              font-size: 28px;
            }
          }

          /* ============================================================ */
/*  cta / CTA SECTION  (only classes used in HTML)           */
/* ============================================================ */

/* ---- section container ---- */
.cta {
    /* padding: 80px 0; */
}

/* ---- main banner ---- */
.cta .cta-banner {
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--accent-color), transparent 92%),
            color-mix(in srgb, var(--accent-color), transparent 96%));
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

/* ---- content side ---- */
.cta .cta-banner .cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.cta .cta-banner .cta-content p {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

/* ---- button wrapper ---- */
.cta .cta-banner .cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* ---- primary button ---- */
.cta .cta-banner .cta-actions .btn-cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta .cta-banner .cta-actions .btn-cta-primary:hover {
    background: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
}

/* ---- secondary button ---- */
.cta .cta-banner .cta-actions .btn-cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta .cta-banner .cta-actions .btn-cta-secondary:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

/* ============================================================ */
/*  RESPONSIVE  (only for the classes used)                     */
/* ============================================================ */

@media (max-width: 991px) {
    .cta .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta .cta-banner .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta .cta-banner .cta-actions a {
        width: 100%;
        text-align: center;
    }
}

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

    .cta .cta-banner .cta-content h3 {
        font-size: 22px;
    }
}

/* -------------------------------------
  * Seven Pillers section
  -------------------------------------- */
  /* ===== MAIN WRAPPER ===== */
  .pillars-section {
      /* background: var(--light-background); */
      border-radius: 32px;
      padding: 60px 40px;
      box-shadow: 0 8px 40px rgba(32, 46, 98, 0.06);
  }

  /* .pillars-section .section-title {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--heading-color);
      margin-bottom: 0.5rem;
  }
  .pillars-section .section-title .highlight {
      color: var(--secondary-color);
  }
  .pillars-section .section-subtitle {
      font-size: 1.05rem;
      color: var(--default-color);
      max-width: 680px;
      margin: 0 auto 40px auto;
  } */

  /* ----- MINIMAL HORIZONTAL ITEM (shared structure) ----- */
  .pillar-item,
  .outcome-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 20px;
      background: var(--surface-color);
      border-radius: 16px;
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
      height: 100%;
      box-shadow: 0 2px 8px rgba(32, 46, 98, 0.03);
  }

  /* ----- PILLAR (accent color) ----- */
  .pillar-item:hover {
      transform: translateX(6px);
      border-color: var(--accent-color);
      box-shadow: 0 8px 24px rgba(32, 46, 98, 0.10);
  }
  .pillar-item .pillar-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: var(--accent-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--contrast-color);
      font-size: 1rem;
      transition: background 0.3s ease;
  }
  .pillar-item span {
      font-size: 1rem;
      font-weight: 500;
      color: var(--heading-color);
  }

  /* ----- OUTCOME (secondary color / orange) ----- */
  .outcome-item:hover {
      transform: translateX(6px);
      border-color: var(--secondary-color);
      box-shadow: 0 8px 24px rgba(248, 153, 57, 0.12);
  }
  .outcome-item .outcome-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: var(--secondary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--contrast-color);
      font-size: 1rem;
  }
  .outcome-item span {
      font-size: 1rem;
      font-weight: 500;
      color: var(--heading-color);
  }

  /* ===== SECTION DIVIDER ===== */
  .outcomes-section {
      margin-top: 60px;
  }
  .outcomes-section .outcome-title {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--heading-color);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
  }
  .outcomes-section .outcome-title i {
      color: var(--secondary-color);
      font-size: 2rem;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
      .pillars-section {
          padding: 40px 24px;
      }
      /* .pillars-section .section-title {
          font-size: 2rem;
      } */
      .outcomes-section .outcome-title {
          font-size: 1.5rem;
      }
  }

  @media (max-width: 767px) {
      .pillars-section {
          padding: 30px 16px;
          border-radius: 20px;
      }
      .pillars-section .section-title {
          font-size: 1.6rem;
      }
      .pillars-section .section-subtitle {
          font-size: 0.95rem;
      }
      .pillar-item,
      .outcome-item {
          padding: 12px 16px;
      }
      .pillar-item span,
      .outcome-item span {
          font-size: 0.9rem;
      }
      .outcomes-section .outcome-title {
          font-size: 1.3rem;
      }
  }

  @media (max-width: 575px) {
      .pillars-section .section-title {
          font-size: 1.4rem;
      }
      .pillar-item .pillar-icon,
      .outcome-item .outcome-icon {
          width: 34px;
          height: 34px;
          min-width: 34px;
          font-size: 0.85rem;
      }
  }


  /* --------------------------------------
    Service home section
    --------------------------------------- */

    /* ---------- SECTION ---------- */
    .section {
      padding: 80px 8%;
      max-width: 1400px;
      margin: 0 auto;
    }

    /* ---------- TITLE ---------- */
    /* .title {
      font-size: 120px;
      font-weight: 800;
      margin-bottom: 50px;
      line-height: 1;
      letter-spacing: -0.04em;
    } */

    /* ---------- SERVICE ITEMS ---------- */
    .service-item {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 0 25px 70px;
      border-bottom: 1px solid #ddd;
      cursor: pointer;
      gap: 20px;
      transition: background 0.2s;
    }

    .service-item:hover {
      background: rgba(33, 92, 92, 0.03);
    }

    .service-index {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 12px;
      color: #999;
      font-weight: 500;
      letter-spacing: 0.05em;
    }

    .service-name {
      font-size: 24px;
      display: flex;
      align-items: center;
      color: var(--heading-color);
      gap: 5px;
      overflow: hidden;
      flex-wrap: wrap;
      font-weight: 500;
      transition: color 0.3s;
    }

    .service-name .char {
      display: inline-block;
    }

    /* ---------- SVG ARROW ---------- */
    .arrow svg {
      width: 22px;
      height: 22px;
      stroke: #111;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      display: block;
    }

    .arrow svg path {
      stroke-dasharray: 30;
      stroke-dashoffset: 30;
      transition: all 0.4s ease;
    }

    .service-item:hover .arrow svg path {
      stroke-dashoffset: 0;
      transform: translate(-3px, -6px);
    }

    .service-item:hover .arrow svg {
      stroke: var(--secondary-color);
    }

    .service-item:hover .service-name {
      color: var(--secondary-color);
    }

    /* ---------- FLOATING IMAGE (desktop) ---------- */
    .floating-image {
      position: fixed;
      top: 0;
      left: 0;
      width: 300px;
      height: 200px;
      pointer-events: none;
      z-index: 999;
      opacity: 0;
      transform: scale(0.8);
      overflow: hidden;
      border-radius: 14px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
      will-change: transform, opacity;
      /* helps with performance */
    }

    .floating-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ---------- MOBILE PREVIEW ---------- */
    .mobile-preview {
      display: none;
      width: 100%;
      margin-top: 15px;
      border-radius: 12px;
      overflow: hidden;
    }

    .mobile-preview img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .service-link {
      position: absolute;
      inset: 0;
      z-index: 2;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 1200px) {
      .title {
        font-size: 80px;
      }
      .service-name {
        font-size: 28px;
      }
    }

    @media (max-width: 992px) {
      .title {
        font-size: 60px;
      }
      .service-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 0 30px 50px;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 60px 6%;
      }
      .title {
        font-size: 48px;
      }
      .service-name {
        font-size: 24px;
      }

      .floating-image {
        display: none !important;
      }

      .mobile-preview {
        display: block;
      }
    }

    @media (max-width: 480px) {
      .title {
        font-size: 36px;
      }
      .service-item {
        padding: 25px 0 25px 40px;
      }
      .service-index {
        font-size: 10px;
      }
      .service-name {
        font-size: 20px;
      }
    }