/* 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: #7D7D7D;
  --color-primary: #1C1C1C;
  --color-secondary: #FFD700;
  --color-accent: #FFD700;
  --color-light: #F5F5F5;
  --color-dark: #1C1C1C;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
  background-color: var(--color-light);
}

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

a:hover {
  color: var(--color-dark);
  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: var(--color-light);
}

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

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: var(--color-dark);
}

.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: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 100px;
  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;
}

/*--------------------------------------------------------------
# Floating WhatsApp Button
--------------------------------------------------------------*/
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp i {
  color: white;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  /* Adjust scroll-top position on mobile to avoid overlap */
  .scroll-top {
    bottom: 80px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  opacity: 1;
  visibility: visible;
}

#preloader.hidden,
#preloader[style*="opacity: 0"] {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: var(--color-dark);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

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

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

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 1997;
  height: 90px;
  width: 90%;
  margin: auto;
  border: 2px;
  background-color: var(--color-dark);
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

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

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# header-sec
--------------------------------------------------------------*/

.header-sec{
  align-items: center;
  background-color: var(--color-accent);
}

/* Hide only the white branding section on mobile, keep navigation visible */
@media (max-width: 767px) {
  /* Hide the first row containing the branding and contact info */
  .header-sec > .row:first-child {
    display: none !important;
  }
  
  /* Reduce header-sec height on mobile since branding is hidden */
  .header-sec {
    height: auto !important;
    min-height: auto;
    padding: 0;
    background: transparent !important;
  }
  
  /* Ensure navigation bar is visible */
  .header-sec > .row:last-child,
  .header-sec #header {
    display: flex !important;
  }
}

/*--------------------------------------------------------------
# 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-secondary);
    font-size: 16px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    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-secondary);
    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% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #006a5d;
  }

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

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

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

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

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 131, 116, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 106, 93, 0.8);
    z-index: 9996;
  }
}


/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 14px;
}

.get-started .php-email-form {
  background: #fff;
  padding: 30px;
  height: 100%;
}

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

.get-started .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

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

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

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

.get-started .php-email-form .loading:before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  margin: 0 10px -6px 0;
  position: relative;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    var(--color-dark) 0%, 
    var(--color-primary) 25%, 
    var(--color-secondary) 50%, 
    var(--color-primary) 75%, 
    var(--color-dark) 100%);
  background-size: 200% 200%;
  animation: granite-pulse 2s ease-in-out infinite, granite-texture 3s linear infinite;
  box-shadow: 
    inset 0 0 20px rgba(0,0,0,0.3),
    0 0 20px rgba(139, 115, 85, 0.2);
}

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

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

.get-started .php-email-form input {
  padding: 12px 15px;
}

.get-started .php-email-form textarea {
  padding: 12px 15px;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
  border: 1px solid var(--color-accent);
  box-shadow: 0px 0 25px 0 rgba(139, 115, 85, 0.1);
}

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Projects Section
--------------------------------------------------------------*/
.projects .portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

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

.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

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

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

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

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

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

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

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img-bg {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 500px;
  height: 100%;
  border-radius: 8px;
  background-color: #f5f5f5;
}

/* Responsive adjustments for landscape images in alt-services */
@media (max-width: 992px) {
  .alt-services .img-bg {
  min-height: 400px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .alt-services .img-bg {
    min-height: 300px;
  }
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: #000;
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--color-primary);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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

/*--------------------------------------------------------------
# Team Section - Creative Design
--------------------------------------------------------------*/
.team-member-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(139, 115, 85, 0.2);
}

.team-member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.9), rgba(210, 180, 140, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.team-member-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 15px;
}

