/**
* Template Name: Logis
* Template URL: https://bootstrapmade.com/logis-bootstrap-logistics-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #F58322;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.6);
  /* The default color of the main navmenu links */
  --nav-hover-color: #E85A28;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0d42ff;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #0e1d34;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #19335c;
  --contrast-color: #ffffff;
}

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #f0f0f0;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: #fff;
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;

}

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

.header .logo img {
  max-height: 95px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {

  color: white;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;

}


@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  padding: 5px 0;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding-top: 10px;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 20px 18px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {}

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #E85A28;
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #3f1b03;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgb(93 71 67 / 80%);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

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

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

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

.footer .social-links a:hover {
  color: var(--default-color);
  border-color: var(--default-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline-block;
  line-height: 1;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 40px;
  /* moved from right to left */
  bottom: 45px;
  z-index: 99999;
  background-color: #c74818;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}


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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .breadcrumbs ol a:hover {
  color: var(--contrast-color);
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: 120px 0 60px 0;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero form {
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  padding: 10px;
  border-radius: 10px;
}

.hero form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero form .btn-primary {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  flex-shrink: 0;
  padding: 0 25px;
}

.hero form .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .stats-item {
  padding: 30px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  transition: 0.3s;
}

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

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

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

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

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

.about .content ul i {
  flex-shrink: 0;
  font-size: 35px;
  color: var(--accent-color);
  margin-right: 20px;

}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

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

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.services .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.services .card a:hover {
  color: var(--accent-color);
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: #000;
  font-size: 15px;
}

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

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

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

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

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

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

.pricing .featured {
  border-top-color: var(--accent-color);
}

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

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }

  .header .logo img {
    max-height: 65px;
    margin-right: 8px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

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

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

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

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

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  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: 0 auto 15px auto;
}

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

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

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

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  overflow: hidden;
  transition: 0.3s;
}

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

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

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

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

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

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

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

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

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

.faq .faq-container .faq-active {
  background-color: var(--heading-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

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

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

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

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Alt Pricing Section
--------------------------------------------------------------*/
.alt-pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  position: relative;
}

.alt-pricing .pricing-item h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
}

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

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

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

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

.alt-pricing .pricing-item ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

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

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

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

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

.alt-pricing .buy-btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--heading-font);
}

.alt-pricing .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.alt-pricing .featured {
  background: var(--accent-color);
}

.alt-pricing .featured h3,
.alt-pricing .featured h4,
.alt-pricing .featured h4 span,
.alt-pricing .featured ul,
.alt-pricing .featured ul .na,
.alt-pricing .featured ul i,
.alt-pricing .featured ul .na i {
  color: var(--contrast-color);
}

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

.alt-pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Get A Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

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

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

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

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

.get-a-quote .php-email-form input[type=text],
.get-a-quote .php-email-form input[type=email],
.get-a-quote .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-a-quote .php-email-form input[type=text]:focus,
.get-a-quote .php-email-form input[type=email]:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.get-a-quote .php-email-form input[type=text]::placeholder,
.get-a-quote .php-email-form input[type=email]::placeholder,
.get-a-quote .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

.get-a-quote .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.banner-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide-content {
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-in-out forwards;
}

.slide h1 {
  font-size: 3rem;
  margin-top: 120px;
  animation: slideIn 1s ease-in-out forwards;
  color: #fff;
  font-weight: 700;
}

.slide p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  animation: slideIn 1.5s ease-in-out forwards;
}



/* Owl Carousel Dots */
.owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.owl-dot {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
  transition: 0.3s;
}

.owl-dot.active {
  background: #28a745;
  transform: scale(1.2);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Adjust the opacity for darker or lighter effect */
  z-index: 1;
}

/* Ensure text is above overlay */
.slide-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .slide {
    height: 65vh;
    /* Adjust height for smaller screens */
  }

  .slide img {
    object-position: center;
    /* Centers the image */
  }

  .slide h1 {
    font-size: 2rem;
    margin-top: 85px;

  }

  .slide p {
    font-size: 1.2rem;
    font-weight: 700;


  }



}

.floating {
  background: linear-gradient(45deg, #F58322, #f61313);
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 8px 20px #000;
  transition: 0.3s ease-in-out;
}

.floating:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px #e26a01;
}

@media (max-width: 768px) {
  .floating {
    padding: 10px 15px;
    font-size: 16px;
  }
}

.choose-box {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.choose-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 111, 0, 0.1), rgba(255, 167, 50, 0.2));
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.choose-box:hover::before {
  transform: scale(3);
}

.choose-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.icon {
  font-size: 50px;
  color: #ff6f00;
  margin-bottom: 15px;
  animation: bounce 1.5s infinite;
}

