/**
* Template Name: Sri Guru Constructions
* Template URL: https://bootstrapmade.com/upconstruction-bootstrap-construction-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", 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";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
  --color-default: #364d59;
  --color-primary: #feb900;
  --color-secondary: #52565e;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  height: 100%;
}

body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000000;
  transform: translateY(-140%);
  background: #ffffff;
  color: #1a252f;
  padding: 10px 16px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  color: #1a252f;
  outline: 3px solid #ff6b35;
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid #ff6b35;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Ensure mobile viewport doesn't allow horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Main content should grow to push footer down */
main {
  flex: 1;
}

/* Mobile container adjustments */
@media (max-width: 768px) {
  .container-fluid, .container-xl {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 480px) {
  .container-fluid, .container-xl {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 70px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/* Responsive Breadcrumbs */
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 120px 0 40px 0;
    min-height: 20vh;
  }
  
  .breadcrumbs h2 {
    font-size: 32px;
  }
  
  .breadcrumbs ol {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .breadcrumbs {
    padding: 100px 0 30px 0;
    min-height: 18vh;
  }
  
  .breadcrumbs h2 {
    font-size: 24px;
  }
  
  .breadcrumbs ol {
    font-size: 12px;
  }
}

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

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

.scroll-top:hover {
  background: #ffc732;
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: background-color 0.3s ease-in-out;
  background-size: cover;
  background-position: center;
  height: 80px;
}

/* Desktop only - allow dropdown overflow */
@media (min-width: 1280px) {
  .header {
    overflow: visible !important;
  }

  .header .container-fluid,
  .header .container-xl {
    position: static;
    overflow: visible !important;
  }

  .navbar {
    position: static;
    overflow: visible !important;
  }
}

/* Service detail pages use a light header to stay visible over bright hero images */
body.service-page .header,
body.service-page .header.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(20px);
}

body.service-page .header .logo h1 {
  color: #2c3e50 !important;
}

body.service-page .header .logo h1 span {
  color: #ff6b35 !important;
}

body.service-page .header .logo img {
  box-shadow: none;
  max-height: 50px !important;
  width: auto !important;
  margin-left: 0 !important;
  height: auto !important;
}

body.service-page .navbar a,
body.service-page .navbar a:focus {
  color: #2c3e50 !important;
}

body.service-page .navbar li:hover > a,
body.service-page .navbar a:hover,
body.service-page .navbar .active,
body.service-page .navbar .active:focus {
  color: #ff6b35 !important;
}

@media (max-width: 768px) {
  body.service-page .header .logo h1 {
    font-size: 16px !important;
  }

  body.service-page .header .logo img {
    max-height: 40px !important;
  }
}

/*--------------------------------------------------------------
# Mobile Header Styles
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .header {
    height: 70px;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  .header .container-fluid {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 70%;
  }
  
  .header .logo h1 {
    color: #2c3e50 !important;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .header .logo h1 br {
    display: none;
  }
  
  .header .logo h1 span {
    color: var(--color-primary) !important;
  }
  
  .header .logo img {
    max-height: 40px;
    width: auto;
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  main {
    padding-top: 70px;
  }
  
  .breadcrumbs {
    margin-top: 0;
    padding-top: 90px !important;
  }
}

@media (max-width: 480px) {
  .header {
    height: 60px;
  }
  
  .header .logo h1 {
    font-size: 12px;
  }
  
  .header .logo img {
    max-height: 32px;
  }
  
  main {
    padding-top: 60px;
  }
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
}

.main {
  padding-top: 80px;
}

/* Breadcrumbs positioning */
.breadcrumbs {
  margin-top: -80px;
  z-index: 1;
  position: relative;
}

.breadcrumbs h2,
.breadcrumbs ol {
  position: relative;
  z-index: 2;
}

.header.scrolled .logo h1,
.header.scrolled .logo h1 span,
.header.scrolled .navbar a,
.header.scrolled .navbar a:hover {
  color: #333 !important;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

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

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

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

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

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

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 20px);
    margin: 0;
    padding: 20px 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    background: #ffffff !important;
    border: 2px solid var(--color-primary) !important;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(-10px);
    backdrop-filter: none !important;
    min-width: 280px;
  }

  .navbar .dropdown ul::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #ffffff !important;
    border: 2px solid var(--color-primary) !important;
    border-bottom: none !important;
    border-right: none !important;
    transform: rotate(45deg);
    border-radius: 2px;
    z-index: 1;
  }

  .navbar .dropdown ul li {
    min-width: 240px;
    margin: 0 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .navbar .dropdown ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .navbar .dropdown ul li:hover::before {
    left: 100%;
  }

  .navbar .dropdown ul a,
  .navbar .dropdown ul .dropdown-item {
    padding: 15px 25px;
    font-size: 15px;
    text-transform: none;
    color: #333333 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-radius: 8px;
    margin: 2px 8px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    letter-spacing: 0.5px;
    background: transparent !important;
    border-bottom: 1px solid rgba(254, 185, 0, 0.1) !important;
  }

  .navbar .dropdown ul a::before {
    content: '\25B6';
    font-size: 8px;
    color: var(--color-primary);
    margin-right: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
  }

  .navbar .dropdown ul a:hover::before {
    opacity: 1;
    transform: translateX(0);
  }

  .navbar .dropdown ul a i,
  .navbar .dropdown ul .dropdown-item i {
    font-size: 16px;
    margin-right: 12px;
    color: var(--color-primary) !important;
    transition: all 0.3s ease;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

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

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .dropdown-item:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a,
  .navbar .dropdown ul li:hover>.dropdown-item {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffb300 100%) !important;
    transform: translateX(5px) !important;
    box-shadow: 0 8px 25px rgba(255, 185, 0, 0.3) !important;
  }

  .navbar .dropdown ul a:hover i,
  .navbar .dropdown ul .dropdown-item:hover i {
    color: #ffffff !important;
    transform: scale(1.2) !important;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1 !important;
    top: 100% !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

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

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
  
  /* FORCE DESKTOP DROPDOWN TO WORK */
  .navbar .dropdown:hover ul {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    top: 100% !important;
    display: block !important;
    position: absolute !important;
    background: #ffffff !important;
    border: 2px solid #feb900 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    z-index: 999999 !important;
  }
  
  /* Make dropdown items more visible */
  .navbar .dropdown ul li a,
  .navbar .dropdown ul li .dropdown-item {
    color: #333333 !important;
    background: #ffffff !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
  }
  
  .navbar .dropdown ul li a:hover,
  .navbar .dropdown ul li .dropdown-item:hover {
    background: #feb900 !important;
    color: #ffffff !important;
  }
  
  .navbar .dropdown ul li a i,
  .navbar .dropdown ul li .dropdown-item i {
    margin-right: 8px !important;
    color: #feb900 !important;
  }
  
  .navbar .dropdown ul li a:hover i,
  .navbar .dropdown ul li .dropdown-item:hover i {
    color: #ffffff !important;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation - Clean Rewrite
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  /* Mobile Navigation Toggle Buttons */
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 26px;
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .mobile-nav-toggle:hover {
    color: var(--color-primary);
    background: #ffffff;
    transform: scale(1.05);
  }

  .mobile-nav-show {
    position: relative;
  }

  .mobile-nav-hide {
    position: fixed;
    top: 15px;
    right: clamp(15px, calc(100vw - 382px), 96px);
    z-index: 100007;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), #ffc732);
    box-shadow: 0 4px 15px rgba(254, 185, 0, 0.4);
  }

  .mobile-nav-hide:hover {
    background: linear-gradient(135deg, #ffc732, var(--color-primary));
    transform: scale(1.1);
  }

  /* Hide navbar by default on mobile */
  .navbar {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 100% !important;
    max-width: 320px !important;
    height: 100vh !important;
    background: #fff !important;
    background-color: #fff !important;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100006 !important;
    overflow: hidden !important;
    pointer-events: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
  }

  .navbar > ul {
    display: block !important;
    list-style: none !important;
    padding: 80px 0 30px 0 !important;
    margin: 0 !important;
    height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    pointer-events: auto !important;
    background: #fff !important;
    background-color: #fff !important;
  }

  .navbar > ul > li {
    display: block !important;
    pointer-events: auto !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .navbar ul::-webkit-scrollbar {
    width: 4px;
  }

  .navbar ul::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .navbar ul::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
  }

  /* Mobile Nav Links - Enhanced Visibility & Clickability */
  .navbar a,
  .navbar a:focus {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-family: var(--font-primary);
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1a252f !important;
    text-decoration: none !important;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
    cursor: pointer !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .navbar a i {
    font-size: 12px;
    color: #555 !important;
    transition: transform 0.25s ease;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar li:hover > a {
    color: var(--color-primary) !important;
    background: rgba(254, 185, 0, 0.15) !important;
    border-left-color: var(--color-primary);
  }

  .navbar a:hover i {
    color: var(--color-primary) !important;
  }

  /* Mobile Dropdown */
  .navbar .dropdown ul {
    position: static !important;
    display: none;
    padding: 0;
    margin: 0;
    background: #ffffff !important;
    border-left: 3px solid var(--color-primary);
    margin-left: 20px;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 99999 !important;
  }

  .navbar .dropdown ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .navbar .dropdown ul li:last-child {
    border-bottom: none;
  }

  .navbar .dropdown ul a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 14px 20px 14px 24px;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #2c3e50 !important;
    border-left: none;
    cursor: pointer !important;
    pointer-events: auto !important;
  }

  .navbar .dropdown ul a i {
    font-size: 16px;
    margin-right: 10px;
    color: var(--color-primary) !important;
    flex-shrink: 0;
  }

  .navbar .dropdown ul a:hover {
    color: var(--color-primary) !important;
    background: rgba(254, 185, 0, 0.18) !important;
    padding-left: 28px;
  }

  .navbar .dropdown ul a:hover i {
    color: var(--color-primary) !important;
  }

  /* Dropdown Active State */
  .navbar .dropdown.dropdown-active > ul {
    display: block;
  }

  .navbar .dropdown.dropdown-active > a .dropdown-indicator {
    transform: rotate(180deg);
  }

  /* Body state when mobile nav is active */
  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
    pointer-events: auto !important;
    z-index: 100006 !important;
    background: #fff !important;
    background-color: #fff !important;
  }

  /* Overlay when menu is open - behind navbar - clicks close the menu */
  .mobile-nav-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    pointer-events: none;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

/* Smaller Mobile Devices */
@media (max-width: 480px) {
  .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .mobile-nav-hide {
    top: 12px;
    right: clamp(12px, calc(100vw - 382px), 96px);
  }

  .navbar {
    max-width: 280px;
  }

  .navbar a {
    padding: 14px 20px;
    font-size: 14px;
  }

  .navbar .dropdown ul a {
    padding: 12px 16px 12px 20px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.services-section {
  padding: 4rem 0; /* Increased padding to make the block bigger */
  background-color: #f5f5f5;
  text-align: center;
}

.services-section h2 {
  font-size: 3rem; /* Increased font size to make it more prominent */
  color: #333333;
  margin-bottom: 2rem; /* Increased margin to add more space */
}

.services-section p {
  color: #666666;
  margin-bottom: 3rem; /* Increased margin to add more space */
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem; /* Increased gap to add more space between cards */
}

.service-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  transition: transform 0.3s ease;
  text-align: center;
  padding: 2rem; /* Added padding to make the cards more spacious */
}

.service-item img {
  width: 100%;
  height: auto;
}

.service-item h3 {
  font-size: 1.5rem; /* Increased font size to make it more prominent */
  color: #333333;
  margin: 1rem 0; /* Increased margin to add more space */
}

.service-item:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .service-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem; /* Reduced gap for smaller screens */
  }

  .services-section h2 {
      font-size: 2rem; /* Reduced font size for smaller screens */
  }

  .service-item h3 {
      font-size: 1.25rem; /* Reduced font size for smaller screens */
  }
}

@media (max-width: 576px) {
  .service-grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 1rem; /* Reduced gap for smaller screens */
  }

  .services-section h2 {
      font-size: 1.75rem; /* Reduced font size for smaller screens */
  }

  .service-item h3 {
      font-size: 1.125rem; /* Reduced font size for smaller screens */
  }
}


.who-we-are {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.who-we-are .section-title {
  margin-bottom: 30px;
}

.who-we-are .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.who-we-are .section-title p {
  font-size: 18px;
  color: #777;
}

.who-we-are p {
  line-height: 1.8;
  color: #555;
}

.who-we-are .lead {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.who-we-are .quote {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  font-style: italic;
}

.who-we-are .quote:before {
  content: "\201C";
  font-size: 36px;
  color: #ffd700;
  margin-right: 10px;
}

.who-we-are .quote:after {
  content: "\201D";
  font-size: 36px;
  color: #ffd700;
  margin-left: 10px;
}

.who-we-are ul {
  padding-left: 20px;
}

.who-we-are li {
  margin-bottom: 10px;
  color: #555;
}

.who-we-are i {
  color: #007bff;
  margin-right: 10px;
}

.who-we-are button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.who-we-are button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .who-we-are {
    padding: 60px 0;
  }
  .who-we-are .section-title h2 {
    font-size: 30px;
  }
  .who-we-are .col-lg-6 {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
}

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

.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

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

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Modern Services Grid
--------------------------------------------------------------*/
.services {
  position: relative;
  background-image: url('../img/services.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 500px;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

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

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}

.service-card-modern {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  text-decoration: none;
}

.service-image-block {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
}

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

.service-card-modern:hover .service-image-block img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-overlay {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9));
}

.service-overlay .service-text {
  color: #ffffff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  padding: 12px 16px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.service-card-modern:hover .service-overlay .service-text {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  z-index: 3;
}

.service-card-modern:hover::before {
  left: 100%;
}

/* Tablet responsive */
@media (max-width: 992px) {
  .services {
    background-attachment: scroll;
  }
  
  .services-grid-modern {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 25px 15px;
    max-width: 750px;
  }
  
  .service-image-block {
    height: 180px;
  }
  
  .service-overlay .service-text {
    font-size: 14px;
    padding: 10px 12px;
    letter-spacing: 0.8px;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .services {
    background-attachment: scroll;
  }
  
  .services::before {
    background: rgba(255, 255, 255, 0.95);
  }
  
  .services-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 10px;
    max-width: 500px;
  }
  
  .service-image-block {
    height: 160px;
  }
  
  .service-overlay .service-text {
    font-size: 12px;
    padding: 8px 10px;
    letter-spacing: 0.5px;
    line-height: 1.1;
  }
  
  .service-card-modern {
    border-radius: 10px;
  }
  
  .service-image-block {
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .services-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 15px 5px;
  }
  
  .service-image-block {
    height: 140px;
  }
  
  .service-overlay .service-text {
    font-size: 10px;
    padding: 6px 8px;
    letter-spacing: 0.3px;
    line-height: 1.0;
    border-width: 1px;
  }
  
  .service-card-modern {
    border-radius: 8px;
  }
  
  .service-image-block {
    border-radius: 8px;
  }
}

/*--------------------------------------------------------------
# Modern Why Choose Us Section
--------------------------------------------------------------*/

.why-choose-us-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.why-choose-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.why-choose-us-section .container {
  position: relative;
  z-index: 2;
}

.choose-us-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.choose-us-card-modern {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(254, 185, 0, 0.1);
}

.choose-us-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), #ffc732);
}

