@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Montserrat",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #52413a; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #31221c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f85d23; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #52413a;  /* The default color of the main navmenu links */
  --nav-hover-color: #f85d23; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #52413a; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f85d23; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f8f5f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #343333;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* ===============================
   GLOBAL TEXT ALIGNMENT FIX 
   =============================== */
p,
ul, ol, li,
a, label {
  margin: 0;
  padding: 0;
}

/* Lists */
ul, ol {
  padding-left: 1.2em; 
  list-style-position: inside;
}

/* Paragraph line-height */
p {
  line-height: 1.5;
}

/* Containers default alignment */
.container, .container-fluid, section {
  text-align: inherit; 
}

/* Responsive layout */
@media (max-width: 768px) {
  .row,
  .content-row {
    flex-direction: column;
  }
}

/* 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 {
  color: var(--default-color);
  /* background-color: black; */
  background: rgba(0, 0, 0, 0.75);
/* border-radius: 16px; */
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(13.4px);
-webkit-backdrop-filter: blur(13.4px);
border: 1px solid rgba(0, 0, 0, 0.75);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;

}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  color: #d34f1f;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .header {
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.9); /* stronger black for mobile readability */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header .logo {
    display: flex;
    align-items: center;
  }

  .header .logo img {
    max-height: 30px;
    margin-right: 6px;
  }

  .header .logo h1 {
    font-size: 20px;
  }

  .header .btn-getstarted {
    font-size: 13px;
    padding: 6px 14px;
    margin: 0;
  }

  /* Navigation toggle spacing */
  .header .navmenu {
    width: 100%;
  }
}

@media (max-width: 768px) {

  /* Stack items vertically */
  .header .container,
  .header .container-fluid {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* allows right alignment */
  }

  /* Remove Bootstrap auto push */
  .header .logo {
    margin-right: 0 !important;
  }

  /* Button under logo, aligned right */
  .header .btn-getstarted {
    align-self: flex-end;
    margin-top: 6px;
    margin-right: 12px; /* small gap from edge */
    order: 2;
    width: auto;
  }

  /* Nav after button */
  .header .navmenu {
    order: 3;
    width: 100%;
  }
}


/* Extra small devices */
@media (max-width: 480px) {
  .header .btn-getstarted {
    font-size: 12px;
    padding: 6px 14px;
  }
}

@media (max-width: 768px) {
  .header img {
    height: 60px !important;
  }
}


/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(244, 239, 237, 0.95);
}

/*--------------------------------------------------------------
# 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: #d34f1f;
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }


  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #d34f1f;
  background-color: black;
  font-size: 14px;
  position: relative;
  margin: 0px;
  padding: 0px;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: #d34f1f;
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: #d34f1f;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  color: #d34f1f;
  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: #d34f1f;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #d34f1f;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# 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: 80px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0;
  scroll-margin-top: 82px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 63px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 16px;
  position: relative;
  margin-bottom: 10px !important;
}

.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;
}

.service-points {
  padding-left: 18px;       
  margin-top: 0;          
  margin-bottom: 24px;
}

.service-points li {
  margin-bottom: 6px;      
  line-height: 1.4;         
}

/* ===== SOCIAL ICON CENTERING ===== */
.social-icons {
  justify-content: center;  
  margin-top: 10px;
}

/* ===== CTA BUTTON CENTERING ===== */
.cta-buttons {
  justify-content: center;  
  text-align: center;
}

.cta-buttons .btn {
  min-width: 150px;          
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 80px 0;
}

.hero .hero-content {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .hero .hero-content {
    margin-bottom: 0;
  }
}

.hero .hero-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero .hero-tag i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.hero .hero-tag span {
  color: var(--accent-color);
  font-weight: 600;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  color: var(--accent-color);
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.hero .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
}

.hero .hero-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.hero .hero-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.hero .hero-features li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .hero-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero .hero-cta .btn-link {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero .hero-cta .btn-link i {
  margin-right: 0.5rem;
}

.hero .hero-cta .btn-link:hover {
  color: var(--accent-color);
}

.hero .hero-image-wrapper {
  position: relative;
  padding: 0 40px;
  overflow: hidden;
}

.hero .hero-image-wrapper .hero-image {
  border-radius: 10px;
}

.hero .hero-image-wrapper .stat-card {
  position: absolute;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}

.hero .hero-image-wrapper .stat-card.top-right {
  top: 40px;
  right: 0px;
}

.hero .hero-image-wrapper .stat-card.bottom-left {
  bottom: 40px;
  left: 0px;
}

.hero .hero-image-wrapper .stat-card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.hero .hero-image-wrapper .stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.hero .hero-image-wrapper .stat-card .stat-icon {
  align-self: flex-end;
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 575px) {
  .hero .hero-image-wrapper {
    padding: 0;
  }
.hero{
  padding: 15px 0px  !important;
}
  .hero .hero-image-wrapper .stat-card {
    position: relative;
  }

  .hero .hero-image-wrapper .stat-card.top-right,
  .hero .hero-image-wrapper .stat-card.bottom-left {
    inset: auto;
    margin-top: 30px;
    margin-left: 10px;
    max-width: 140px !important;
  }
}

.hero,
.hero * {
  opacity: 1 !important;
  transform: none !important;
}

.hero-social {
  position: absolute;
  left: 20px;
  top: 1px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}

.hero-social::before,
.hero-social::after {
  content: "";
  width: 2px;
  height: 200px;
  background: #f85d23;
  margin: 0 auto;
}

.hero-social::before {
  margin-bottom: 12px;
}

.hero-social::after {
  margin-top: 12px;
}

/* ============================= */
/* HERO SLIDER FIX               */
/* ============================= */

.hero-slider-fix .stat-card {
  position: absolute;
  z-index: 5;
  background: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: floatCard 4s ease-in-out infinite;
}

/* Bigger numbers */
.stat-card .stat-value {
  font-size: 2rem;
  font-weight: 800;
}

/* Label */
.stat-card .stat-label {
  font-size: 0.95rem;
  line-height: 1.3;
}

/* Icon */
.stat-card .stat-icon {
  font-size: 1.5rem;
  margin-top: 6px;
}

.hero-slider-fix {
  position: relative;
  height: 560px;
  overflow: hidden;
}

/* SLIDES */
.hero-slide-fix {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease;
}

.hero-slide-fix img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease;
}

.hero-slide-fix.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-fix.active img {
  transform: scale(1.08);
}

@keyframes floatCard {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ============================= */
/* STAT CARDS FIX + ANIMATION    */
/* ============================= */

.hero-slider-fix .stat-card {
  position: absolute;
  z-index: 5; 
  animation: floatCard 4s ease-in-out infinite;
}

.hero-slider-fix .stat-card.top-right {
  top: 40px;
  right: 20px;
}

.hero-slider-fix .stat-card.bottom-left {
  bottom: 40px;
  left: 20px;
}

/* FLOAT ANIMATION */
@keyframes floatCard {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-slider-fix {
    height: 380px;
  }
}

/* IMAGE TOUCH + HOVER ZOOM */
.hero-slide-fix img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.8s ease;
}

/* Hover (desktop) */
.hero-slider-fix:hover .hero-slide-fix.active img {
  transform: scale(1.12);
}

/* Touch active (mobile) */
.hero-slide-fix.active img:active {
  transform: scale(1.15);
}

/* HERO SLIDER – Rounded / Blurred Edges */
.hero-slider-fix {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 20px; 
  overflow: visible;
}

/* Make images respect rounded corners */
.hero-slide-fix img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.8s ease;
  border-radius: 20px; /* match container */
}

/* Optional: subtle blur at edges */
.hero-slide-fix img {
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.1));
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-slider-fix {
    height: 380px;
    border-radius: 16px;
  }

  .hero-slide-fix img {
    border-radius: 16px;
  }
}

/* STAT CARDS */
.stat-card {
  position: absolute;
  z-index: 5;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  min-width: 180px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  animation: floatCard 4s ease-in-out infinite;
  transform: translate(0,0); 
}

/* Top-right card partially out */
.stat-card.top-right {
  top: -20px;      
  right: -20px;    
}

/* Bottom-left card partially out */
.stat-card.bottom-left {
  bottom: -20px;   
  left: -20px;     
}

/* Float animation */
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* Icons */
.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}

/* ---------------- MOBILE FIX ---------------- */
@media (max-width: 768px) {
  .hero-social {
    position: static;          
    display: flex;
    flex-direction: row;        
    justify-content: center;    
    align-items: center;
    gap: 10px;
    /* margin: 20px 0;              */
  }

  .hero-social::before,
  .hero-social::after {
    display: none;              
  }

  .social-icon {
    width: 34px;                
    height: 34px;
    font-size: 15px;
  }
}

.service-quality-wrapper {
  margin: 20px 0 px; 
}

.service-quality-badge {
  background: #f85d23;
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 700;
}

.about .section-heading:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about .feature-box {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about .feature-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  z-index: -1;
  transition: height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 12px;
}

.about .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: none;
}

.about .feature-box:hover:before {
  height: 100%;
}

