
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@400;500;600;700&display=swap');

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/

/* Fonts */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Sora", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors */
:root {
  /* Brand Colors */
  --background-color: #F7F6EF;
  --default-color: #303236;
  --heading-color: #0B0D0E;
  --accent-color: #C6B34F;

  /* Surface / Contrast */
  --surface-color: #FFFFFF;
  --contrast-color: #FFFFFF;

  /* Additional Brand Shades */
  --gold-light: #E2D477;
  --gold-dark: #75682C;

  /* Dark Theme */
  --dark-color: #0B0D0E;
  --charcoal-color: #17191B;
}

/*--------------------------------------------------------------
# Nav Menu Colors
--------------------------------------------------------------*/

:root {
  --nav-color: #303236;
  --nav-hover-color: #C6B34F;

  --nav-mobile-background-color: #FFFFFF;

  --nav-dropdown-background-color: #FFFFFF;
  --nav-dropdown-color: #303236;
  --nav-dropdown-hover-color: #C6B34F;
}

/*--------------------------------------------------------------
# Color Presets
--------------------------------------------------------------*/

/* Light Background */
.light-background {
  --background-color: #F7F6EF;
  --default-color: #303236;
  --heading-color: #0B0D0E;
  --surface-color: #FFFFFF;
  --contrast-color: #FFFFFF;
  --accent-color: #C6B34F;
}

/* Dark Background */
.dark-background {
  --background-color: #0B0D0E;
  --default-color: #F7F6EF;
  --heading-color: #FFFFFF;
  --surface-color: #17191B;
  --contrast-color: #FFFFFF;
  --accent-color: #C6B34F;
}

/* Accent / Gold Background */
.accent-background {
  --background-color: #C6B34F;
  --default-color: #0B0D0E;
  --heading-color: #0B0D0E;
  --accent-color: #0B0D0E;
  --surface-color: #E2D477;
  --contrast-color: #0B0D0E;
}

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

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: var(--gold-dark);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

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

/*--------------------------------------------------------------
# Navigation Typography
--------------------------------------------------------------*/

nav,
.navmenu,
.nav-link {
  font-family: var(--nav-font);
}

/*--------------------------------------------------------------
# Selection
--------------------------------------------------------------*/

::selection {
  background-color: var(--accent-color);
  color: var(--dark-color);
}

/* 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: #008374;
  --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: 5px 0;
}

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

.header .logo img {
  max-height: 80px;
  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 .topbar {
  display: none !important;
}

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

@media (max-width:768px){
  .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(--dark-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(--accent-color);
    font-weight: 700;
    font-size: large;
  }

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


/*--------------------------------------------------------------
# Hero slider Section
--------------------------------------------------------------*/

/* Hero Slider Section */
.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slide Images */
.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/* Slide Text Content */
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    padding: 0 20px;
}

.slide-text h1 {
    font-family: 'Arvo', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.slide-text p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease;
}

/* Primary Button */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--heading-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    animation: fadeInUp 1.4s ease;
}

.btn-primary:hover {
    background-color: var(--heading-color);
    color:var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(72, 255, 0, 0.4);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--accent-color);
    color: var(--heading-color);
    transform: scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--heading-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* Tablet */
@media (max-width: 768px) {
    .slide-text h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .slide-text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-slider {
        height: 90vh;
    }

    .slide-text h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .slide-text p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* Hide navigation arrows on mobile */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-pagination-bullet-active {
        width: 20px;
    }
}






/*--------------------------------------------------------------
# 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: 90px;
  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;
  background: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1.6s ease-out;
}

.preloader-inner {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo */
.preloader-inner img {
  width: 120px;   /* BIG logo */
  height: auto;
  z-index: 2;
}

/* Rotating Border */
.preloader-inner::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 3px solid transparent;
  border-top: 3px solid var(--heading-color);   /* Blue */
  border-right: 3px solid var(--accent-color);  /* Green */
  border-radius: 50%;
  animation: rotate-border 1s linear infinite;
}

/* Animation */
@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#preloader {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/*--------------------------------------------------------------
# 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;
}

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
  color: var(--heading-color);
}

.services .service-item:hover .icon:before {
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.services .service-item:hover h3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--heading-color);
}

.services .service-item:hover .readmore {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 200px;
  /* border-radius: 50px; */
  /* margin-right: 15px; */
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
}

.team .member img {
  border-radius: 15px;
  overflow: hidden;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

.team .member .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# 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(--heading-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(--heading-color);
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .info-item:hover i {
  background: var(--default-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%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# 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;
}

/* *************** */

.bg-overlay{
  position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, color-mix(in srgb, var(--default-color), transparent 30%) 0%, color-mix(in srgb, var(--heading-color), transparent 30%) 100%);
z-index:1;
}

/* ************************* */

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  position: relative;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
}

.call-to-action-2 .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action-2 h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action-2 p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action-2 .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action-2 .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action-2 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action-2 .features .feature-item span {
  font-weight: 500;
}

.call-to-action-2 .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.call-to-action-2 .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action-2 .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

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

.call-to-action-2 .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action-2 .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action-2 .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action-2 .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-2 .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action-2 .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action-2 .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action-2 .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action-2 .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action-2 .decoration .circle-1,
.call-to-action-2 .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action-2 .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action-2 .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

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

  .call-to-action-2 .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action-2 .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

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

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


/* ************************************* */

/* ************************************ */

/*-----------------------------------------------
|   Bottom Left Aligned Breadcrumb
-----------------------------------------------*/


/* Add page-specific backgrounds */
#about .breadcrumb-section {
    background-image: url('../img/about.avif') !important;
}


/* Add page-specific backgrounds */
#services .breadcrumb-section {
    background-image: url('../img/services.avif') !important;
}

#industry-expertise .breadcrumb-section {
  background-image: url('../img/industry-expertise.avif') !important;

  &{
    .breadcrumb-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
      z-index: 1;
      } 
  }
}


#claim-advisory .breadcrumb-section {
  background-image: url('../img/claim-advisory.avif') !important;
  /* background-position: bottom !important; */
}
#clients .breadcrumb-section {
  background-image: url('../img/clients.avif') !important;

  /* &{
    .breadcrumb-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
      z-index: 1;
      }
  } */
}

#contact .breadcrumb-section {
  background-image: url('../img/contact.avif') !important;
}





.breadcrumb-section {
position: relative;
width: 100%;
height: 100vh;
/* min-height: 600px; */
/* background-image: url('../img/b3.jpg'); */
background-size: cover;
background-position:center;
background-repeat: no-repeat;
background-attachment: fixed;
display: flex;
align-items: flex-end; /* Changed to bottom */
justify-content:flex-end; /* Changed to left */
}



/* Dark Overlay */
/* .breadcrumb-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
z-index: 1;
} */

/* Content Container */
.breadcrumb-content {
position: relative;
z-index: 2;
width: 100%;
text-align: left; /* Changed to left */
padding: 0 20px 80px 20px; /* Added bottom padding */
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
display: flex;
justify-content: flex-end; /* Changed to left */
align-items: center;
flex-wrap: wrap;
list-style: none;
padding: 0;
margin-bottom: 2rem;
gap: 10px;
}

.breadcrumb-item {
color: rgba(255, 255, 255, 0.8);
font-size: 0.95rem;
font-weight: 500;
}

.breadcrumb-item a {
/* color: var(--bs-white); */
color: #000;
text-decoration: none;
transition: color 0.3s ease;
position: relative;
}

.breadcrumb-item a:hover {
color: var(--bs-primary);
}

.breadcrumb-item a::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background: var(--bs-primary);
transition: width 0.3s ease;
}

.breadcrumb-item a:hover::after {
width: 100%;
}

.breadcrumb-item + .breadcrumb-item::before {
content: '/';
padding: 0 10px;
/* color: rgba(255, 255, 255, 0.6); */
color: rgb(0 0 0 / 40%);
}

