/* Fonts */
:root {
  --default-font: "Mulish", serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Outfit", serif;
  --nav-font: "Mulish", serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #D96a00;
  --accent-color: #000;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #D96a00;
  --nav-hover-color: #000;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #4154f1;
}


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

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

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

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

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

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

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

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

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

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

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

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

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



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 16px;
  padding-bottom: 50px;
  position: relative;
}

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

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

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

.footer h4 {
  font-size: 20px;
  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 {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.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 {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

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

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

.page-title .heading {
  padding: 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 95%);
  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 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 70%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: capitalize;
  border-radius: 50px;
  font-family: "Sacramento", serif;
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

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



@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.zi {
  z-index: 99
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

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

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

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

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.values .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

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

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

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

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--default-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services .service-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    padding: 0;
    transition: .4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border: none;
}

.services .service-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,.15);
}

/* Image */

.services .service-image{
    width:100%;
    height:250px;
    overflow:hidden;
}

.services .service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

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

/* Content */

.services .service-content{
    padding:28px;
    text-align:left;
}

.services .service-item h3{
    font-size:28px;
    font-weight:700;
    margin:0 0 15px;
    color:#1a1a1a;
    line-height:1.3;
}

/* Orange Line */

.services .service-content::after{
    content:"";
    display:block;
    width:35px;
    height:3px;
    background:#ff8c00;
    margin:15px 0 20px;
}

.services .service-item p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin-bottom:25px;
}

/* Read More */

.services .service-item .read-more{
    color:#ff8c00;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:0;
}

.services .service-item .read-more:hover{
    color:#e56d00;
}

.services .service-item .read-more i{
    font-size:15px;
    transition:.3s;
}

.services .service-item:hover .read-more i{
    transform:translateX(5px);
}

/* Remove old colors */

.services .service-item.item-rosegold,
.services .service-item.item-midnightblue,
.services .service-item.item-teal,
.services .service-item.item-red,
.services .service-item.item-indigo,
.services .service-item.item-pink{
    border:none;
    background:#fff;
}

/* Responsive */

@media(max-width:991px){

.services .service-image{
    height:220px;
}

.services .service-item h3{
    font-size:24px;
}

}

@media(max-width:767px){

.services .service-image{
    height:200px;
}

.services .service-content{
    padding:22px;
}

.services .service-item h3{
    font-size:22px;
}

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

}