.about .feature-box:hover .icon-container {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .feature-box .icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-box p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about .about-content-box {
  padding: 2rem;
}

.about .about-content-box h3 {
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.about .about-content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about .about-content-box .progress-item {
  margin-bottom: 1.2rem;
}

.about .about-content-box .progress-item .progress-title {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.about .about-content-box .progress-item .progress-percent {
  font-weight: 700;
  color: var(--accent-color);
}

.about .about-content-box .progress-item .progress {
  height: 8px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-top: 0.5rem;
  overflow: hidden;
}

.about .about-content-box .progress-item .progress .progress-bar {
  background-color: var(--accent-color);
  border-radius: 4px;
}

.about .about-content-box .btn-discover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about .about-content-box .btn-discover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 30px;
}

.about .about-content-box .btn-discover:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about .about-content-box .btn-discover:hover:before {
  width: 100%;
}

.about .about-image-grid {
  position: relative;
  height: 540px;
  margin: 0 2rem;
}

.about .about-image-grid .img-grid-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.about .about-image-grid .img-grid-secondary {
  position: absolute;
  bottom: 0;
  right: 30%;
  width: 50%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.about .about-image-grid .img-grid-tertiary {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 40%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.about .about-image-grid .experience-badge {
  position: absolute;
  right: 10px;
  bottom: 30px;
  width: 120px;
  height: 120px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 4;
}

.about .about-image-grid .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.about .about-image-grid .experience-badge .text {
  font-size: 0.8rem;
  text-align: center;
  max-width: 90px;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .about .about-image-grid {
    height: 480px;
  }

  .about .about-image-grid .img-grid-main {
    height: 300px;
  }

  .about .about-image-grid .img-grid-secondary {
    height: 200px;
  }

  .about .about-image-grid .img-grid-tertiary {
    height: 220px;
  }
}

@media (max-width: 991px) {
  .about .section-heading {
    font-size: 2.2rem;
  }

  .about .about-content-box {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .about .about-content-box h3 {
    font-size: 1.8rem;
  }

  .about .about-image-grid {
    height: 450px;
    margin: 0 auto;
    max-width: 500px;
  }

  .about .about-image-grid .experience-badge {
    width: 100px;
    height: 100px;
  }

  .about .about-image-grid .experience-badge .years {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .about .section-heading {
    font-size: 1.8rem;
  }

  .about .feature-box {
    padding: 1.8rem 1rem;
  }

  .about .feature-box .icon-container {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .about .about-image-grid {
    height: 400px;
    margin-bottom: 2rem;
  }

  .about .about-image-grid .img-grid-main {
    width: 75%;
    height: 250px;
  }

  .about .about-image-grid .img-grid-secondary {
    width: 55%;
    height: 180px;
  }

  .about .about-image-grid .img-grid-tertiary {
    width: 40%;
    height: 180px;
  }
}

/* ============================= */
/* CERTIFICATES SECTION         */
/* ============================= */
.certificates-section .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}

.certificates-section .section-heading::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}


.certificates-section {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.certificates-slider-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
}

.certificates-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.certificates-slider {
  display: flex;
  gap: 24px;
  padding: 10px;
}

/* Certificate Card */
.certificate-card {
  min-width: 200px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Image */
.certificate-card img {
  max-width: 120px;
  height: auto;
  margin-bottom: 12px;
  filter: grayscale(100%);
  transition: all 0.35s ease;
}

/* Text */
.certificate-card p {
  font-weight: 600;
  font-size: 15px;
  margin: 0;
  color: #333;
}

/* Hover Effects */
.certificate-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.certificate-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.certificates-slider {
  display: flex;
  gap: 24px;
  padding: 10px;

  justify-content: center;
}

@media (max-width: 767px) {
  .certificates-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 10px;
  }

  .certificate-card {
    min-width: auto; 
    padding: 16px;
  }

  .certificate-card img {
    max-width: 80px;
    margin-bottom: 8px;
  }

  .certificate-card p {
    font-size: 14px;
  }

  .certificates-section .section-heading {
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }

  .certificates-section .section-heading::after {
    width: 50px;
    height: 2px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-overview {
  height: 100%;
  padding: 30px;
}

.stats .stats-overview h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.stats .stats-overview h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .stats .stats-overview h3::after {
    margin: 0;
  }
}

.stats .stats-overview p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin-bottom: 0;
}

.stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stats .stats-card {
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats .stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stats .stats-card .stats-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.stats .stats-card .stats-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.stats .stats-card .stats-content {
  flex-grow: 1;
}

.stats .stats-card .stats-content .stats-number {
  display: flex;
  align-items: baseline;
}

.stats .stats-card .stats-content .stats-number .purecounter {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.stats .stats-card .stats-content .stats-number .plus {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-left: 2px;
}

.stats .stats-card .stats-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 5px 0 0;
  font-weight: 500;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stats .stats-card {
    padding: 15px;
  }

  .stats .stats-card .stats-icon {
    width: 50px;
    height: 50px;
  }

  .stats .stats-card .stats-icon i {
    font-size: 20px;
  }

  .stats .stats-card .stats-content .stats-number .purecounter {
    font-size: 28px;
  }

  .stats .stats-card .stats-content .stats-number .plus {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding-top: 60px;
  padding-bottom: 30px;
}

.services .services-row {
  position: relative;
}

.services .services-headline .services-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.services .services-headline .services-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.services .services-description {
  margin-bottom: 30px;
}

.services .services-description p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.services .services-image-container {
  position: relative;
  margin-bottom: 30px;
}

.services .services-image-container .services-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 460px;
}

.services .services-image-container .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .services-grid {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .services .services-grid {
    margin-left: 0;
    margin-top: 70px;
  }
}

.services .service-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 25px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(154, 154, 154, 0.3);
  transition: all 0.3s ease;
  /*height: 100%; */
}

.services .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.services .service-card:hover .service-icon {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services .service-card:hover .service-info h3 a,
.services .service-card:hover .service-info p {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services .service-card:hover .service-content .read-more-btn {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 84%);
  color: var(--contrast-color);
}

.services .service-content .service-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 a {
  color: var(--heading-color);
  text-decoration: none;
}

.services .service-content .service-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services .service-content .service-action {
  margin-top: 20px;
}

.services .service-content .service-action .read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .service-content .service-action .read-more-btn:hover {
  transform: translateX(5px);
}

.services .service-content .service-action .read-more-btn i {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .services .services-headline .services-title {
    font-size: 2rem;
  }

  .services .services-image-container .services-image {
    height: 350px;
  }

  .services .services-image-container .circular-btn {
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
  }

  .services .services-image-container .circular-btn .circular-link {
    width: 130px;
    height: 130px;
    font-size: 0.9rem;
  }
}



/* =========================
   SERVICES – MOBILE FIX
   ========================= */

@media (max-width: 767px) {

  /* Reset Bootstrap row */
  .services .row {
    margin-left: 0;
    margin-right: 0;
  }

  /* Full width cards */
  .services .services-grid .col-lg-6,
  .services .services-grid .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Card layout */
  .services .service-card {
    width: 250px;
    height: auto;
    padding: 18px;
    border-radius: 16px;
  }

  /* Prevent text collapsing */
  .services .service-content {
    text-align: center;
  }

  .services .service-content h3,
  .services .service-content p {
    word-break: normal;
    white-space: normal;
  }

  /* Image fix */
  .services .services-image-container .services-image {
    height: auto;
  }

  .services .services-image-container img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
  }
}



/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  overflow-x: hidden;
  padding: 40px 0;
  /* Responsive adjustments */
}

.clients .clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.clients .clients-slider:not(:last-child) {
  margin-bottom: 20px;
}

.clients .clients-track {
  display: flex;
  width: fit-content;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.clients .clients-track.track-1 {
  animation-name: scroll-left;
}

.clients .clients-track.track-2 {
  animation-name: scroll-right;
}

/*.clients .clients-track:hover {
  animation-play-state: paused;
} */

.clients .clients-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients .clients-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--default-color), transparent 96%), transparent);
  transition: 0.5s;
}

.clients .clients-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.clients .clients-slide:hover::before {
  left: 100%;
}

.clients .clients-slide:hover img {
  filter: none;
  opacity: 1;
}

.clients .clients-slide img {
  max-width: 80%;
  max-height: 60%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2080px);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-2080px);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .clients .clients-slide {
    width: 180px;
    height: 90px;
    margin: 0 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1760px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1760px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 767px) {
  .clients .clients-slide {
    width: 150px;
    height: 75px;
    margin: 0 15px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1440px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1440px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  color: #FFD700;
}

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    font-size: 16px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 13px;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.how-we-work .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.how-we-work .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

.how-we-work .step-item:last-child {
  margin-bottom: 0;
}

.how-we-work .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.how-we-work .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.how-we-work .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.how-we-work .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.how-we-work .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.how-we-work .step-info:hover {
  transform: translateY(-5px);
}

.how-we-work .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.how-we-work h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.how-we-work p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .how-we-work .steps-wrapper::before {
    left: 25px;
  }

  .how-we-work .step-item .step-content {
    flex-direction: row !important;
  }

  .how-we-work .step-icon {
    width: 60px;
    height: 60px;
  }

  .how-we-work .step-icon i {
    font-size: 24px;
  }

  .how-we-work .step-info {
    padding: 20px;
  }

  .how-we-work h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .how-we-work .step-content {
    gap: 20px;
  }

  .how-we-work .step-icon {
    width: 50px;
    height: 50px;
  }

  .how-we-work .step-icon i {
    font-size: 20px;
  }

  .how-we-work .step-info {
    padding: 15px;
  }

  .how-we-work h3 {
    font-size: 1.2rem;
  }

  .how-we-work p {
    font-size: 0.95rem;
  }
}

/* --------------------------------------------------------------
# Craneless Hosting Services
-------------------------------------------------------------- */
.craneless-services {
  text-align: center;          
  padding: 3rem 1rem;          
}

.craneless-services .craneless-steps h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.craneless-services .divider {
  width: 50px;                 
  height: 3px;
  background-color: #ff4d00;   
  margin: 0.5rem auto 1.5rem auto;
}
.craneless-services .craneless-steps {
  position: relative;
  padding: 20px 0;
}

.craneless-services .craneless-step-info h3 {
  color: var(--accent-color);
}

.craneless-services .craneless-steps::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.craneless-services .craneless-step {
  margin-bottom: 50px;
  position: relative;
}

.craneless-services .craneless-step:last-child {
  margin-bottom: 0;
}

.craneless-services .craneless-step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.craneless-services .craneless-reverse {
  flex-direction: row-reverse;
}