.choose-us-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.card-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-primary), #ffc732);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card-icon i {
  font-size: 28px;
  color: #ffffff;
}

.choose-us-card-modern:hover .card-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(254, 185, 0, 0.25);
}

.card-content h3 {
  font-size: 1.2rem;
  color: var(--color-default);
  margin-bottom: 12px;
  font-weight: 700;
  font-family: var(--font-primary);
  line-height: 1.3;
}

.card-content p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Responsive - Horizontal Row Layout */
@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 50px 0;
  }
  
  .choose-us-cards-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    margin-top: 25px;
    padding: 0 15px 15px 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .choose-us-card-modern {
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
    padding: 20px 15px;
    scroll-snap-align: start;
    border-radius: 15px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .card-icon i {
    font-size: 20px;
  }
  
  .card-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  
  .card-content p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .choose-us-cards-container {
    padding: 0 10px 10px 10px;
    gap: 12px;
  }
  
  .choose-us-card-modern {
    min-width: 160px;
    max-width: 160px;
    padding: 18px 12px;
    border-radius: 12px;
  }
  
  .card-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }
  
  .card-icon i {
    font-size: 18px;
  }
  
  .card-content h3 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  .card-content p {
    font-size: 0.75rem;
    line-height: 1.3;
  }
}

/*--------------------------------------------------------------
# Modern How To Start Section
--------------------------------------------------------------*/

.how-to-start-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.how-to-start-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23000000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.7;
}

.how-to-start-section .container {
  position: relative;
  z-index: 2;
}

.steps-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.step-card-modern {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.step-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #0056b3);
}

.step-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #007bff;
}

.step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.step-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 28px;
  color: #ffffff;
}

.step-card-modern:hover .step-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

.step-content h3 {
  font-size: 1.2rem;
  color: var(--color-default);
  margin-bottom: 12px;
  font-weight: 700;
  font-family: var(--font-primary);
  line-height: 1.3;
}

.step-content p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Responsive - Horizontal Row Layout */
@media (max-width: 768px) {
  .how-to-start-section {
    padding: 50px 0;
  }
  
  .steps-cards-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    margin-top: 25px;
    padding: 0 15px 15px 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .step-card-modern {
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
    padding: 20px 15px;
    scroll-snap-align: start;
    border-radius: 15px;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .step-icon i {
    font-size: 20px;
  }
  
  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.7rem;
    top: 12px;
    right: 12px;
  }
  
  .step-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  
  .step-content p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .steps-cards-container {
    padding: 0 10px 10px 10px;
    gap: 12px;
  }
  
  .step-card-modern {
    min-width: 160px;
    max-width: 160px;
    padding: 18px 12px;
    border-radius: 12px;
  }
  
  .step-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }
  
  .step-icon i {
    font-size: 18px;
  }
  
  .step-number {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
  
  .step-content h3 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  .step-content p {
    font-size: 0.75rem;
    line-height: 1.3;
  }
}
/*--------------------------------------------------------------
# Modern Projects Section
--------------------------------------------------------------*/