/*--------------------------------------------------------------
# Call To Actipn Section
--------------------------------------------------------------*/
.section-bg-2 {
  background: url(../img/cta-bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  position: relative;
  padding: 110px 0;
}

.section-bg-overlay {
  width: 100%;
  background: #D96a00;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.btn-white {
  text-decoration: none;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #D96a00;
  background-color: #ffffff;
  border: 1px solid #fff;
  box-shadow: 0px 8px 40px 0 rgba(0, 0, 0, 0.37);
  margin: 10px 10px;
  padding: 14px 25px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.btn-white:hover {
  text-decoration: none;
  box-shadow: 0px 4px 10px 0 rgba(0, 0, 0, 0.5);
  color: #D96a00 !important;
  background: #f9f9f9;
}

.btn-white-border {
  text-decoration: none;
  color: #fff;
  background: transparent;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  border: 1px solid #fff;
  margin: 10px 10px;
  padding: 14px 25px;
  display: inline-block;
  box-shadow: 0px 8px 40px 0 rgba(0, 0, 0, 0.37);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.btn-white-border:hover {
  text-decoration: none;
  box-shadow: 0px 4px 10px 0 rgba(0, 0, 0, 0.5);
  color: #D96a00 !important;
  background: #f9f9f9;
}

.btn-white i,
.btn-white-border i {
  font-size: 22px;
  line-height: 22px;
  margin-right: 10px;
  vertical-align: text-top;
}

.white-text {
  color: white;
}

.section-bg-2 h2 {
  margin-bottom: 20px;
}

.section-bg-2 h4 {
  margin-bottom: 20px;
}

.z9 {
  z-index: 1;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  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: center;
}

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

.faq .faq-container .faq-item h3:hover {
  color: var(--heading-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 {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-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);
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

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

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

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.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 p {
  font-style: italic;
  margin: 0 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);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.html") no-repeat center bottom;
  mask: url("../img/team-shape.html") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

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

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

.team .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

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

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

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

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

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  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 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

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

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

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

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

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

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

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

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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


.stack {
  position: relative;
  margin-top: 12vh;
  margin-left: 14vw;
  width: 240px;
  height: 380px;
}

.tcard {
  width: 240px;
  height: 380px;
  background-color: red;
  background: transparent;
  /*  border: 1px solid #ccc;*/
  /*  border-radius: 12px;*/
  position: absolute;
  transform: translateY(0);
  animation: onTop 12s 2s ease infinite;
  /*  box-shadow: 4px 4px 8px rgba(180,181,185,.5)*/
}

.tcard.one {
  left: 0;
  top: 0;
  z-index: 2;
  animation-name: onTop;
}

.tcard.two {
  left: 20px;
  top: 20px;
  z-index: 1;
  animation-name: onMiddle;
}

.tcard.three {
  left: 40px;
  top: 40px;
  z-index: 0;
  animation-name: onBottom;
}

.tcard span {
  font-size: 24px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes onTop {
  5% {
    transform: translateX(-300px);
    z-index: 1;
    left: 20px;
    top: 20px;
  }

  10% {
    transform: translateX(0);
    z-index: 0;
    left: 40px;
    top: 40px;
  }

  40% {
    transform: translateX(0);
    z-index: 0;
    left: 40px;
    top: 40px;
  }

  50% {
    transform: translateX(0);
    z-index: 1;
    left: 20px;
    top: 20px;
  }

  70% {
    transform: translateX(0);
    z-index: 1;
    left: 20px;
    top: 20px;
  }

  80% {
    transform: translateX(0);
    z-index: 2;
    left: 0;
    top: 0;
  }
}

@keyframes onMiddle {
  10% {
    transform: translateX(0);
    z-index: 2;
    left: 0;
    top: 0;
  }

  40% {
    transform: translateX(0);
    z-index: 2;
    left: 0;
    top: 0;
  }

  45% {
    transform: translateX(-300px);
    z-index: 1;
    left: 20px;
    top: 20px;
  }

  50% {
    transform: translateX(0);
    z-index: 0;
    left: 40px;
    top: 40px;
  }

  70% {
    transform: translateX(0);
    z-index: 0;
    left: 40px;
    top: 40px;
  }

  80% {
    transform: translateX(0);
    z-index: 1;
    left: 20px;
    top: 20px;
  }
}

@keyframes onBottom {
  10% {
    transform: translateX(0);
    z-index: 0;
    left: 20px;
    top: 20px;
  }

  40% {
    transform: translateX(0);
    z-index: 1;
    left: 20px;
    top: 20px;
  }

  50% {
    transform: translateX(0);
    z-index: 2;
    left: 0;
    top: 0;
  }

  70% {
    transform: translateX(0);
    z-index: 2;
    left: 0;
    top: 0;
  }

  75% {
    transform: translateX(-300px);
    z-index: 1;
    left: 20px;
    top: 20px;
  }

  80% {
    transform: translateX(0);
    z-index: 0;
    left: 40px;
    top: 40px;
  }

}

.modal-footer {
  justify-content: center;
}

.modal-title {
  margin-left: 30%;
}

.modal-content {
  margin-top: 25%;
}

.custom-button {
  border: 0;
  padding: 6px 32px;
  color: #000;
  transition: 0.4s;
  border-radius: 5px;
  border: 2px solid #000;
  background: #fff;
}

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

/* Screen-reader only utility (visually hidden, still accessible) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   HERO SLIDER — CONTAINER
============================================================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
  background: #0a0a0a;
  isolation: isolate;
}

/* ============================================================
   SLIDE TRACK & SLIDES
   - Fade transition (opacity based, GPU accelerated)
   - Each slide is absolutely stacked; active slide is visible
============================================================= */
.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  /* GPU acceleration */
  will-change: opacity, transform;
  transform: translateZ(0);
  backface-visibility: hidden;

  transition:
    opacity 1s cubic-bezier(0.45, 0, 0.2, 1),
    visibility 0s linear 1s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transition:
    opacity 1s cubic-bezier(0.45, 0, 0.2, 1),
    visibility 0s linear 0s;
}

.hero-slide picture,
.hero-slide__img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide__img {
  object-fit: cover;
  object-position: center;
  -webkit-user-select: none;
  user-select: none;
  transform: translateZ(0);
}

/* ============================================================
   NAVIGATION BUTTONS — GLASSMORPHISM
============================================================= */
.hero-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%) translateZ(0);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.hero-slider__nav:hover,
.hero-slider__nav:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.hero-slider__nav:hover {
  transform: translateY(-50%) scale(1.08);
}

.hero-slider__nav:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-slider__nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero-slider__nav svg {
  transition: transform 0.3s ease;
}

.hero-slider__nav--prev {
  left: clamp(12px, 3vw, 40px);
}

.hero-slider__nav--next {
  right: clamp(12px, 3vw, 40px);
}

.hero-slider__nav--prev:hover svg {
  transform: translateX(-2px);
}

.hero-slider__nav--next:hover svg {
  transform: translateX(2px);
}

/* ============================================================
   PAGINATION DOTS
============================================================= */
.hero-slider__pagination {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 4vh, 36px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%) translateZ(0);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-slider__dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    width 0.3s ease;
}

.hero-slider__dot:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: scale(1.15);
}

.hero-slider__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero-slider__dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: #ffffff;
  animation: dotPulse 0.4s ease;
}

@keyframes dotPulse {
  0% {
    transform: scale(0.7);
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   - Desktop: > 991px
   - Tablet & Mobile: <= 991px
============================================================= */

/* Tablet & Mobile */
@media (max-width: 991px) {
  .hero-slider {
    height: 100vh;
    min-height: 420px;
  }

  .hero-slider__nav {
    width: 44px;
    height: 44px;
  }

  .hero-slider__nav svg {
    width: 18px;
    height: 18px;
  }
}

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

  .hero-slider__nav--prev {
    left: 10px;
  }

  .hero-slider__nav--next {
    right: 10px;
  }

  .hero-slider__dot {
    width: 7px;
    height: 7px;
  }

  .hero-slider__dot.is-active {
    width: 20px;
  }
}

/* ============================================================
   REDUCED MOTION SUPPORT
============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slider__nav,
  .hero-slider__dot {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}




/* 
:root {
  --astslider-height-desktop: 650px;
  --astslider-height-laptop: 550px;
  --astslider-height-tablet: 450px;

  --astslider-gold: #cda86a;
  --astslider-gold-soft: rgba(205, 168, 106, 0.55);
  --astslider-ink: #0c0e16;
  --astslider-glass: rgba(12, 14, 22, 0.34);
  --astslider-glass-strong: rgba(12, 14, 22, 0.55);

  --astslider-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --astslider-duration: 1100ms;
}

.astslider-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: var(--astslider-height-desktop);
  overflow: hidden;
  isolation: isolate;
  background: var(--astslider-ink);
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
}

.astslider-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.astslider-track {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.astslider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, transform;
  transition:
    opacity var(--astslider-duration) var(--astslider-ease),
    visibility 0s linear var(--astslider-duration);
}

.astslider-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  transition:
    opacity var(--astslider-duration) var(--astslider-ease),
    visibility 0s linear 0s;
}

.astslider-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 6800ms linear;
  backface-visibility: hidden;
}

.astslider-slide.is-active .astslider-image {
  transform: scale(1);
}

.astslider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(205, 168, 106, 0.28);
  border-radius: 50%;
  background: var(--astslider-glass);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  color: rgba(245, 240, 228, 0.92);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 320ms var(--astslider-ease),
    border-color 320ms var(--astslider-ease),
    transform 320ms var(--astslider-ease),
    opacity 320ms var(--astslider-ease);
}

.astslider-arrow:hover {
  background: var(--astslider-glass-strong);
  border-color: var(--astslider-gold);
  color: var(--astslider-gold);
}

.astslider-arrow:active {
  transform: translateY(-50%) scale(0.92);
}

.astslider-arrow:focus-visible {
  outline: 2px solid var(--astslider-gold);
  outline-offset: 3px;
}

.astslider-prev { left: 24px; }
.astslider-next { right: 24px; }

.astslider-arrow-icon {
  width: 18px;
  height: 18px;
}

.astslider-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.astslider-dot {
  position: relative;
  width: 13px;
  height: 13px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.astslider-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 240, 228, 0.55);
  transition: background 280ms var(--astslider-ease), transform 280ms var(--astslider-ease);
}

.astslider-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 228, 0.28);
  opacity: 0;
  transition: opacity 280ms var(--astslider-ease);
}

.astslider-dot:hover::before {
  background: rgba(245, 240, 228, 0.85);
}

.astslider-dot:focus-visible {
  outline: 2px solid var(--astslider-gold);
  outline-offset: 4px;
  border-radius: 50%;
}

.astslider-dot.is-active::before {
  background: var(--astslider-gold);
  transform: scale(1.15);
}

.astslider-dot.is-active::after {
  opacity: 1;
  border-color: var(--astslider-gold-soft);
  animation: astslider-orbit var(--astslider-autoplay-ms, 6000ms) linear forwards;
}

.astslider-wrapper.is-paused .astslider-dot.is-active::after {
  animation-play-state: paused;
}

@keyframes astslider-orbit {
  from { transform: rotate(0deg) scale(1); opacity: 0.35; }
  to   { transform: rotate(360deg) scale(1.55); opacity: 0; }
}

@media (max-width: 1200px) {
  .astslider-wrapper { height: var(--astslider-height-laptop); }
}

@media (max-width: 992px) {
  .astslider-wrapper { height: var(--astslider-height-tablet); }
  .astslider-arrow { width: 44px; height: 44px; }
  .astslider-prev { left: 16px; }
  .astslider-next { right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .astslider-slide,
  .astslider-image,
  .astslider-arrow,
  .astslider-dot::before,
  .astslider-dot::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
  .astslider-image { transform: none !important; }
}

@media (max-width: 576px) {
  .astslider-wrapper {
    height: auto;
    aspect-ratio: 3 / 4;          
    min-height: 480px;
    max-height: 720px;
  }

  .astslider-arrow {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 70px;
    transform: none;
  }

  .astslider-arrow:active {
    transform: scale(0.92);
  }

  .astslider-prev { left: 14px; }
  .astslider-next { right: 14px; }

  .astslider-arrow-icon {
    width: 15px;
    height: 15px;
  }

  .astslider-dots {
    bottom: 20px;
    gap: 10px;
  }
}*/





/* ---------- Design Tokens ---------- */
:root {
  --c-white: #FFFFFF;
  --c-orange: #F57C00;
  --c-orange-dark: #D96A00;
  --c-orange-tint: #FFF3E4;
  --c-gray: #F8F8F8;
  --c-text: #222222;
  --c-text-soft: #6B6B6B;
  --c-border: #ECECEC;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --header-h: 84px;
  --header-h-sticky: 68px;
  --container: 1200px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 4px 24px rgba(34, 34, 34, 0.06);
  --shadow-lifted: 0 10px 34px rgba(34, 34, 34, 0.10);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* guards against any accidental horizontal scroll */
}
ul { list-style: none; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
img { display: block; max-width: 100%; }


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Visible keyboard focus for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: 4px;
}


.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-soft);
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  animation: headerDrop 0.35s var(--ease);
  box-shadow: var(--shadow-lifted);
}