.choose-box h4 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.choose-box p {
  font-size: 16px;
  color: #666;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

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

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

.animated {
  animation: fadeInUp 1s ease-in-out;
}

.services-section {

  text-align: center;
  background: #fff;
}

.services-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.services-section h2 span {
  color: #F58322;
}

h2 span {
  color: #555;
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Service Box */
.service-box {
  background: #fff;
  padding: 30px;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Service Icon */
.service-box i {
  font-size: 40px;
  color: #F58322;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
}

/* Service Title */
.service-box h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

/* Service Description */
.service-box p {
  font-size: 14px;
  color: #666;
}

/* Hover Effects */
.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.service-box:hover i {
  transform: scale(1.2);
  color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-box {
    margin: 15px 0;
  }
}

.gallery {

  text-align: center;
  padding: 50px 0;
}

.gallery h2 {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery h2 span {
  color: #F58322;
}

/* Gallery Grid */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Gallery Item with Border */
.gallery-item {
  width: 320px;
  height: auto;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  border: 4px solid white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.2);
  padding: 5px;
}

/* Image Styles */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

/* Rotate Effect on Hover */
.gallery-item img:hover {
  transform: rotate(10deg) scale(1.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  border: 5px solid white;
  animation: zoomIn 0.3s ease-in-out;
}

/* Modal Controls */
.modal-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.prev,
.next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 10px 20px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.prev:hover,
.next:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Animations */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    max-height: 70%;
  }
}


/* Gallery Container */
.gallery-container1 {
  display: flex;

  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Image Styling */
.gallery-container1 img {
  width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.gallery-container1 img:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.modal-content {
  max-width: 50%;
  max-height: 80%;
  border-radius: 10px;
  animation: zoomIn 0.3s ease-in-out;
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Previous & Next Buttons */
.modal-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.prev,
.next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 10px 20px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.prev:hover,
.next:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Zoom Animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.cta-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  background: url('../img/cta.jpeg') no-repeat center center/cover;
}

/* Overlay Effect */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* White Tile Theme */
.cta-container {
  position: relative;
  z-index: 2;
  background: white;
  padding: 40px;
  text-align: center;
  width: 90%;
  max-width: 500px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transform: scale(0.9);
  animation: fadeIn 0.5s ease-in-out forwards;
}

/* CTA Heading */
.cta-container h2 {
  font-size: 26px;
  color: #333;
  margin-bottom: 10px;
}

/* CTA Description */
.cta-container p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: #ff6600;
  color: white;
  padding: 12px 30px;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

/* Hover Effect */
.cta-button:hover {
  transform: scale(1.1);
  background: #ff3300;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-container {
    width: 95%;
    padding: 30px;
  }

  .cta-container h2 {
    font-size: 22px;
  }

  .cta-container p {
    font-size: 16px;
  }

  .cta-button {
    padding: 10px 25px;
    font-size: 16px;
  }

  .modal-content {
    max-width: 80%;
    max-height: auto;
    border-radius: 10px;
    animation: zoomIn 0.3s ease-in-out;
  }
}






/* Footer Links */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}

ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

ul li a:hover {
  color: #F58322;
}

/* Contact Icons */
footer .col-md-4 p i {
  margin-right: 8px;
  color: #d6d6d6;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    text-align: left;
  }

  footer .col-md-4 {
    width: 100%;

  }
}

.banner1 {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url('../img/abt-bg.jpg') no-repeat center center/cover;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  overflow: hidden;
}

/* Overlay Effect */
.overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 1;
}

/* Curved Border */
.banner1::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  border-radius: 50% 50% 0 0;
  z-index: 2;
}

/* Banner Content */
.banner-content1 {
  position: relative;
  z-index: 3;
  max-width: 80%;

}

.banner1 h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.banner1 p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Button */


/* Responsive Design */
@media (max-width: 768px) {
  .banner1 h1 {
    font-size: 2rem;
  }

  .banner1 p {
    font-size: 1rem;
  }
}

.faq-testimonial {

  background: linear-gradient(to right, #ffffff, #f2f2f2);
}



/* FAQ Section */
.faq-section h2,
.testimonial-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}



.faq-item {
  background: #fff;
  padding: 9px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

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

.faq-question {
  font-size: 18px;
  cursor: pointer;
  color: #555;
}

.faq-answer {
  display: none;
  font-size: 16px;
  margin-top: 10px;
}

/* Testimonials Section */
.testimonial-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.testimonial-item:hover {
  transform: scale(1.05);
}

.testimonial-item p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-item h4 {
  font-size: 20px;
  color: #007bff;
}

/* Responsive Design */
.project-details {
  text-align: center;


}



/* Project Images */
.project-images {
  display: flex;

  flex-wrap: wrap;
  gap: 15px;
}

.project-images img {
  width: 360px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

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

/* Project Description */
.project-description {
  max-width: 1200px;
  margin: auto;
  text-align: left;
  padding: 30px;
}

.project-description p {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project-images img {
    width: 100%;
    max-width: 550px;
  }

  .project-description {
    padding: 20px;
  }
}

.slider-container {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 80px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease, transform 1s ease;
  background-size: cover;
  background-position: center;
}

/* Black overlay */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  /* semi-transparent black */
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide-title,
.slide-subtitle,
.slide-para,
.slide-btn {
  opacity: 0;
  position: relative;
  z-index: 2;
  /* above overlay */
}

.slide.active .slide-title {
  animation: slideFromRight 0.8s forwards 0.2s;
}

.slide.active .slide-subtitle {
  animation: slideFromRight 0.8s forwards 0.5s;
}

.slide.active .slide-para {
  animation: slideFromRight 0.8s forwards 0.8s;
}

.slide.active .slide-btn {
  animation: slideFromLeft 0.8s forwards 1.1s;
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.slide-subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.slide-para {
  font-size: 1rem;
  max-width: 700px;
  margin-bottom: 20px;
  font-weight: 600;
}

.slide-btn {
  padding: 12px 25px;
  background: #E85A28;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.slide-btn:hover {
  background: #f39c12;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s;
}

.slider-dots span.active {
  background: #E85A28;
}

/* Responsive */
@media(max-width:768px) {
  .slide-title {
    font-size: 2rem;
  }

  .slide-subtitle {
    font-size: 1.2rem;
  }

  .slide-para {
    font-size: 0.9rem;
  }
}



.btn-callvibrate {
  position: relative;
  display: inline-flex;
  align-items: center;


  color: #E85A28;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;

  text-decoration: none;
  overflow: hidden;

  animation: btn-vibrate 1s infinite alternate;
}

.btn-callvibrate:hover {
  color: #000
}

/* Icon inside button */
.btn-callvibrate i {
  font-size: 28px;

}

/* Pulse / wave effect */
.btn-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;

  animation: btn-pulse 2s infinite;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Vibrate animation */
@keyframes btn-vibrate {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-2px);
  }

  50% {
    transform: translateX(2px);
  }

  75% {
    transform: translateX(-2px);
  }

  100% {
    transform: translateX(2px);
  }
}

/* Pulse animation */
@keyframes btn-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .btn-callvibrate {
    padding: 10px 18px;
    font-size: 14px;
  }

  .btn-callvibrate i {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .btn-callvibrate {
    padding: 8px 16px;
    font-size: 14px;
    gap: 6px;
  }

  .btn-callvibrate i {
    font-size: 26px;
  }
}

@media (max-width: 330px) {
  .btn-callvibrate {
    display: none;
  }

  .mobile-nav-toggle {
    /* color: #000; */
    font-size: 28px;
    line-height: 0;
    margin-left: -50px;
    cursor: pointer;
    transition: color 0.3s;
  }
}

.tbx-about-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 50px auto;
  flex-wrap: wrap;
  overflow: hidden;
  border-radius: 20px;

}