.craneless-services .craneless-step-image {
  width: 110px;
  height: 110px;
  background-color: var(--surface-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  overflow: hidden;
  flex-shrink: 0;
}

.craneless-services .craneless-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craneless-services .craneless-step-info {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.craneless-services .craneless-step-number {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.craneless-services h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.craneless-services p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .craneless-services .craneless-steps::before {
    left: 25px;
  }

  .craneless-services .craneless-step-content,
  .craneless-services .craneless-reverse {
    flex-direction: row;
  }

  .craneless-services .craneless-step-image {
    width: 80px;
    height: 80px;
  }

  .craneless-services .craneless-step-info {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .craneless-services .craneless-step-content {
    gap: 20px;
  }

  .craneless-services .craneless-step-image {
    width: 70px;
    height: 70px;
  }

  .craneless-services h3 {
    font-size: 1.2rem;
  }

  .craneless-services p {
    font-size: 0.95rem;
  }
}

/* ───── MOBILE VIEW TIMELINE WITH IMAGE ON LINE ───── */
@media (max-width: 768px) {

  /* Step container */
  .craneless-step,
  .solar-step {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 25px;
  }

  /* Vertical line */
  .craneless-steps::before,
  .solar-steps::before {
    content: '';
    position: absolute;
    left: 40px; /* line position */
    top: 0;
    bottom: 0;
    width: 2px;
    background: #f0a050; /* your line color */
  }

  /* Image positioned on the line */
  .craneless-step-image,
  .solar-step-image {
    position: relative;
    flex-shrink: 0;
    width: 60px; /* image size */
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    z-index: 2;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .craneless-step-image img,
  .solar-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Step info next to image */
  .craneless-step-info,
  .solar-step-info {
    flex: 1;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-size: 14px;
  }

  .craneless-step-info h3,
  .solar-step-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #f26522; /* headline color */
  }

  .craneless-step-info p,
  .solar-step-info p {
    font-size: 13px;
    line-height: 1.4;
    color: #333;
  }

  /* Ensure reverse steps same layout */
  .craneless-step-content.craneless-reverse,
  .solar-step-content.solar-reverse {
    flex-direction: row !important;
  }
}


/* --------------------------------------------------------------
# Solar Services
-------------------------------------------------------------- */

.solar-services {
  text-align: center;
  padding: 3rem 1rem;
}

.solar-services .solar-steps h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.solar-services .divider {
  width: 50px;
  height: 3px;
  background-color: #ff4d00;
  margin: 0.5rem auto 1.5rem auto;
}

.solar-services .solar-steps {
  position: relative;
  padding: 20px 0;
}

/* Vertical timeline line */
.solar-services .solar-steps::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Each step */
.solar-services .solar-step {
  margin-bottom: 50px;
  position: relative;
}

.solar-services .solar-step:last-child {
  margin-bottom: 0;
}

/* Step layout */
.solar-services .solar-step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Reverse layout */
.solar-services .solar-reverse {
  flex-direction: row-reverse;
}

/* Image box */
.solar-services .solar-step-image {
  width: 110px;
  height: 110px;
  background-color: var(--surface-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  overflow: hidden;
  flex-shrink: 0;
}

.solar-services .solar-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content box */
.solar-services .solar-step-info {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.solar-services .solar-step-info h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.solar-services .solar-step-info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
}

/* Bullet points inside EPC section */
.solar-services .solar-service-points {
  margin-top: 15px;
  padding-left: 18px;
}

.solar-services .solar-service-points li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------
# Responsive
-------------------------------------------------------------- */

@media (max-width: 991px) {
  .solar-services .solar-steps::before {
    left: 25px;
  }

  .solar-services .solar-step-content,
  .solar-services .solar-reverse {
    flex-direction: row;
  }

  .solar-services .solar-step-image {
    width: 80px;
    height: 80px;
  }

  .solar-services .solar-step-info {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .solar-services .solar-step-content {
    gap: 20px;
  }

  .solar-services .solar-step-image {
    width: 70px;
    height: 70px;
  }

  .solar-services .solar-step-info h3 {
    font-size: 1.2rem;
  }

  .solar-services .solar-step-info p,
  .solar-services .solar-service-points li {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq-group-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

/* FAQ VISIBILITY FIX */
.faq-pane {
  display: none;
}

.faq-pane.active {
  display: block;
}

/* FAQ ITEM CONTENT */
.faq-content {
  display: none;
  padding-left: 35px;
}

.faq-item.active .faq-content {
  display: block;
}

/* Cursor + icon rotation */
.faq-toggle {
  cursor: pointer;
  float: right;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-pane { display: none !important; }
.faq-pane.active { display: block !important; }

/* FAQ item toggle behavior */
.faq-content { display: none; padding: 12px 0 18px 10px; }
.faq-item.active .faq-content { display: block; }

/* small niceties */
.faq-toggle { cursor: pointer; float: right; transition: transform .25s; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }

/* fallback for nav buttons that expect bootstrap classes */
.nav-pills .nav-link { cursor: pointer; }


.faq-pane {
  display: none !important;
  opacity: 1 !important;
}

.faq-pane.active {
  display: block;
}

.faq-content {
  display: none;
}

.faq-item.faq-active .faq-content {
  display: block;
}

.faq-item h3 {
  cursor: pointer;
}
.faq .faq-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: rgba(82, 65, 58, 0.05);
  border-radius: 50px;
}

.faq .faq-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.faq .faq-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.faq .faq-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.faq .faq-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq .faq-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

.faq .faq-list .faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-list .faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-list .faq-item h3:hover {
   background-color: rgba(248, 93, 35, 0.1);
}

.faq .faq-list .faq-item h3 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background-color: rgba(248, 93, 35, 0.2);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq .faq-list .faq-item h3 .question {
  flex: 1;
}

.faq .faq-list .faq-item h3 .faq-toggle {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 15px;
}

.faq .faq-list .faq-item .faq-content {
  padding: 15px;
  display: none;
}

.faq .faq-list .faq-item .faq-content p {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.faq .faq-list .faq-item .faq-content p:last-child {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-list .faq-item.faq-active h3 {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

.faq .faq-cta {
  background-color: rgba(248, 93, 35, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.faq .faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.faq .faq-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .faq .faq-list .faq-item h3 {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq .faq-list .faq-item h3 .num {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 0.8rem;
  }

  .faq .faq-list .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-list .faq-item .faq-content.faq-active .content-inner {
    padding: 15px 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.call-to-action .cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.call-to-action .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.call-to-action .cta-buttons .btn-primary {
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-buttons .btn-outline {
  padding: 0.8rem 2rem;
  background-color: transparent;
  color: var(--default-color);
  border: 2px solid var(--default-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .cta-buttons .btn-outline:hover {
  background-color: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

.call-to-action .cta-image {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action .cta-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.call-to-action .cta-image img:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .call-to-action .cta-wrapper {
    flex-direction: column;
    padding: 2.5rem;
  }

  .call-to-action .cta-content {
    text-align: center;
  }

  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }

  .call-to-action .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .call-to-action .cta-buttons {
    justify-content: center;
  }

  .call-to-action .cta-image img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-wrapper {
    padding: 2rem;
  }

  .call-to-action .cta-content h2 {
    font-size: 1.8rem;
  }

  .call-to-action .cta-content p {
    font-size: 1rem;
  }

  .call-to-action .cta-buttons .btn-primary,
  .call-to-action .cta-buttons .btn-outline {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .row {
  align-items: center;
}

@media (max-width: 991px) {
  .team .team-intro {
    margin-bottom: 40px;
  }
}

.team .team-intro .team-intro-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.team .team-intro .team-intro-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.team .team-intro .team-intro-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.team .team-intro .team-intro-content p {
  margin-bottom: 30px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-intro .team-navigation {
  display: flex;
  gap: 10px;
}

.team .team-intro .team-navigation button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-intro .team-navigation button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.team .member-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-10px);
}

.team .member-card:hover .member-image:before {
  opacity: 0.7;
}

.team .member-card .member-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.team .member-card .member-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team .member-card .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team .member-card .member-image:hover img {
  transform: scale(1.05);
}

.team .member-card .member-info {
  padding: 25px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team .member-card .member-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .member-card .member-info span {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.team .member-card .member-social {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.team .member-card .member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team .member-card .member-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .member-card .member-bio p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.team .team-carousel-wrap {
  overflow-x: hidden;
  padding: 30px 20px;
}

.team .team-carousel {
  overflow: visible;
}

.team .team-carousel .swiper-slide {
  height: auto;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
}

.contact .container {
  max-width: 1200px;
}

.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.map-wrapper {
    height: 400px; 
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative; 
    top: auto;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
    flex-direction: column;
  }
}

.loading,
.error-message,
.sent-message {
  display: none;
}


/* .contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 100px;
  flex-direction: column;
  display: flex;
  gap: 30px;
} */

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-card {
    display: block;
    margin-top: 30px;
  }

  .contact-section,
  .contact-wrapper,
  .contact-container {
    display: flex;
    flex-direction: column;
  }

  .contact-card {
    order: 99;
  }
}

@media (max-width: 991px) {

  #service-details .row > .col-lg-5 {
    order: 2;   
  }

  #service-details .row > .col-lg-7 {
    order: 1;   
  }

}


/* .contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 100px;
  flex-direction: column;
  display: flex;
  gap: 30px;
} */

/* .map-wrapper {
    height: 200px; 
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative; 
    top: auto;
} */

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-list ul {
  margin: 0;
  padding: 0;
  list-style: none; 
}

.service-list ul li {
  padding-left: 20px;      
  position: relative;
  line-height: 1.6;
}

.service-list ul li::before {
  content: "•";            
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1.4em;   
  line-height: 1;
}

.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-overview .service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-overview .service-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.service-overview .service-list li::before {
  content: "";
  width: 8px;          /* 🔹 bigger dot */
  height: 8px;
  background-color: currentColor;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.65em;
}


.service-details .service-sidebar .service-overview {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.service-details .service-sidebar .service-overview .overview-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}

.service-details .service-sidebar .service-overview .overview-header h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .service-overview .overview-content {
  padding: 30px;
}

.service-details .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-overview .overview-content p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-sidebar .key-benefits {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .key-benefits h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.service-details .service-sidebar .key-benefits h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-sidebar .key-benefits ul {
  padding-left: 0;
  list-style: none;
}

.service-details .service-sidebar .key-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .key-benefits ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.service-details .service-sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-card .contact-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .contact-card .contact-header i {
  font-size: 24px;
}

.service-details .service-sidebar .contact-card .contact-header h4 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .contact-card .contact-info {
  padding: 30px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .service-content .image-gallery {
  margin-bottom: 40px;
}

.service-details .service-content .image-gallery .service-details-slider {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination {
  bottom: 20px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--contrast-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next::after,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next:hover,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: scale(1.1);
}

/* tag*/
.swiper-slide .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;

  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;

  background: #ff3b3b;
}

.swiper-slide .tag.red {
  background: #ff3b3b;
}

.service-details .service-content .section-header {
  margin-bottom: 25px;
}

.service-details .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .section-header .divider {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-content .details-content {
  margin-bottom: 40px;
}

.service-details .service-content .details-content p {
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.service-details .service-content .details-content p:last-child {
  margin-bottom: 0;
}

.service-details .service-content .service-features {
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-details .service-content .service-features .feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  z-index: -1;
  transition: 0.4s;
}

.service-details .service-content .service-features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-features .feature-card:hover:before {
  height: 100%;
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.service-details .service-content .service-features .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 26px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .service-features .feature-card {
    padding: 20px;
    height: auto;
  }

  .service-features .feature-card h4 {
    font-size: 17px;
  }

  .service-features .feature-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.service-details .service-content .service-features .feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container {
  position: relative;
}

.service-details .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-content .implementation-steps .step-container .step:last-child {
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container .step .step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content {
  flex: 1;
}

.service-details .service-content .implementation-steps .step-container .step .step-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .service-details .service-content .service-features .feature-card {
    margin-bottom: 20px;
  }
}

.service-points {
  list-style: none;          /* remove default bullets */
  padding-left: 0;
  margin: 0;
}

.service-points li {
  position: relative;
  padding-left: 28px;        /* space for bullet */
  margin-bottom: 14px;
  line-height: 1.6;
  text-indent: 0;            /* prevent text shift */
}

/* Custom bullet */
.service-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 30px;
  line-height: 1;
  color: var(--accent-color);
}


.feature-card {
  position: relative;
  overflow: hidden;
}

/* Arrow default */
.feature-card .arrow-link {
  position: absolute;
  bottom: 12px;
  right: 12px;

  font-size: 30px;        
  font-weight: 700;       
  letter-spacing: -2px;   
  color: #000;            
  text-decoration: none;

  opacity: 0;
  transform: translateX(-12px);
  transition: 
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease,
    letter-spacing 0.3s ease;
}

/* Show arrow on card hover */
.feature-card:hover .arrow-link {
  opacity: 1;
  transform: translateX(0);
}

.feature-card .arrow-link:hover {
  color: #ff7a00;        
  transform: translateX(8px);
  letter-spacing: 2px;
}
/* ===============================
   Job Application Form
   =============================== */

.job-form-card {
  position: relative;
  background: linear-gradient(
    135deg,
    #fff8dc 0%,
    #ffe9a8 25%,
    #fff4c2 50%,
    #ffec99 75%,
    #fff8dc 100%
  );
  border-radius: 28px;
  padding: 2.8rem 2.5rem;
  border: 1px solid rgba(255, 193, 7, 0.6);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 193, 7, 0.45);
  overflow: hidden;
  animation: riseIn 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-bar {
    background-color: #ffd54f;  
    color: #5d4037;             
    font-size: 0.95rem;
}

.top-bar a.linkedin-link {
    color: #5d4037;
    font-size: 1.2rem;
    transition: 0.3s;
}

.top-bar a.linkedin-link:hover {
    color: #ff6f00;  
    text-decoration: none;
}

.top-bar span {
    font-weight: 600;
}

/* SHIMMER LAYER */
.job-form-card::before {
  content: "";
  position: absolute;
  inset: -120%;
  background: conic-gradient(
    from 180deg,
    #fff3b0,
    #ffd966,
    #fff1a8,
    #ffcc33,
    #fff3b0
  );
  opacity: 0.35;
  animation: spinGlow 9s linear infinite;
}

/* SOFT GOLD SPARK */
.job-form-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  pointer-events: none;
}

/* KEEP CONTENT ABOVE SHINE */
.job-form-card > * {
  position: relative;
  z-index: 1;
}

/* GOLD TITLE */
.job-form-card h2,
.job-form-card h3 {
  background: linear-gradient(90deg, #b8860b, #ffb703, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* INPUTS – CLEAN PREMIUM */
.job-form-card .form-control,
.job-form-card .form-select,
.job-form-card textarea {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(255, 193, 7, 0.45);
  transition: all 0.25s ease;
}

/* INPUT GLOW */
.job-form-card .form-control:focus,
.job-form-card .form-select:focus,
.job-form-card textarea:focus {
  border-color: #ffb703;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25);
}

/* BUTTON – GOLD GLOW */
.job-form-card .btn-primary {
  background: linear-gradient(135deg, #ffb703, #ffd966);
  border: none;
  border-radius: 999px;
  color: #111;
  font-weight: 600;
  box-shadow: 0 14px 35px rgba(255, 183, 3, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-form-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(255, 183, 3, 0.65);
}

/* KEYFRAMES */
@keyframes spinGlow {
  to {
    transform: rotate(360deg);
  }
}

/* Section background (same as product-section) */
.job-form-wrapper {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  background: radial-gradient(
    circle at top left,
    #ffe66a 0%,
    #fff9db 40%,
    #ffffff 100%
  );
  animation: fadeUp 0.7s ease-out;
}

/* Glass card (same feel as spec-card) */
.job-form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 193, 7, 0.25);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  animation: riseIn 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Headings inside form */
.job-form-card h4,
.job-form-card h5,
.job-form-card h6 {
  color: #b8860b;
  font-weight: 600;
}

/* Inputs, selects & textarea */
.job-form-card .form-control,
.job-form-card .form-select,
.job-form-card textarea {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border-radius: 12px;
  border: 1px solid rgba(255, 193, 7, 0.35);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Placeholder color */
.job-form-card .form-control::placeholder,
.job-form-card textarea::placeholder {
  color: #888;
}

/* Focus state (gold glow like product CTA) */
.job-form-card .form-control:focus,
.job-form-card .form-select:focus,
.job-form-card textarea:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.15rem rgba(255, 193, 7, 0.25);
  outline: none;
}

/* Checkbox & radio */
.job-form-card .form-check-input:checked {
  background-color: #ffc107;
  border-color: #ffc107;
}

.job-form-card .form-check-label {
  color: #333;
}

/* Submit button – glow style */
.job-form-card .btn-primary {
  background: linear-gradient(90deg, #ffc107, #ffda44);
  border: none;
  color: #111;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.6rem 1.8rem;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-form-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(255, 193, 7, 0.45);
}

/* ===============================
   Animations (shared with product)
   =============================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*crane banner */
.vbs-hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Container */
.vbs-hero .hero-container {
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

/* Main content */
.vbs-hero .hero-content {
  max-width: 1100px;
  margin: auto;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* BIG TITLE */
.vbs-hero .hero-main {
  display: block;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
  color: #f85d23;
}

/* Expertise row */
.vbs-hero .hero-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 20px;
  transition: opacity 0.2s linear;
}

.vbs-hero .hero-sub .dash {
  font-size: 3rem;
  font-weight: 300;
  color: #000;
}

.vbs-hero .hero-sub .expertise {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  font-style: italic;
  color: #000;
}

/* Description */
.vbs-hero .hero-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  transition: opacity 0.2s linear;
}

/* Mobile */
@media (max-width: 768px) {

  .vbs-hero .hero-main {
    font-size: 3rem;
  }

  .vbs-hero .hero-sub {
    flex-direction: column;
    gap: 10px;
  }

  .vbs-hero .hero-sub .dash {
    display: none;
  }

  .vbs-hero .hero-desc {
    font-size: 1rem;
  }
}


/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(180, 81, 0, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 0 20px rgba(180, 81, 0, 0.4); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(180, 72, 0, 0.4); }
}

.service-card {
  transition: 0.3s ease;
}

.service-card {
  animation: pulse 1.2s infinite;
  border-color: #b40000;
}


/* CTA Section */
.cta-advanced-section {
  position: relative;
  padding: 120px 20px;
  background: radial-gradient(circle at 10% 0%,#ffb347 0%,#ff512f 20%,#111016 55%,#050509 100%);
  color: #fff;
  overflow: hidden;
}

/* Floating animated background shapes */
.cta-floating-bg::before,
.cta-floating-bg::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: floatUp 10s infinite linear;
}

.cta-floating-bg::before {
  left: 15%;
  bottom: -180px;
}

.cta-floating-bg::after {
  right: 10%;
  bottom: -220px;
  animation-delay: 3s;
}

@keyframes floatUp {
  0% { transform: translateY(0); opacity: 0.4; }
  100% { transform: translateY(-800px); opacity: 0; }
}

/* CTA Text */
.cta-main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-desc {
  font-size: 18px;
  opacity: 0.9;
}

/* CTA Buttons */
.cta-buttons .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 25px;
  margin: 10px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}

/* WhatsApp Button */
.cta-whatsapp {
  background: #25d366;
  animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.9); }
  100% { box-shadow: 0 0 0px rgba(37, 211, 102, 0.5); }
}

/* Call Button */
.cta-call {
  background: #ffb703;
  animation: callBlink 1.6s infinite;
}

@keyframes callBlink {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

/* Mail Button */
.cta-mail {
  background: #0077ff;
  position: relative;
  overflow: hidden;
}

.cta-mail::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: 0.5s;
}

.cta-mail:hover::after {
  left: 100%;
}


/* Glow Animation Buttons */
.glow-btn {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.glow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 140, 255, 0.6);
}

/* Social Icon Glow */
.social-glow {
  font-size: 22px;
  color: #222;
  padding: 10px 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: 0.3s ease-in-out;
}

.social-glow:hover {
  color: #0d6efd;
  box-shadow: 0 0 18px rgba(13,110,253,0.6);
  transform: translateY(-3px);
}

/* Image Glow Pulse */
.seo-img-wrapper {
  position: relative;
}

.seo-img {
  border-radius: 12px;
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0px rgba(0, 140, 255, 0.0); }
  50% { box-shadow: 0 0 25px rgba(0, 140, 255, 0.4); }
  100% { box-shadow: 0 0 0px rgba(0, 140, 255, 0.0); }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .seo-img-wrapper {
    text-align: center;
  }
}

.seo-img-wrapper {
  position: relative;
}

/* TOP overlay with large text */
.ceo-overlay {
  position: absolute;
  top: 16px;           /* move to TOP */
  left: 16px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.55)
  );
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 1.2rem;   /* BIG FONT */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
}

/* Subtitle */
.ceo-overlay small {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .ceo-overlay {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
  .ceo-overlay small {
    font-size: 0.75rem;
  }
}

/* Section Styling */
.why-us-section {
  background: #f8fafc;
  overflow: hidden;
  position: relative;
}

/* Title */
.why-title {
  font-size: 36px;
  font-weight: 700;
}

.why-subtitle {
  font-size: 16px;
  color: #555;
}

/* Cards */
.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  position: relative;
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Icon */
.why-icon {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 15px;
  animation: pulseGlow 3s infinite;
}

/* =========================
   WHY US – MOBILE FIX
   ========================= */

@media (max-width: 767px) {

  /* Reset row spacing */
  .why-us-section .row {
    margin-left: 0;
    margin-right: 0;
  }

  /* Force full-width columns */
  .why-us-section .col-lg-4,
  .why-us-section .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Card layout */
  .why-card {
    width: 270px;         
    margin: 0 auto 20px;   
    padding: 18px;
    border-radius: 16px;
    height: auto;
    animation: none;       
  }

  /* Content alignment */
  .why-card h4,
  .why-card p {
    text-align: center;
    white-space: normal;
    word-break: normal;
  }

  /* Icon size */
  .why-icon {
    font-size: 36px;
    margin-bottom: 12px;
    animation: none;       
  }

  /* Title scaling */
  .why-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .why-subtitle {
    font-size: 1rem;
    text-align: center;
  }
}

/* Floating Animation */
@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Glow Animation */
@keyframes pulseGlow {
  0% { text-shadow: 0 0 0px rgba(13,110,253,0.3); }
  50% { text-shadow: 0 0 15px rgba(13,110,253,0.6); }
  100% { text-shadow: 0 0 0px rgba(13,110,253,0.3); }
}

/* Animated Background Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: blobMove 10s infinite alternate;
}

.blob-1 {
  width: 220px;
  height: 220px;
  background: #fd810d;
  top: -50px;
  left: -80px;
}

.blob-2 {
  width: 250px;
  height: 250px;
  background: #f29810;
  bottom: -70px;
  right: -60px;
}

@keyframes blobMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 60px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .why-card {
    animation: none; /* disable float on mobile for better layout */
  }
}
/* Slider Wrapper */
.testimonials-slider-wrapper {
  overflow: hidden;
  position: relative;
}

/* Slider */
.testimonials-slider {
  display: flex;
  gap: 20px;
  animation: scroll 30s linear infinite;
}

/* Duplicate for seamless loop */
.testimonials-slider::after {
  content: '';
  flex: 0 0 100%;
}

/* Cards */
.testimonial-card {
  background: #fff;
  min-width: 300px;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.4s ease;
}

/* Glowing hover */
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 20px rgba(13,110,253,0.4);
}

/* Profile Image */
.profile-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0d6efd;
  margin-bottom: 10px;
}

/* Stars */
.stars {
  color: #ffd700;
  font-size: 18px;
  margin-top: 10px;
}

/* Continuous scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 250px;
  }
  .testimonials-slider {
    animation: scroll 35s linear infinite;
  }
  .header .logo h1 {
    font-size: 13px;
}}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #ff5000;
    --bs-btn-border-color: red;}


    .mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
 /* From https://css.glass */
background: rgba(255, 255, 255, 0.75);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(9.8px);
-webkit-backdrop-filter: blur(9.8px);
border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 9999;
  border-radius: 15px 15px 0 0;
}

.mobile-bottom-nav .nav-item {
  color: #777;
  font-size: 10px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: .3s ease;
  padding: 4px 8px;
}

.mobile-bottom-nav .nav-item i {
  font-size: 15px;
  margin-bottom: 2px;
  transition: .3s ease;
}

.mobile-bottom-nav .nav-item.active {
  color: #f85d23;
  /* transform: translateY(-5px); */

}

.mobile-bottom-nav .nav-item.active i {
  transform: scale(1.25);
}

.mobile-bottom-nav .nav-item:hover {
  color: #f85d23;
}

.mobile-bottom-nav {
  bottom: env(safe-area-inset-bottom);
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

@media (max-width: 480px) {
  .social-floating-btn,
  .social-modal,
  .floating-buttons {
    bottom: 90px !important; 
  }
}

@media (max-width: 360px) {
  .mobile-bottom-nav .nav-item span {
    font-size: 7px;
  }
}

.services-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 60%; 
  background: #fff;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
  padding: 1rem;
}

.services-sheet.active {
  transform: translateY(0);
}

.services-sheet .services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-sheet .services-list li {
  margin-bottom: 0.5rem; 
}

.sheet-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
}

.sheet-backdrop.active {
  display: block;
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li a {
  display: block;
  padding: 12px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.services-list li a:hover {
  background: #f85d23;
  color: #fff;
  border-radius: 8px;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  z-index: 999;
}

.sheet-backdrop.show {
  display: block;
}


/* ================================
   FLOATING ACTION BUTTON 
================================ */
.fab-container {
  position: fixed;
  right: 16px;
  bottom: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 10000;
}

/* ================================
   PLUS / SOCIAL BUTTON 
================================ */
.social-floating-btn {
  width: 40px;
  height: 40px;
  background: #ff0044;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Keep PLUS STRAIGHT */
.plus-icon {
  display: block;
  line-height: 1;
  font-size: 22px;
}

/* ================================
   FAB OPTIONS 
================================ */
.fab-options {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.fab-container.active .fab-options {
  display: flex;
}

/* ================================
   FAB BUTTONS
================================ */
.fab {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}

.fab i,
.social-floating-btn i{
  font-size: 18px;
}

.fab:hover {
  transform: scale(1.1);
}

/* FAB COLORS */
.fab-enquiry   { background: #ffb300; color: #fff; }
.fab-whatsapp  { background: #25D366; color: #fff; }
.fab-call      { background: #007bff; color: #fff; }

/* ================================
   SOCIAL MODAL
================================ */
.social-modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.social-modal.active {
  display: flex;
}

.social-modal-content {
  background: #fff;
  padding: 20px;
  width: 320px;
  border-radius: 14px;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
}

/* ================================
   SOCIAL ICON GRID
================================ */
.social-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.social-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Brand Colors */
.facebook   { background: #1877f2; }
.instagram  { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.threads    { background: #000; }
.x          { background: #000; }
.linkedin   { background: #0a66c2; }
.youtube    { background: #ff0000; }
.pinterest  { background: #e60023; }
.maps       { background: #34a853; }

/* ================================
   MOBILE SAFE AREA
================================ */
@media (max-width: 767px) {
  .fab-container {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 170px);
    right: 14px;
  }
}


.img-grid-main,
.img-grid-secondary,
.img-grid-tertiary {
    width: 100%;
    border-radius: 12px;
    animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite;
    transform-origin: center;
}


/* Floating motion */
@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

/* Soft glowing light effect */
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255,255,255,0.2); }
    50% { box-shadow: 0 0 18px rgba(255,255,255,0.5); }
    100% { box-shadow: 0 0 5px rgba(255,255,255,0.2); }
}


.img-grid-main { animation-delay: 0s; }
.img-grid-secondary { animation-delay: 0.5s; }
.img-grid-tertiary { animation-delay: 1s; }



.text-css{
  color: #ff5000 !important;
}

 /* Scoped styles for this section */
    #productSection .card {
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      transition: 0.3s;
    }

    #productSection .card:hover {
      box-shadow: 0 0 20px #f85d23;
    }

    #productSection .product-card {
      margin-bottom: 20px;
      transition: transform 0.3s, box-shadow 0.3s;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    #productSection .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px #f85d23;
    }

    #productSection .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: 0.4s ease;
    }

    #productSection .product-card img:hover {
      transform: scale(1.05);
    }

    #productSection .whatsapp-btn {
      font-size: 14px;
      display: inline-block;
      margin-top: 10px;
      background: #25d366;
      color: #fff;
      padding: 8px 14px;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 0 8px rgba(0,255,0,0.5);
      transition: 0.3s;
    }

    #productSection .whatsapp-btn:hover {
      background: #1ebe57;
    }

    #productSection .pagination .page-link {
      border-radius: 50% !important;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 3px;
      transition: 0.3s;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }
    
    #productSection .product-card:hover img {
      filter: brightness(0.85) sepia(0.4);
    }

    #productSection .pagination .page-item.active .page-link {
      background-color: #f85d23;
      color: #fff;
      box-shadow: 0 0 10px #f85d23;
    }
    #productSection .product-card:hover {
      background-color: #fff7f2;
      border: 1px solid #f85d23;
      box-shadow: 0 0 20px rgba(248, 93, 35, 0.6);
    }

    #productSection .pagination .page-link:hover {
      background-color: #f85d23;
      color: #fff;
      box-shadow: 0 0 10px #f85d23;
    }

    #productSection .product-card {
      position: relative;
      overflow: hidden;
    }

#productSection .product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 93, 35, 0.15); 
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

#productSection .product-card:hover::after {
  opacity: 1;
}

    .banner-text {
  text-align: center;          
  padding: 3rem 1rem;          
}

.banner-text .section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.banner-text .divider {
  width: 50px;                 
  height: 3px;
  background-color: #ff4d00;   
  margin: 0.5rem auto 1.5rem auto;
}

.banner-text p {
  max-width: 700px;            
  margin: 0 auto 1rem auto;    
  color: #333;                 
  line-height: 1.7;           
  font-size: 1rem;
}



/* ─────────────────────────────── */
/*   OPTIMIZED CSS – THIS SECTION  */
/* ─────────────────────────────── */

#banner-text.section {
  padding-bottom: 10px !important;
  margin-bottom: 0 !important;
}

#starter-section.section {
  padding-top: 10px !important;
  margin-top: 0 !important;
}

#nav-tab-section {
  max-width: 1150px;
  margin: auto;
  padding: 20px;
  font-family: "Poppins", sans-serif;
}

/* NAV */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  position: relative; 
  z-index: 10;
  background: #fff;
  padding: 12px 0;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.tab-btn {
  padding: 10px 22px;
  border: none;
  background: #e4e4e4;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.tab-btn.active {
  background: #ffa600;
  color: #fff;
  animation: tabPulse 1.3s infinite;
}
@keyframes tabPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 174, 0, 0.5); }
  100% { box-shadow: 0 0 0 18px rgba(255, 174, 0, 0); }
}

/* CONTENT */
.tab-content {
  display: none;
  animation: fadeSlide 0.45s ease;
}
.tab-content.active {
  display: block;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
  .tab-nav {
    flex-direction: row;       
    flex-wrap: wrap;           
    justify-content: center;
    gap: 8px;                  
    padding: 10px 5px;         
    top: auto !important;
  }

  .tab-btn {
    padding: 8px 14px;         
    font-size: 14px;           
  }

  .content-row {
    flex-direction: column;    
    gap: 30px;
    align-items: flex-start; 
    margin-top: 20px;                
  }

  .main-img-box {
    flex: 0 0 60%;
  position: sticky;
  top: 160px;
  height: 520px;
  max-height: 520px;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid #ffa60040;
  z-index: 2;
  }
}

.main-img{
  width:100%;
  border-radius:16px;
}

/* tab-nav */

.kw-float{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
}

.kw-btn{
  background:#f9a825;
  color:#fff;
  border:none;            
  padding:10px 18px;
  border-radius:30px;
  font-weight:700;
  cursor:pointer;
}

.kw-menu{
  display:none;
  margin-top:8px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.kw-menu button{
  border:none;
  background:none;
  padding:10px 16px;
  width:100%;
  text-align:left;
  cursor:pointer;
}

.kw-menu button:hover{
  background:#f2f2f2;
}

.tab-content {
  display: none;
  flex-direction: row; 
  gap: 20px; 
}

.tab-content.active {
  display: flex; 
}


.kw-float {
  position: absolute;
  top: 10px; 
  left: 80%; 
  transform: translateX(-50%);
  z-index: 10;
}

/* KW BUTTON */
.kw-btn {
  background: #f9a825;
  color: #fff;
  border: none;
  padding: 6px 12px; 
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px; 
}

/* KW MENU dropdown */
.kw-menu {
  display: none;
  margin-top: 4px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
  max-height: 180px; 
  overflow-y: auto;  
  min-width: 100px;  
}

.kw-menu button {
  padding: 5px 10px; 
  font-size: 12px;
}

.kw-menu button:hover {
  background: #f2f2f2;
}

#starter-section #nav-tab-section .tab-nav {
  position: relative;
  top: auto;
  z-index: auto;
  top: 90px;            
  z-index: 100;
  background: #fff;
  padding: 12px 0;
}

#starter-section #nav-tab-section .main-img-box {
  position: relative;
  top: auto;
  z-index: auto;
  top: 150px;                
}
#starter-section #nav-tab-section .content-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 20px;
  position: relative ;
  top: auto ;
  z-index: auto ;
}
#nav-tab-section,
#starter-section {
  overflow: visible; 
}
@media (max-width: 768px) {
  .tab-nav,
  .main-img-box {
    position: relative ;
    top: auto !important;
  }
.content-row {
    flex-direction: column;
  }
}