@keyframes headerDrop {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}


.site-header__spacer {
  display: none;
  height: var(--header-h);
}
.site-header__spacer.is-active { display: block; }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s var(--ease);
}

.is-sticky .header-inner { height: var(--header-h-sticky); }

/* ---------- Brand / Logo ---------- */
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand__logo {
  height: 60px;
  width: auto;
  transition: height 0.3s var(--ease);
}
.is-sticky .brand__logo { height: 48px; }

/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav__item { position: relative; }

.main-nav__link,
.main-nav__trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--c-text);
  border-radius: 6px;
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}

.main-nav__trigger { font: inherit; }

.main-nav__link::after,
.main-nav__trigger::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 6px;
  height: 2px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.main-nav__link:hover,
.main-nav__trigger:hover,
.main-nav__item--has-mega:hover .main-nav__trigger {
  color: var(--c-orange-dark);
  background: var(--c-orange-tint);
}
.main-nav__link:hover::after,
.main-nav__trigger:hover::after {
  transform: scaleX(1);
}


.main-nav__link.is-active {
  color: var(--c-orange-dark);
  font-weight: 600;
}
.main-nav__link.is-active::after { transform: scaleX(1); }
.main-nav__link.is-active::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-orange);
  transform: translateX(-50%);
}

.main-nav__chevron {
  color: var(--c-text-soft);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.main-nav__item--has-mega:hover .main-nav__chevron,
.main-nav__trigger[aria-expanded="true"] .main-nav__chevron {
  transform: rotate(180deg);
  color: var(--c-orange);
}

.main-nav__link--cta {
  margin-left: 8px;
  padding: 10px 24px;
  background: var(--c-orange);
  color: var(--c-white);
  font-weight: 600;
  border-radius: 30px;
}
.main-nav__link--cta::after { display: none; }
.main-nav__link--cta::before { display: none; }
.main-nav__link--cta:hover {
  background: var(--c-orange-dark);
  color: var(--c-white);
  box-shadow: 0 8px 18px rgba(245, 124, 0, 0.28);
  transform: translateY(-1px);
}

/* =========================================================
   MEGA MENU
   ========================================================= */
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 10px);
  width:900px;
  max-width: calc(100vw - 48px);
  background: var(--c-white);
  border-radius: 14px;
  box-shadow: var(--shadow-lifted);
  border: 1px solid var(--c-border);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  z-index: 90;
}