/* Image Side */
.tbx-about-img {
  flex: 1 1 400px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  transform: translateX(-100px);
  opacity: 0;
  transition: all 1s ease;
}

.tbx-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Side */
.tbx-about-content {
  flex: 1 1 600px;
  background: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease;
}

.tbx-about-content h2 {
  font-size: 2rem;
  color: #E85A28;
  margin: 0;
}

.tbx-about-content h3 {
  font-size: 1.4rem;
  color: #0f1724;
  margin: 0;
}

.tbx-about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}


.tbx-about-btn:hover {
  background: #f39c12;
}

/* Animate class */
.tbx-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.tbx-animate.active {
  opacity: 1;
  transform: translateY(0);
}

.tbx-about-title {
  font-size: 2rem;
  color: #E85A28;
  margin: 0;
  overflow: hidden;
  display: inline-block;
}

.tbx-about-title span {
  display: inline-block;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.tbx-about-title.active span {
  transform: translateX(0px);
  opacity: 1;
}

/* Responsive */
@media(max-width: 900px) {
  .tbx-about-wrapper {
    flex-direction: column;
  }

  .tbx-about-img {
    clip-path: none;
    transform: translateY(-50px);
  }

  .tbx-about-content {
    padding: 40px 20px;
    text-align: center;
  }
}

.tbx-slant-btn {
  display: inline-block;
  padding: 10px 36px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  max-width: 150px;
  text-decoration: none;
  background-color: #E35C22;
  transform: skewX(-20deg);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}

.tbx-slant-btn span {
  display: inline-block;
  transform: skewX(20deg);
  /* Reverse skew for text */
  transition: transform 0.3s ease;
}

a:hover {
  color: #fce292;
}

.tbx-slant-btn:hover {
  transform: skewX(-0deg) scale(1.05);

}

.tbx-slant-btn:hover span {
  transform: skewX(0deg) translateX(0px);
}

/* Responsive */
@media (max-width: 768px) {
  .tbx-slant-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .tbx-slant-btn {
    padding: 10px 22px;
    font-size: 13px;
  }
}

.tbx3-service-section {
  padding: 30px 40px;
  text-align: center;

  background: #fff;
}

.tbx3-service-section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #555;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.tbx3-service-section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: #e85a28;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: tbx3-line-grow 1.2s ease;
}

@keyframes tbx3-line-grow {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

.tbx3-subtext {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 60px;
  font-weight: 600;
}

/* === Grid Layout === */
.tbx3-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* === Card === */
.tbx3-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateY(60px);
  opacity: 0;
  transition: all 1s ease;
}

.tbx3-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.tbx3-card-content {
  padding: 20px;
  text-align: center;
}

.tbx3-card-content h4 {
  color: #000;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 10px 0;
}

.tbx3-card-content p {


  line-height: 1.6;
  margin-bottom: 15px;
}

.tbx3-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #e85a28;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease;
}

.tbx3-btn:hover {
  background: #ff7f3f;
  transform: scale(1.05);
}

/* === Scroll Animation === */
.tbx3-left {
  transform: translateX(-100px);
}

.tbx3-center {
  transform: translateY(80px);
}

.tbx3-right {
  transform: translateX(100px);
}

.tbx3-show {
  opacity: 1;
  transform: translate(0);
}

/* === Responsive === */
@media (max-width: 768px) {
  .tbx3-service-section h2 {
    font-size: 2rem;
  }

  .tbx3-subtext {
    font-size: 1rem;
  }

  .tbx3-card img {
    height: 200px;
  }
}

/* === Section Wrapper === */
.tbx4-project-section {
  padding: 100px 40px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.tbx4-project-section h2 {
  font-size: 2.3rem;
  color: #555;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.tbx4-project-section h2::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 4px;
  background: #e85a28;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  border-radius: 2px;
  transition: transform 1s ease;
}

.tbx4-project-section.tbx4-active h2::after {
  transform: translateX(-50%) scaleX(1);
}

.tbx4-subtext {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 60px;
  font-weight: 600;
}

/* === Owl Carousel Cards === */
.tbx4-project-carousel .tbx4-project-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.tbx4-project-carousel .tbx4-project-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tbx4-project-carousel .tbx4-project-item:hover img {
  transform: scale(1.08);
}

/* Overlay */
.tbx4-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(to top, rgba(26, 10, 0, 0.9), transparent);
  color: #fff;
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tbx4-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #fff;
}

.tbx4-overlay p {

  opacity: 2;
}

/* === Owl Controls === */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #e85a28 !important;
  color: #fff !important;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.5rem !important;
  transition: 0.3s;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: #ff7a42 !important;
}

.owl-nav button.owl-prev {
  left: -10px;
}

.owl-nav button.owl-next {
  right: -10px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .tbx4-project-section h2 {
    font-size: 2rem;
  }

  .tbx4-subtext {
    font-size: 1rem;
  }

  .tbx4-project-carousel .tbx4-project-item img {
    height: 280px;
  }

  .owl-nav button.owl-prev,
  .owl-nav button.owl-next {
    width: 38px;
    height: 38px;
  }
}


/* === Contact Section Wrapper === */
.tbx-contact-wrap {
  width: 100%;
  padding: 80px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #EB5928 50%, #f9fafc 50%);
  color: #fff;
}