.projects-section-modern {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.projects-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23007bff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

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

.section-header-modern {
  text-align: center;
  margin-bottom: 50px;
}

.section-header-modern h2 {
  font-size: 2.5rem;
  color: var(--color-default);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.section-header-modern h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 2px;
}

.quote-modern {
  font-size: 1.1rem;
  color: #6c757d;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  padding: 0 30px;
}

.quote-modern::before,
.quote-modern::after {
  content: '"';
  font-size: 2rem;
  color: #007bff;
  font-weight: bold;
  position: absolute;
  top: -10px;
}

.quote-modern::before {
  left: 0;
}

.quote-modern::after {
  right: 0;
}

/* Filter Buttons */
.projects-filters-modern {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn-modern {
  background: #ffffff;
  border: 2px solid #e9ecef;
  color: #6c757d;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn-modern:hover,
.filter-btn-modern.active {
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-color: #007bff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Projects Grid */
.projects-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Project Cards */
.project-card-modern {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
}

.project-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Project Image */
.project-image-modern {
  position: relative;
  height: 170px;
  overflow: hidden;
  flex-shrink: 0;
}

.image-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.image-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  filter: brightness(1.1) contrast(1.05);
}

.image-carousel img.active {
  opacity: 1;
}

/* Project Overlay */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.8));
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.project-card-modern:hover .project-overlay {
  opacity: 1;
}

.project-status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-status.ongoing {
  background: linear-gradient(135deg, #ffc107, #ff8c00);
  color: #ffffff;
}

.project-status.completed {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #ffffff;
}

.project-actions {
  display: flex;
  gap: 15px;
}

.action-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #007bff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.action-btn:hover {
  background: #ffffff;
  transform: scale(1.05);
  color: #0056b3;
}

.action-btn i {
  font-size: 1rem;
}

/* Project Info */
.project-info-modern {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-info-modern h3 {
  font-size: 1rem;
  color: var(--color-default);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
}

.project-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6c757d;
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-item i {
  color: #007bff;
  width: 16px;
  text-align: center;
}

/* Mobile Responsive - 2 per row */
@media (max-width: 768px) {
  .projects-section-modern {
    padding: 50px 0;
  }
  
  .section-header-modern h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .quote-modern {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .quote-modern::before,
  .quote-modern::after {
    font-size: 1.5rem;
  }
  
  .projects-filters-modern {
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .filter-btn-modern {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .projects-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
    max-width: 500px;
  }
  
  .project-card-modern {
    border-radius: 10px;
    height: 250px;
  }
  
  .project-image-modern {
    height: 140px;
  }
  
  .project-info-modern {
    padding: 12px 10px;
  }
  
  .project-info-modern h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    min-height: 2rem;
  }
  
  .detail-item {
    font-size: 0.7rem;
    gap: 5px;
  }
  
  .project-actions {
    gap: 6px;
  }
  
  .action-btn {
    width: 30px;
    height: 30px;
  }
  
  .action-btn i {
    font-size: 0.8rem;
  }
  
  .project-status {
    top: 6px;
    right: 6px;
    padding: 2px 5px;
    font-size: 0.55rem;
  }
}

@media (max-width: 480px) {
  .projects-section-modern {
    padding: 40px 0;
  }
  
  .section-header-modern h2 {
    font-size: 1.8rem;
  }
  
  .quote-modern {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  
  .projects-grid-modern {
    gap: 12px;
    padding: 0 10px;
    max-width: 400px;
  }
  
  .project-card-modern {
    height: 220px;
  }
  
  .project-image-modern {
    height: 120px;
  }
  
  .project-info-modern {
    padding: 10px 8px;
  }
  
  .project-info-modern h3 {
    font-size: 0.85rem;
    margin-bottom: 6px;
    min-height: 1.8rem;
  }
  
  .detail-item {
    font-size: 0.65rem;
  }
  
  .filter-btn-modern {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .quote {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  font-style: italic;
}

.testimonials .quote:before {
  content: "\201C";
  font-size: 36px;
  color: #ffd700;
  margin-right: 10px;
}

.testimonials .quote:after {
  content: "\201D";
  font-size: 36px;
  color: #ffd700;
  margin-left: 10px;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

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

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

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

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

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

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

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

/*--------------------------------------------------------------
# Brand and youtube
-------------------------------------------------------------*/
.brands-section {
  padding: 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.brand-logos img {
  width: 100px; /* Adjust the width as needed */
  height: auto;
  margin: 0 10px;
}


.youtube-video-map-contact {
  padding: 40px 0;
  background-color: #f5f5f5;
}

.youtube-video-map-contact h2 {
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 15px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between items */
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between icon and text */
  font-size: 1.2rem;
  color: #333;
}

.contact-item i {
  font-size: 1.5rem; /* Icon size */
  color: #ffcc00; /* Change to your preferred color */
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px; /* Optional: Rounded corners */
}

.map-container {
  margin: 20px 0; /* Space around the map */
  border-radius: 8px; /* Optional: Rounded corners */
  overflow: hidden; /* Prevents overflow for rounded corners */
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about h2 {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #f5f6f7;
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838893;
}

.about .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

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

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

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

.about ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}

.about .watch-video i {
  font-size: 32px;
  transition: 0.3s;
  color: var(--color-primary);
}

.about .watch-video a {
  font-weight: 600;
  color: var(--color-secondary);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--color-primary);
}

.about .about-img {
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  background: #fff;
  box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
  padding: 30px;
}

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

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

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
}

/* Shared enhanced stats counter used on the home and about pages */
#stats-counter {
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#stats-counter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

#stats-counter .container {
  position: relative;
  z-index: 1;
}

.stats-counter .stats-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats-counter .stats-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.6s ease;
}

.stats-counter .stats-item:hover::before {
  left: 100%;
}

.stats-counter .stats-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.stats-counter .stats-item i {
  font-size: 2.2rem;
  margin-right: 20px;
  color: #ff6b35;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-counter .stats-item span {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
}

.stats-counter .stats-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 575px) {
  #stats-counter {
    padding: 60px 0;
  }

  .stats-counter .stats-item {
    padding: 28px 24px;
  }
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: #fff;
  font-size: 20px;
  margin: 0 8px;
}

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

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: #838893;
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Servie Cards Section
--------------------------------------------------------------*/
.services-cards h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

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

.services-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
}

.services-cards ul li i {
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 6px;
}

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

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

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

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

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

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

@media (max-width: 575px) {

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

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

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

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

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

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #838893;
  font-size: 14px;
}

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

.project-details .portfolio-info .btn-visit:hover {
  background: #ffc019;
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

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

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: #f5f6f7;
  height: 100%;
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

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

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

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

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

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d5d7da;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #d9e3e8;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px 0;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted #ffd565;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 10px 0;
}

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

.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .error-message br+br {
  margin-top: 25px;
}

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

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(254, 185, 0, 0.8);
}

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

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

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

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

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

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

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

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

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 0;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero .info {
    padding: 0 15px;
  }
}

.hero .info h2 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 28px !important;
  }
}

@media (max-width: 480px) {
  .hero .info h2 {
    font-size: 24px !important;
  }
}

@media (max-width: 360px) {
  .hero .info h2 {
    font-size: 20px !important;
  }
}

/* Additional mobile responsiveness for hero content */
@media (max-width: 768px) {
  .hero .info .col-lg-6 h2 {
    font-size: 1.8rem !important;
  }
  
  .hero .info .col-lg-6 p {
    font-size: 1.1rem !important;
  }
  
  .hero .info div[style*="display: flex"] span {
    font-size: 0.8rem !important;
    padding: 6px 10px !important;
    margin: 2px !important;
  }
}

@media (max-width: 480px) {
  .hero .info .col-lg-6 h2 {
    font-size: 1.5rem !important;
  }
  
  .hero .info .col-lg-6 p {
    font-size: 1rem !important;
  }
  
  .hero .info div[style*="display: flex"] span {
    font-size: 0.7rem !important;
    padding: 4px 8px !important;
    margin: 1px !important;
  }
}

@media (max-width: 360px) {
  .hero .info .col-lg-6 h2 {
    font-size: 1.3rem !important;
  }
  
  .hero .info .col-lg-6 p {
    font-size: 0.9rem !important;
  }
  
  .hero .info div[style*="display: flex"] {
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .hero .info div[style*="display: flex"] span {
    font-size: 0.65rem !important;
    padding: 3px 6px !important;
    margin: 1px 0 !important;
    display: block !important;
    width: fit-content !important;
  }
}

.hero .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

/* Hero section mobile responsiveness */
@media (max-width: 768px) {
  .hero .info p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero .info p {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .hero .info p {
    font-size: 13px;
  }
}

.hero .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
  background: var(--color-primary);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #838893;
}

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

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

.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.blog .posts-list .post-img img {
  transition: 0.5s;
}

.blog .posts-list .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog .posts-list .post-content {
  padding: 30px;
}

.blog .posts-list .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog .posts-list .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.blog .posts-list .meta span {
  font-size: 15px;
  color: #838893;
}

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

.blog .posts-list hr {
  color: #888;
  margin-bottom: 20px;
}

.blog .posts-list .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.blog .posts-list .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog .posts-list .post-item:hover .post-title,
.blog .posts-list .post-item:hover .readmore {
  color: var(--color-primary);
}

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

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

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

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

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

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

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

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

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

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

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

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

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.blog .blog-details .meta-top a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #838893;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(82, 86, 94, 0.8);
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

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

.blog .post-author .social-links a {
  color: rgba(82, 86, 94, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

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

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

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

.blog .sidebar .search-form form button:hover {
  background: rgba(254, 185, 0, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

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

.blog .sidebar .tags ul a {
  color: #838893;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

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

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

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

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

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

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

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

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

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

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(82, 86, 94, 0.8);
  margin-bottom: 5px;
}

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

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  color: var(--color-secondary);
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Footer - Updated Oct 18, 2025
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
  margin-top: auto;
  width: 100%;
  overflow: hidden;
}

.footer .footer-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.footer .footer-legal {
  width: 100%;
  padding: 20px 0;
}

.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffff;
  position: relative;
  padding-bottom: 12px;
}

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

.footer .footer-content .footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

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

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

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

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: #fff;
}

.footer .footer-legal .credits a {
  color: var(--color-primary);
}

/* Footer Responsive Styles */
@media (max-width: 1199px) {
  .footer {
    padding: 60px 0 40px 0;
  }
  
  .footer .container {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .footer .footer-content .footer-info h3 {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .footer {
    padding: 50px 0 30px 0;
  }
  
  .footer .footer-content .footer-info {
    margin-bottom: 40px;
  }
  
  .footer .footer-content .footer-links {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 40px 0 20px 0;
  }
  
  .footer .footer-content .footer-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .footer .footer-content .footer-info p {
    font-size: 13px;
    line-height: 22px;
  }
  
  .footer .footer-content h4 {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  .footer .footer-content .footer-links ul li {
    padding: 6px 0;
  }
  
  .footer .footer-legal .copyright {
    padding-top: 20px;
    font-size: 12px;
  }
  
  .footer .footer-legal .credits {
    font-size: 11px;
  }
}

@media (max-width: 575px) {
  .footer {
    padding: 30px 0 15px 0;
  }
  
  .footer .container {
    padding: 0 15px;
    max-width: 100%;
  }
  
  .footer .footer-content .footer-info h3 {
    font-size: 18px;
  }
  
  .footer .footer-content .social-links a {
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin-right: 6px;
  }
  
  .footer .footer-content .footer-links {
    margin-bottom: 30px;
  }
  
  .footer .row {
    margin: 0;
  }
  
  .footer .row > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1rem;
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp:hover {
  background-color: #20b954;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  color: #fff;
  text-decoration: none;
}

.whatsapp i {
  font-size: 1.5rem;
}

/* WhatsApp button responsive */
@media (max-width: 768px) {
  .whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .whatsapp i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .whatsapp {
    bottom: 1rem;
    right: 1rem;
    padding: 8px 10px;
    font-size: 0.8rem;
  }
  
  .whatsapp i {
    font-size: 1.2rem;
  }
}

.package-section {
  text-align: center;
  padding: 20px;
  background-color: #fff;
}

.package-section h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.package-section p {
  font-size: 1.2em;
  color: #666;
}

.package-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.package-card {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  width: 250px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-card h2 {
  font-size: 1.2em;
  color: #fff;
  background-color: #d46941;
  padding: 10px;
  margin: -15px -15px 10px -15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.package-card ul {
  list-style: none;
  padding: 0;
}

.package-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  font-size: 0.9em;
  color: #555;
}

.package-card ul li span {
  color: #d46941;
  font-weight: bold;
  cursor: pointer;
}

.package-card button {
  background-color: #d46941;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
}

.package-card button:hover {
  background-color: #b55336;
}

/* Styling for the package images */
.package-image {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Rounded corners */
}

/*--------------------------------------------------------------
# Index Page - Hero Section & Animations
--------------------------------------------------------------*/
/* Enhanced Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes floatRotate {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes floatRotateSlight {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.6), 0 0 40px rgba(247, 147, 30, 0.4); }
}

@keyframes floatUp {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: translateY(-10px) scale(1.02);
    opacity: 1;
  }
}

@keyframes gentleGlow {
  0%, 100% { 
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  50% { 
    filter: drop-shadow(0 0 25px rgba(255,255,255,0.4));
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  }
}

@keyframes titleGlow {
  0% { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
  100% { filter: drop-shadow(0 0 40px rgba(255,255,255,0.7)); }
}

/* Hero Stats Modern */
.hero-stats-modern {
  position: relative;
  padding: 20px;
}

.circular-stat {
  transition: transform 0.3s ease;
}

.circular-stat:hover {
  transform: scale(1.1);
}

.floating-badge {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.floating-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.floating-badge:hover::before {
  left: 100%;
}

.floating-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5) !important;
}

/* Enhanced Hero Section */
#hero {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 37, 47, 0.9), rgba(255, 107, 53, 0.8));
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" fill="white" opacity="0.05"><circle cx="100" cy="100" r="50"/><circle cx="300" cy="300" r="30"/><circle cx="700" cy="200" r="40"/><circle cx="500" cy="600" r="35"/><circle cx="800" cy="800" r="45"/></svg>') repeat;
  animation: float 20s ease-in-out infinite;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 25px;
  animation: floatUp 6s ease-in-out infinite;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1.5px;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #ecf0f1 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: gentleGlow 4s ease-in-out infinite;
}

.hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e74c3c, #f39c12);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(231, 76, 60, 0.4);
}

.hero-content .subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 35px;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #ecf0f1;
  line-height: 1.6;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 35px 0;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  animation: floatUp 8s ease-in-out infinite;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-badge:hover::before {
  left: 100%;
}

.hero-badge:nth-child(1) {
  border-color: rgba(241, 196, 15, 0.4);
  box-shadow: 0 0 20px rgba(241, 196, 15, 0.3);
  animation-delay: 0.5s;
}

.hero-badge:nth-child(2) {
  border-color: rgba(231, 76, 60, 0.4);
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.3);
  animation-delay: 1s;
}

.hero-badge:nth-child(3) {
  border-color: rgba(52, 152, 219, 0.4);
  box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
  animation-delay: 1.5s;
}

.hero-badge:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(255, 255, 255, 0.2);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Get Started Button */
.btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  margin-top: 30px;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.9) 0%, rgba(192, 57, 43, 0.9) 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 10px 30px rgba(231, 76, 60, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.3) inset;
  text-decoration: none;
}

.btn-get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-get-started:hover::before {
  left: 100%;
}

.btn-get-started:hover {
  color: white;
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.95) 0%, rgba(169, 50, 38, 0.95) 100%);
  box-shadow: 
    0 15px 40px rgba(231, 76, 60, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.4) inset;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Carousel */