.breadcrumb-item.active {
color: var(--accent-color);
font-weight: 600;
}

/* Page Title */
.breadcrumb-title {
/* color: var(--bs-white); */
/* color: #14183E; */
color: var(--heading-color);
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
animation: fadeInUp 0.8s ease-out;
text-align: right; /* Added for clarity */
}

.breadcrumb-subtitle {
/* color: rgba(255, 255, 255, 0.9); */
color: #000;
font-size: 1.3rem;
font-weight: 400;
margin: 0;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
animation: fadeInUp 1s ease-out;
text-align: right; /* Added for clarity */
}

/* Animations */
@keyframes fadeInUp {
from {
   opacity: 0;
   transform: translateY(30px);
}
to {
   opacity: 1;
   transform: translateY(0);
}
}

/* Responsive Styles */
@media (max-width: 991px) {
.breadcrumb-section {
   min-height: 500px;
   background-attachment: scroll;
}

.breadcrumb-content {
   padding-bottom: 60px;
}

.breadcrumb-title {
   font-size: 2.8rem;
}

.breadcrumb-subtitle {
   font-size: 1.15rem;
}
}

@media (max-width: 767px) {
.breadcrumb-section {
   min-height: 450px;
   height: 70vh;
}

.breadcrumb-content {
   padding-bottom: 50px;
}

.breadcrumb-title {
   font-size: 2.2rem;
   margin-bottom: 1rem;
}

.breadcrumb-subtitle {
   font-size: 1rem;
}

.breadcrumb-nav {
   margin-bottom: 1.5rem;
}

.breadcrumb-item {
   font-size: 0.88rem;
}
}

@media (max-width: 575px) {
.breadcrumb-section {
   min-height: 400px;
   height: 90vh;
}

.breadcrumb-content {
   padding-bottom: 40px;
}

.breadcrumb-title {
   font-size: 1.8rem;
}

.breadcrumb-subtitle {
   font-size: 0.95rem;
}
}

/* ****************************** */

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}


/* ***************************************** */
/* Services section */
/* ***************************************** */