body.starter-page-page {

  /* Smooth page scrolling */
  html, body {
    height: 100%;
    overflow-y: auto;
    touch-action: pan-y;
  }

  /* Services section sticky behavior */
  #starter-section #nav-tab-section {
    position: relative;
  }

  /* Fix the image + list while scrolling */
  #starter-section #nav-tab-section .content-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }

  /* Make LEFT image sticky */
  #starter-section #nav-tab-section .main-img-box {
    top: 120px; /* below header */
    height: fit-content;
    flex: 1;
  }

  /* Right list scrolls naturally */
  #starter-section #nav-tab-section .item-list {
    flex: 1;
    max-height: none !important;
    overflow: visible !important;
  }

  /* Make tabs + content sticky */
  #starter-section #nav-tab-section .tab-nav,
  #starter-section #nav-tab-section .content-row {
    top: 110px; 
    background: #fff;
    z-index: 10;
  }

  /* Mobile fix (disable sticky, stack columns) */
  @media (max-width: 768px) {
    #starter-section #nav-tab-section .content-row {
      flex-direction: column;
    }

    #starter-section #nav-tab-section .main-img-box,
    #starter-section #nav-tab-section .tab-nav,
    #starter-section #nav-tab-section .content-row {
      position: relative;
      top: auto;
    }
  }
}