/* Background overlay effect */
.tbx-contact-wrap::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -50%;
  width: 200%;
  height: 150%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.05));
  clip-path: circle(40% at 10% 20%);
  opacity: 0.3;
}

.tbx-contact-form,
.tbx-contact-info {
  position: relative;
  z-index: 2;
}

/* === Contact Form === */
.tbx-contact-form {
  flex: 1 1 500px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  color: #333;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease;
}

.tbx-contact-form.active {
  transform: translateY(0);
  opacity: 1;
}

.tbx-contact-form h3 {
  color: #EB5928;
  font-size: 26px;
  margin-bottom: 25px;
  position: relative;
}

.tbx-contact-form h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: #EB5928;
  left: 0;
  bottom: -10px;
}

.tbx-contact-form input,
.tbx-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease;
}

.tbx-contact-form input:focus,
.tbx-contact-form textarea:focus {
  border-color: #EB5928;
}

.tbx-contact-form button {
  background: #EB5928;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.tbx-contact-form button:hover {
  background: #c74818;
  transform: translateY(-3px);
}

/* === Contact Info === */
.tbx-contact-info {
  flex: 1 1 400px;
  color: #333;
  transform: translateX(100px);
  opacity: 0;
  transition: all 1s ease;
}

.tbx-contact-info.active {
  transform: translateX(0);
  opacity: 1;
}

.tbx-contact-info h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #555;
}

.tbx-contact-info p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.tbx-contact-info ul {
  list-style: none;
}

.tbx-contact-info ul li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.tbx-contact-wrap h4 {
  color: #555;
}

.tbx-contact-info ul li i {
  font-size: 18px;
  color: #EB5928;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Responsive === */
@media (max-width: 900px) {
  .tbx-contact-wrap {
    flex-direction: column;
    padding: 60px 8%;
    background: #EB5928;
    /* solid orange on mobile */
  }

  .tbx-contact-form,
  .tbx-contact-info {
    transform: none;
    opacity: 1;
  }
}

/* === Responsive === */
@media (max-width: 900px) {
  .tbx-contact-wrap h3 {
    color: #fff;
  }

  .tbx-contact-info p {
    color: #fff;

  }

  .tbx-contact-info ul li {
    color: #fff;

  }

  .tbx-contact-info ul li i {
    color: #fff;
  }

  .tbx-contact-wrap h4 {
    color: #fff;
  }


}

@media (max-width: 1175px) {
  .tbx-contact-wrap {
    flex-direction: column;
    padding: 60px 8%;
    background: #EB5928;
    /* solid orange on mobile */
  }

  .tbx-contact-wrap h3 {
    color: #fff;
  }

  .tbx-contact-wrap h4 {
    color: #fff;
  }

  .tbx-contact-info p {
    color: #fff;
  }

  .tbx-contact-info ul li {
    color: #fff;
  }

  .tbx-contact-info ul li i {
    color: #fff;
  }
}



/* === Unique Footer Wrapper with Image Background === */
.fzq-footer-wrap {
  width: 100%;
  background: url('../img/background/footer-bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 80px 5% 80px;
  position: relative;
  overflow: hidden;
}

/* Black overlay */
.fzq-footer-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 15, 1, 0.8);
  z-index: 1;
}

/* Content above overlay */
.fzq-footer-content {
  position: relative;
  z-index: 2;
}

/* === Newsletter === */
.fzq-footer-news {
  text-align: center;
  margin-bottom: 50px;
}

.fzq-footer-news h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

.fzq-footer-news p {

  margin-bottom: 20px;
  line-height: 1.5;
}

.fzq-footer-news form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.fzq-footer-news input[type="email"] {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  outline: none;
  width: 250px;
  max-width: 100%;
}

.fzq-footer-news button {
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  background: #EB5928;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.fzq-footer-news button:hover {
  background: #c74818;
}

/* === Footer Grid === */
.fzq-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Logo/About */
.fzq-footer-logo {
  flex: 1 1 250px;
}

.fzq-footer-logo img {
  font-size: 28px;
  margin-bottom: 15px;

}

.fzq-footer-logo p {

  line-height: 1.6;
}

/* Quick Links / Services */
.fzq-footer-links {
  flex: 1 1 200px;
}

.fzq-footer-links h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #fff;
}

.fzq-footer-links ul {
  list-style: none;
}

.fzq-footer-links ul li {
  margin: 10px 0;

  cursor: pointer;
  transition: color 0.3s;
}

.fzq-footer-links ul li:hover {
  color: #ffd700;
}

/* Projects */
.fzq-footer-projects {
  flex: 1 1 400px;
}

.fzq-footer-projects h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

.fzq-footer-project-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fzq-footer-project-col {

  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.fzq-footer-project-col img {
  width: 100%;
  height: 100px;
  display: block;
  transition: transform 0.5s ease;

}

.fzq-footer-project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
  padding: 10px;
}

.fzq-footer-project-col:hover img {
  transform: scale(1.1);
}

.fzq-footer-project-col:hover .fzq-footer-project-overlay {
  opacity: 1;
}

/* Footer Bottom */
.fzq-footer-bottom {
  margin-top: 50px;
  text-align: center;

  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;

}

/* Responsive */
@media (max-width: 900px) {
  .fzq-footer-grid {
    flex-direction: column;
    gap: 30px;
  }

  .fzq-footer-project-col {
    flex: 1 1 calc(50% - 10px);
  }
}



/* === Unique Gallery Wrapper === */
.galleriq-wrap {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.galleriq-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.3rem;
  color: #555;
  position: relative;
}

.galleriq-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 3px;
  background: #EB5928;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 1s ease;
}

/* Active class to expand the line */
.galleriq-title.active::after {
  width: 80px;
}