.team-social-link {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team-social-link:hover {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.team-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

.team-member-info {
  padding: 30px;
  text-align: center;
}

.team-member-info h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.team-role {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.team-member-info p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 25px;
}

.team-stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: var(--color-default);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team Values Section */
.team-values {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.team-values h3 {
  color: var(--color-dark);
  font-weight: 700;
  margin-bottom: 30px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, var(--color-light), var(--color-accent));
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(139, 115, 85, 0.3);
}

.value-card h5 {
  color: var(--color-dark);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.value-card p {
  color: var(--color-default);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-member-image {
    height: 250px;
  }
  
  .team-member-info {
    padding: 20px;
  }
  
  .team-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .value-card {
    padding: 20px 15px;
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

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

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

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

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

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

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  margin: 0 10px -6px 0;
  position: relative;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    var(--color-dark) 0%, 
    var(--color-primary) 25%, 
    var(--color-secondary) 50%, 
    var(--color-primary) 75%, 
    var(--color-dark) 100%);
  background-size: 200% 200%;
  animation: granite-pulse 2s ease-in-out infinite, granite-texture 3s linear infinite;
  box-shadow: 
    inset 0 0 20px rgba(0,0,0,0.3),
    0 0 20px rgba(139, 115, 85, 0.2);
}

.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 {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.recent-blog-posts .post-item .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FFD700;
  color: #1C1C1C;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 700;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.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; */
  margin-top: 10px;
  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 50px;
  }
}

.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: 36px;
  }
}

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

.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;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

.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;
  top: 10px;
  right: 10px;
  background: #FFD700;
  color: #1C1C1C;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 700;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.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 details title - now h1 for better SEO */
.blog .blog-details .title,
.blog .blog-details h1.title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

/* Maintain backward compatibility for h2 titles */
.blog .blog-details h2.title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

/* Logo text styling - now h2 and h3 */
.logo-text h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal-black);
}

.logo-text h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal-black);
}

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

.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
}

.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: #fff;
  position: relative;
  padding-bottom: 12px;
}

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

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



 .btn-ps {
        background-color: #feb900;
        ;
    }

    .btn-ps:hover {
        border: #feb900 2px solid;
    }


#more {display: none;}




/* indexs some important css propery*/

@media only screen and (max-width: 767px) {
    #myDiv {
      display: none;
    }
  }
    #panel1,
    #flip1 {
        padding: 5px;
        text-align: left;
        background-color: white;
        border: solid 1px #c3c3c3;
    }

    #panel1 {
        padding: 50px;
        display: none;
    }

    #panel2,
    #flip2 {
        padding: 5px;
        text-align: left;
        background-color: white;
        border: solid 1px #c3c3c3;
    }

    #panel2 {
        padding: 50px;
        display: none;
    }

    #panel3,
    #flip3 {
        padding: 8px;
        text-align: left;
         background-color: #f5f6f7; 
        background-color: white;
        border: solid 1px #c3c3c3;
    }

    #panel3 {
        padding: 50px;
        display: none;
    }

    #panel4,
    #flip4 {
        padding: 5px;
        text-align: left;
        background-color: white;
        border: solid 1px #c3c3c3;
    }

    #panel4 {
        padding: 50px;
        display: none;
    }
    
    #panel5,
    #flip5 {
        padding: 5px;
        text-align: left;
        background-color: white;
        border: solid 1px #c3c3c3;
    }

    #panel5 {
        padding: 50px;
        display: none;
    }
    
    #panel6,
    #flip6 {
        padding: 5px;
        text-align: left;
        background-color: white;
        border: solid 1px #c3c3c3;
    }

    #panel6 {
        padding: 50px;
        display: none;
    }
    
    #panel7,
    #flip7 {
        padding: 5px;
        text-align: left;
        background-color: white;
        border: solid 1px #c3c3c3;
    }

    #panel7 {
        padding: 50px;
        display: none;
    }
    
    #panel8,
    #flip8 {
        padding: 5px;
        text-align: left;
        background-color: white;
        border: solid 1px #c3c3c3;
    }

    #panel8 {
        padding: 50px;
        display: none;
    }
    
    #panel9,
    #flip9 {
        padding: 5px;
        text-align: left;
        background-color: white;
        border: solid 1px #c3c3c3;
    }

    #panel9 {
        padding: 50px;
        display: none;
    }



    .btn-outline-bp {
        border: 2px solid;
        color: black;
        border-color: black;
        border-radius: 10px;
        padding: 5px 20px;
    }

    .btn-outline-bp:hover {
        background: black;
        color: white;
    }

    #srv {
        display: flex;
        justify-content: center;
    }

    .card {
        margin: auto;
        width: 80%;
        background: white;
        height: auto;
        box-shadow: rgb(38, 57, 77) 0px 20px 50px -10px;

    }

    .frm {
        margin: 20px 35px;
    }

    .fg-btn {
        color: blue;
        cursor: pointer;
    }

    .ud-space {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /* Custom Brown and Beige Theme Enhancements */
    .icon-box {
        background: var(--color-light);
        border-left: 4px solid var(--color-primary);
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .icon-box:hover {
        background: var(--color-accent);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(139, 115, 85, 0.2);
    }

    .card {
        border: 1px solid var(--color-secondary);
        background: var(--color-light);
    }

    .btn-warning {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: white;
    }

    .btn-warning:hover {
        background-color: var(--color-dark);
        border-color: var(--color-dark);
        color: white;
    }

    .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.25);
}