#hero {
  isolation: isolate;
}

#hero .home-hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#hero .home-hero-carousel .carousel-inner,
#hero .home-hero-carousel .carousel-item {
  width: 100%;
  height: 100%;
  min-height: 80vh;
}

#hero .home-hero-carousel .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .home-hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(255, 107, 53, 0.2), transparent 20%),
    linear-gradient(180deg, transparent 68%, rgba(255, 255, 255, 0.9) 100%);
}

#hero .home-hero-carousel .carousel-control-prev,
#hero .home-hero-carousel .carousel-control-next {
  z-index: 2;
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  opacity: 0.85;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

#hero .home-hero-carousel .carousel-control-prev {
  left: 18px;
}

#hero .home-hero-carousel .carousel-control-next {
  right: 18px;
}

#hero .home-hero-carousel .carousel-control-prev:hover,
#hero .home-hero-carousel .carousel-control-next:hover,
#hero .home-hero-carousel .carousel-control-prev:focus,
#hero .home-hero-carousel .carousel-control-next:focus {
  opacity: 1;
  background: rgba(255, 107, 53, 0.75);
}

#hero .home-hero-carousel .carousel-indicators {
  z-index: 2;
  bottom: 18px;
  margin-bottom: 0;
}

#hero .home-hero-carousel .carousel-indicators [data-bs-target] {
  width: 32px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.7);
}

#hero .home-hero-carousel .carousel-indicators .active {
  background-color: #ff8a1f;
}

#hero .hero-decoration {
  z-index: 1;
  pointer-events: none;
}

#hero > .container {
  z-index: 3;
}

#hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#hero-carousel .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero-carousel .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 2;
}

#hero-carousel .carousel-control-prev,
#hero-carousel .carousel-control-next {
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

#hero-carousel .carousel-control-prev:hover,
#hero-carousel .carousel-control-next:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 767px) {
  #hero .home-hero-carousel .carousel-control-prev,
  #hero .home-hero-carousel .carousel-control-next,
  #hero .home-hero-carousel .carousel-indicators {
    display: none;
  }
}

/*--------------------------------------------------------------
# Index Page - Who We Are Section
--------------------------------------------------------------*/
.who-we-are {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  position: relative;
  overflow: hidden;
}

.who-we-are::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.who-we-are .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.who-we-are .section-title h2 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.who-we-are .section-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* About Image */
.about-image-wrapper {
  position: relative;
}

.about-image-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image-main:hover {
  transform: translateY(-10px);
}

.about-image-main img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-image-main:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 107, 53, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image-main:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 4rem;
  margin-bottom: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.overlay-content i:hover {
  transform: scale(1.1);
}

.overlay-content span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Floating Stats */
.floating-stats {
  position: absolute;
  bottom: -30px;
  right: 20px;
  display: flex;
  gap: 20px;
}

.stat-item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
}

/* About Content */
.about-content {
  padding-left: 30px;
}

.highlight-text {
  background: linear-gradient(135deg, #fff5f0, #ffe8d9);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #ff6b35;
  margin-bottom: 30px;
  position: relative;
}

.highlight-text i {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #ff6b35;
  font-size: 1.5rem;
}

.highlight-text p {
  font-size: 1.2rem;
  font-style: italic;
  color: #2c3e50;
  margin: 0;
  padding-left: 40px;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 40px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: white;
  font-size: 1.2rem;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: none;
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.cta-buttons .btn-outline-primary {
  border: 2px solid #ff6b35;
  color: #ff6b35;
  background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/*--------------------------------------------------------------
# Index Page - Packages Section
--------------------------------------------------------------*/
.packages-section {
  padding: 90px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff7f2 100%);
  position: relative;
  overflow: hidden;
}

.packages-section .section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a252f;
  margin-bottom: 14px;
  letter-spacing: 0;
}

.packages-section .section-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.packages-section .section-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #556270;
  font-size: 1.05rem;
  line-height: 1.7;
}

.package-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-preview-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(26, 37, 47, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(26, 37, 47, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.package-preview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.35);
  box-shadow: 0 24px 58px rgba(255, 107, 53, 0.16);
}

.package-preview-card.featured {
  border-color: rgba(255, 107, 53, 0.45);
  box-shadow: 0 24px 60px rgba(255, 107, 53, 0.18);
}

.package-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.package-tier {
  color: #1a252f;
  font-size: 1.35rem;
  font-weight: 800;
}

.package-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.package-card-price {
  color: #ff6b35;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}

.package-card-price span {
  color: #6c757d;
  font-size: 0.95rem;
  font-weight: 600;
  margin-left: 4px;
}

.package-preview-card p {
  color: #556270;
  line-height: 1.6;
  margin-bottom: 20px;
}

.package-highlights {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.package-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2c3e50;
  font-size: 0.95rem;
  line-height: 1.45;
}

.package-highlights i {
  color: #ff6b35;
  font-size: 1.05rem;
  line-height: 1.45;
  flex: 0 0 auto;
}

.package-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #ff6b35;
  font-weight: 700;
  text-decoration: none;
}

.package-card-link:hover {
  color: #f7931e;
}

.packages-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.packages-cta-row .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.packages-list {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid #f8f9fa;
}

.package-item {
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.package-item:last-child {
  border-bottom: none;
}

.package-item:hover {
  background: #f8f9fa;
  transform: translateX(10px);
}

.package-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.package-link:hover {
  color: inherit;
  text-decoration: none;
}

.package-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff6b35;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.packages-section .btn-primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: none;
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.packages-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.packages-section .btn-outline-primary {
  color: #ff6b35;
  border-color: #ff6b35;
  padding: 15px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.packages-section .btn-outline-primary:hover {
  background: #ff6b35;
  border-color: #ff6b35;
  color: #ffffff;
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Index Page - Projects Section Enhancement
--------------------------------------------------------------*/
#projects {
  padding: 120px 0;
  background: #ffffff;
}

#projects .section-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2C3E50;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  width: 100%;
}

#projects .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #F7931E);
  border-radius: 2px;
}