/* === Owl Carousel Items === */
.galleriq-carousel .galleriq-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transform: rotate(-2deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.galleriq-carousel .galleriq-card:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.galleriq-carousel .galleriq-card img {
  width: 100%;
  height: 280px;
  display: block;
  transition: transform 0.5s ease;
}

.galleriq-carousel .galleriq-card:hover img {
  transform: scale(1.1);
}

/* === Modal Styles === */
.galleriq-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.galleriq-modal.active {
  display: flex;
}

.galleriq-modal img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.galleriq-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

.galleriq-modal-close:hover {
  color: #EB5928;
}

@media (max-width: 768px) {
  .galleriq-title {
    font-size: 26px;
  }

  .slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
  }

  .tbx-about-content p {
    text-align: left;
  }


}

@media (max-width: 480px) {
  .galleriq-title {
    font-size: 22px;
  }

}

/* === Unique About Banner Wrapper === */
.aboutiq-banner-wrap {
  position: relative;
  width: 100%;
  height: 350px;
  background: url('../img/about/abt-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  top: 70px;
}

/* Dark overlay */
.aboutiq-banner-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Content inside banner */
.aboutiq-banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  top: 20px;
}

.aboutiq-banner-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  color: #fff;
}

/* Animated underline */
.aboutiq-banner-content h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 3px;
  background: #EB5928;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 1s ease;
}

.aboutiq-banner-content.active h1::after {
  width: 100px;
}

.aboutiq-banner-content p {
  font-size: 18px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .aboutiq-banner-wrap {
    height: 350px;
  }

  .aboutiq-banner-content h1 {
    font-size: 36px;
  }

  .aboutiq-banner-content p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .aboutiq-banner-wrap {
    height: 300px;
  }

  .aboutiq-banner-content h1 {
    font-size: 28px;
  }

  .aboutiq-banner-content p {
    font-size: 14px;
  }
}

/* === Contact Page Wrapper === */
.conniq-wrap {
  max-width: 1200px;
  margin: 50px auto;
  padding: 90px 10px;

}

.conniq-title {
  text-align: center;
  font-size: 36px;
  color: #EB5928;
  margin-bottom: 50px;
  position: relative;
}

.conniq-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #EB5928;
  margin: 10px auto 0;
  border-radius: 2px;
  transform-origin: center;
  transition: width 0.5s ease;
}

/* === Contact Grid === */
.conniq-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Contact Form */
.conniq-form-wrap {
  flex: 1 1 500px;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.conniq-form-wrap:hover {
  transform: translateY(-5px);
}

.conniq-form-wrap h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #EB5928;
}

.conniq-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.conniq-form-wrap input,
.conniq-form-wrap textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  transition: border 0.3s ease;
}

.conniq-form-wrap input:focus,
.conniq-form-wrap textarea:focus {
  border-color: #EB5928;
}

.conniq-form-wrap button {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  background: #EB5928;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.conniq-form-wrap button:hover {
  background: #c74818;
  transform: scale(1.05);
}

/* Contact Info */
.conniq-info-wrap {
  flex: 1 1 400px;
  padding: 40px;
  background: linear-gradient(135deg, #EB5928 0%, #ff8c42 100%);
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.conniq-info-wrap h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

.conniq-info-wrap p {
  font-size: 18px;
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: 600;
}

.conniq-info-wrap ul {
  list-style: none;
  font-size: 18px;
}

.conniq-info-wrap ul li {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.conniq-info-wrap ul li i {
  margin-right: 12px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .conniq-grid {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 576px) {

  .conniq-form-wrap,
  .conniq-info-wrap {
    padding: 25px;
  }

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

  .conniq-form-wrap h3,
  .conniq-info-wrap h3 {
    font-size: 24px;
  }

  .conniq-info-wrap p,
  .conniq-info-wrap ul li {
    font-size: 14px;
  }
}

/* === Map Section Wrapper === */
.mapanova-wrap {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.mapanova-title {
  font-size: 32px;
  color: #555;
  margin-bottom: 30px;
  position: relative;
}

.mapanova-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #EB5928;
  margin: 10px auto 0;
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* Animate underline when section is visible */
.mapanova-title.active::after {
  width: 80px;
}

/* === Map Container with Animated Border === */
.mapanova-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: 300px;

}

.mapanova-container::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);

  background-size: 600% 600%;
  border-radius: 25px;
  z-index: 2;
  animation: mapBorderAnimate 6s linear infinite;
}

.mapanova-iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

@keyframes mapBorderAnimate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 768px) {
  .mapanova-title {
    font-size: 26px;
  }

  .mapanova-iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .mapanova-title {
    font-size: 22px;
  }

  .mapanova-iframe {
    height: 250px;
  }
}

/* Section */
.tbx-whyus-section {
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 90px;
  padding-top: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Title */
.tbx-whyus-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #555;
  position: relative;
  display: inline-block;
  margin-bottom: 70px;
}

.tbx-whyus-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 4px;
  background: #EB5928;
  transform: translateX(-50%);
  transition: width 1s ease;

}

.tbx-whyus-title.active::after {
  width: 110px;
}

/* Container */
.tbx-whyus-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.tbx-whyus-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 45px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.6s ease;
  opacity: 0;
  transform: scale(0.8);
  border-top: 5px solid #EB5928;
}

.tbx-whyus-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(235, 89, 40, 0.25);
}

/* Icons */
.tbx-whyus-card i {
  font-size: 45px;
  color: #EB5928;
  margin-bottom: 20px;
  background: rgba(235, 89, 40, 0.1);
  border-radius: 50%;
  padding: 15px;
}

/* Text */
.tbx-whyus-card h3 {
  font-size: 21px;
  color: #EB5928;
  margin-bottom: 10px;
}

.tbx-whyus-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* Animation active */
.tbx-whyus-card.active {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
  .tbx-whyus-section {
    padding: 80px 20px;
  }

  .tbx-whyus-title {
    font-size: 30px;
  }
}

/* ========== CTA Section ========== */
.tbxcta3-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #EB5928, #fca471);
  color: #fff;
  padding: 3dvi 10%;
  position: relative;
  overflow: hidden;
}