.services-tiles{
  background: #F7F8FA;
  }
  
  /* Card base */
  .service-card{
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 16px 40px rgba(11, 31, 59, 0.12);
  transition: transform .3s ease, box-shadow .3s ease;
  }
  
  .service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(11, 31, 59, 0.16);
  }
  
  /* Image card */
  .service-card-image{
  min-height: 230px;
  position: relative;
  }
  
  .service-card-image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  
  /* Optional overlay (only where added in HTML) */
  .service-card-overlay{
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 24px;
  color: #FFFFFF;
  background: linear-gradient(to top, rgba(0,0,0,.58), transparent);
  }
  
  .service-card-overlay h5{
  margin: 0 0 4px 0;
  color: #FFFFFF;
  }
  
  /* Text card */
  .service-card-text{
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
  
  .service-card-text h5{
  margin: 0 0 12px 0;
  color: #0B1F3B;
  font-size: 1.1rem;
  }
  
  .service-card-text ul{
  margin: 0;
  padding: 0;
  list-style: none;
  }
  
  .service-card-text li{
  color: #1B2430;
  font-size: .95rem;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  }
  
  .service-card-text li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #C79A3A;
  }
  
  /* Soft tints like your reference image */
  .tint-1{ background: #F4ECE2; }
  .tint-2{ background: #E7E1D7; }
  .tint-3{ background: #E4E6CF; }
  .tint-4{ background: #E2E4E9; }
  
  /* Responsive tweaks */
  @media (max-width: 991.98px){
  .service-card{ border-radius: 20px; }
  .service-card-text{ padding: 22px 20px; }
  .service-card-image{ min-height: 210px; }
  }



/* ********************** */

/* From Uiverse.io by Creatlydev */ 
.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  /* color: var(--clr); */
  color: var(--heading-color);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button:hover {
  /* background-color: #000; */
  background-color: var(--heading-color) !important;
}

.button:hover .button__icon-wrapper {
  /* color: #000; */
  color: var(--heading-color) !important;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}


/* Process section */
.epc-dark-section {
      background-color: var(--charcoal-color);
      padding: 3rem 1.5rem;
      /* border-radius: 2rem; */
      /* box-shadow: 0 20px 40px rgba(0,0,0,0.6); */
      width: 100%;
      margin: 2rem 0;
      transition: all 0.2s ease;
      /* -webkit-border-radius: 2rem; */
      -moz-border-radius: 2rem;
      -ms-border-radius: 2rem;
      -o-border-radius: 2rem;
}

    /* headings using Sora */
    .epc-title {
      font-family: var(--heading-font);
      font-weight: 600;
      color: #fff;
      letter-spacing: -0.02em;
    }

    .epc-subhead {
      font-family: var(--default-font);
      font-weight: 400;
      color: #cfcfc5;
      font-size: 1.1rem;
    }

    /* gold accent line */
    .gold-divider {
      width: 70px;
      height: 3px;
      background: var(--accent-color);
      margin: 0.75rem 0 1.5rem 0;
      border-radius: 4px;
    }

    /* process step cards – dark & elegant */
    .step-card {
      background: #23262b;            /* slightly lighter than charcoal */
      border-radius: 1.5rem;
      padding: 1.8rem 1.2rem 1.8rem 1.8rem;
      transition: transform 0.25s ease, box-shadow 0.3s ease;
      height: 100%;
      border: 1px solid rgba(198, 179, 79, 0.15);
      box-shadow: 0 8px 0 rgba(0,0,0,0.3);
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .step-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 25px rgba(0,0,0,0.6);
      border-color: rgba(198, 179, 79, 0.4);
    }

    /* step number badge – gold */
    .step-number {
      font-family: var(--heading-font);
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--accent-color);
      background: rgba(198, 179, 79, 0.12);
      display: inline-block;
      padding: 0.2rem 0.9rem 0.2rem 0.9rem;
      border-radius: 40px;
      line-height: 1.4;
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
      border: 1px solid rgba(198, 179, 79, 0.2);
      align-self: flex-start;
    }

    .step-title {
      font-family: var(--heading-font);
      font-weight: 600;
      font-size: 1.4rem;
      color: #ffffff;
      margin-bottom: 0.6rem;
      line-height: 1.2;
    }

    .step-desc {
      font-family: var(--default-font);
      font-size: 0.95rem;
      color: #d0d0c5;
      line-height: 1.6;
      flex: 1;
      margin-bottom: 0.5rem;
    }

    /* small icon hint */
    .step-icon {
      color: var(--accent-color);
      opacity: 0.5;
      font-size: 1.1rem;
      margin-top: 0.5rem;
      align-self: flex-end;
      transition: opacity 0.2s;
    }

    .step-card:hover .step-icon {
      opacity: 1;
    }

    /* header with "01 — 02 — 03 — 04" (as in image) */
    .process-badge-strip {
      font-family: var(--heading-font);
      font-weight: 500;
      color: var(--accent-color);
      letter-spacing: 0.15em;
      background: rgba(198, 179, 79, 0.08);
      padding: 0.4rem 1.2rem;
      border-radius: 60px;
      display: inline-block;
      border: 1px solid rgba(198, 179, 79, 0.2);
      font-size: 0.9rem;
      margin-bottom: 0.25rem;
    }

    .process-badge-strip i {
      margin: 0 4px;
      font-size: 0.7rem;
      opacity: 0.6;
    }

    /* responsive tweaks */
    @media (max-width: 576px) {
      .epc-dark-section {
        padding: 2rem 1rem;
      }
      .step-card {
        padding: 1.5rem 1rem;
      }
      .step-title {
        font-size: 1.25rem;
      }
      .process-badge-strip {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
      }
    }

    /* extra – gold accent for dividers */
    .gold-accent-text {
      color: var(--accent-color);
    }

    /* small decorative line under title */
    .title-underline {
      width: 60px;
      height: 3px;
      background: var(--accent-color);
      border-radius: 6px;
      margin: 0.5rem 0 1.2rem 0;
    }

    /* keep content consistent */
    .text-light-muted {
      color: #c8c8bd;
    }

    /*--------------------------------------------------------------
# Project Highlights
--------------------------------------------------------------*/

.project-highlights {
  background: #F7F6EF;
  position: relative;
  overflow: hidden;
}


/*--------------------------------------------------------------
# Highlight Card
--------------------------------------------------------------*/

.highlight-card {
  height: 100%;
  min-height: 220px;

  padding: 32px 24px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  text-align: center;

  background: #FFFFFF;
  border: 1px solid rgba(117, 104, 44, 0.18);

  border-radius: 16px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;

  position: relative;
  overflow: hidden;
}


/* Gold top line */
.highlight-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: #C6B34F;

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.35s ease;
}


/* Hover */
.highlight-card:hover {
  transform: translateY(-8px);

  border-color: rgba(198, 179, 79, 0.5);

  box-shadow:
    0 18px 45px rgba(11, 13, 14, 0.10);
}

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


/*--------------------------------------------------------------
# Number
--------------------------------------------------------------*/

.highlight-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;

  color: #0B0D0E;

  font-family: "Sora", sans-serif;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 700;

  line-height: 1;
}


/* + sign */
.highlight-number > span:not(.counter) {
  color: #C6B34F;
}


/* MW / Years / States */
.highlight-number small {
  margin-left: 7px;

  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;

  color: #75682C;
}


/*--------------------------------------------------------------
# Divider
--------------------------------------------------------------*/

.highlight-divider {
  width: 38px;
  height: 2px;

  margin: 20px auto 16px;

  background: #C6B34F;

  transition: width 0.3s ease;
}

.highlight-card:hover .highlight-divider {
  width: 60px;
}


/*--------------------------------------------------------------
# Description
--------------------------------------------------------------*/

.highlight-card p {
  margin: 0;

  color: #55575A;

  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;

  line-height: 1.6;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .highlight-card {
    min-height: 210px;
  }

}


@media (max-width: 575px) {

  .project-highlights {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

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

  .highlight-card {
    min-height: 190px;
    padding: 28px 20px;
  }

  .highlight-number {
    font-size: 42px;
  }

}

/* ===================================
    PRoject details section
    ================================== */
          /* premium card – light surface with subtle gold accent */
      .premium-card {
        background: var(--surface-color);
        border-radius: 40px;
        box-shadow:
          0 30px 60px -20px rgba(11, 13, 14, 0.18),
          0 8px 24px rgba(0, 0, 0, 0.03);
        padding: 2.2rem 2rem;
        border: 1px solid rgba(198, 179, 79, 0.15);
        transition: all 0.2s ease;
      }

      /* header */
      .award-header {
        display: flex;
        align-items: center;
        gap: 14px;
        border-bottom: 2px solid rgba(198, 179, 79, 0.2);
        padding-bottom: 1.4rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
      }
      .award-header .icon-trophy {
        background: linear-gradient(145deg, #f3f0e4, #e8e0cc);
        padding: 12px 14px;
        border-radius: 24px;
        font-size: 2.2rem;
        color: var(--accent-color);
        box-shadow: 0 6px 12px rgba(198, 179, 79, 0.12);
      }
      .award-header h1 {
        font-weight: 800;
        font-size: 2rem;
        letter-spacing: -0.02em;
        color: var(--heading-color);
        margin: 0;
      }
      .award-header h1 span {
        font-weight: 400;
        color: #5f5f5f;
        font-size: 1.1rem;
        margin-left: 6px;
      }
      .award-header .badge-count {
        background: rgba(198, 179, 79, 0.12);
        padding: 0.3rem 1rem;
        border-radius: 60px;
        font-weight: 600;
        font-size: 0.8rem;
        color: var(--gold-dark);
        margin-left: auto;
        letter-spacing: 0.01em;
        border: 1px solid rgba(198, 179, 79, 0.15);
      }

      /* ----- STACKED PILL TABS (gold accent) ----- */
      .stacked-tabs {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 2rem;
        border-bottom: 1px solid rgba(198, 179, 79, 0.15);
        padding-bottom: 0.25rem;
      }
      .stacked-tabs .tab-btn {
        flex: 0 1 auto;
        background: transparent;
        border: none;
        padding: 0.7rem 1.6rem;
        border-radius: 60px;
        font-weight: 600;
        font-size: 0.95rem;
        color: #4a4a4a;
        transition: 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        letter-spacing: -0.01em;
        background: rgba(198, 179, 79, 0.06);
        border: 1px solid transparent;
      }
      .stacked-tabs .tab-btn i {
        font-size: 1.2rem;
        color: var(--gold-dark);
      }
      .stacked-tabs .tab-btn:hover {
        background: rgba(198, 179, 79, 0.1);
        color: var(--heading-color);
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(198, 179, 79, 0.06);
        border-color: rgba(198, 179, 79, 0.1);
      }
      .stacked-tabs .tab-btn.active {
        background: var(--accent-color);
        color: var(--contrast-color);
        box-shadow: 0 8px 18px rgba(198, 179, 79, 0.25);
        border-color: var(--accent-color);
      }
      .stacked-tabs .tab-btn.active i {
        color: var(--contrast-color);
      }
      .stacked-tabs .tab-btn .count-pill {
        background: rgba(255, 255, 255, 0.15);
        padding: 0.1rem 0.7rem;
        border-radius: 40px;
        font-size: 0.7rem;
        font-weight: 700;
        margin-left: 2px;
      }
      .stacked-tabs .tab-btn.active .count-pill {
        background: rgba(255, 255, 255, 0.2);
        color: var(--contrast-color);
      }

      /* tab content animation */
      .tab-pane-premium {
        animation: fadeSlide 0.3s ease;
      }
      @keyframes fadeSlide {
        0% {
          opacity: 0.4;
          transform: translateY(6px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* TABLE – clean, visible, with gold accents */
      .table-premium-wrap {
        background: #fcfbf7;
        border-radius: 28px;
        padding: 0.2rem 0.2rem 0.2rem 0.2rem;
        overflow-x: auto;
        box-shadow:
          inset 0 2px 6px rgba(0, 0, 0, 0.02),
          0 2px 8px rgba(198, 179, 79, 0.04);
        border: 1px solid rgba(198, 179, 79, 0.08);
      }
      .table-premium {
        margin-bottom: 0;
        border-collapse: separate;
        border-spacing: 0 6px;
        width: 100%;
        font-size: 0.92rem;
      }
      .table-premium thead th {
        background: rgba(198, 179, 79, 0.1);
        color: var(--heading-color);
        font-weight: 700;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        padding: 1rem 0.9rem;
        border: none;
        white-space: nowrap;
        border-bottom: 2px solid rgba(198, 179, 79, 0.15);
      }
      .table-premium thead th:first-child {
        border-radius: 18px 0 0 18px;
      }
      .table-premium thead th:last-child {
        border-radius: 0 18px 18px 0;
      }
      .table-premium tbody tr {
        background: var(--surface-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        transition: 0.15s;
        border-radius: 18px;
        border-bottom: 1px solid rgba(198, 179, 79, 0.05);
      }
      .table-premium tbody tr:hover {
        background: #fcf9f0;
        box-shadow: 0 6px 16px rgba(198, 179, 79, 0.06);
      }
      .table-premium tbody td {
        padding: 0.9rem 0.9rem;
        border: none;
        vertical-align: middle;
        color: var(--default-color);
      }
      .table-premium tbody td:first-child {
        border-radius: 18px 0 0 18px;
      }
      .table-premium tbody td:last-child {
        border-radius: 0 18px 18px 0;
      }

      .project-name {
        font-weight: 700;
        color: var(--heading-color);
        letter-spacing: -0.01em;
      }
      .badge-cap {
        background: rgba(198, 179, 79, 0.12);
        color: var(--gold-dark);
        font-weight: 700;
        padding: 0.25rem 1rem;
        border-radius: 40px;
        font-size: 0.75rem;
        white-space: nowrap;
        display: inline-block;
        border: 1px solid rgba(198, 179, 79, 0.1);
      }
      .badge-scope-premium {
        background: rgba(198, 179, 79, 0.08);
        color: #5f4f1f;
        font-weight: 600;
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
        border-radius: 40px;
        letter-spacing: 0.01em;
        white-space: nowrap;
        display: inline-block;
        border: 1px solid rgba(198, 179, 79, 0.06);
      }
      .location-text {
        font-weight: 500;
        color: #4a4a4a;
      }

      .footer-note {
        margin-top: 1.8rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(198, 179, 79, 0.15);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 0.78rem;
        color: #5f5f5f;
      }
      .footer-note i {
        margin-right: 6px;
        color: var(--gold-dark);
      }

      /* responsiveness */
      @media (max-width: 576px) {
        .premium-card {
          padding: 1.5rem 1rem;
          border-radius: 28px;
        }
        .award-header h1 {
          font-size: 1.5rem;
        }
        .award-header h1 span {
          font-size: 0.9rem;
          display: block;
          margin-left: 0;
        }
        .award-header .badge-count {
          margin-left: 0;
          width: 100%;
          text-align: left;
          margin-top: 6px;
        }
        .stacked-tabs {
          flex-direction: column;
          width: 100%;
          gap: 6px;
        }
        .stacked-tabs .tab-btn {
          width: 100%;
          justify-content: center;
          padding: 0.6rem 1rem;
        }
        .stacked-tabs .tab-btn i {
          font-size: 1rem;
        }
        .table-premium thead th,
        .table-premium tbody td {
          padding: 0.6rem 0.4rem;
          font-size: 0.75rem;
        }
        .badge-cap,
        .badge-scope-premium {
          font-size: 0.6rem;
          padding: 0.15rem 0.6rem;
        }
        .footer-note {
          flex-direction: column;
          gap: 6px;
          align-items: flex-start;
        }
      }
      @media (min-width: 577px) and (max-width: 768px) {
        .stacked-tabs .tab-btn {
          padding: 0.6rem 1.2rem;
          font-size: 0.85rem;
        }
        .table-premium {
          font-size: 0.82rem;
        }
      }
      /* scroll */
      .table-premium-wrap::-webkit-scrollbar {
        height: 6px;
      }
      .table-premium-wrap::-webkit-scrollbar-track {
        background: #efece2;
        border-radius: 20px;
      }
      .table-premium-wrap::-webkit-scrollbar-thumb {
        background: var(--gold-light);
        border-radius: 20px;
      }

      /* =========================================================
   OUR JOURNEY
========================================================= */

.our-journey {
  background: #0B0D0E;
  color: #F7F6EF;
  position: relative;
  overflow: hidden;
}


/* ---------------------------------------------------------
   Section Header
--------------------------------------------------------- */

.journey-header {
  max-width: 800px;
  margin: 0 auto;
}

.our-journey .section-label {
  display: inline-block;

  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2.5px;

  color: #C6B34F;
}

.journey-title {
  margin: 0;

  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;

  line-height: 1.2;

  color: #FFFFFF;
}

.journey-title span {
  color: #C6B34F;
}


/* =========================================================
   TIMELINE
========================================================= */

.journey-timeline {
  position: relative;

  max-width: 1000px;

  margin: 70px auto 0;
}


/* ---------------------------------------------------------
   Central Timeline Line
--------------------------------------------------------- */

.journey-timeline::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  left: 50%;

  width: 1px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(198, 179, 79, 0.6) 8%,
    rgba(198, 179, 79, 0.6) 92%,
    transparent
  );

  transform: translateX(-50%);
}


/* =========================================================
   Timeline Item
========================================================= */

.journey-item {
  position: relative;

  display: grid;

  grid-template-columns: 1fr 60px 1fr;

  align-items: center;

  min-height: 210px;
}


/* =========================================================
   YEAR
========================================================= */

.journey-year {
  padding: 30px 50px;

  text-align: right;
}

.journey-year span {
  font-family: "Sora", sans-serif;

  font-size: clamp(24px, 3vw, 38px);

  font-weight: 700;

  color: rgba(198, 179, 79, 0.35);

  transition: color 0.35s ease;
}


/* =========================================================
   DOT
========================================================= */

.journey-dot {
  width: 16px;
  height: 16px;

  margin: auto;

  border-radius: 50%;

  background: #C6B34F;

  border: 4px solid #0B0D0E;

  box-shadow:
    0 0 0 1px #C6B34F,
    0 0 20px rgba(198, 179, 79, 0.25);

  position: relative;

  z-index: 2;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* =========================================================
   CONTENT
========================================================= */

.journey-content {
  padding: 30px 50px;
}


/* =========================================================
   CARD
========================================================= */

.journey-card {
  position: relative;

  padding: 30px;

  background: #17191B;

  border: 1px solid rgba(198, 179, 79, 0.15);

  border-radius: 14px;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}


/* Small gold line */

.journey-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 25px;

  width: 45px;
  height: 3px;

  background: #C6B34F;

  border-radius: 0 0 3px 3px;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.journey-number {
  display: block;

  margin-bottom: 12px;

  font-family: "Inter", sans-serif;

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

  letter-spacing: 2px;

  color: #C6B34F;
}


/* =========================================================
   CARD TITLE
========================================================= */

.journey-card h3 {
  margin: 0 0 12px;

  font-family: "Sora", sans-serif;

  font-size: 22px;

  font-weight: 600;

  color: #FFFFFF;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.journey-card p {
  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 15px;

  font-weight: 400;

  line-height: 1.7;

  color: #B7B8BA;
}

.journey-card strong {
  color: #E2D477;
  font-weight: 600;
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.journey-item:hover .journey-card {
  transform: translateY(-5px);

  border-color: rgba(198, 179, 79, 0.45);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.25);
}

.journey-item:hover .journey-year span {
  color: #C6B34F;
}

.journey-item:hover .journey-dot {
  transform: scale(1.25);

  box-shadow:
    0 0 0 1px #C6B34F,
    0 0 25px rgba(198, 179, 79, 0.45);
}


/* =========================================================
   ALTERNATING TIMELINE
========================================================= */

/* Even items */

.journey-item:nth-child(even) .journey-year {
  order: 3;

  text-align: left;
}

.journey-item:nth-child(even) .journey-content {
  order: 1;
}


/* Odd items */

.journey-item:nth-child(odd) .journey-year {
  order: 1;
}

.journey-item:nth-child(odd) .journey-content {
  order: 3;
}


/* Dot always stays center */

.journey-item .journey-dot {
  order: 2;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .journey-timeline {
    max-width: 750px;
  }

  .journey-item {
    grid-template-columns: 35px 1fr;
    min-height: auto;

    padding-bottom: 30px;
  }

  /* Move line to left */

  .journey-timeline::before {
    left: 17px;
    transform: none;
  }

  /* Dot */

  .journey-item .journey-dot {
    grid-column: 1;
    grid-row: 1;

    margin-top: 35px;
  }

  /* Content */

  .journey-content {
    grid-column: 2;
    grid-row: 1;

    padding: 20px 0 20px 25px;
  }

  /* Year */

  .journey-year,
  .journey-item:nth-child(even) .journey-year,
  .journey-item:nth-child(odd) .journey-year {
    display: none;
  }

  /* Remove desktop ordering */

  .journey-item:nth-child(even) .journey-content,
  .journey-item:nth-child(odd) .journey-content {
    order: initial;
  }

}


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

@media (max-width: 575px) {

  .our-journey {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .journey-title {
    font-size: 29px;
  }

  .journey-timeline {
    margin-top: 50px;
  }

  .journey-item {
    grid-template-columns: 25px 1fr;

    padding-bottom: 20px;
  }

  .journey-timeline::before {
    left: 12px;
  }

  .journey-item .journey-dot {
    width: 14px;
    height: 14px;

    margin-top: 32px;
  }

  .journey-content {
    padding-left: 20px;
  }

  .journey-card {
    padding: 25px 20px;
  }

  .journey-card h3 {
    font-size: 20px;
  }

  .journey-card p {
    font-size: 14px;
    line-height: 1.65;
  }

}

/* =========================================================
   OUR PERFORMANCE AT A GLANCE
========================================================= */

.performance-section {
  position: relative;

  width: 100%;

  min-height: 560px;

  display: flex;
  align-items: center;

  padding: 100px 0;

  background-image: url("../img/cta.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.performance-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(11, 13, 14, 0.94) 0%,
      rgba(11, 13, 14, 0.82) 50%,
      rgba(11, 13, 14, 0.90) 100%
    );

  z-index: 1;
}


/* =========================================================
   CONTAINER
========================================================= */

.performance-container {
  position: relative;

  z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.performance-header {
  max-width: 800px;

  margin: 0 auto 65px;
}


.performance-label {
  display: inline-block;

  margin-bottom: 14px;

  font-family: "Inter", sans-serif;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2.5px;

  color: #C6B34F;
}


.performance-header h2 {
  margin: 0;

  font-family: "Sora", sans-serif;

  font-size: clamp(30px, 4vw, 46px);

  font-weight: 600;

  line-height: 1.2;

  color: #FFFFFF;
}


.performance-header h2 span {
  color: #C6B34F;
}


/* =========================================================
   STATS CONTAINER
========================================================= */

.performance-stats {
  max-width: 1200px;

  margin: 0 auto;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


/* =========================================================
   INDIVIDUAL STAT
========================================================= */

.performance-item {
  min-height: 190px;

  padding: 35px 25px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  position: relative;

  transition:
    background-color 0.35s ease,
    transform 0.35s ease;
}


/* Vertical separator */

.performance-item::after {
  content: "";

  position: absolute;

  top: 25%;
  right: 0;

  width: 1px;
  height: 50%;

  background: rgba(255, 255, 255, 0.15);
}


/* Remove separator from last item */

.performance-item:last-child::after {
  display: none;
}


/* =========================================================
   NUMBER
========================================================= */

.performance-number {
  display: flex;

  align-items: baseline;

  justify-content: center;

  flex-wrap: wrap;

  font-family: "Sora", sans-serif;

  font-size: clamp(32px, 3.5vw, 48px);

  font-weight: 700;

  line-height: 1;

  color: #FFFFFF;
}


/* Gold suffix */

.performance-number span:last-child {
  margin-left: 4px;

  color: #C6B34F;

  font-size: 0.55em;

  font-weight: 600;

  white-space: nowrap;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.performance-item p {
  max-width: 180px;

  margin: 18px 0 0;

  font-family: "Inter", sans-serif;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.6;

  color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   HOVER
========================================================= */

.performance-item:hover {
  background: rgba(198, 179, 79, 0.08);

  transform: translateY(-4px);
}


.performance-item:hover .performance-number {
  color: #E2D477;
}


.performance-item:hover p {
  color: #FFFFFF;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .performance-section {
    padding: 80px 0;
  }

  .performance-header {
    margin-bottom: 45px;
  }

  .performance-item {
    min-height: 180px;
  }

  /* Two-column layout */

  .performance-item::after {
    display: none;
  }

  .performance-stats .col-sm-6:nth-child(odd)
  .performance-item {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

}


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

@media (max-width: 575px) {

  .performance-section {
    min-height: auto;

    padding: 70px 0;
  }


  .performance-header {
    margin-bottom: 35px;
  }


  .performance-label {
    font-size: 11px;

    letter-spacing: 2px;
  }


  .performance-header h2 {
    font-size: 29px;
  }


  .performance-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.15);

    border-bottom: none;
  }


  .performance-item {
    min-height: 175px;

    padding: 30px 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }


  .performance-stats .col-sm-6:nth-child(odd)
  .performance-item {
    border-right: none;
  }


  .performance-number {
    font-size: 38px;
  }


  .performance-item p {
    margin-top: 15px;

    font-size: 13px;
  }

}

/* =========================================================
   WHY CHOOSE SWAROOP ENERGY
========================================================= */

.why-swaroop {
  background: #F7F6EF;
  position: relative;
  overflow: hidden;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.why-header {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


.why-label {
  display: inline-block;

  margin-bottom: 12px;

  font-family: "Inter", sans-serif;

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

  letter-spacing: 2.5px;

  color: #75682C;
}


.why-title {
  margin: 0;

  font-family: "Sora", sans-serif;

  font-size: clamp(30px, 4vw, 44px);

  font-weight: 600;

  line-height: 1.2;

  color: #0B0D0E;
}


.why-title span {
  color: #C6B34F;
}


/* =========================================================
   CARD
========================================================= */

.why-card {

  position: relative;

  height: 100%;
  min-height: 330px;

  padding: 32px 28px;

  display: flex;
  flex-direction: column;

  background: #FFFFFF;

  border: 1px solid rgba(11, 13, 14, 0.8);

  border-radius: 16px;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}



/* =========================================================
   ICON
========================================================= */

.why-icon {

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 10px;

  background: rgba(198, 179, 79, 0.12);

  border: 1px solid rgba(198, 179, 79, 0.25);

  color: #75682C;

  font-size: 21px;

  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}


/* =========================================================
   CARD CONTENT
========================================================= */

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


.why-card h3 {

  margin: 0 0 14px;

  font-family: "Sora", sans-serif;

  font-size: 20px;

  font-weight: 600;

  line-height: 1.35;

  color: #0B0D0E;
}


.why-card p {

  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.75;

  color: #5A5C60;
}


.why-card p strong {

  color: #303236;

  font-weight: 700;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.why-card-number {

  position: absolute;

  right: 25px;
  bottom: 20px;

  font-family: "Sora", sans-serif;

  font-size: 38px;

  font-weight: 700;

  line-height: 1;

  color: rgba(198, 179, 79, 0.12);

  transition: color 0.35s ease;
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.why-card:hover {

  transform: translateY(-8px);

  border-color: rgba(198, 179, 79,0.9);

  box-shadow:
    0 18px 45px rgba(11, 13, 14, 0.09);
}


/* .why-card:hover::before {

  transform: scaleX(1);

} */


.why-card:hover .why-icon {

  background: #C6B34F;

  color: #0B0D0E;

  transform: translateY(-3px);
}


.why-card:hover .why-card-number {

  color: rgba(198, 179, 79, 0.7);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .why-card {
    min-height: 310px;
  }

}


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

@media (max-width: 575px) {

  .why-swaroop {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }


  .why-title {
    font-size: 29px;
  }


  .why-card {

    min-height: 280px;

    padding: 28px 24px;

    border-radius: 14px;
  }


  .why-icon {

    width: 44px;
    height: 44px;

    margin-bottom: 20px;

    font-size: 19px;
  }


  .why-card h3 {
    font-size: 19px;
  }


  .why-card p {
    font-size: 14px;
    line-height: 1.7;
  }


  .why-card-number {
    font-size: 32px;
  }

}

/* =========================================================
   END-TO-END SOLAR EPC SOLUTIONS
========================================================= */

.epc-services {
  padding: 110px 0;
  background: #F7F6EF;
  overflow: hidden;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.epc-services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 45px;
}


.epc-label {
  display: inline-block;

  margin-bottom: 14px;

  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2.5px;

  color: #75682C;
}


.epc-services-header h2 {
  margin: 0;

  font-family: "Sora", sans-serif;

  font-size: clamp(34px, 4.5vw, 52px);

  font-weight: 600;

  line-height: 1.1;

  letter-spacing: -1.5px;

  color: #0B0D0E;
}


.epc-services-header h2 span {
  display: block;
  color: #C6B34F;
}


.epc-services-header > p {
  max-width: 360px;

  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 15px;

  line-height: 1.7;

  color: #626468;
}


/* =========================================================
   BENTO GRID

   Structure:

   ┌────────┬───────────────┐
   │        │   Commercial  │
   │        ├───────┬───────┤
   │ RESI   │Utility│ Grid  │
   │        ├───────┴───────┤
   │        │ Transformer   │
   └────────┴───────────────┘
              + Execution
========================================================= */

.epc-grid {
  display: grid;

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

  grid-template-rows:
    220px
    220px
    220px;

  gap: 12px;
}


/* =========================================================
   CARD COMMON
========================================================= */

.epc-card {
  position: relative;

  min-width: 0;

  overflow: hidden;

  border-radius: 16px;

  /* background: #17191B; */

  isolation: isolate;

  cursor: pointer;

  transition:
    transform 0.45s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.45s ease;
}


/* =========================================================
   IMAGE
========================================================= */

.epc-image {
  position: absolute;

  inset: 0;

  z-index: -2;

  background-image: var(--bg-image);

  background-size: cover;

  background-position: center;

  transition:
    transform 0.8s cubic-bezier(.2,.8,.2,1);
}


.epc-card:hover .epc-image {
  transform: scale(1.08);
}


/* =========================================================
   OVERLAY
========================================================= */

.epc-overlay {
  position: absolute;

  inset: 0;

  z-index: -1;

  background:
    linear-gradient(
      to top,
      rgba(11, 13, 14, 0.96) 0%,
      rgba(11, 13, 14, 0.72) 40%,
      rgba(11, 13, 14, 0.18) 100%
    );

  transition:
    background 0.4s ease;
}


.epc-card:hover .epc-overlay {
  background:
    linear-gradient(
      to top,
      rgba(11, 13, 14, 0.97) 0%,
      rgba(11, 13, 14, 0.76) 50%,
      rgba(11, 13, 14, 0.22) 100%
    );
}


/* =========================================================
   CARD POSITIONS
========================================================= */


/* 01 — Tall Left */

.epc-residential {
  grid-column: 1;
  grid-row: 1 / 3;
} 


/* 02 — Top Wide */

.epc-commercial {
  grid-column: 2 / 4;
  grid-row: 1;
}


/* 03 — Middle Left */

.epc-utility {
  grid-column: 2;
  grid-row: 2;
}


/* 04 — Middle Right */

.epc-grid-infrastructure {
  grid-column: 3;
  grid-row: 2;
}


/* 05 — Bottom Wide */

.epc-transformer {
  grid-column: 1 / 3;
  grid-row: 3;
}


/* 06 — Bottom Right */

.epc-execution {
  grid-column: 3;
  grid-row: 3;
}


/* =========================================================
   CONTENT
========================================================= */

.epc-content {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 26px;

  z-index: 2;
}


/* =========================================================
   NUMBER
========================================================= */

.epc-number {
  display: block;

  margin-bottom: 9px;

  font-family: "Inter", sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  color: #E2D477;
}


/* =========================================================
   TITLE
========================================================= */

.epc-card h3 {
  margin: 0 0 8px;

  font-family: "Sora", sans-serif;

  font-size: clamp(18px, 2vw, 24px);

  font-weight: 600;

  line-height: 1.2;

  color: #FFFFFF;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.epc-card p {
  max-width: 430px;

  margin: 0 0 14px;

  font-family: "Inter", sans-serif;

  font-size: 12.5px;

  line-height: 1.55;

  color: rgba(255, 255, 255, 0.72);
}


.epc-card p strong {
  color: #E2D477;
  font-weight: 600;
}


/* =========================================================
   LEARN MORE
========================================================= */

.epc-link {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  font-family: "Inter", sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: #E2D477;

  text-decoration: none;

  opacity: 0.9;

  transition:
    gap 0.3s ease,
    color 0.3s ease;
}


.epc-link span {
  font-size: 15px;

  line-height: 1;

  transition:
    transform 0.3s ease;
}


.epc-link:hover {
  color: #FFFFFF;
  gap: 11px;
}


.epc-link:hover span {
  transform: translate(2px, -2px);
}


/* =========================================================
   LARGE LEFT CARD
========================================================= */

.epc-residential .epc-content {
  padding: 30px;
}


.epc-residential h3 {
  font-size: clamp(25px, 2.8vw, 34px);
}


.epc-residential p {
  max-width: 310px;

  font-size: 13px;

  line-height: 1.65;
}


/* =========================================================
   TOP WIDE CARD
========================================================= */

.epc-commercial .epc-content {
  max-width: 560px;
}


/* =========================================================
   BOTTOM WIDE CARD
========================================================= */

.epc-transformer .epc-content {
  max-width: 570px;
}


/* =========================================================
   HOVER
========================================================= */

.epc-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 22px 50px rgba(11, 13, 14, 0.16);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .epc-services {
    padding: 85px 0;
  }


  .epc-services-header {
    align-items: flex-start;

    flex-direction: column;

    gap: 20px;

    margin-bottom: 35px;
  }


  .epc-services-header > p {
    max-width: 600px;
  }


  .epc-grid {
    grid-template-columns: 1fr 1fr;

    grid-template-rows:
      330px
      250px
      250px
      250px;
  }


  /* Residential */

  .epc-residential {
    grid-column: 1 / 3;
    grid-row: 1;
  }


  /* Commercial */

  .epc-commercial {
    grid-column: 1 / 3;
    grid-row: 2;
  }


  /* Utility */

  .epc-utility {
    grid-column: 1;
    grid-row: 3;
  }


  /* Grid */

  .epc-grid-infrastructure {
    grid-column: 2;
    grid-row: 3;
  }


  /* Transformer */

  .epc-transformer {
    grid-column: 1;
    grid-row: 4;
  }


  /* Execution */

  .epc-execution {
    grid-column: 2;
    grid-row: 4;
  }

}


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

@media (max-width: 575px) {

  .epc-services {
    padding: 65px 0;
  }


  .epc-services-header {
    margin-bottom: 28px;
  }


  .epc-services-header h2 {
    font-size: 32px;

    letter-spacing: -0.8px;
  }


  .epc-services-header > p {
    font-size: 14px;
  }


  /* Single column */

  .epc-grid {

    grid-template-columns: 1fr;

    grid-template-rows: none;

    gap: 10px;
  }


  .epc-residential,
  .epc-commercial,
  .epc-utility,
  .epc-grid-infrastructure,
  .epc-transformer,
  .epc-execution {

    grid-column: auto;
    grid-row: auto;

    min-height: 340px;
  }


  /* Feature card */

  .epc-residential {
    min-height: 430px;
  }


  .epc-content,
  .epc-residential .epc-content {
    padding: 24px;
  }


  .epc-card h3,
  .epc-residential h3 {
    font-size: 22px;
  }


  .epc-card p,
  .epc-residential p {
    font-size: 13px;

    line-height: 1.6;
  }

}



/* =====================================================
   CLIENT Section
===================================================== */
/* *********************** */
/* Our Clients section */
/* *********************** */


/* Client Cards */
.clients-grid {
  margin-bottom: 20px;
}

.client-card {
  background: white;
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(242, 169, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.client-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
}

.client-logo img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-card:hover .client-logo img {
  transform: scale(1.1);
}

.client-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.3;
  margin-top: auto;
}


/* Responsive Design */
@media (max-width: 992px) {
  .category-title {
    font-size: 1.5rem;
  }

  .client-card {
    padding: 20px 10px;
  }

  .client-logo {
    height: 70px;
    margin-bottom: 12px;
  }

  .client-logo img {
    max-height: 60px;
  }

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

@media (max-width: 768px) {
  .category-icon {
    width: 60px;
    height: 60px;
  }

  .category-icon i {
    font-size: 1.5rem;
  }

  .category-title {
    font-size: 1.3rem;
  }

  .category-subtitle {
    font-size: 0.9rem;
  }

  .client-card {
    padding: 15px 8px;
  }

  .client-logo {
    height: 60px;
    margin-bottom: 10px;
  }

  .client-logo img {
    max-height: 50px;
  }

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

  .stat-number {
    font-size: 2rem !important;
  }
}

@media (max-width: 576px) {
  .client-category {
    margin-bottom: 40px;
  }

  .category-header {
    margin-bottom: 30px;
  }

  .client-card {
    margin-bottom: 15px;
  }

  .client-stats {
    padding: 2rem !important;
  }
}

/* Loading Animation for Images */
.client-logo img {
  opacity: 0;
  animation: fadeInLogo 0.5s ease forwards;
}

@keyframes fadeInLogo {
  to {
    opacity: 1;
  }
}

/* Staggered Animation Delays */
.client-card:nth-child(1) .client-logo img {
  animation-delay: 0.1s;
}

.client-card:nth-child(2) .client-logo img {
  animation-delay: 0.2s;
}

.client-card:nth-child(3) .client-logo img {
  animation-delay: 0.3s;
}

.client-card:nth-child(4) .client-logo img {
  animation-delay: 0.4s;
}

.client-card:nth-child(5) .client-logo img {
  animation-delay: 0.5s;
}

.client-card:nth-child(6) .client-logo img {
  animation-delay: 0.6s;
}


/* =====================================================
   CONTACT PAGE
===================================================== */


/* =====================================================
   GLOBAL
===================================================== */

.contact-page {
  background: var(--background-color);
  color: var(--default-color);
  overflow: hidden;
}

.contact-page *,
.contact-page *::before,
.contact-page *::after {
  box-sizing: border-box;
}

.contact-page a {
  text-decoration: none;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page p {
  margin-top: 0;
}


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

.contact-hero {
  position: relative;
  padding: 125px 0 110px;
  background:
    radial-gradient(
      circle at 85% 25%,
      rgba(198, 179, 79, .18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--dark-color),
      var(--charcoal-color)
    );
  color: var(--contrast-color);
  overflow: hidden;
}


/* Decorative circles */

/* .contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(226, 212, 119, .18);
  border-radius: 50%;
  pointer-events: none;
} */

.contact-hero::before {
  width: 450px;
  height: 450px;
  right: -180px;
  top: -220px;
}

.contact-hero::after {
  width: 280px;
  height: 280px;
  left: -150px;
  bottom: -180px;
}


.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}


.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 22px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;

  color: var(--gold-light);
}


.contact-eyebrow span {
  display: block;

  width: 32px;
  height: 2px;

  background: var(--accent-color);
}


.contact-hero h1 {
  margin-bottom: 25px;

  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -2.5px;
}


.contact-hero h1 em {
  color: var(--accent-color);
  font-style: normal;
}


.contact-hero p {
  max-width: 650px;

  margin-bottom: 0;

  font-size: 17px;
  line-height: 1.8;

  color: rgba(255,255,255,.68);
}


/* =====================================================
   MAIN CONTACT
===================================================== */

.contact-main {
  padding: 110px 0;
}


.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}


/* =====================================================
   LEFT CONTACT INFO
===================================================== */

.section-label {
  display: inline-block;

  margin-bottom: 14px;

  color: var(--gold-dark);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}


.contact-info h2,
.form-heading h2,
.map-heading h2 {
  margin-bottom: 18px;

  color: var(--heading-color);

  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.5px;
}


.contact-info h2 span,
.form-heading h2 span,
.map-heading h2 span {
  color: var(--gold-dark);
}


.contact-intro {
  max-width: 500px;

  margin-bottom: 45px;

  color: #686a6c;

  font-size: 15px;
  line-height: 1.8;
}


/* =====================================================
   CONTACT ITEM
===================================================== */

.contact-item {
  display: flex;
  gap: 20px;

  padding: 24px 0;

  border-bottom: 1px solid rgba(11,13,14,.09);
}


.contact-item:first-of-type {
  border-top: 1px solid rgba(11,13,14,.09);
}


.contact-icon {
  flex: 0 0 52px;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(198,179,79,.13);

  color: var(--gold-dark);

  font-size: 20px;

  transition: .35s ease;
}


.contact-item:hover .contact-icon {
  background: var(--accent-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}


.contact-item-content {
  min-width: 0;
}


.contact-item-title {
  display: block;

  margin-bottom: 6px;

  color: var(--gold-dark);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


.contact-item-content h3 {
  margin-bottom: 5px;

  color: var(--heading-color);

  font-size: 16px;
  font-weight: 700;
}


.contact-item-content p {
  margin-bottom: 0;

  color: #686a6c;

  font-size: 14px;
  line-height: 1.7;
}


.contact-item-content a {
  display: inline-block;

  color: var(--heading-color);

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

  transition: .3s ease;
}


.contact-item-content a:hover {
  color: var(--gold-dark);
}


/* =====================================================
   GST BOX
===================================================== */

.gst-box {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-top: 30px;
  padding: 18px 20px;

  border: 1px solid rgba(198,179,79,.35);

  background: rgba(198,179,79,.08);
}


.gst-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--accent-color);

  color: var(--dark-color);

  font-size: 18px;
}


.gst-box span {
  display: block;

  margin-bottom: 3px;

  color: var(--gold-dark);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
}


.gst-box strong {
  color: var(--heading-color);

  font-size: 14px;
  letter-spacing: .5px;
}


/* =====================================================
   FORM WRAPPER
===================================================== */

.contact-form-wrapper {
  position: relative;

  padding: 50px;

  background: var(--surface-color);

  border: 1px solid rgba(11,13,14,.07);

  box-shadow:
    0 25px 70px rgba(11,13,14,.08);
}


.contact-form-wrapper::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      var(--gold-dark),
      var(--gold-light),
      var(--accent-color)
    );
}


.form-heading {
  margin-bottom: 35px;
}


.form-label {
  display: block;

  margin-bottom: 12px;

  color: var(--gold-dark);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}


.form-heading h2 {
  margin-bottom: 12px;
}


.form-heading p {
  margin-bottom: 0;

  color: #77797b;

  font-size: 14px;
  line-height: 1.7;
}


/* =====================================================
   FORM
===================================================== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 23px;
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}


.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.form-group label {
  color: var(--heading-color);

  font-size: 12px;
  font-weight: 700;
}


.input-wrap {
  position: relative;
}


.input-wrap > i {
  position: absolute;

  left: 17px;
  top: 50%;

  transform: translateY(-50%);

  color: #929292;

  font-size: 16px;

  pointer-events: none;

  transition: .3s ease;
}


.input-wrap input,
.input-wrap select,
.input-wrap textarea {

  width: 100%;

  border: 1px solid #e3e2dc;

  outline: none;

  background: #fbfaf6;

  color: var(--heading-color);

  font-family: inherit;
  font-size: 14px;

  transition: .3s ease;
}


.input-wrap input,
.input-wrap select {
  height: 54px;

  padding: 0 18px 0 48px;
}


.input-wrap textarea {
  min-height: 140px;

  padding: 16px 18px 16px 48px;

  resize: vertical;
}


.input-wrap textarea + i {
  top: 22px;

  transform: none;
}


.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: #a2a2a2;
}


.input-wrap select {
  appearance: none;
  cursor: pointer;
}


.input-wrap:focus-within > i {
  color: var(--gold-dark);
}


.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--accent-color);

  background: var(--surface-color);

  box-shadow:
    0 0 0 3px rgba(198,179,79,.10);
}


.select-wrap::after {
  content: "\F282";

  position: absolute;

  right: 18px;
  top: 50%;

  transform: translateY(-50%);

  font-family: "bootstrap-icons";

  color: #777;

  pointer-events: none;
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 58px;

  margin-top: 5px;
  padding: 0 22px;

  border: 1px solid var(--accent-color);

  background: var(--accent-color);

  color: var(--dark-color);

  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;

  cursor: pointer;

  transition: .35s ease;
}


.contact-submit i {
  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(11,13,14,.25);

  font-size: 15px;

  transition: .35s ease;
}


.contact-submit:hover {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--contrast-color);
}


.contact-submit:hover i {
  border-color: rgba(255,255,255,.35);

  transform: rotate(45deg);
}


/* =====================================================
   MAP SECTION
===================================================== */

.map-section {
  padding: 0 0 110px;
}


.map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;

  margin-bottom: 35px;
}


.map-heading h2 {
  margin-bottom: 0;
}


.map-direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 13px 18px;

  border: 1px solid rgba(11,13,14,.15);

  color: var(--heading-color);

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

  transition: .3s ease;
}


.map-direction-btn i {
  transition: .3s ease;
}


.map-direction-btn:hover {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--contrast-color);
}


.map-direction-btn:hover i {
  transform: translate(3px,-3px);
}


.map-wrapper {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(11,13,14,.1);

  background: #ddd;
}


.map-wrapper iframe {
  display: block;

  width: 100%;
  min-height: 450px;

  filter: grayscale(.15) contrast(.95);
}


.map-location-card {
  position: absolute;

  left: 25px;
  bottom: 25px;

  display: flex;
  align-items: center;
  gap: 13px;

  max-width: 330px;

  padding: 14px 18px;

  background: rgba(255,255,255,.95);

  box-shadow: 0 12px 35px rgba(0,0,0,.14);
}


.map-location-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--accent-color);

  color: var(--dark-color);
}


.map-location-card strong {
  display: block;

  margin-bottom: 3px;

  color: var(--heading-color);

  font-size: 12px;
}


.map-location-card span {
  display: block;

  color: #777;

  font-size: 11px;
}


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

@media (max-width: 1199px) {

  .contact-grid {
    gap: 50px;
  }

  .contact-form-wrapper {
    padding: 40px;
  }

}


@media (max-width: 991px) {

  .contact-hero {
    padding: 100px 0 85px;
  }

  .contact-main {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .contact-info {
    max-width: 750px;
  }

  .contact-form-wrapper {
    max-width: 800px;
  }

  .map-section {
    padding-bottom: 80px;
  }

}


@media (max-width: 767px) {

  .contact-hero {
    padding: 80px 0 70px;
  }

  .contact-hero h1 {
    letter-spacing: -1.5px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .contact-main {
    padding: 65px 0;
  }

  .contact-info h2,
  .form-heading h2,
  .map-heading h2 {
    font-size: 34px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .map-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .map-wrapper iframe {
    min-height: 400px;
  }

}


@media (max-width: 575px) {

  .contact-hero {
    padding: 65px 0 60px;
  }

  .contact-hero h1 {
    font-size: 39px;
  }

  .contact-main {
    padding: 55px 0;
  }

  .contact-item {
    gap: 14px;
  }

  .contact-icon {
    flex-basis: 44px;

    width: 44px;
    height: 44px;

    font-size: 17px;
  }

  .contact-form-wrapper {
    padding: 30px 18px;
  }

  .contact-form {
    gap: 19px;
  }

  .map-section {
    padding-bottom: 60px;
  }

  .map-location-card {
    left: 12px;
    right: 12px;
    bottom: 12px;

    max-width: none;
  }

  .map-wrapper iframe {
    min-height: 430px;
  }

}

.br-section{
  background-image: url('../img/br.webp');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}


/* ================================== */

/* ==========================================
   PREMIUM GALLERY
========================================== */

.premium-gallery-section {
    position: relative;
    padding: 110px 0;
    background: var(--background-color);
}


/* ==========================================
   SECTION HEADER
========================================== */

.gallery-section-header {
    max-width: 760px;
    margin: 0 auto 65px;
}

.gallery-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--gold-dark);

    margin-bottom: 18px;
}

.gallery-kicker::before,
.gallery-kicker::after {
    content: "";
    display: block;

    width: 28px;
    height: 1px;

    background: var(--accent-color);
}


.gallery-title {
    margin: 0 0 20px;

    color: var(--heading-color);

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1;

    font-weight: 700;

    letter-spacing: -2.5px;
}


.gallery-title span {
    color: var(--gold-dark);

    font-family: Georgia, serif;

    font-weight: 400;

    font-style: italic;
}


.gallery-description {
    max-width: 580px;

    margin: 0 auto;

    color: var(--default-color);

    opacity: 0.7;

    font-size: 15px;

    line-height: 1.8;
}


/* ==========================================
   GALLERY CARD
========================================== */

.gallery-card {
    position: relative;

    display: block;

    text-decoration: none;

    overflow: hidden;

    background: var(--charcoal-color);

    border-radius: 2px;

    box-shadow:
        0 10px 35px rgba(11, 13, 14, 0.06);

    transition:
        transform 0.5s cubic-bezier(.16, 1, .3, 1),
        box-shadow 0.5s ease;
}


.gallery-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(11, 13, 14, 0.15);
}


/* ==========================================
   IMAGE WRAPPER
========================================== */

.gallery-image-wrap {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;
}


.gallery-image-wrap::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(11, 13, 14, 0.8),
            rgba(11, 13, 14, 0.05) 65%
        );

    opacity: 0;

    transition: opacity 0.45s ease;

    pointer-events: none;
}


.gallery-card:hover .gallery-image-wrap::after {
    opacity: 1;
}


/* ==========================================
   IMAGE
========================================== */

.gallery-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.16, 1, .3, 1),
        filter 0.5s ease;
}