.portfolio-flters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.portfolio-flters li {
  background: #f8f9fa;
  color: #6c757d;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.portfolio-flters li:hover,
.portfolio-flters li.filter-active {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/*--------------------------------------------------------------
# Index Page - Contact Notification Popup
--------------------------------------------------------------*/
.contact-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  background: #ffffff;
  background-color: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  z-index: 999999;
  max-width: 450px;
  width: min(90vw, 450px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.contact-notification.show {
  opacity: 1;
  visibility: visible;
}

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

.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.notification-overlay.show {
  opacity: 1;
  visibility: visible;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.notification-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.notification-close:hover {
  color: #FF6B35;
}

.contact-notification h3 {
  color: #FF6B35;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.contact-notification .notification-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 25px;
  font-size: 0.95rem;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.contact-notification .form-group {
  margin-bottom: 18px;
}

.contact-notification input,
.contact-notification select,
.contact-notification textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: white;
}

.contact-notification input:focus,
.contact-notification select:focus,
.contact-notification textarea:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-notification textarea {
  resize: vertical;
  min-height: 70px;
}

.notification-form-submit {
  width: 100%;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border: none;
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notification-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.notification-dismiss {
  text-align: center;
  margin-top: 15px;
}

.notification-dismiss button {
  background: none;
  border: none;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
}

.notification-dismiss button:hover {
  color: #666;
}

/*--------------------------------------------------------------
# Index Page - Logo Styling
--------------------------------------------------------------*/
.logo {
  margin-right: auto !important;
}

.logo img {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain !important;
  margin-right: 20px !important;
  margin-left: -10px !important;
}

.header.scrolled .logo img {
  width: 60px !important;
  height: 60px !important;
}

/*--------------------------------------------------------------
# Index Page - Mobile Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  #hero {
    min-height: 70vh;
    padding: 100px 0 60px;
  }
  
  .hero-content {
    padding: 0 25px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem !important;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
  }
  
  .hero-content h1::after {
    width: 50px;
    height: 3px;
    bottom: -12px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    box-shadow: 0 2px 15px rgba(231, 76, 60, 0.6);
  }
  
  .hero-content .subtitle {
    font-size: 1.3rem !important;
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 30px 0 35px;
  }
  
  .hero-badge {
    width: auto;
    min-width: 240px;
    font-size: 0.9rem;
    padding: 14px 30px;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .hero-actions a {
    margin-right: 0;
    text-align: center;
    width: 100%;
  }
  
  .hero-stats-modern {
    margin-top: 40px;
    padding: 20px;
  }
  
  .circular-stat {
    width: 100px !important;
    height: 100px !important;
    margin: 15px 10px !important;
  }
  
  .circular-stat svg {
    width: 100px !important;
    height: 100px !important;
  }
  
  .circular-stat h3 {
    font-size: 1.5rem !important;
  }
  
  .floating-badge {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
  
  .hero-decoration {
    display: none;
  }
  
  .who-we-are .section-title h2,
  #projects .section-header h2 {
    font-size: 2.5rem;
  }
  
  .who-we-are {
    padding: 60px 0;
  }
  
  .who-we-are .section-title h2 {
    font-size: 2.2rem;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .floating-stats {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .cta-buttons .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  
  .packages-section {
    padding: 60px 0;
  }
  
  .packages-section .section-header h2 {
    font-size: 2.2rem;
  }
  
  .packages-section .section-header h3 {
    font-size: 1.4rem;
  }

  .package-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .package-preview-card {
    padding: 24px;
  }

  .packages-cta-row .btn {
    min-width: 220px;
  }
  
  .package-link {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .package-name {
    font-size: 1.2rem;
  }
  
  .package-price {
    font-size: 1.1rem;
  }
  
  .contact-notification {
    padding: 25px;
    max-width: 95%;
  }
  
  .contact-notification h3 {
    font-size: 1.5rem;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  
  .logo img {
    width: 55px !important;
    height: 55px !important;
    margin-right: 15px !important;
    margin-left: -5px !important;
  }
  
.header.scrolled .logo img {
    width: 50px !important;
    height: 50px !important;
  }
}

/*--------------------------------------------------------------
# Final Mobile Responsiveness Safeguards
--------------------------------------------------------------*/
@media (max-width: 575px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .header .logo {
    max-width: calc(100% - 56px) !important;
    min-width: 0;
    gap: 8px;
  }

  .header .logo img,
  .logo img {
    width: auto !important;
    height: auto !important;
    max-height: 40px !important;
    margin-left: 0 !important;
    margin-right: 8px !important;
    flex: 0 0 auto;
  }

  .header .logo h1 {
    max-width: calc(100vw - 125px);
    min-width: 0;
    font-size: 1.05rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-nav-toggle {
    flex: 0 0 44px;
  }

  .section-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-header h2 {
    display: block;
    max-width: 100%;
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .section-header h2::before,
  .section-header h2::after {
    display: none !important;
  }

  .section-header p,
  .section-header-modern p,
  .quote-modern {
    max-width: 100% !important;
    padding-left: 4px;
    padding-right: 4px;
    overflow-wrap: anywhere;
  }

  .projects-hero,
  .packages-hero,
  .contact-hero {
    min-height: auto !important;
    overflow-x: hidden;
  }

  .projects-hero .container,
  .packages-hero .container,
  .contact-hero .container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .projects-hero h1,
  .packages-hero h1,
  .contact-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.45rem) !important;
    line-height: 1.15 !important;
    overflow-wrap: anywhere;
  }

  .projects-hero p,
  .packages-hero p.lead,
  .contact-hero p,
  .contact-hero .lead,
  .typing-text {
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .packages-hero .hero-eyebrow {
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    letter-spacing: 1px;
    font-size: 0.76rem;
  }

  .projects-hero .hero-actions,
  .packages-hero .hero-action-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .projects-hero .hero-actions a,
  .packages-hero .hero-action-buttons .btn {
    width: 100% !important;
    margin-right: 0 !important;
    text-align: center;
    justify-content: center;
  }

  .hero-metric {
    width: 100%;
  }

  .contact-notification {
    top: auto;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 32px);
    max-width: 346px;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 18px;
    border-radius: 16px;
  }

  .contact-notification h3 {
    font-size: 1.1rem !important;
    line-height: 1.25;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-notification .notification-subtitle {
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.45;
  }

  .contact-notification .form-group {
    margin-bottom: 10px;
  }

  .contact-notification input,
  .contact-notification select,
  .contact-notification textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .contact-notification textarea {
    min-height: 54px;
  }

  .notification-form-submit {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  #hero {
    min-height: 55vh;
    padding: 80px 0 45px;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 2rem !important;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero-content h1::after {
    width: 40px;
    height: 2px;
    bottom: -10px;
  }
  
  .hero-content .subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  .hero-badge {
    min-width: 200px;
    font-size: 0.85rem;
    padding: 12px 25px;
  }
  
  .btn-get-started {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .circular-stat {
    width: 90px !important;
    height: 90px !important;
    margin: 10px 5px !important;
  }
  
  .circular-stat svg {
    width: 90px !important;
    height: 90px !important;
  }
  
  .circular-stat h3 {
    font-size: 1.3rem !important;
  }
  
  .circular-stat p {
    font-size: 0.7rem !important;
  }
  
  .floating-badge {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .service-badge {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
  
  .who-we-are .section-title h2 {
    font-size: 1.9rem;
  }
  
  .who-we-are .section-subtitle {
    font-size: 1.1rem;
  }
  
  .highlight-text p {
    font-size: 1.1rem;
  }
  
  .stat-item {
    min-width: 100px;
    padding: 15px;
  }
  
  .stat-item h3 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .packages-section .section-header h2 {
    font-size: 1.8rem;
  }
  
  .packages-section .section-header h3 {
    font-size: 1.2rem;
  }

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

  .package-preview-grid {
    grid-template-columns: 1fr;
  }

  .package-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-card-price {
    font-size: 1.75rem;
  }

  .packages-cta-row {
    align-items: stretch;
  }

  .packages-cta-row .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .package-link {
    padding: 20px 15px;
  }
  
  .package-name {
    font-size: 1.1rem;
  }
  
  .package-price {
    font-size: 1rem;
  }
  
  .packages-section .btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .logo img {
    width: 50px !important;
    height: 50px !important;
    margin-right: 12px !important;
    margin-left: 0px !important;
  }
  
  .header.scrolled .logo img {
    width: 45px !important;
    height: 45px !important;
  }
}

/*--------------------------------------------------------------
# Desktop Dropdown Fix Styles
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar .dropdown {
    position: relative;
  }
  
  .navbar .dropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    min-width: 220px;
    z-index: 10000 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    overflow: visible !important;
    white-space: nowrap;
  }
  
  .navbar .dropdown:hover > ul,
  .navbar .dropdown.active > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .navbar .dropdown ul li {
    margin: 0;
    padding: 0;
  }
  
  .navbar .dropdown ul li a {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
  }
  
  .navbar .dropdown ul li a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
  }
  
  .navbar .dropdown ul li a i {
    margin-right: 8px;
    color: #ff6b35;
    font-size: 1rem;
  }
  
  /* Ensure proper z-index for dropdown on desktop */
  .header {
    z-index: 9999 !important;
    overflow: visible !important;
  }
  
  .navbar {
    z-index: 9998 !important;
    position: static !important;
    overflow: visible !important;
  }
  
  .navbar .dropdown {
    position: relative;
    z-index: 9997 !important;
    overflow: visible !important;
  }
  
  .navbar .dropdown > ul {
    z-index: 10000 !important;
    position: absolute !important;
    overflow: visible !important;
  }
  
  .navbar .dropdown:hover > ul,
  .navbar .dropdown.active > ul,
  .navbar .dropdown.dropdown-active > ul {
    z-index: 10001 !important;
    position: absolute !important;
    overflow: visible !important;
  }
}

/* Ensure hero section doesn't overlap dropdown */
#hero {
  z-index: 1 !important;
  position: relative;
}

/* Fix any other sections that might interfere */
section {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# CRITICAL MOBILE NAV FIX - Must be at end to override all
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  /* Force mobile nav panel visibility when active */
  body.mobile-nav-active #navbar.navbar {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 320px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #fff !important;
    background-color: #fff !important;
    z-index: 100006 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    isolation: isolate !important;
  }
  
  /* White background layer behind nav content */
  body.mobile-nav-active #navbar.navbar::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #fff !important;
    z-index: -1 !important;
  }
  
  /* Force nav list to show */
  body.mobile-nav-active #navbar.navbar > ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 80px 0 30px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    background: #fff !important;
    background-color: #fff !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  /* Force nav items to show */
  body.mobile-nav-active #navbar.navbar > ul > li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-bottom: 1px solid #eee !important;
  }
  
  /* Force nav links styling */
  body.mobile-nav-active #navbar.navbar a {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 16px 24px !important;
    color: #222222 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    background: #ffffff !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  body.mobile-nav-active #navbar.navbar a:hover {
    color: #feb900 !important;
    background: #fffbf0 !important;
  }
  
  /* Force dropdown submenu */
  body.mobile-nav-active #navbar.navbar .dropdown.dropdown-active > ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    margin-left: 0 !important;
    padding-left: 15px !important;
    border-left: 3px solid #feb900 !important;
    pointer-events: auto !important;
    list-style: none !important;
  }

  body.mobile-nav-active #navbar.navbar .dropdown ul,
  body.mobile-nav-active #navbar.navbar .dropdown ul li {
    list-style: none !important;
  }

  body.mobile-nav-active #navbar.navbar .dropdown ul li::marker {
    content: "" !important;
  }
  
  body.mobile-nav-active #navbar.navbar .dropdown ul a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #333333 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    text-align: left !important;
  }
  
  body.mobile-nav-active #navbar.navbar .dropdown ul a i {
    order: -1 !important;
    margin-right: 8px !important;
    color: #feb900 !important;
    font-size: 16px !important;
  }
  
  body.mobile-nav-active #navbar.navbar .dropdown ul li {
    pointer-events: auto !important;
  }
}