/* animated background overlay */
.tbxcta3-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.05) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.05) 75%,
      transparent 75%,
      transparent);
  background-size: 50px 50px;
  animation: tbxcta3-move 10s linear infinite;
  z-index: 0;
  /* keep it behind */
}

@keyframes tbxcta3-move {
  from {
    left: -100%;
  }

  to {
    left: 0;
  }
}

.tbxcta3-left,
.tbxcta3-right {
  position: relative;
  z-index: 2;
  /* ensure content appears above overlay */
}

.tbxcta3-left {
  flex: 1 1 50%;
}

.tbxcta3-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: #fff;
}

/* animated underline */
.tbxcta3-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 120px;
  height: 4px;
  background: #fff;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.6s ease;
}

.tbxcta3-section.active .tbxcta3-title::after {
  transform: translateX(-50%) scaleX(1);
}

.tbxcta3-desc {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  max-width: 500px;
  margin-bottom: 30px;
}

.tbxcta3-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tbxcta3-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 30px;
  background: #fff;
  color: #EB5928;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #fff;
  transition: all 0.4s ease;
  opacity: 1;
  transform: translateY(30px);
  z-index: 3;
}

.tbxcta3-btn:hover {
  background: transparent;
  color: #fff;
}

.tbxcta3-section.active .tbxcta3-btn {
  opacity: 1;
  transform: translateY(0);
}

.tbxcta3-btn:nth-child(1) {
  transition-delay: 0.3s;
}

.tbxcta3-btn:nth-child(2) {
  transition-delay: 0.5s;
}

/* Right Image */
.tbxcta3-right {
  flex: 1 1 45%;
  text-align: center;
}

.tbxcta3-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;

  transform: translateX(50px);
  opacity: 1;
  transition: all 0.8s ease;
}

.tbxcta3-section.active .tbxcta3-right img {
  transform: translateX(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .tbxcta3-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 6%;
  }

  .tbxcta3-left,
  .tbxcta3-right {
    flex: 1 1 100%;
  }

  .tbxcta3-right img {
    max-width: 320px;
    margin-top: 30px;
  }

  .tbxcta3-buttons {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .tbxcta3-title {
    font-size: 24px;
  }

  .tbxcta3-desc {
    font-size: 14px;
  }

  .tbxcta3-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* === Zig-Zag About Section === */
.ziglio-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.ziglio-title {
  text-align: center;
  font-size: 32px;
  color: #EB5928;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.ziglio-title::after {
  content: "";
  width: 100px;
  height: 3px;
  background: #EB5928;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s ease;
}

.ziglio-section.active .ziglio-title::after {
  transform: scaleX(1);
}

.ziglio-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.ziglio-block:nth-child(even) {
  flex-direction: row-reverse;
}

.ziglio-image {
  flex: 1 1 45%;
  overflow: hidden;
  border-radius: 15px;
  transform: translateX(-100px);
  opacity: 0;
  transition: all 0.8s ease;
}

.ziglio-block.active .ziglio-image {
  transform: translateX(0);
  opacity: 1;
}

.ziglio-image img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

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

.ziglio-content {
  flex: 1 1 45%;
  transform: translateX(100px);
  opacity: 0;
  transition: all 0.8s ease;
}

.ziglio-block.active .ziglio-content {
  transform: translateX(0);
  opacity: 1;
}

.ziglio-content h3 {
  font-size: 26px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

.ziglio-content h3::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #EB5928;
  display: block;
  margin: 10px 0 0;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s ease;
}

.ziglio-block.active .ziglio-content h3::after {
  transform: scaleX(1);
}

.ziglio-content p {

  color: #000;
  line-height: 1.6;
}

@media(max-width:900px) {
  .ziglio-block {
    flex-direction: column;
  }

  .ziglio-block:nth-child(even) {
    flex-direction: column;
  }

  .ziglio-image,
  .ziglio-content {
    flex: 1 1 100%;
  }

  .ziglio-image img {
    margin-bottom: 20px;
  }
}

@media(max-width:500px) {
  .ziglio-title {
    font-size: 24px;
  }

  .ziglio-content h3 {
    font-size: 20px;
  }

}

/* --- SOCIAL ICONS UNDER ADDRESS --- */
.qixo-social-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;

  flex-wrap: wrap;
}

.qixo-social-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;


  transition: transform .35s, box-shadow .35s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.qixo-social-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.qixo-social-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: conic-gradient(from 90deg, var(--accent), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}

.qixo-social-btn:hover::after {
  opacity: 0.2;
}

.qixo-social-svg {
  width: 50px;
  height: 50px;
  fill: var(--accent);
  transition: transform .3s ease;
  z-index: 2;
}

.fa-brands {
  font-size: 24px;
  color: #eb5928;
}



.qixo-social-btn:hover .qixo-social-svg {
  transform: scale(1.15);
}

/* Animate icons when section is visible */
.qixo-social-btn {
  opacity: 1;
  transform: translateY(10px);
  transition: all 0.8s ease;
}

.qixo-visible .qixo-social-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {


  .qixo-social-btn {
    background-color: #fff;
  }

  .qixo-social-wrap {
    justify-content: left;
  }
}

@media (max-width: 767px) {
  .fzq-footer-news form {
    justify-content: left;
    ;
  }

}

/* WhatsApp Sticky Button */
.tbx-whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;

  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: tbx-whatsapp-pulse 2s infinite;
}

.tbx-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.tbx-whatsapp-icon {
  width: 65px;
  height: 65px;
  filter: brightness(100%);
}

/* Pulse Animation */
@keyframes tbx-whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Sizes */
@media (max-width: 768px) {
  .tbx-whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 40px;
    right: 20px;
  }

  .tbx-whatsapp-icon {
    width: 60px;
    height: 60px;
  }

  /*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 18px;
    /* moved from right to left */
    bottom: 45px;
    z-index: 99999;
    background-color: #c74818;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
}