.gallery-card:hover img {
    transform: scale(1.07);

    filter: saturate(1.08);
}


/* ==========================================
   OVERLAY
========================================== */

.gallery-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    padding: 25px;

    color: var(--contrast-color);

    transform: translateY(12px);

    opacity: 0;

    transition:
        opacity 0.45s ease,
        transform 0.45s cubic-bezier(.16, 1, .3, 1);
}


.gallery-card:hover .gallery-overlay {
    opacity: 1;

    transform: translateY(0);
}


/* ==========================================
   OVERLAY TEXT
========================================== */

.gallery-overlay-content span {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--gold-light);
}


.gallery-overlay-content h3 {
    margin: 0;

    font-size: 21px;

    line-height: 1.2;

    font-weight: 600;

    color: #fff;
    display: none;
}


/* ==========================================
   VIEW BUTTON
========================================== */

.gallery-view {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.5);

    color: #fff;

    font-size: 17px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.45s ease;
}


.gallery-card:hover .gallery-view {
    background: var(--accent-color);

    color: var(--heading-color);

    border-color: var(--accent-color);

    transform: rotate(90deg);
}


/* ==========================================
   GLIGHTBOX CUSTOMIZATION
========================================== */

.glightbox-clean .gslide-description {
    background: transparent;
}


.glightbox-clean .gslide-title {
    font-size: 22px;
    font-weight: 600;
}


.glightbox-clean .gdesc-inner {
    padding: 15px 20px;
}


.glightbox-container .gslide-image img {
    border-radius: 2px;
}


.glightbox-clean .gprev,
.glightbox-clean .gnext {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.18);

    transition: 0.3s ease;
}


.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover {
    background: var(--accent-color);
}


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

@media (max-width: 767px) {

    .premium-gallery-section {
        padding: 75px 0;
    }


    .gallery-section-header {
        margin-bottom: 40px;
    }


    .gallery-title {
        font-size: 44px;
        letter-spacing: -2px;
    }


    .gallery-description {
        font-size: 14px;
    }


    .gallery-image-wrap {
        aspect-ratio: 4 / 3;
    }


    .gallery-overlay {
        opacity: 1;

        transform: none;

        padding: 20px;
    }


    .gallery-image-wrap::after {
        opacity: 1;
    }


    .gallery-view {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 15px;
    }


    .gallery-overlay-content h3 {
        font-size: 18px;
    }

}