/* Hero Section Improvements */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-brand {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    animation: brandUnderline 2s ease-in-out infinite;
}

@keyframes brandUnderline {
    0%, 100% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 25px;
    border-radius: 8px;
    backdrop-filter: blur(3px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-view-products {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-view-products:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

/* Product Cards - Shopping Experience */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.2);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

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

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.product-actions a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-actions a:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    color: var(--color-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-category {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info p {
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.8em; /* Approximately 2 lines of text */
}

.product-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--color-light);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--color-secondary);
}

.btn-view-all-products {
    background: var(--color-primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--color-primary);
}

.btn-view-all-products:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-actions {
        gap: 0.5rem;
    }
    
    .product-actions a {
        width: 40px;
        height: 40px;
    }
}

/* Lazy Loading and Performance Optimization */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy.loaded {
    opacity: 1;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[src] {
    opacity: 1;
}

/* Progressive image loading */
.progressive-image {
    position: relative;
    overflow: hidden;
}

.progressive-image img {
    transition: filter 0.3s ease;
}

.progressive-image.loading img {
    filter: blur(10px);
}

.progressive-image.loaded img {
    filter: blur(0);
}

/* Optimize hero carousel images */
.hero .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

/* Optimize product images */
.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

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

/* Fallback for missing images */
.product-image:empty::before {
    content: "Image not available";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 14px;
}

/* Optimize team images */
.team .member img {
    object-fit: cover;
    width: 100%;
    height: 300px;
}

/* Optimize blog images */
.post-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.post-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.post-img img:hover {
    transform: scale(1.05);
}

/* Fallback for missing blog images */
.post-img:empty::before {
    content: "Image not available";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 14px;
}

/* Optimize blog images */
.blog .entry img {
    object-fit: cover;
    width: 100%;
    height: 250px;
}

/* Loading skeleton for better UX */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Optimize for mobile */
@media (max-width: 576px) {
    .hero .carousel-item img {
        height: 50vh;
        min-height: 400px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .team .member img {
        height: 200px;
    }
}

/* Carousel progressive loading */
.carousel-item[data-bg-image] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

/* Fallback background images */
.carousel-item[data-bg-image="assets/img/slide1.jpg"] {
    background-image: url('/assets/img/slide1.jpg');
}

.carousel-item[data-bg-image="assets/img/slide2.jpg"] {
    background-image: url('/assets/img/slide2.jpg');
}

.carousel-item[data-bg-image="assets/img/slide3.jpg"] {
    background-image: url('/assets/img/slide3.jpg');
}

.carousel-item[data-bg-image].loading {
    background-color: var(--color-light);
}

.carousel-item[data-bg-image].loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--color-light) 25%, var(--color-accent) 50%, var(--color-light) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.carousel-item[data-bg-image].loaded::before {
    display: none;
}

/*--------------------------------------------------------------
# Granite Loader Animation
--------------------------------------------------------------*/
.granite-loader {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.granite-loader::before,
.granite-loader::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: granite-pulse 2s ease-in-out infinite;
}

.granite-loader::before {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    var(--color-dark) 0%, 
    var(--color-primary) 25%, 
    var(--color-secondary) 50%, 
    var(--color-primary) 75%, 
    var(--color-dark) 100%);
  background-size: 200% 200%;
  animation: granite-pulse 2s ease-in-out infinite, granite-texture 3s linear infinite;
  box-shadow: 
    inset 0 0 20px rgba(0,0,0,0.3),
    0 0 20px rgba(139, 115, 85, 0.2);
}