@media (max-width: 480px) {
  .tbx-whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 15px;
  }

  .tbx-whatsapp-icon {
    width: 60px;
    height: 60px;
  }


  /*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 18px;
    /* moved from right to left */
    bottom: 45px;
    z-index: 99999;
    background-color: #c74818;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
}

.socialbox-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 0;

}

.socialbox-icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #EB5928;
  color: #fff;
  font-size: 17px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.socialbox-icon:hover {
  background: #333;
  transform: translateY(-5px);
}

/* Individual icon colors */
.fb:hover {
  background: #c50202;
}

.ig:hover {
  background: #c50202;
}

.ln:hover {
  background: #c50202;
}

/* Responsive */
@media (max-width: 600px) {
  .socialbox-inline {
    gap: 15px;
  }

  .socialbox-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Container positioned relative for animation */
.wabubble-container {
  position: fixed;
  bottom: 32px;
  right: -200px;
  /* start off screen */
  z-index: 9999;
  transition: right 0.5s ease;
}

/* Button design */
.wabubble-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #0abb4b;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Icon inside button */
.wabubble-btn i {
  font-size: 28px;
}

/* Hover effect */
.wabubble-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Text remains visible on small screens */
@media (max-width: 600px) {
  .wabubble-btn {
    padding: 8px 14px;
    /* adjust padding to fit screen */
    gap: 8px;
    /* spacing between icon and text */
    width: auto;
    /* auto width to fit text */
    justify-content: flex-start;
    /* align icon and text properly */
    font-size: 14px;
    /* slightly smaller font for mobile */
  }

  .wabubble-text {
    display: inline;
    /* keep text visible */
  }
}


/* Animation: slide in after page load */
body.loaded .wabubble-container {
  right: 10px;
}

/* Section Wrapper */
.rc-card-section {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 100px;
  padding-bottom: 20px;
  max-width: 1200px;
  margin: auto;
}

.rc-card-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Left Card with Image */
.rc-card-left {
  flex: 1 1 40%;
  position: relative;
  min-width: 300px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease;
}

.rc-card-left img {
  width: 100%;
  display: block;
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

.rc-card-left:hover img {
  transform: scale(1);
}

/* Decorative Circle Icons */
.rc-card-left .rc-deco-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #c74818;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.rc-card-left .rc-icon-1 {
  top: -10px;
  left: -10px;
}

.rc-card-left .rc-icon-2 {
  bottom: -10px;
  right: -10px;
}

/* Right Content */
.rc-card-right {
  flex: 1 1 50%;
  min-width: 300px;

  border-radius: 25px;
  padding: 50px 35px;

  position: relative;
  overflow: hidden;
}

.rc-card-right h2 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.rc-card-right p {
  color: #555;
  margin-bottom: 18px;
  line-height: 1.7;
}

/* Benefits Grid */
.rc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.rc-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7f9fb;
  padding-left: 4px;
  padding-right: 4px;

  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.rc-benefit i {
  color: #c74818;
  font-size: 22px;
}

.rc-benefit span {
  font-weight: 600;
  color: #333;
}

.rc-benefit:hover {
  background: #c74818;
}

.rc-benefit:hover i,
.rc-benefit:hover span {
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .rc-card-wrapper {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .rc-card-left,
  .rc-card-right {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .rc-card-right h2 {
    font-size: 24px;
  }

  .rc-benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

/* Scroll animation */
.rc-card-left,
.rc-card-right {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.rc-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Section wrapper */
.slideup-benefits-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.slideup-benefits-section h2 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.slideup-benefits-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* Grid */
.slideup-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Card */
.slideup-benefit-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

/* Card visible class */
.slideup-benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Icon */
.slideup-benefit-icon {
  width: 60px;
  height: 60px;
  background: #c74818;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: transform 0.4s ease;
}

/* Icon bounce on hover */
.slideup-benefit-card:hover .slideup-benefit-icon {
  transform: translateY(-10px);
}

/* Title */
.slideup-benefit-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2c3e50;
}

/* Description */
.slideup-benefit-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .slideup-benefits-section h2 {
    font-size: 28px;
  }

  .slideup-benefit-card {
    padding: 25px 15px;
  }

  .slideup-benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .slideup-benefits-section h2 {
    font-size: 24px;
  }

  .slideup-benefit-title {
    font-size: 16px;
  }

  .slideup-benefit-desc {
    font-size: 13px;
  }
}

.renoabout-section {
  width: 100%;
  background: linear-gradient(135deg, #f7f7f7 50%, #ffffff 50%);
  padding: 100px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

/* Left Image */
.renoabout-image {
  flex: 1 1 45%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transform: translateX(-50px);
  opacity: 0;
  transition: all 1s ease;
}

.renoabout-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

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

/* Right Content */
.renoabout-content {
  flex: 1 1 45%;
  transform: translateX(50px);
  opacity: 0;
  transition: all 1s ease;
}

.renoabout-content.active,
.renoabout-image.active {
  transform: translateX(0);
  opacity: 1;
}

.renoabout-content h2 {
  font-size: 2rem;
  color: #1b1b1b;
  margin-bottom: 15px;
  position: relative;
}

.renoabout-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 60px;
  height: 3px;
  background: #e67e22;
  border-radius: 3px;
}

.renoabout-content p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: left;
}

/* Key Points */
.renoabout-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.renoabout-point {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 15px 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.renoabout-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.renoabout-point i {
  color: #c74818;
  font-size: 1.5rem;
}

.renoabout-point span {
  color: #333;
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .renoabout-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 8%;
  }

  .renoabout-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .renoabout-points {
    justify-items: left;
  }
}

.renovnova-section {
  padding: 60px 4%;
  text-align: center;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.renovnova-section h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.renovnova-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 120px;
  height: 5px;
  background: #ff6b3c;
  transform: translateX(-50%);
  border-radius: 3px;
}

.renovnova-section p {
  color: #666;
  margin-bottom: 60px;

  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.renovnova-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Card Design */
.renovnova-card {
  position: relative;
  flex: 1 1 350px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 60px 20px 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.renovnova-card.active {
  opacity: 1;
  transform: translateY(0);
}

.renovnova-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

/* Floating icon */
.renovnova-icon {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #c74818, #f3a12f);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(255, 100, 0, 0.3);
  transition: transform 0.4s ease;
}

.renovnova-card:hover .renovnova-icon {
  transform: translateX(-50%) scale(1.2) rotate(15deg);
}

.renovnova-card h3 {
  margin-top: 70px;
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: #222;
}

.renovnova-card p {

  color: #555;
  line-height: 1.6;
}

/* Diagonal overlay */
.renovnova-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 50%;
  background: rgba(255, 107, 60, 0.05);
  transform: rotate(-25deg);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 992px) {
  .renovnova-card {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .renovnova-card {
    max-width: 90%;
    padding: 80px 20px 20px;
  }
}

@media (max-width: 480px) {
  .renovnova-card {
    max-width: 100%;
    padding: 80px 15px 20px;
  }
}

/* ===== UNIQUE ONLINE PROJECTS SECTION ===== */
.projnova-section {
  padding-top: 150px;
  padding-bottom: 80px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #f7f8fa);
}

.projnova-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.projnova-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100px;
  height: 4px;
  background: #ff6b3c;
  transform: translateX(-50%);
  border-radius: 2px;
}

.projnova-section p {
  color: #666;

  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Carousel Item */
.projnova-carousel .projnova-item {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projnova-carousel .projnova-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Image */
.projnova-carousel .projnova-item img {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  object-fit: cover;
  height: 180px;
}

/* Project Info */
.projnova-info {
  padding: 20px;
  text-align: left;
}

.projnova-info h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: #222;
}

.projnova-info p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* Overlay Icon */
.projnova-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 107, 60, 0.9);
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.projnova-item:hover .projnova-overlay {
  transform: scale(1.2) rotate(15deg);
}

/* Responsive */
@media (max-width: 768px) {
  .projnova-info h3 {
    font-size: 1rem;
  }

  .projnova-info p {
    font-size: 0.9rem;
  }
}

.proj-discuss-btn-wrap {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.proj-discuss-btn {
  display: inline-block;
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff7b3c, #ffb347);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 107, 60, 0.4);
  transition: all 0.4s ease;
}

.proj-discuss-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 107, 60, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .proj-discuss-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .proj-discuss-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}

.projowl-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 70px 5%;
  background: linear-gradient(135deg, #ffffff, #f1f3f6);
  align-items: center;
}

/* Left Side – Completed Projects */
.projowl-left {
  flex: 1 1 55%;
}

.projowl-left h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.projowl-left h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #ff6a3d;
  border-radius: 2px;
}

.projowl-left p {
  color: #555;
  max-width: 550px;
  margin-bottom: 35px;
}

.projowl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.projowl-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.projowl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.projowl-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.projowl-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 106, 61, 0.85);
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-weight: 500;
  font-size: 1.1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.projowl-card:hover .projowl-overlay {
  transform: translateY(0);
}

/* Right Side – Customer Reviews */
.projowl-right {
  flex: 1 1 40%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px 25px;
  overflow: hidden;
  position: relative;
}

.projowl-right::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: #ff6a3d;
  border-radius: 50%;
  opacity: 0.08;
  animation: bubbleFloat 5s infinite ease-in-out;
}

@keyframes bubbleFloat {

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

  50% {
    transform: translateY(15px);
  }
}

.projowl-right h3 {
  text-align: center;
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 25px;
  position: relative;
}

.projowl-right h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: #ff6a3d;
  border-radius: 2px;
}