/* Small pointer/caret nodding toward the trigger */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--c-white);
  border-left: 1px solid var(--c-border);
  border-top: 1px solid var(--c-border);
  border-radius: 3px 0 0 0;
}

.main-nav__item--has-mega:hover .mega-menu,
.main-nav__item--has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 40px 44px 28px;
}

.mega-menu__col {
  padding: 0 28px;
  border-left: 1px solid var(--c-border);
}
.mega-menu__col:first-child {
  border-left: none;
  padding-left: 0;
}

.mega-menu__heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--c-orange);
  letter-spacing: 0.2px;
}

.mega-menu__list { display: flex; flex-direction: column; gap: 4px; }

.mega-menu__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  font-size: 14.5px;
  color: var(--c-text);
  border-radius: 8px;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.mm-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--c-orange);
  opacity: 0.85;
}
.mm-icon svg { width: 100%; height: 100%; }

.mega-menu__link:hover {
  background: var(--c-orange-tint);
  color: var(--c-orange-dark);
  transform: translateX(3px);
}
.mega-menu__link:hover .mm-icon { opacity: 1; }

.mega-menu__footer {
  border-top: 1px solid var(--c-border);
  background: var(--c-gray);
  padding: 16px 44px;
  border-radius: 0 0 14px 14px;
  font-size: 13.5px;
  color: var(--c-text-soft);
}
.mega-menu__footer a {
  color: var(--c-orange-dark);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.mega-menu__footer a:hover { border-color: var(--c-orange-dark); }

/* =========================================================
   HAMBURGER (mobile trigger)
   ========================================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background-color 0.3s var(--ease);
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--c-orange);
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--c-orange);
}

/* =========================================================
   MOBILE FULL-SCREEN SLIDE MENU
   ========================================================= */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86vw, 380px);
  background: var(--c-white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0,0,0,0.12);
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 34, 34, 0.45);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-nav__overlay.is-open { opacity: 1; visibility: visible; }

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px;
  border-bottom: 1px solid var(--c-border);
}
.mobile-nav__logo { height: 42px; width: auto; }
.mobile-nav__close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s var(--ease);
}
.mobile-nav__close:hover { background: var(--c-gray); }