@media (max-width: 768px) {
  #starter-section #nav-tab-section .tab-nav,
  #starter-section #nav-tab-section .main-img-box {
    position: relative;
    top: auto;
  }
}

/* ROW LAYOUT */
.content-row {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

/* LEFT IMAGE */
.main-img-box {
  width: 60%;
  height: 520px;          
  max-height: 520px;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid #ffa60040;
  flex: 0 0 60% !important;  
  position: sticky;
  top: 100px; 

}
.main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.main-img-box:hover img {
  transform: scale(1.07);
}

/* RIGHT LIST */
.item-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 10px;
}

.item-list li {
  padding: 12px 18px;
  background: #f4f4f4;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  border: 2px solid transparent;
  transition: 0.25s;
}
.item-list li:hover {
  border-color: #ffa60080;
  transform: scale(1.02);
}
.item-list li.active {
  border-color: #ff8800;
  box-shadow: 0 0 12px #ff7b0090;
}

.item-list li .arrow-link {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-5px);
    transition: 0.3s ease;
}

.item-list li:hover .arrow-link {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.item-list::-webkit-scrollbar {
  width: 8px;
}

.item-list::-webkit-scrollbar-thumb {
  background-color: #ffa60080;
  border-radius: 5px;
}

.item-list::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 5px;
}