.granite-loader::after {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  background: linear-gradient(45deg, 
    var(--color-accent) 0%, 
    var(--color-light) 50%, 
    var(--color-accent) 100%);
  background-size: 150% 150%;
  animation: granite-pulse 2s ease-in-out infinite reverse, granite-texture 2.5s linear infinite reverse;
  box-shadow: 
    inset 0 0 15px rgba(255,255,255,0.4),
    0 0 10px rgba(210, 180, 140, 0.3);
}

.granite-loader .granite-core {
  position: absolute;
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  background: radial-gradient(circle, 
    var(--color-light) 0%, 
    var(--color-accent) 40%, 
    var(--color-secondary) 70%, 
    var(--color-primary) 100%);
  border-radius: 50%;
  animation: granite-rotate 1.5s linear infinite;
  box-shadow: 
    inset 0 0 10px rgba(255,255,255,0.6),
    0 0 15px rgba(139, 115, 85, 0.4);
}

.granite-loader .granite-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-light);
  border-radius: 50%;
  animation: granite-sparkle 1s ease-in-out infinite;
}

.granite-loader .granite-sparkle:nth-child(1) {
  top: 10%;
  left: 50%;
  animation-delay: 0s;
}

.granite-loader .granite-sparkle:nth-child(2) {
  top: 50%;
  right: 10%;
  animation-delay: 0.2s;
}

.granite-loader .granite-sparkle:nth-child(3) {
  bottom: 10%;
  left: 50%;
  animation-delay: 0.4s;
}

.granite-loader .granite-sparkle:nth-child(4) {
  top: 50%;
  left: 10%;
  animation-delay: 0.6s;
}

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

@keyframes granite-texture {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 200%;
  }
}

@keyframes granite-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes granite-sparkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Replace existing loading animations with granite loader */
.get-started .php-email-form .loading:before,
.contact .php-email-form .loading:before {
  content: '';
  display: inline-block;
  width: 60px;
  height: 60px;
  margin: 0 10px -6px 0;
  background: none;
  border: none;
  position: relative;
}

.get-started .php-email-form .loading:before::before,
.contact .php-email-form .loading:before::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    var(--color-dark) 0%, 
    var(--color-primary) 25%, 
    var(--color-secondary) 50%, 
    var(--color-primary) 75%, 
    var(--color-dark) 100%);
  background-size: 200% 200%;
  animation: granite-pulse 2s ease-in-out infinite, granite-texture 3s linear infinite;
  box-shadow: 
    inset 0 0 20px rgba(0,0,0,0.3),
    0 0 20px rgba(139, 115, 85, 0.2);
}

.get-started .php-email-form .loading:before::after,
.contact .php-email-form .loading:before::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    var(--color-accent) 0%, 
    var(--color-light) 50%, 
    var(--color-accent) 100%);
  background-size: 150% 150%;
  animation: granite-pulse 2s ease-in-out infinite reverse, granite-texture 2.5s linear infinite reverse;
  box-shadow: 
    inset 0 0 15px rgba(255,255,255,0.4),
    0 0 10px rgba(210, 180, 140, 0.3);
}

/* Remove old animate-loading keyframes */
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

/* # Process Section - Interactive Design */
.process-progress-container {
  margin-bottom: 60px;
  position: relative;
}

.process-progress-bar {
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--color-light), var(--color-accent));
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.process-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 10px;
  width: 0%;
  transition: width 0.8s ease;
  position: relative;
}