.mobile-nav__nav { padding: 12px 10px 40px; overflow-y: auto; }
.mobile-nav__list { display: flex; flex-direction: column; }

.mobile-nav__link {
  display: block;
  padding: 16px 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  position: relative;
}
.mobile-nav__link.is-active { color: var(--c-orange-dark); font-weight: 600; }
.mobile-nav__link.is-active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 18px;
  background: var(--c-orange);
  border-radius: 3px;
}
.mobile-nav__link--cta {
  margin-top: 18px;
  text-align: center;
  background: var(--c-orange);
  color: var(--c-white);
  border-radius: 8px;
  border-bottom: none;
  font-weight: 600;
}

/* Accordion (Services) */
.mobile-nav__accordion { border-bottom: 1px solid var(--c-border); }
.mobile-nav__acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
}
.mobile-nav__acc-icon { color: var(--c-orange); transition: transform 0.3s var(--ease); }
.mobile-nav__acc-trigger[aria-expanded="true"] .mobile-nav__acc-icon { transform: rotate(135deg); }

.mobile-nav__acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
  background: var(--c-gray);
  border-radius: 8px;
}
.mobile-nav__acc-panel li a {
  display: block;
  padding: 12px 14px 12px 30px;
  font-size: 14.5px;
  color: var(--c-text-soft);
  border-bottom: 1px solid var(--c-border);
}
.mobile-nav__acc-panel li:last-child a { border-bottom: none; }
.mobile-nav__acc-panel li a:hover { color: var(--c-orange-dark); }