/* Owl Carousel Style */
.projowl-carousel .item {
  background: #f8f9fb;
  border-left: 4px solid #ff6a3d;
  border-radius: 10px;
  padding: 20px 25px;
  margin: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.projowl-carousel .item:hover {
  transform: scale(1.02);
}

.projowl-carousel .item p {
  font-style: italic;
  color: #444;
  margin-bottom: 12px;
}

.projowl-carousel .item h5 {
  font-size: 1rem;
  color: #222;
  font-weight: 600;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .projowl-section {
    flex-direction: column;
  }

  .projowl-right {
    margin-top: 40px;
  }
}

:root {
  --accent: #ff6a3d;
  --bg-light: #f4f7fb;
  --text-dark: #222;
  --text-gray: #555;
}



/* ====== COMPLETED PROJECTS SECTION ====== */
.projx-section {
  padding-top: 140px;
  padding-bottom: 50px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.projx-section h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.projx-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100px;
  height: 4px;
  background: var(--accent);
  transform: translateX(-50%);
  border-radius: 3px;
}

.projx-section p {
  color: var(--text-gray);
  margin-bottom: 50px;

  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.projx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.projx-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.projx-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.projx-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.projx-card h3 {
  margin: 15px 0 10px;
  color: #111;
  font-size: 1.15rem;
}

.projx-card p {


  margin-bottom: 20px;
  padding: 0 15px;
}

/* ====== CUSTOMER REVIEWS SECTION ====== */
.reviewx-section {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.reviewx-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}



.reviewx-section p {

  margin-bottom: 40px;

  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.reviewx-carousel .item {
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
  border-radius: 15px;
  padding: 25px 20px;
  margin: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.reviewx-carousel .item:hover {
  transform: translateY(-8px);
}

.reviewx-carousel .item i {
  color: var(--accent);
  font-size: 30px;
  margin-bottom: 10px;
}

.reviewx-carousel .item p {
  font-style: italic;

  font-size: 0.95rem;
  line-height: 1.5;
}

.reviewx-carousel .item h4 {
  margin-top: 15px;
  font-weight: 600;
  color: #111;
  font-size: 1rem;
}

.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  transition: 0.3s;
}

.owl-dots .owl-dot.active span {
  background: var(--accent);
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .projx-card img {
    height: 180px;
  }

  .projx-section h2,
  .reviewx-section h2 {
    font-size: 1.8rem;
  }
}