/*--------------------------------------------------------------
# Final Small-Screen Overflow Fixes
--------------------------------------------------------------*/
@media (max-width: 575px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .container,
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 100% !important;
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .row > * {
    min-width: 0;
  }

  .header .container-fluid,
  .header .container-xl {
    width: 100%;
    max-width: 100vw !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    gap: 8px;
    overflow: hidden;
  }

  .header .logo {
    max-width: calc(100vw - 64px) !important;
    min-width: 0;
  }

  .header .logo img,
  .logo img {
    width: 48px !important;
    height: auto !important;
    max-width: 48px !important;
    max-height: 42px !important;
    object-fit: contain;
    flex: 0 0 48px;
    margin-left: 0 !important;
    margin-right: 8px !important;
  }

  .header .logo h1 {
    max-width: calc(100vw - 132px) !important;
    min-width: 0;
    font-size: 0.98rem !important;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #hero,
  .projects-hero,
  .packages-hero,
  .contact-hero {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  #hero .container,
  #hero .row,
  #hero [class*="col-"],
  .projects-hero .container,
  .projects-hero .row,
  .projects-hero [class*="col-"],
  .packages-hero .container,
  .packages-hero .row,
  .packages-hero [class*="col-"],
  .contact-hero .container,
  .contact-hero .row,
  .contact-hero [class*="col-"] {
    max-width: 100% !important;
    min-width: 0;
  }

  .hero-content {
    width: 100%;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  #hero .service-badge,
  .projects-hero .service-badge,
  .packages-hero .hero-eyebrow {
    max-width: 100%;
    white-space: normal !important;
    text-align: center;
    line-height: 1.35;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  #hero h1,
  .projects-hero h1,
  .packages-hero h1,
  .contact-hero h1,
  .section-header h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  #hero .subtitle,
  .projects-hero p,
  .packages-hero p.lead,
  .contact-hero p,
  .contact-hero .lead,
  .section-header p,
  .section-header-modern p,
  .quote-modern {
    max-width: 100% !important;
    overflow-wrap: anywhere;
  }

  .hero-badges,
  .hero-actions,
  .projects-hero .hero-actions,
  .packages-hero .hero-action-buttons {
    width: 100%;
    max-width: 100%;
  }

  .hero-badge,
  .hero-actions a,
  .projects-hero .hero-actions a,
  .packages-hero .hero-action-buttons .btn,
  .btn-get-started,
  .btn-watch-video {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
    white-space: normal;
    margin-right: 0 !important;
    justify-content: center;
    text-align: center;
  }

  main > .services.section-bg .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    overflow-x: hidden;
  }

  main > .services.section-bg .section-header {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  main > .services.section-bg .section-header h2 {
    font-size: clamp(1.65rem, 7vw, 1.9rem) !important;
  }

  main > .services.section-bg .row {
    --bs-gutter-x: 0;
  }

  main > .services.section-bg .service-item {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 18px !important;
    padding-right: 18px !important;
    overflow: hidden;
  }

  main > .services.section-bg .service-item h3,
  main > .services.section-bg .service-item p {
    overflow-wrap: anywhere;
  }

  .projects-stats,
  .hero-metric,
  .contact-card,
  .service-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .projects-hero .projects-stats .stat-item {
    min-width: 0 !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
    padding: 14px 16px !important;
    text-align: left !important;
  }

  .projects-hero .projects-stats .stat-item h6,
  .projects-hero .projects-stats .stat-item p {
    color: #ffffff !important;
  }

  .projects-hero .projects-stats .stat-item p {
    color: rgba(255, 255, 255, 0.82) !important;
  }
}

/*--------------------------------------------------------------
# Menu Color And Overlay Fixes
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .header.scrolled .navbar a:hover,
  .header.scrolled .navbar li:hover > a,
  .header.scrolled .navbar .active,
  .header.scrolled .navbar .active:focus,
  .navbar .dropdown:hover > a,
  .navbar .dropdown:focus-within > a {
    color: #ff6b35 !important;
  }

  .navbar .dropdown > ul,
  .navbar .dropdown:hover > ul,
  .navbar .dropdown:focus-within > ul {
    background: #ffffff !important;
    opacity: 1;
    filter: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .navbar .dropdown:hover > ul,
  .navbar .dropdown:focus-within > ul {
    visibility: visible !important;
    transform: translateY(0) !important;
    top: 100% !important;
  }

  .navbar .dropdown ul a,
  .navbar .dropdown ul .dropdown-item {
    color: #1a252f !important;
    background: #ffffff !important;
    opacity: 1 !important;
    list-style: none !important;
  }

  .navbar .dropdown > ul,
  .navbar .dropdown ul li {
    list-style: none !important;
  }

  .navbar .dropdown ul li::marker {
    content: "" !important;
  }

  .navbar .dropdown ul li::before,
  .navbar .dropdown ul a::before {
    content: none !important;
    display: none !important;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul a:focus,
  .navbar .dropdown ul .dropdown-item:hover,
  .navbar .dropdown ul .dropdown-item:focus {
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  }
}

@media (max-width: 1279px) {
  body.mobile-nav-active::before {
    background: transparent !important;
    animation: none !important;
  }

  body.mobile-nav-active #navbar.navbar {
    background: #ffffff !important;
    box-shadow: -8px 0 28px rgba(0, 0, 0, 0.18) !important;
  }

  body.mobile-nav-active #navbar.navbar a {
    color: #1a252f !important;
    background: #ffffff !important;
    opacity: 1 !important;
    filter: none !important;
  }

  body.mobile-nav-active #navbar.navbar a:hover,
  body.mobile-nav-active #navbar.navbar a:focus,
  body.mobile-nav-active #navbar.navbar .active,
  body.mobile-nav-active #navbar.navbar .dropdown.dropdown-active > a {
    color: #ff6b35 !important;
    background: #fff7f1 !important;
  }

  body.mobile-nav-active #navbar.navbar .dropdown.dropdown-active > ul {
    background: #ffffff !important;
    border-left-color: #ff6b35 !important;
  }

  body.mobile-nav-active #navbar.navbar .dropdown ul a:hover,
  body.mobile-nav-active #navbar.navbar .dropdown ul a:focus {
    color: #ff6b35 !important;
    background: #fff3e9 !important;
  }
}

/*--------------------------------------------------------------
# Cross Page Compact Spacing Polish
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .who-we-are,
  .packages-section,
  #projects.projects-section-modern,
  #projects.projects {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  #testimonials.testimonials,
  main > .projects-hero + #projects.projects + section,
  main > .projects-hero + #projects.projects + section + section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .projects-hero,
  .materials-hero {
    min-height: 560px !important;
    padding-top: 130px !important;
    padding-bottom: 60px !important;
  }

  .materials-cta {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .category-filter {
    padding-top: 42px !important;
    padding-bottom: 28px !important;
  }

  body.packages-page .packages-hero {
    padding-top: 190px !important;
    padding-bottom: 72px !important;
  }

  body.packages-page .plans-section,
  body.packages-page .comparison-section,
  body.packages-page .addons-section,
  body.packages-page .process-section,
  body.packages-page .faq-section,
  body.packages-page .packages-cta {
    padding-top: 66px !important;
    padding-bottom: 66px !important;
  }

  body.packages-page .packages-journey {
    margin-top: 36px !important;
    padding-bottom: 18px !important;
  }

  body.packages-page .journey-tier {
    gap: 24px !important;
    margin-bottom: 70px !important;
  }

  body.packages-page .section-intro h2 {
    font-size: clamp(1.9rem, 3vw, 2.55rem) !important;
  }
}

@media (max-width: 991px) {
  .who-we-are,
  .packages-section,
  #projects.projects-section-modern,
  #projects.projects,
  #testimonials.testimonials {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .projects-hero,
  .packages-hero,
  .materials-hero {
    min-height: auto !important;
    padding-top: 108px !important;
    padding-bottom: 46px !important;
  }

  .materials-cta,
  .category-filter {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  body.packages-page .plans-section,
  body.packages-page .comparison-section,
  body.packages-page .addons-section,
  body.packages-page .process-section,
  body.packages-page .faq-section,
  body.packages-page .packages-cta {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }

  body.packages-page .packages-journey {
    margin-top: 28px !important;
    padding-bottom: 8px !important;
  }

  body.packages-page .journey-tier {
    margin-bottom: 34px !important;
  }

  .projects-grid-modern,
  .projects .portfolio-container {
    gap: 18px !important;
  }
}

@media (max-width: 575px) {
  .who-we-are,
  .packages-section,
  #projects.projects-section-modern,
  #projects.projects,
  #testimonials.testimonials {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .projects-hero,
  .packages-hero,
  .materials-hero {
    padding-top: 96px !important;
    padding-bottom: 38px !important;
  }

  body.packages-page .hero-offer-card {
    padding: 22px !important;
  }
}

/*--------------------------------------------------------------
# Service Pages Compact Cards
--------------------------------------------------------------*/
@media (min-width: 992px) {
  body.service-page #main > section.py-5,
  body.service-page .cta-section {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }

  body.service-page .row.g-4 {
    --bs-gutter-x: 1.25rem !important;
    --bs-gutter-y: 1.25rem !important;
  }

  body.service-page .section-header {
    margin-bottom: 2rem !important;
  }

  body.service-page .section-header h2 {
    font-size: clamp(1.85rem, 2.7vw, 2.35rem) !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
  }

  body.service-page .section-header p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  body.service-page .service-card,
  body.service-page .tech-card,
  body.service-page .benefit-card,
  body.service-page .consultation-option,
  body.service-page #main > section.py-5 .process-step,
  body.service-page .process-flow {
    border-radius: 14px !important;
    padding: 22px !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09) !important;
  }

  body.service-page .portfolio-card,
  body.service-page .transformation-card,
  body.service-page .portfolio-item.auto-slide-card {
    border-radius: 14px !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09) !important;
  }

  body.service-page .portfolio-item.auto-slide-card,
  body.service-page .portfolio-item.auto-slide-card .auto-slide-img {
    height: 320px !important;
  }

  body.service-page .transformation-images {
    height: 205px !important;
  }

  body.service-page .portfolio-image {
    height: 170px !important;
  }

  body.service-page .portfolio-content,
  body.service-page .transformation-details {
    padding: 18px !important;
  }

  .services .service-item {
    padding: 30px !important;
  }

  .services .service-item .icon {
    margin-bottom: 32px !important;
  }
}

body.service-page .service-icon,
body.service-page .tech-icon {
  width: 62px !important;
  height: 62px !important;
  margin-bottom: 16px !important;
  font-size: 1.55rem !important;
}

body.service-page .benefit-icon,
body.service-page .option-icon {
  width: 46px !important;
  height: 46px !important;
  margin-right: 14px !important;
}

body.service-page .section-badge {
  padding: 6px 16px !important;
  font-size: 0.82rem !important;
  margin-bottom: 10px !important;
}

body.service-page .service-card h4,
body.service-page .tech-card h5,
body.service-page .benefit-card h5,
body.service-page .consultation-option h5,
body.service-page #main > section.py-5 .process-step h5,
body.service-page .portfolio-content h5,
body.service-page .transformation-details h5 {
  margin-bottom: 10px !important;
  font-size: 1.12rem !important;
  line-height: 1.25 !important;
}

body.service-page .service-card p,
body.service-page .tech-card p,
body.service-page .benefit-card p,
body.service-page .consultation-option p,
body.service-page #main > section.py-5 .process-step p,
body.service-page .portfolio-content p,
body.service-page .transformation-details p {
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
  margin-bottom: 14px !important;
}

body.service-page .service-card ul {
  margin-bottom: 0 !important;
}

body.service-page .service-card li,
body.service-page .consultation-option li {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  font-size: 0.9rem !important;
  line-height: 1.35 !important;
}

body.service-page .service-card:hover,
body.service-page .tech-card:hover,
body.service-page .benefit-card:hover,
body.service-page .consultation-option:hover,
body.service-page #main > section.py-5 .process-step:hover,
body.service-page .portfolio-card:hover,
body.service-page .transformation-card:hover {
  transform: translateY(-4px) !important;
}

@media (max-width: 991px) {
  body.service-page #main > section.py-5,
  body.service-page .cta-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  body.service-page .row.g-4 {
    --bs-gutter-x: 1rem !important;
    --bs-gutter-y: 1rem !important;
  }

  body.service-page .section-header {
    margin-bottom: 1.6rem !important;
  }

  body.service-page .section-header h2 {
    font-size: clamp(1.65rem, 5vw, 2rem) !important;
    margin-bottom: 10px !important;
  }

  body.service-page .section-header p {
    font-size: 0.96rem !important;
    line-height: 1.45 !important;
  }

  body.service-page .service-card,
  body.service-page .tech-card,
  body.service-page .benefit-card,
  body.service-page .consultation-option,
  body.service-page #main > section.py-5 .process-step,
  body.service-page .process-flow {
    border-radius: 12px !important;
    padding: 18px !important;
  }

  body.service-page .portfolio-item.auto-slide-card,
  body.service-page .portfolio-item.auto-slide-card .auto-slide-img {
    height: 250px !important;
  }

  body.service-page .transformation-images {
    height: 190px !important;
  }

  body.service-page .portfolio-image {
    height: 160px !important;
  }

  body.service-page .portfolio-content,
  body.service-page .transformation-details {
    padding: 16px !important;
  }

  .services .service-item {
    padding: 28px !important;
  }

  .services .service-item .icon {
    margin-bottom: 28px !important;
  }
}

@media (max-width: 575px) {
  body.service-page #main > section.py-5,
  body.service-page .cta-section {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  body.service-page .service-card,
  body.service-page .tech-card,
  body.service-page .benefit-card,
  body.service-page .consultation-option,
  body.service-page #main > section.py-5 .process-step,
  body.service-page .process-flow {
    padding: 16px !important;
  }

  body.service-page .service-icon,
  body.service-page .tech-icon {
    width: 54px !important;
    height: 54px !important;
    margin-bottom: 14px !important;
    font-size: 1.35rem !important;
  }

  body.service-page .benefit-icon,
  body.service-page .option-icon {
    width: 40px !important;
    height: 40px !important;
    margin-right: 12px !important;
  }

  body.service-page .portfolio-item.auto-slide-card,
  body.service-page .portfolio-item.auto-slide-card .auto-slide-img {
    height: 220px !important;
  }

  body.service-page .transformation-images {
    height: 170px !important;
  }

  body.service-page .portfolio-image {
    height: 145px !important;
  }

  body.service-page .service-card h4,
  body.service-page .tech-card h5,
  body.service-page .benefit-card h5,
  body.service-page .consultation-option h5,
  body.service-page #main > section.py-5 .process-step h5,
  body.service-page .portfolio-content h5,
  body.service-page .transformation-details h5 {
    font-size: 1.04rem !important;
  }

  body.service-page .service-card p,
  body.service-page .tech-card p,
  body.service-page .benefit-card p,
  body.service-page .consultation-option p,
  body.service-page #main > section.py-5 .process-step p,
  body.service-page .portfolio-content p,
  body.service-page .transformation-details p {
    font-size: 0.88rem !important;
  }

  .services .service-item {
    padding: 24px !important;
  }
}

@media (max-width: 575px) {
  .header .container-fluid,
  .header .container-xl {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    overflow: visible !important;
  }

  .header .logo {
    flex: 1 1 auto !important;
    max-width: calc(100vw - 92px) !important;
    min-width: 0 !important;
  }

  .header .logo img,
  .logo img {
    flex: 0 0 40px !important;
    width: 40px !important;
    max-width: 40px !important;
    max-height: 38px !important;
    margin-right: 7px !important;
  }

  .header .logo h1 {
    max-width: calc(100vw - 148px) !important;
    font-size: 0.82rem !important;
    line-height: 1.08 !important;
    white-space: normal !important;
    overflow: hidden !important;
    text-overflow: clip !important;
  }

  .header .logo h1 br {
    display: block !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    margin-left: auto !important;
  }

  .mobile-nav-show {
    position: absolute !important;
    top: 8px !important;
    right: clamp(12px, calc(100vw - 382px), 96px) !important;
    z-index: 10010 !important;
    color: #2c3e50 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
  }

  .mobile-nav-show::before {
    content: "\2630" !important;
    font-family: Arial, sans-serif !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }

  .mobile-nav-hide::before {
    content: "\00d7" !important;
    font-family: Arial, sans-serif !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }
}

/*--------------------------------------------------------------
# Smartphone Render Corrections
--------------------------------------------------------------*/
@media (max-width: 575px) {
  .mobile-nav-show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: 8px !important;
    right: clamp(12px, calc(100vw - 382px), 96px) !important;
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
    font-size: 0 !important;
    line-height: 1 !important;
    background: #ffffff !important;
    border: 1px solid rgba(26, 37, 47, 0.08) !important;
    border-radius: 10px !important;
    box-shadow: 0 6px 18px rgba(26, 37, 47, 0.16) !important;
    z-index: 100008 !important;
  }

  .mobile-nav-show::before {
    content: "" !important;
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: #1a252f !important;
    border-radius: 3px !important;
    box-shadow: 0 -7px 0 #1a252f, 0 7px 0 #1a252f !important;
    font-family: Arial, sans-serif !important;
  }

  .mobile-nav-show::after {
    content: none !important;
  }

  .mobile-nav-bars {
    display: block !important;
    position: relative !important;
    width: 22px !important;
    height: 16px !important;
  }

  .mobile-nav-bars span {
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    width: 22px !important;
    height: 2px !important;
    background: #1a252f !important;
    border-radius: 3px !important;
  }

  .mobile-nav-bars span:nth-child(1) {
    top: 0 !important;
  }

  .mobile-nav-bars span:nth-child(2) {
    top: 7px !important;
  }

  .mobile-nav-bars span:nth-child(3) {
    top: 14px !important;
  }

  .mobile-nav-hide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 0 !important;
  }

  .mobile-nav-hide.d-none,
  .mobile-nav-show.d-none {
    display: none !important;
  }

  .mobile-nav-hide::before,
  .mobile-nav-hide::after {
    content: "" !important;
    position: absolute !important;
    width: 22px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 3px !important;
    font-family: Arial, sans-serif !important;
  }

  .mobile-nav-hide::before {
    transform: rotate(45deg) !important;
  }

  .mobile-nav-hide::after {
    transform: rotate(-45deg) !important;
  }

  .mobile-nav-close-icon {
    display: block !important;
    position: relative !important;
    width: 22px !important;
    height: 22px !important;
  }

  .mobile-nav-close-icon::before,
  .mobile-nav-close-icon::after {
    content: "" !important;
    position: absolute !important;
    top: 10px !important;
    left: 0 !important;
    width: 22px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 3px !important;
  }

  .mobile-nav-close-icon::before {
    transform: rotate(45deg) !important;
  }

  .mobile-nav-close-icon::after {
    transform: rotate(-45deg) !important;
  }

  #hero {
    min-height: auto !important;
    padding-top: 58px !important;
    padding-bottom: 44px !important;
  }

  #hero .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  #hero .hero-content {
    max-width: 20rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    animation: none !important;
  }

  #hero .hero-content h1 {
    max-width: 18rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 2.05rem !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  #hero .hero-content h1 span {
    white-space: normal !important;
  }

  #hero .hero-content .subtitle {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  #hero .hero-badges,
  #hero .hero-actions,
  #hero .hero-stats-modern,
  #hero .achievement-badges {
    max-width: 19rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #hero .hero-badge,
  #hero .hero-actions a,
  #hero .floating-badge {
    max-width: 19rem !important;
    width: 100% !important;
    justify-content: center !important;
  }

  body.service-page .interior-hero,
  body.service-page .exterior-hero,
  body.service-page .commercial-hero,
  body.service-page .predesign-hero,
  body.service-page .residential-hero,
  body.service-page .renovation-hero,
  body.service-page .consultation-hero {
    width: 100% !important;
    max-width: 100vw !important;
    min-height: auto !important;
    padding-top: 42px !important;
    padding-bottom: 38px !important;
    overflow: hidden !important;
  }

  body.service-page .interior-hero .container,
  body.service-page .exterior-hero .container,
  body.service-page .commercial-hero .container,
  body.service-page .predesign-hero .container,
  body.service-page .residential-hero .container,
  body.service-page .renovation-hero .container,
  body.service-page .consultation-hero .container {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    overflow: hidden !important;
  }

  body.service-page .interior-hero .row,
  body.service-page .exterior-hero .row,
  body.service-page .commercial-hero .row,
  body.service-page .predesign-hero .row,
  body.service-page .residential-hero .row,
  body.service-page .renovation-hero .row,
  body.service-page .consultation-hero .row,
  body.service-page .interior-hero [class*="col-"],
  body.service-page .exterior-hero [class*="col-"],
  body.service-page .commercial-hero [class*="col-"],
  body.service-page .predesign-hero [class*="col-"],
  body.service-page .residential-hero [class*="col-"],
  body.service-page .renovation-hero [class*="col-"],
  body.service-page .consultation-hero [class*="col-"] {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.service-page .interior-hero h1,
  body.service-page .exterior-hero h1,
  body.service-page .commercial-hero h1,
  body.service-page .predesign-hero h1,
  body.service-page .residential-hero h1,
  body.service-page .renovation-hero h1,
  body.service-page .consultation-hero h1 {
    max-width: 18.5rem !important;
    font-size: 2rem !important;
    line-height: 1.14 !important;
    letter-spacing: 0 !important;
    margin-bottom: 18px !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  body.service-page .interior-hero h1 span,
  body.service-page .exterior-hero h1 span,
  body.service-page .commercial-hero h1 span,
  body.service-page .predesign-hero h1 span,
  body.service-page .residential-hero h1 span,
  body.service-page .renovation-hero h1 span,
  body.service-page .consultation-hero h1 span {
    white-space: normal !important;
  }

  body.service-page .interior-hero p,
  body.service-page .exterior-hero p,
  body.service-page .commercial-hero p,
  body.service-page .predesign-hero p,
  body.service-page .residential-hero p,
  body.service-page .renovation-hero p,
  body.service-page .consultation-hero p {
    max-width: 19rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  body.service-page .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 19rem !important;
  }

  body.service-page .hero-actions a,
  body.service-page .hero-actions .btn {
    width: 100% !important;
    margin-right: 0 !important;
    text-align: center !important;
    justify-content: center !important;
  }

  body.service-page .hero-stats,
  body.service-page .hero-features,
  body.service-page .hero-process,
  body.service-page .consultation-stats,
  body.service-page .hero-business-features,
  body.service-page .planning-benefits {
    width: 100% !important;
    max-width: 19rem !important;
    margin-top: 22px !important;
    padding: 18px !important;
  }

  body.service-page .scroll-indicator {
    display: none !important;
  }

  #about.about .container,
  #about.about .row,
  #about.about [class*="col-"],
  .contact-cards .container,
  .contact-cards .row,
  .contact-cards [class*="col-"] {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  #about.about .our-story,
  .contact-card {
    width: 100% !important;
    max-width: 19rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  #about.about .our-story h2 {
    max-width: 100% !important;
    font-size: 1.55rem !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  #about.about .story-lead,
  #about.about .story-highlight p,
  .contact-card p,
  .contact-card a {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .contact-hero h1,
  .contact-hero p,
  .contact-hero .lead {
    max-width: 17.5rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .whatsapp {
    right: clamp(1rem, calc(100vw - 382px), 5.5rem) !important;
  }

  .whatsapp-float {
    right: clamp(1rem, calc(100vw - 382px), 5.5rem) !important;
  }
}

@media (max-width: 380px) {
  #hero .hero-content,
  #hero .hero-badges,
  #hero .hero-actions,
  #hero .hero-stats-modern,
  #hero .achievement-badges {
    max-width: 17.5rem !important;
  }

  #hero .hero-content h1,
  body.service-page .interior-hero h1,
  body.service-page .exterior-hero h1,
  body.service-page .commercial-hero h1,
  body.service-page .predesign-hero h1,
  body.service-page .residential-hero h1,
  body.service-page .renovation-hero h1,
  body.service-page .consultation-hero h1 {
    max-width: 17rem !important;
    font-size: 1.85rem !important;
  }
}

/*--------------------------------------------------------------
# Services Overview Page Refresh
--------------------------------------------------------------*/
body.services-overview-page {
  background: #fff8f3;
  color: #263647;
}

.services-overview-hero {
  position: relative;
  min-height: 620px;
  padding: 150px 0 86px;
  background:
    linear-gradient(135deg, rgba(26, 37, 47, 0.92) 0%, rgba(255, 107, 53, 0.8) 58%, rgba(247, 147, 30, 0.78) 100%),
    url("../img/hero-carousel/hero-carousel-1.jpg") center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.services-overview-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.2), transparent 20%),
    linear-gradient(180deg, transparent 72%, rgba(255, 248, 243, 0.92) 100%);
  pointer-events: none;
}

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

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.services-overview-hero h1 {
  max-width: 780px;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.services-overview-hero h1 span {
  color: #ff8a1f;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

.services-overview-hero .hero-copy {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  line-height: 1.7;
}

.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.services-hero-actions .btn {
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.services-hero-actions .btn-primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: 0;
  box-shadow: 0 16px 36px rgba(255, 107, 53, 0.34);
}

.services-hero-actions .btn-outline-light {
  border-width: 2px;
}

.services-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 690px;
}

.services-hero-metric {
  min-height: 94px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.services-hero-metric strong {
  display: block;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.1;
  margin-bottom: 6px;
}

.services-hero-metric span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.35;
}

.services-hero-panel {
  position: relative;
  padding: 32px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.services-hero-panel h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 800;
}

.services-hero-panel p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 24px;
}

.hero-panel-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #263647;
}

.hero-panel-list i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  font-size: 1.25rem;
}