.process-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 2s infinite;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.process-steps-indicator {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-top: -15px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) var(--color-light);
  gap: 30px;
}

.process-steps-indicator::-webkit-scrollbar {
  height: 8px;
}

.process-steps-indicator::-webkit-scrollbar-track {
  background: var(--color-light);
  border-radius: 4px;
}

.process-steps-indicator::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

.process-steps-indicator::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  user-select: none;
}

.step-indicator:hover {
  transform: translateY(-5px);
}

.step-indicator:active {
  transform: scale(0.95);
}

.step-number {
  width: 50px;
  height: 50px;
  background: white;
  border: 3px solid var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-default);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0;
}

.step-indicator:hover .step-number::before {
  opacity: 1;
  border-color: var(--color-primary);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

.step-indicator.active .step-number {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

.step-indicator.completed .step-number {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: white;
}

.step-label {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-default);
  text-align: center;
  transition: all 0.3s ease;
}

.step-indicator.active .step-label {
  color: var(--color-primary);
  font-weight: 700;
}

/* ======= Process Timeline Design ======= */
.process-steps-container {
  margin-top: 50px;
  position: relative;
  padding-left: 100px; /* Space for timeline line and step numbers */
}

/* Vertical timeline line */
.process-steps-container::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FFD700 0%, rgba(255, 215, 0, 0.3) 100%);
  border-radius: 2px;
  z-index: 1;
}

.process-step {
  position: relative;
  margin-bottom: 60px;
  opacity: 1;
  transition: all 0.5s ease;
}

.process-step:last-child {
  margin-bottom: 0;
}

/* Desktop Layout (1025px+) - 2 Column Grid */
@media (min-width: 1025px) {
  .process-steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-left: 100px;
  }

  .process-step {
    margin-bottom: 0;
  }

  /* Adjust timeline line for 2-column layout */
  .process-steps-container::before {
    left: 40px;
  }

  /* Step numbers stay on timeline */
  .process-step .process-step-header .process-step-number {
    left: -90px;
  }

  /* Ensure cards have equal height */
  .process-step-content {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .process-step-info {
    flex-grow: 1;
  }
}

/* Step number circle on timeline - positioned absolutely */
.process-step .process-step-header .process-step-number {
  position: absolute;
  left: -90px;
  top: 0;
  width: 60px;
  height: 60px;
  background: #FFD700;
  border: 4px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(139, 115, 85, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
  margin: 0;
}

.process-step:hover .process-step-header .process-step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(139, 115, 85, 0.4);
}

.process-step.active .process-step-header .process-step-number {
  background: var(--color-primary);
  color: white;
  transform: scale(1.15);
}

.process-step-content {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-step-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(139, 115, 85, 0.2);
}

.process-step-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.process-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.process-step-content:hover .process-step-image img {
  transform: scale(1.1);
}

.process-step-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.8), rgba(210, 180, 140, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.4s ease;
}

.process-step-content:hover .process-step-overlay {
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.6), rgba(210, 180, 140, 0.6));
}

.process-step-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
}

.process-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.process-step-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.process-step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.process-step-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

/* Step number styling is now handled in timeline section above */

.process-step-info p {
  color: var(--color-default);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
}

.process-step-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
  justify-content: space-between;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #FFD700;
  border-radius: 15px;
  transition: all 0.3s ease;
  min-height: 60px;
  flex: 1;
}

.detail-item:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
}

.detail-item i {
  font-size: 20px;
  color: var(--color-primary);
  min-width: 25px;
}

.detail-item:hover i {
  color: white;
}

.detail-item span {
  font-weight: 500;
  color: var(--color-dark);
}

.detail-item:hover span {
  color: white;
}

/* Responsive Design */