/* MOBILE FIX: disable sticky + full width */
@media (max-width: 768px) {
  .content-row {
    flex-direction: column;
  }

  .main-img-box,
  .item-list,.tab-nav {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
  }
}
/* PARENT – already exists, just ensuring row layout */
.content-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* TAB NAV – LEFT OF IMAGE */
.tab-nav-wrapper {
  width: 110px;
  flex-shrink: 0;
}

/* STACK BUTTONS */
.tab-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* IMAGE STAYS CENTER */
.main-img-box {
  flex: 1;
}


.tab-nav-wrapper {
  width: 110px;
  flex-shrink: 0;
}

.tab-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Main button */
.tab-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 26px;
  background: #ffa600;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

/* Arrow animation */
.tab-toggle .arrow {
  transition: transform 0.3s;
}

/* Dropdown */
.tab-dropdown {
  position: absolute;
  top: 115%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  z-index: 999;
}

.tab-dropdown.show {
  display: flex;
}

/* Tab buttons */
.tab-dropdown .tab-btn {
  padding: 12px 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.tab-dropdown .tab-btn:hover {
  background: #fff3db;
}

/* Rotate arrow when open */
.tab-nav-wrapper.open .arrow {
  transform: rotate(180deg);
}


/* Wrapper defines sticky boundary */
.tab-wrapper {
  position: relative;
}

/* Make tab-nav sticky inside wrapper */
.tab-wrapper .tab-nav {
  position: relative !important;
  top: auto !important;
  z-index: auto !important;
  top: 90px; 
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Left image sticky */
.tab-wrapper .main-img-box {
  position: relative !important;
  top: auto !important;
  z-index: auto !important;
  top: 140px; 
  z-index: 1;
}

/* Right list scrolls normally */
.tab-wrapper .item-list {
  max-height: unset;
  overflow: visible;
}

/* Responsive: disable sticky on mobile */
@media(max-width: 768px) {
  .tab-wrapper .tab-nav,
  .tab-wrapper .main-img-box {
    position: relative;
    top: auto;
  }
  .content-row { flex-direction: column; }
}

/* MOBILE */
@media(max-width: 768px){
  .content-row { flex-direction: column; }
  .main-img-box { width: 100%; height: 250px; }
  .item-list { width: 100%; }
}

.btn-outline-primary {
    --bs-btn-color: #ff5000;
    --bs-btn-border-color: #ff5000;}

    .btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #ff5000;
    border-color: #ff5000;
}

.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: #ff5000;
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
    transition: color .15s 
ease-in-out, background-color .15s 
ease-in-out, border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 60px; /* adjust value as needed */
  }
}


#starter-section #nav-tab-section {
  position: relative;
  overflow: visible;
}

/* Layout */
#starter-section #nav-tab-section .content-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* LEFT IMAGE — ONLY THIS IS STICKY */
#starter-section #nav-tab-section .main-img-box {
  position: sticky;
  top: 120px; /* below header */
  width: 60%;
  height: 520px;
  flex: 0 0 60%;
  z-index: 2;
}

/* RIGHT LIST — NORMAL PAGE SCROLL */
#starter-section #nav-tab-section .item-list {
  flex: 1;
  max-height: none;
  overflow: visible;
}

/* TABS — NORMAL FLOW (NOT STICKY) */
#starter-section #nav-tab-section .tab-nav {
  position: relative;
  top: auto;
  z-index: auto;
  background: transparent;
}

/* MOBILE — DISABLE STICKY */
@media (max-width: 768px) {
  #starter-section #nav-tab-section .content-row {
    flex-direction: column;
  }

  #starter-section #nav-tab-section .main-img-box {
    position: relative;
    top: auto;
    width: 100%;
    height: 250px;
  }

  #starter-section #nav-tab-section .item-list {
    width: 100%;
  }
}


  .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      /* object-fit: cover; */
      transition: transform 0.5s ease;
      border-radius: 10px;
    }

    .gallery-item:hover img {
      transform: scale(1.1) rotate(3deg);
    }

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, rgba(255,140,0,0.3), rgba(255,69,0,0.3));
      opacity: 0;
      transition: opacity 0.4s;
      border-radius: 10px;
    }

    .gallery-item:hover::after {
      opacity: 1;
    }

    .pagination .page-link {
      background-color: #ff8c00;
      border-color: #ff8c00;
      color: #fff;
      transition: transform 0.3s, background-color 0.3s;
    }

    .pagination .page-link:hover {
      background-color: #ff4500;
      transform: scale(1.1);
      color: #fff;
    }

    /* Loop animation for gallery items */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .gallery-item {
      animation: float 4s ease-in-out infinite;
    }


    /* --- FIX FOR FAQ TAB PANES --- */
.tab-content .tab-pane {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.tab-content .tab-pane.active.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* --- FIX FOR FAQ CONTENT HIDDEN BY YOUR THEME --- */
.faq .faq-list .faq-content {
  display: block !important;
  max-height: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.faq .faq-list .faq-item .faq-content {
  display: none;
}

.faq .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

#faq {
  display: block !important;
  background-color: #f5f5f5; 
  color: #000;
  min-height: 200px;
}

/* When FAQ item is closed, we hide its content */
.faq .faq-list .faq-item:not(.active) .faq-content {
  display: none !important;
}

/* Make each list item a flex container */
.item-list li {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  padding-right: 10px; 
}


.arrow-link {
  text-decoration: none;
  font-size: 1.2rem;
  color: #000; 
  transition: transform 0.3s ease;
}

.arrow-link:hover {
  transform: translateX(5px); 
}

/* ===============================
   LOGO SLIDER BASE
   =============================== */

.logo-slider {
  overflow: hidden;
  width: 100%;
}

/* Wrapper */
.logo-slider-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.logo-slider-wrapper::-webkit-scrollbar {
  display: none;
}

/* Track */
.logo-slider-track {
  display: flex;
  gap: 24px;
  padding: 20px 40px;
  animation-play-state: running !important; 
}

.logo-slider-track {
  animation: scrollLogos 30s linear infinite;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
} 

/* ===============================
   SLIDER ITEM (CARD)
   =============================== */

.logo-slider-item {
  position: relative;
  min-width: 320px;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #000;
  display: block;
  transition: transform 0.3s ease;
}

/* Image */
.logo-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   TAG / BADGE
   =============================== */

.logo-slider-item .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: #ff3b3b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.logo-slider-item .tag.red {
  background: #ff3b3b;
}

/* ===============================
   CONTENT
   =============================== */

.card-content {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 70px;
  z-index: 2;
}

.card-content h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  transition: color 0.3s ease;
}

/* ===============================
   ARROW (HIDDEN BY DEFAULT)
   =============================== */

.logo-slider-item .arrow {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 2;

  width: 44px;
  height: 44px;
  border-radius: 50%;

  background: #fff;
  color: #000;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  pointer-events: none;
}

/* ===============================
   HOVER EFFECTS
   =============================== */

.logo-slider-item:hover {
  transform: scale(0.94);
}

/* Show arrow only on hover */
.logo-slider-item:hover .arrow {
  opacity: 1;
  transform: translateX(0);
  background: #ff3b3b;
  color: #fff;
}

/* Text color on hover */
.logo-slider-item:hover .card-content h3,
.logo-slider-item:hover .tag {
  color: #ff3b3b;
}

/* BLOG CARD */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.blog-card img {
  height: 250px;       /* larger for desktop */
  object-fit: cover;
  width: 100%;
}

.blog-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
}

.blog-card .card-text {
  height: 80px;       /* slightly bigger for desktop */
  overflow: hidden;
}

/* BLOG DETAIL SLIDER IMAGE */
.blog-detail-slider {
  width: 100%;
  max-height: 600px;  /* taller for desktop */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 30px;
  position: relative;
}

.blog-detail-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-slide-img {
  max-height: 600px;   /* respect aspect ratio */
  width: auto;         /* auto width */
  object-fit: contain; /* contain within slider */
  border-radius: 12px;
}
/* BLOG DETAIL TEXT */
.blog-detail-title {
  font-size: 3rem;    /* desktop size */
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.blog-detail-date {
  font-size: 1rem; 
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}

.blog-detail-description {
  font-size: 1.2rem;   /* desktop readability */
  line-height: 1.2;
  max-width: 900px;
  margin: auto;
  color: #333;
  padding: 0 15px;
}

/* SWIPER BUTTONS */
.blog-detail-slider .swiper-button-next,
.blog-detail-slider .swiper-button-prev {
    color: #f85d23; 
    
}

.blog-detail-slider .swiper-button-next::after,
.blog-detail-slider .swiper-button-prev::after {
    font-size: 30px;  /* slightly bigger for desktop */
    font-weight: bold;
}

/* Position arrows inside the image */
.blog-detail-slider .swiper-button-next,
.blog-detail-slider .swiper-button-prev {
    position: absolute;   /* absolute relative to slider */
    top: 50%;             /* vertically center */
    transform: translateY(-50%);
    width: 40px;          /* optional size */
    height: 40px;
    z-index: 10;          /* on top of image */
}

/* Next arrow inside right edge */
.blog-detail-slider .swiper-button-next {
    right: 10px;
}

/* Prev arrow inside left edge */
.blog-detail-slider .swiper-button-prev {
    left: 10px;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
  .blog-card img {
    height: 180px;
  }

  .blog-card .card-text {
    height: 60px;
  }

  .blog-detail-slider {
    max-height: 280px;
  }

  .blog-detail-title {
    font-size: 1.6rem;
  }

  .blog-detail-date {
    font-size: 0.9rem;
  }

  .blog-detail-description {
    font-size: 1rem;
    line-height: 1;
  }

  .blog-detail-slider .swiper-button-next::after,
  .blog-detail-slider .swiper-button-prev::after {
    font-size: 25px;
  }
}


/* Producdetail Section background */
.product-section {
  background: radial-gradient(circle at top left, #ffe66a 0, #fff9db 40%, #ffffff 100%);
}

/* Image card with soft floating effect */
.product-image-card {
  display: inline-block;
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(130, 77, 1, 0.44);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  border: 1px solid rgba(130, 77, 1, 0.6);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(0);
  animation: floatY 6s ease-in-out infinite;
}

.product-image-card img {
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.5));
}

/* Spec cards */
.spec-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 193, 7, 0.25);
  padding: 1.1rem 1.3rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  transform: translateY(20px);
  opacity: 0;
  animation: riseIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.spec-card h6 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.25rem;
}

.spec-card p {
  margin: 0;
  font-weight: 500;
}

/* staggered animation */
.spec-card.delay-1 { animation-delay: 0.15s; }
.spec-card.delay-2 { animation-delay: 0.3s; }
.spec-card.delay-3 { animation-delay: 0.45s; }

/* Hover micro‑interaction */
.spec-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 193, 7, 0.4);
}

/* CTA glow button */
.glow-btn {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
}

.glow-btn::before {
  content: "";
  position: absolute;
  inset: -120%;
  background: conic-gradient(
    from 180deg,
    #fff3cd,
    #ffc107,
    #ffec80,
    #fff3cd,
    #ffc107
  );
  opacity: 0;
  transform: translate3d(-50%, 0, 0) rotate(0deg);
  transition: opacity 0.25s ease-out;
}