.hero-panel-list strong {
  display: block;
  font-size: 1rem;
  color: #1f2d3d;
}

.hero-panel-list span {
  display: block;
  color: #5b6b7c;
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-panel-list li > div {
  min-width: 0;
}

.services-suite-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: #fff8f3;
}

.services-overview-page .section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ff6b35;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.services-overview-page .section-heading {
  max-width: 760px;
  margin: 0 auto 16px;
  color: #182635;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.12;
  font-weight: 800;
  text-align: center;
}

.services-overview-page .section-copy {
  max-width: 720px;
  margin: 0 auto 48px;
  color: #667586;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.65;
}

.services-suite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-suite-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(255, 107, 53, 0.12);
  box-shadow: 0 18px 45px rgba(26, 37, 47, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-suite-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.32);
  box-shadow: 0 24px 60px rgba(26, 37, 47, 0.13);
}

.service-suite-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  font-size: 1.55rem;
  margin-bottom: 22px;
  box-shadow: 0 12px 26px rgba(255, 107, 53, 0.22);
}

.service-suite-card h3 {
  color: #1f2d3d;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-suite-card p {
  color: #627184;
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-suite-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff6b35;
  font-weight: 800;
}

.service-path-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: #ffffff;
}

.service-path-image {
  min-height: 520px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(26, 37, 47, 0.05), rgba(255, 107, 53, 0.15)), url("../img/alt-services.jpg") center/cover no-repeat;
  box-shadow: 0 24px 70px rgba(26, 37, 47, 0.12);
}