/* Tablet Layout (768px - 1024px) - Timeline Style */
@media (min-width: 768px) and (max-width: 1024px) {
  .process-steps-container {
    padding-left: 90px;
  }

  .process-steps-container::before {
    left: 35px;
  }

  .process-step {
    margin-bottom: 50px;
  }

  .process-step .process-step-header .process-step-number {
    left: -80px;
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .process-step-image {
    height: 250px;
  }

  .process-step-info {
    padding: 30px;
  }

  .process-step-header h3 {
    font-size: 22px;
  }
}

/* Mobile Layout (max-width: 767px) - Timeline Style */
@media (max-width: 767px) {
  .process-steps-container {
    padding-left: 80px; /* Reduced padding for mobile */
    margin-top: 30px;
  }

  /* Timeline line on mobile */
  .process-steps-container::before {
    left: 25px;
    width: 3px;
  }

  .process-step {
    margin-bottom: 40px;
  }

  /* Step number on timeline for mobile */
  .process-step .process-step-header .process-step-number {
    left: -70px;
    width: 50px;
    height: 50px;
    font-size: 16px;
    border-width: 3px;
  }

  .process-step-image {
    height: 200px;
  }

  .process-step-overlay {
    opacity: 0.7;
  }

  .process-step-info {
    padding: 20px;
  }

  .process-step-info p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .process-step-header h3 {
    font-size: 20px;
  }

  .process-step-details {
    gap: 12px;
  }

  .detail-item {
    padding: 12px 15px;
    min-height: 50px;
    font-size: 14px;
  }

  .detail-item i {
    font-size: 16px;
    min-width: 22px;
  }

  .detail-item span {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .process-steps-container {
    padding-left: 70px;
  }

  .process-steps-container::before {
    left: 20px;
  }

  .process-step .process-step-header .process-step-number {
    left: -60px;
    width: 45px;
    height: 45px;
    font-size: 14px;
  }

  .process-step-header h3 {
    font-size: 18px;
  }

  .process-step-image {
    height: 180px;
  }

  .process-step-info {
    padding: 15px;
  }

  .process-step-info p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .detail-item {
    padding: 10px 12px;
    min-height: 44px;
  }

  .detail-item span {
    font-size: 13px;
  }
}

/* ======= Contact Form & FAQ Section ======= */

/* Contact Form Container */
.contact-form-container {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(139, 115, 85, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Country Select Styling */
.country-select {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--color-dark);
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 140px;
  flex-shrink: 0;
}

.country-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
  outline: none;
}

.country-select:hover {
  border-color: var(--color-accent);
}

.country-select option {
  padding: 8px 12px;
  font-size: 14px;
}

.country-select option:disabled {
  color: #6c757d;
  font-style: italic;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.contact-form-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(139, 115, 85, 0.25);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(139, 115, 85, 0.3);
}

.contact-form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.contact-form-header p {
  color: var(--color-default);
  font-size: 16px;
  margin: 0;
}

/* Modern Contact Form */
.modern-contact-form {
  position: relative;
}

.form-row {
  margin-bottom: 25px;
}

.input-wrapper {
  position: relative;
  background: var(--color-light);
  border-radius: 15px;
  padding: 5px;
  transition: all 0.3s ease;
}

.input-wrapper:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(139, 115, 85, 0.1);
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 18px;
  z-index: 2;
  transition: all 0.3s ease;
}

.modern-input,
.modern-textarea {
  width: 100%;
  border: none;
  background: transparent;
  padding: 18px 20px 18px 55px;
  font-size: 16px;
  color: var(--color-dark);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.modern-textarea {
  padding-left: 55px;
  resize: vertical;
  min-height: 120px;
}

.textarea-icon {
  top: 25px;
  transform: none;
}

.modern-input:focus,
.modern-textarea:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.modern-input:focus + .input-focus-border,
.modern-textarea:focus + .input-focus-border {
  opacity: 1;
  transform: scaleX(1);
}

.input-focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 0 0 12px 12px;
}

/* Phone Input Styling */
.phone-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.country-select {
  flex: 0 0 120px;
  border: none;
  background: var(--color-accent);
  padding: 18px 15px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--color-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.country-select:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.phone-input {
  flex: 1;
  padding-left: 55px;
}

/* Submit Button */
.form-submit-wrapper {
  text-align: center;
  margin-top: 30px;
}

.btn-modern-submit {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(139, 115, 85, 0.3);
}

.btn-modern-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 115, 85, 0.4);
}