.glow-btn:hover::before {
  opacity: 0.55;
  animation: spinGlow 1.4s linear infinite;
}

.glow-btn span,
.glow-btn {
  position: relative;
  z-index: 1;
}

/* Keyframes */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes riseIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spinGlow {
  to {
    transform: translate3d(-50%, 0, 0) rotate(360deg);
  }
}


.product-section {
  animation: fadeUp 0.7s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spec-table th[scope="row"] {
  width: 32%;
  background: linear-gradient(90deg, #fff7cf, #fff);
  font-weight: 600;
  border-right: 2px solid rgba(255, 193, 7, 0.8);
}

.spec-table td {
  border-left: 0;
}

.spec-table.table-bordered > :not(caption) > * > * {
  border-color: rgba(255, 193, 7, 0.35);
}

.spec-table tbody tr {
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
              background-color 0.18s ease-out;
}

.spec-table tbody tr:hover {
  background-color: #fff9da;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.spec-table.table-bordered > :not(caption) > * > * {
  border-color: rgba(0, 0, 0, 0.06);
}

.product-image-card {
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*Enquiry Modal - Responsive */
#enquiryModal .modal-dialog {
  max-width: 600px; /* desktop width */
  margin: 1.75rem auto;
}

#enquiryModal .modal-content {
  border-radius: 12px;
  overflow: hidden;
}

/* Scrollable modal body if content is too tall */
#enquiryModal .modal-body,
#enquiryModal form {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 1rem; /* prevent content cutoff */
}

#serviceList .form-check {
  margin-bottom: 8px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #enquiryModal .modal-dialog {
    max-width: 95%; 
    margin: 1rem auto;
  }

  #enquiryModal .modal-content {
    font-size: 0.9rem; 
  }

  #enquiryModal .modal-header h5 {
    font-size: 1.2rem;
  }

  #enquiryModal .modal-body,
  #enquiryModal form {
    max-height: 70vh; 
    overflow-y: auto;
    padding: 0.5rem 1rem;
  }

  #enquiryModal .btn {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}

/* Optional: smooth scrolling inside modal on mobile */
#enquiryModal .modal-body::-webkit-scrollbar {
  width: 6px;
}

#enquiryModal .modal-body::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 3px;
}

#enquiryModal .modal-content {
  position: relative;
  /* background: linear-gradient(
    135deg,
    #fff8dc 0%,
    #ffe9a8 25%,
    #fff4c2 50%,
    #ffec99 75%,
    #fff8dc 100%
  ); */
  background: rgba(132, 62, 0, 0.64);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(9.5px);
-webkit-backdrop-filter: blur(9.5px);
border: 1px solid rgba(132, 62, 0, 1);
  border-radius: 28px;
  padding: 2.8rem 2.5rem;
  border: 1px solid rgba(255, 193, 7, 0.6);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 193, 7, 0.45);
  overflow: hidden;
  animation: riseIn 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

/* SHIMMER LAYER */
#enquiryModal .modal-content::before {
  content: "";
  position: absolute;
  inset: -120%;
  background: conic-gradient(
    from 180deg,
    #fff3b0,
    #ffd966,
    #fff1a8,
    #ffcc33,
    #fff3b0
  );
  opacity: 0.35;
  animation: spinGlow 9s linear infinite;
}

/* SOFT GOLD SPARK */
#enquiryModal .modal-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  pointer-events: none;
}

/* KEEP CONTENT ABOVE SHINE */
#enquiryModal .modal-content > * {
  position: relative;
  z-index: 1;
}

/* Enquiry Modal Submit Button – Golden Glow */
#enquiryModal .btn-primary {
  background: linear-gradient(135deg, #ffb703, #ffd966); 
  border: none;
  color: #111;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.6rem 1.8rem;
  box-shadow: 0 14px 35px rgba(255, 183, 3, 0.5); 
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#enquiryModal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(255, 183, 3, 0.65); 
}

/* KEYFRAMES */
@keyframes spinGlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes riseIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/*  Legal Tabs Section  */
   