.service-path-content {
  max-width: 560px;
  margin-left: auto;
}

.service-path-content h2 {
  color: #182635;
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
}

.service-path-content > p {
  color: #627184;
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

.service-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(26, 37, 47, 0.1);
}

.service-step span {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff2e9;
  color: #ff6b35;
  font-weight: 800;
}

.service-step h3 {
  margin: 0 0 6px;
  color: #1f2d3d;
  font-size: 1.05rem;
  font-weight: 800;
}

.service-step p {
  margin: 0;
  color: #667586;
  line-height: 1.55;
}

.services-cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: linear-gradient(135deg, #1f2d3d 0%, #ff6b35 58%, #f7931e 100%);
  color: #ffffff;
}

.services-cta-band h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.services-cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.services-cta-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.services-cta-actions .btn {
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
}

@media (max-width: 991px) {
  .services-overview-hero {
    min-height: auto;
    padding: 118px 0 68px;
  }

  .services-hero-metrics,
  .services-suite-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-path-content {
    max-width: none;
    margin-left: 0;
  }

  .service-path-image {
    min-height: 360px;
  }

  .services-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  body.services-overview-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  body.services-overview-page .container,
  body.services-overview-page .container-fluid {
    max-width: 100vw !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    overflow-x: hidden;
  }

  body.services-overview-page .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.services-overview-page [class*="col-"] {
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .services-overview-hero {
    padding: 92px 0 56px;
  }

  .services-overview-hero h1 {
    max-width: calc(100vw - 48px);
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .services-overview-hero .hero-copy {
    max-width: calc(100vw - 48px);
    font-size: 1rem;
    line-height: 1.6;
  }

  .service-pill,
  .services-hero-panel,
  .services-hero-metrics,
  .services-overview-page .section-heading,
  .services-overview-page .section-copy,
  .services-suite-grid,
  .service-suite-card,
  .service-path-content,
  .services-cta-band h2,
  .services-cta-band p {
    width: 100%;
    max-width: calc(100vw - 48px) !important;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .service-pill,
  .services-overview-hero h1,
  .services-overview-hero .hero-copy,
  .services-hero-actions,
  .services-hero-panel,
  .services-hero-metrics,
  .services-overview-page .section-heading,
  .services-overview-page .section-copy,
  .services-suite-grid,
  .service-suite-card,
  .service-path-content,
  .services-cta-actions,
  .services-cta-band h2,
  .services-cta-band p {
    max-width: 19rem !important;
  }

  .service-pill {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .services-overview-page h1,
  .services-overview-page h2,
  .services-overview-page h3,
  .services-overview-page p,
  .services-overview-page a,
  .services-overview-page span,
  .services-overview-page strong {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .services-hero-actions,
  .services-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: calc(100vw - 48px);
    margin-left: auto;
    margin-right: auto;
  }

  .services-hero-actions .btn,
  .services-cta-actions .btn {
    width: 100%;
  }

  .services-hero-metrics,
  .services-suite-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-panel,
  .service-suite-card {
    padding: 24px;
    border-radius: 18px;
  }

  .services-suite-section,
  .service-path-section,
  .services-cta-band {
    padding: 58px 0;
  }

  .service-path-image {
    min-height: 280px;
  }

  .service-step {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .service-step span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}