.btn-modern-submit:active {
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-modern-submit:hover .btn-icon {
  transform: translateX(5px);
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-modern-submit:active .btn-ripple {
  width: 300px;
  height: 300px;
}

/* FAQ Container */
.faq-container {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(139, 115, 85, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
}

.faq-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(139, 115, 85, 0.25);
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(210, 180, 140, 0.3);
}

.faq-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.faq-header p {
  color: var(--color-default);
  font-size: 16px;
  margin: 0;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--color-light);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 12px;
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.05), rgba(210, 180, 140, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.faq-item:hover {
  background: white;
  border-color: var(--color-accent);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
  transform: translateY(-3px);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item.active {
  background: white;
  border-color: var(--color-primary);
  box-shadow: 0 12px 35px rgba(139, 115, 85, 0.2);
  transform: translateY(-2px);
}

.faq-item.active::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.08), rgba(210, 180, 140, 0.08));
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: var(--color-accent);
}

.question-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-height: 50px;
}

.question-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.question-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover .question-icon::before {
  opacity: 0.3;
}

.faq-item.active .question-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

.question-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-left: 5px;
}

.question-toggle {
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.2);
  border: 2px solid var(--color-light);
}

.faq-question:hover .question-toggle {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
  border-color: var(--color-primary);
}

.faq-item.active .question-toggle {
  background: var(--color-primary);
  color: white;
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
  border-color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  background: white;
  opacity: 0;
  padding: 0 30px;
}

.faq-answer.active {
  max-height: 1000px !important;
  opacity: 1 !important;
  padding: 20px 30px 25px 30px !important;
  display: block !important;
  visibility: visible !important;
  background: white !important;
  border: 1px solid #e9ecef !important;
}

/* Debug: Make sure FAQ answers are visible */
.faq-answer {
  min-height: 0;
}

.faq-answer.active {
  min-height: auto !important;
}

/* Modern FAQ Design */
.simple-faq-container {
  margin-top: 20px;
}

.simple-faq-item {
  margin-bottom: 20px;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.simple-faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.simple-faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.simple-faq-item:hover::before {
  transform: scaleX(1);
}

.simple-faq-item.active {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.simple-faq-item.active::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, #1C1C1C, #FFD700);
}

.simple-faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: none;
}