.legal-section{
  padding:40px 15px;
  background:#0f172a;
}
.legal-box{
  max-width:900px;
  margin:auto;
  background:#fff;
  border-radius:20px;
  padding:30px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.legal-tabs{
  display:flex;
  gap:8px;
  margin-bottom:20px;
  flex-wrap:wrap;
}
.legal-tab{
  flex:1;
  border:0;
  padding:10px;
  border-radius:999px;
  background:#fde6c8;
  cursor:pointer;
}
.legal-tab.active{
  background:linear-gradient(135deg,#fdba74,#fb923c);
}
.legal-content{display:none}
.legal-content.active{display:block}

.legal-section{
  position:relative;
  padding:60px 15px;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0f172a;
  overflow:hidden;
}

/* glowing blobs */
.legal-section::before,
.legal-section::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  filter:blur(90px);
  opacity:.8;
  z-index:0;
}

.legal-section::before{
  background:radial-gradient(circle at 30% 30%, #fed7aa, #fdba74, #fb923c);
  top:-140px;
  left:-120px;
}

.legal-section::after{
  background:radial-gradient(circle at 70% 70%, #fee2e2, #fecaca, #fb7185);
  bottom:-160px;
  right:-120px;
}

/* keep content above background */
.legal-box{
  position:relative;
  z-index:1;
}

.legal-content ul{
  list-style:none;
  padding:0;
  margin:20px 0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.legal-content ul li{
  background:linear-gradient(135deg,#fff7ed,#ffedd5);
  border:1px solid #fed7aa;
  border-radius:14px;
  padding:14px 18px;
  font-size:.95rem;
  font-weight:500;
  color:#0f172a;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  transition:all .25s ease;
  cursor:default;
}

/* hover effect */
.legal-content ul li:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.15);
  background:linear-gradient(135deg,#ffedd5,#fed7aa);
}

/* subtle left accent */
.legal-content ul li::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:6px;
  border-radius:14px 0 0 14px;
  background:linear-gradient(180deg,#fb923c,#f97316);
}

/* ensure positioning */
.legal-content ul li{
  position:relative;
  overflow:hidden;
}

/* Page fade-in */
.legal-box{
  animation: legalFadeUp .7s ease forwards;
}

@keyframes legalFadeUp{
  from{
    opacity:0;
    transform:translateY(20px) scale(.98);
  }
  to{
    opacity:1;
    transform:none;
  }
}

/* Tab hover animation */
.legal-tab{
  transition: all .25s ease;
}

.legal-tab:hover{
  transform: translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,.15);
}

/* Active tab pulse */
.legal-tab.active{
  animation: tabPulse .4s ease;
}

@keyframes tabPulse{
  0%{transform:scale(.96)}
  100%{transform:scale(1)}
}

/* Content animation */
.legal-content{
  animation: contentFade .4s ease;
}

@keyframes contentFade{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:none;
  }
}

@media (max-width:576px){

  /* Section spacing */
  .legal-section{
    padding:40px 10px;
  }

  /* Card */
  .legal-box{
    padding:20px;
    border-radius:16px;
  }

  /* Tabs stacked nicely */
  .legal-tabs{
    flex-direction:column;
    gap:10px;
  }

  .legal-tab{
    width:100%;
    padding:12px;
    font-size:.95rem;
  }

  /* Text readability */
  .legal-content p,
  .legal-content li{
    font-size:.9rem;
    line-height:1.6;
  }

  .legal-content h3{
    font-size:1.05rem;
    margin-top:18px;
  }

  /* Lists spacing */
  .legal-content ol{
    padding-left:18px;
  }

  .legal-content li{
    margin-bottom:8px;
  }

  /* Reduce blob size on mobile */
  .legal-section::before,
  .legal-section::after{
    width:280px;
    height:280px;
    filter:blur(70px);
  }

  .legal-content ul li{
    padding:12px 14px;
    font-size:.88rem;
  }

}

    /* graph */
    .sheq-solarwind-section{
      position:relative;
      overflow:hidden;
      background:#050509;
      color:#fff;
      background:radial-gradient(circle at 10% 0%,#ffb347 0%,#ff512f 20%,#111016 55%,#050509 100%);
    }
    .sheq-solarwind-section::before,
    .sheq-solarwind-section::after{
      content:"";
      position:absolute;
      width:420px;
      height:420px;
      border-radius:50%;
      filter:blur(80px);
      opacity:0.7;
      z-index:0;
    }
    .sheq-solarwind-section::before{
      background:linear-gradient(135deg,#ffb347,#ff512f);
      top:-140px;
      left:-80px;
      animation:swFloat1 18s ease-in-out infinite alternate;
    }
    .sheq-solarwind-section::after{
      background:linear-gradient(135deg,#ff6a00,#ffd27f);
      bottom:-160px;
      right:-60px;
      animation:swFloat2 22s ease-in-out infinite alternate;
    }
    @keyframes swFloat1{
      0%{transform:translate3d(0,0,0);}
      50%{transform:translate3d(60px,40px,0);}
      100%{transform:translate3d(20px,120px,0);}
    }
    @keyframes swFloat2{
      0%{transform:translate3d(0,0,0);}
      50%{transform:translate3d(-40px,-60px,0);}
      100%{transform:translate3d(-110px,-10px,0);}
    }
    .sheq-solarwind-section .container{
      position:relative;
      z-index:2;
    }
    .sheq-solarwind-section .glass-panel{
      border-radius:20px;
      background:rgba(10,10,16,0.75);
      border:1px solid rgba(255,255,255,0.16);
      box-shadow:0 20px 50px rgba(0,0,0,0.65);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      transition:transform .4s ease, box-shadow .4s ease, border-color .3s ease;
    }
    .sheq-solarwind-section .glass-panel:hover{
      transform:translateY(-6px);
      box-shadow:0 26px 70px rgba(0,0,0,0.8);
      border-color:rgba(255,191,120,0.9);
    }
    .sheq-solarwind-section .mini-card{
      border-radius:16px;
      background:rgba(12,12,18,0.82);
      border:1px solid rgba(255,255,255,0.12);
      backdrop-filter:blur(12px);
      -webkit-backdrop-filter:blur(12px);
      transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .sheq-solarwind-section .mini-card:hover{
      transform:translateY(-4px);
      box-shadow:0 16px 40px rgba(0,0,0,0.7);
      border-color:rgba(255,168,92,0.9);
    }
    .sheq-solarwind-section .legend-dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:linear-gradient(145deg,#a4ffba,#41ff81);
    }
    .text-light-50{
      color:rgba(255,255,255,0.7) !important;
    }

    /* body{*/
    /*  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;*/
    /*  background:#020617;*/
    /*  color:#fff;*/
    /*}*/

    /* HSEQ HERO SECTION */
    .text-orange{
      color: #d34f1f;
    }
    .wind-hero-modern{
      position:relative;
      overflow:hidden;
      background:#020617;
      padding-top:6rem;
      padding-bottom:6rem;
    }
    .wind-hero-modern .hero-bg-layer{
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg,rgba(15,23,42,0.1),rgba(15,23,42,0.9)),
        url("https://images.pexels.com/photos/532192/pexels-photo-532192.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
      filter:brightness(0.9);
      transform:scale(1.05);
      animation:heroZoom 18s ease-in-out infinite alternate;
      z-index:0;
    }
    .wind-hero-modern::before,
    .wind-hero-modern::after{
      content:"";
      position:absolute;
      width:360px;
      height:360px;
      border-radius:999px;
      filter:blur(90px);
      opacity:0.7;
      z-index:0;
    }
    .wind-hero-modern::before{
      background:radial-gradient(circle at 30% 30%,#38bdf8,transparent 60%);
      top:-120px;
      left:-40px;
      animation:heroBlob1 22s ease-in-out infinite alternate;
    }
    .wind-hero-modern::after{
      background:radial-gradient(circle at 70% 70%,#22c55e,transparent 60%);
      bottom:-160px;
      right:-60px;
      animation:heroBlob2 24s ease-in-out infinite alternate;
    }
    .wind-hero-modern .container{
      position:relative;
      z-index:2;
    }
    .hero-btn-main{
      box-shadow:0 18px 40px rgba(15,23,42,0.65);
      transform:translateY(0);
      transition:transform .25s ease, box-shadow .25s ease;
    }
    .hero-btn-main:hover{
      transform:translateY(-3px);
      box-shadow:0 24px 60px rgba(15,23,42,0.8);
    }
    .hero-btn-ghost{
      backdrop-filter:blur(10px);
      border-color:rgba(255,255,255,0.4);
    }
    .hero-cards-wrap{
      position:relative;
      display:flex;
      flex-direction:column;
      gap:1.25rem;
      perspective:1000px;
    }
    .hero-card{
      position:relative;
      padding:1.5rem 1.75rem;
      border-radius:18px;
      background:rgba(15,23,42,0.85);
      border:1px solid rgba(148,163,184,0.5);
      box-shadow:0 18px 45px rgba(15,23,42,0.9);
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
      transform-origin:center;
      transform:translateY(0) translateZ(0);
      animation:cardFloat 10s ease-in-out infinite alternate;
      transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    }
    .hero-card-secondary{
      animation-delay:1.5s;
    }
    .hero-card::before{
      content:"";
      position:absolute;
      inset:-1px;
      border-radius:inherit;
      background:linear-gradient(135deg,rgba(56,189,248,0.35),rgba(34,197,94,0.1));
      opacity:0;
      z-index:-1;
      transition:opacity .35s ease;
    }
    .hero-card:hover{
      transform:translateY(-6px) translateZ(12px) rotateX(4deg);
      box-shadow:0 26px 70px rgba(15,23,42,0.95);
      border-color:rgba(56,189,248,0.9);
    }
    .hero-card:hover::before{
      opacity:1;
    }

    /* BELOW-BANNER CARDS SECTION */
    .wind-cards-section{
      position:relative;
      padding:4rem 0 5rem;
      background:radial-gradient(circle at top,#0f172a 0,#020617 55%);
    }
    .wind-cards-section .section-badge{
      letter-spacing:.08em;
    }
    .wind-cards-section .info-card{
      position:relative;
      border-radius:18px;
      padding:1.75rem 1.9rem;
      background:rgba(15,23,42,0.92);
      border:1px solid rgba(148,163,184,0.4);
      box-shadow:0 18px 40px rgba(15,23,42,0.9);
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
      transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
      overflow:hidden;
    }
    .wind-cards-section .info-card::after{
      content:"";
      position:absolute;
      width:140px;
      height:140px;
      border-radius:999px;
      background:radial-gradient(circle at 30% 30%,rgba(56,189,248,0.45),transparent 60%);
      top:-60px;
      right:-40px;
      opacity:.4;
      transition:transform .35s ease, opacity .35s ease;
    }
    .wind-cards-section .info-card.secondary::after{
      background:radial-gradient(circle at 30% 30%,rgba(234,179,8,0.55),transparent 60%);
    }
    .wind-cards-section .info-card:hover{
      transform:translateY(-6px);
      box-shadow:0 24px 60px rgba(15,23,42,1);
      border-color:rgba(96,165,250,0.9);
    }
    .wind-cards-section .info-card:hover::after{
      transform:translate(-10px,10px) scale(1.05);
      opacity:.75;
    }

    /* keyframes */
    @keyframes heroZoom{
      0%{transform:scale(1.05) translateY(0);}
      100%{transform:scale(1.1) translateY(-10px);}
    }
    @keyframes heroBlob1{
      0%{transform:translate3d(0,0,0);}
      50%{transform:translate3d(40px,30px,0);}
      100%{transform:translate3d(10px,100px,0);}
    }
    @keyframes heroBlob2{
      0%{transform:translate3d(0,0,0);}
      50%{transform:translate3d(-30px,-40px,0);}
      100%{transform:translate3d(-100px,-10px,0);}
    }
    @keyframes cardFloat{
      0%{transform:translateY(0) translateZ(0);}
      100%{transform:translateY(-10px) translateZ(20px);}
    }

    @media (max-width: 767.98px){
      .wind-hero-modern{
        padding-top:4.5rem;
        padding-bottom:4.5rem;
      }
    }

    .service-quality-wrapper {
      margin: 20px 0 20px; 
    }

.service-quality-badge {
  background: #f85d23;
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

    /* unique wrapper */
.sheq-section{
  position:relative;
  overflow:hidden;
  color:#fff;
  background: radial-gradient(circle at 0% 0%, #ffb347 0%, #ff512f 25%, #1b1b1f 60%, #050509 100%);
}

/* animated gradient blur blobs (background motion graphics) */
.sheq-section::before,
.sheq-section::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  filter:blur(80px);
  opacity:0.75;
  z-index:0;
}
.sheq-section::before{
  background:linear-gradient(135deg,#ff9a3c,#ff512f);
  top:-120px;
  left:-80px;
  animation:float1 18s infinite alternate ease-in-out;
}
.sheq-section::after{
  background:linear-gradient(135deg,#ff6a00,#ffc371);
  bottom:-160px;
  right:-80px;
  animation:float2 22s infinite alternate ease-in-out;
}

@keyframes float1{
  0%{transform:translate3d(0,0,0);}
  50%{transform:translate3d(60px,40px,0);}
  100%{transform:translate3d(20px,120px,0);}
}
@keyframes float2{
  0%{transform:translate3d(0,0,0);}
  50%{transform:translate3d(-40px,-60px,0);}
  100%{transform:translate3d(-120px,-20px,0);}
}

/* glass cards */
.sheq-section .glass-card{
  position:relative;
  z-index:1;
  background:rgba(10,10,15,0.65);
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 18px 40px rgba(0,0,0,0.55);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease, background .4s ease;
}
.sheq-section .glass-card:hover{
  transform:translateY(-6px) translateZ(0);
  box-shadow:0 24px 60px rgba(0,0,0,0.75);
  border-color:rgba(255,196,120,0.8);
  background:rgba(20,12,4,0.9);
}

/* icon pill */
.sheq-section .icon-wrap{
  display:inline-flex;
}
.sheq-section .icon-pill{
  width:56px;
  height:56px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#ffb347,#ff512f);
  color:#1b1b1f;
  font-weight:700;
  letter-spacing:1px;
  box-shadow:0 10px 25px rgba(0,0,0,0.45);
  transform:translateY(0);
  transition:transform .4s ease, box-shadow .4s ease;
}
.sheq-section .glass-card:hover .icon-pill{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 16px 32px rgba(0,0,0,0.6);
}

/* helper text color */
.text-light-50{
  color:rgba(255,255,255,0.7) !important;
}

/* keep content above motion graphics */
.sheq-section .container{
  position:relative;
  z-index:2;
}


/* ─────────────────────────────── */
/*   ORANGE GLASSY 10-TABS - 20x10 */
/* ─────────────────────────────── */

.glass-tabs-cmp {
  max-width: 1400px;
  margin: auto;
  padding: 20px;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #ff8c0015 0%, #ff450040 100%);
  min-height: 100vh;
  border-radius:15px;
}


/* GLASS NAV - SCROLLABLE */
.glass-nav {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 25px;
  padding: 15px 20px;
  border-radius: 25px;
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.2);
  box-shadow: 0 8px 32px rgba(255, 140, 0, 0.1);
  backdrop-filter: blur(20px);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,140,0,0.5) transparent;
}
.glass-nav::-webkit-scrollbar {
  height: 6px;
}
.glass-nav::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}
.glass-nav::-webkit-scrollbar-thumb {
  background: rgba(255,140,0,0.6);
  border-radius: 10px;
}

.glass-btn {
  padding: 12px 18px;
  border: none;
  background: rgba(255, 140, 0, 0.15);
  border-radius: 15px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  color: #333;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 140, 0, 0.3);
  flex-shrink: 0;
  min-width: auto;
  width: auto;
}
.glass-btn.active {
  background: linear-gradient(135deg, #ff8c00, #ff6600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 140, 0, 0.4);
  animation: glassPulse 1.5s infinite;
}
@keyframes glassPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(255, 140, 0, 0.4); }
  50% { box-shadow: 0 12px 60px rgba(255, 140, 0, 0.6); }
}

/* GLASS CONTENT */
.glass-content {
  display: none;
  animation: glassSlide 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glass-content.active { display: block; }
@keyframes glassSlide {
  from { opacity: 0; transform: translateX(50px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* GLASS ROW */
.glass-row {
  display: flex;
  gap: 25px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* GLASS IMAGE */
.glass-img-box {
  width: 55%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 140, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.glass-img-box:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 140, 0, 0.6);
  box-shadow: 0 25px 80px rgba(255, 140, 0, 0.3);
}
.glass-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glass-img-box:hover img { transform: scale(1.1); }

/* SCROLLABLE GLASS LIST */
.glass-list {
  width: 45%;
  max-height: 400px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,140,0,0.5) transparent;
}
.glass-list::-webkit-scrollbar {
  width: 6px;
}
.glass-list::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}
.glass-list::-webkit-scrollbar-thumb {
  background: rgba(255,140,0,0.6);
  border-radius: 10px;
}
.glass-list li {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  color: #333;
  border: 1px solid rgba(255, 140, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin-bottom: 12px;
  flex-shrink: 0;
}
.glass-list li:hover {
  border-color: rgba(255, 140, 0, 0.5);
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.25);
  background: rgba(255, 140, 0, 0.2);
}
.glass-list li.active {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.3), rgba(255, 102, 0, 0.3));
  border-color: #ff8c00;
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.5);
  color: #fff;
}

.arrow-link {
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  margin-left: 8px;
  transition: all 0.3s ease;
}

/* Hover for desktop */
li:hover .arrow-link {
  opacity: 1;
}

/* MOBILE */
@media(max-width: 768px){
  .glass-tabs-cmp { padding: 15px; }
  .glass-row {
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }
  .glass-img-box { width: 100%; height: 280px; }
  .glass-list { width: 100%; max-height: 350px; }
  .glass-btn {
    font-size: 13px;
    padding: 10px 14px;
  }
}

.arrow-link {
  opacity: 0;
  margin-left: 8px;
  transition: opacity 0.3s ease;
  font-size: 30px;
}

li:hover .arrow-link {
  opacity: 1;
}

/* MOBILE FIX ONLY */
@media (max-width: 576px) {
  .form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .form-submit button {
    width: 100%;
  }

  .form-submit .social-links {
    position: static !important;   
    transform: none !important;
    display: flex;
    gap: 14px;
    justify-content: center;
  }
}