.hero-slider {
  min-height: 640px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(245,124,0,0.10), transparent 45%),
    linear-gradient(180deg, #FFFDF9 0%, var(--c-gray) 100%);
}
.hero-slider__content { max-width: 720px; margin: 0 auto; text-align: center; }
.hero-slider__eyebrow {
  color: var(--c-orange);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12.5px;
  margin-bottom: 18px;
}
.hero-slider__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 20px;
}
.hero-slider__text {
  color: var(--c-text-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 32px;
}
.hero-slider__btn {
  display: inline-block;
  padding: 15px 34px;
  background: var(--c-orange);
  color: var(--c-white);
  font-weight: 600;
  border-radius: 30px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hero-slider__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(245,124,0,0.30);
}



/* Large laptop */
@media (max-width: 1279px) {
  .header-inner { padding: 0 24px; }
  .mega-menu { max-width: calc(100vw - 32px); }
  .mega-menu__inner { padding: 32px 28px 24px; }
  .mega-menu__col { padding: 0 20px; }
}

/* Laptop / small desktop */
@media (max-width: 1100px) {
  .main-nav__link, .main-nav__trigger { padding: 10px 14px; font-size: 14.5px; }
}

/* Tablet / iPad (portrait) — switch to mobile navigation */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 20px; }
  :root { --header-h: 72px; --header-h-sticky: 62px; }
  .brand__logo, .is-sticky .brand__logo { height: 46px; }
}

/* Small tablets / large phones */
@media (max-width: 600px) {
  .header-inner { padding: 0 16px; }
  :root { --header-h: 64px; --header-h-sticky: 58px; }
  .brand__logo, .is-sticky .brand__logo { height: 38px; }
  .hero-slider { min-height: 480px; padding: 40px 20px; }
}

/* Small phones */
@media (max-width: 380px) {
  .mobile-nav { width: 100vw; }
  .brand__logo, .is-sticky .brand__logo { height: 34px; }
}