.simple-faq-question:hover {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.simple-faq-question.active {
  background: linear-gradient(135deg, #1C1C1C, #2c2c2c);
  color: white;
}

.faq-icon {
  font-size: 28px;
  margin-right: 18px;
  min-width: 35px;
  text-align: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.simple-faq-question:hover .faq-icon {
  transform: scale(1.1);
}

.simple-faq-question.active .faq-icon {
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.simple-faq-question h5 {
  flex: 1;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.simple-faq-question:hover h5 {
  color: #1C1C1C;
}

.simple-faq-question.active h5 {
  color: white;
}

.faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.simple-faq-question:hover .faq-toggle {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
  transform: scale(1.1);
}

.simple-faq-question.active .faq-toggle {
  color: white;
  background: #FFD700;
  border-color: #FFD700;
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.simple-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.simple-faq-answer.active {
  max-height: 500px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.simple-faq-answer p {
  padding: 24px 28px;
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 0 0 16px 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .simple-faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
  }
  
  .simple-faq-question {
    padding: 18px 20px;
  }
  
  .simple-faq-question h5 {
    font-size: 15px;
    line-height: 1.4;
  }
  
  .faq-icon {
    font-size: 24px;
    margin-right: 14px;
    min-width: 30px;
  }
  
  .faq-toggle {
    font-size: 24px;
    width: 35px;
    height: 35px;
  }
  
  .simple-faq-answer p {
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .simple-faq-item {
    margin-bottom: 14px;
    border-radius: 10px;
  }
  
  .simple-faq-question {
    padding: 16px 18px;
  }
  
  .simple-faq-question h5 {
    font-size: 14px;
  }
  
  .faq-icon {
    font-size: 22px;
    margin-right: 12px;
    min-width: 28px;
  }
  
  .faq-toggle {
    font-size: 22px;
    width: 32px;
    height: 32px;
  }
  
  .simple-faq-answer p {
    padding: 16px 18px;
    font-size: 13px;
  }
}

.answer-content {
  padding: 0;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.answer-content p {
  color: var(--color-default) !important;
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
  .faq-container {
    padding: 25px;
  }
  
  .faq-header h3 {
    font-size: 24px;
  }
  
  .faq-question {
    padding: 20px 25px;
  }
  
  .question-content {
    gap: 12px;
    min-height: 45px;
  }
  
  .question-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .question-content h5 {
    font-size: 15px;
  }
  
  .question-toggle {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  
  .faq-answer.active {
    padding: 0 25px 20px 25px;
  }
  
  .answer-content p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .faq-container {
    padding: 20px;
  }
  
  .faq-question {
    padding: 15px 20px;
  }
  
  .question-content {
    gap: 10px;
    min-height: 40px;
  }
  
  .question-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .question-content h5 {
    font-size: 14px;
  }
  
  .question-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .faq-answer.active {
    padding: 0 20px 15px 20px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-container,
  .faq-container {
    padding: 30px 25px;
  }
  
  .contact-form-header h3,
  .faq-header h3 {
    font-size: 24px;
  }
  
  .contact-icon,
  .faq-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .modern-input,
  .modern-textarea {
    padding: 15px 15px 15px 45px;
    font-size: 15px;
  }
  
  .input-icon {
    left: 15px;
    font-size: 16px;
  }
  
  .country-select {
    flex: 0 0 100px;
    padding: 15px 10px;
    font-size: 13px;
  }
  
  .btn-modern-submit {
    padding: 15px 30px;
    font-size: 15px;
  }
  
  .faq-question {
    padding: 20px 25px;
  }
  
  .question-content h5 {
    font-size: 15px;
  }
  
  .answer-content {
    padding: 0 25px 20px;
  }
}

@media (max-width: 576px) {
  .phone-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  .country-select {
    flex: none;
    width: 100%;
  }
  
  .phone-input {
    padding-left: 55px;
  }
  
  .question-content {
    gap: 10px;
  }
  
  .question-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* Deccan Stonecraft Color Palette */
:root {
  --charcoal-black: #1C1C1C;
  --gold: #FFD700;
  --sandstone-beige: #C2B280;
  --light-grey: #F5F5F5;
  --text-grey: #7D7D7D;
}

/* Button styling with new color palette */
.btn-primary {
  background-color: var(--gold);
  border-color: var(--gold);
  color: white;
}

.btn-primary:hover {
  background-color: #A8903A;
  border-color: #A8903A;
  color: white;
}

/* Header styling */
.header-sec {
  background-color: white !important;
}

/* Navigation styling */
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

/* Footer styling */
.footer {
  background-color: var(--charcoal-black);
  color: white;
}

.footer h3, .footer h4 {
  color: var(--gold);
}

/* Section backgrounds */
.section-bg {
  background-color: var(--light-grey) !important;
}

/* Text colors */
.text-primary {
  color: var(--gold) !important;
}

.text-secondary {
  color: var(--text-grey) !important;
}

/* Border colors */
.border-primary {
  border-color: var(--gold) !important;
}

/* Background colors */
.bg-primary {
  background-color: var(--charcoal-black) !important;
}

.bg-secondary {
  background-color: var(--gold) !important;
}

.bg-light {
  background-color: var(--light-grey) !important;
}

/* Tagline styling */
.tagline {
  color: var(--gold);
  font-style: italic;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}

.tagline-small {
  color: var(--gold);
  font-style: italic;
  font-size: 14px;
  margin-bottom: 10px;
}

.tagline-header {
  color: var(--gold);
  font-style: italic;
  font-size: 14px;
  margin: 5px 0 0 0;
}



