/* fonts import */
@import url("../fonts/octin_sports_rg.ttf");
body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

/*header section*/
.hero_area {
  min-height: 75vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 110px;
}

.sub_page .hero_area {
  min-height: auto;
}

.sub_page .header_section {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header_section {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header_section.scrolled {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

/* Top Bar Styling */
.top_bar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 0 0;
}

.top_info {
  display: flex;
  gap: 30px;
  align-items: center;
}

.top_link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

.top_link:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.top_link i {
  font-size: 13px;
  opacity: 0.8;
}

.top_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.top_bar .social_box {
  display: flex;
  gap: 10px;
}

.top_bar .social_box a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.top_bar .social_box a:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Language Selector in Top Bar */
#langSelect {
  height: 34px;
  padding: 0 35px 0 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

#langSelect:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

#langSelect:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

#langSelect option {
  background: #2d2d2d;
  color: #ffffff;
  padding: 10px;
  font-weight: 500;
}

/* Main Navigation */
.main_nav {
  background: #ffffff;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 12px 12px;
}

.header_section .container-fluid {
  padding-right: 50px;
  padding-left: 50px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 25px 22px;
  margin: 0;
  color: #4a4a4a;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover {
  color: #1a1a1a;
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #000000;
  font-weight: 700;
}

.custom_nav-container .navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px 3px 0 0;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover::after {
  width: 70%;
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link::after {
  width: 70%;
}

/* Phone in Navigation */
.nav-phone {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.nav-phone .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #2d2d2d;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #2d2d2d;
}

.nav-phone .phone-link:hover {
  background: #ffffff;
  color: #2d2d2d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-phone .phone-link i {
  font-size: 14px;
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
  /* Show compact top bar on mobile */
  .top_bar {
    display: none;
  }
  
  .top_info {
    display: none;
  }
  
  .top_bar .row {
    justify-content: center;
  }
  
  .top_bar .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
  }
  
  .top_right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  
  .social_box {
    display: flex;
    gap: 8px;
  }
  
  .social_box a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
  
  #langSelect {
    font-size: 12px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  #langSelect option {
    background: #2d2d2d;
    color: #ffffff;
  }
  
  /* Adjust header for mobile */
  .header_section {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  
  /* Add padding to body to prevent header overlap */
  body {
    padding-top: 65px;
  }
  
  /* Mobile navbar adjustments */
  .main_nav {
    box-shadow: none;
    padding: 5px 0;
  }
  
  .custom_nav-container {
    padding: 0;
  }
  
  /* Better mobile logo and toggler spacing */
  .navbar-brand {
    padding: 5px 0;
  }
  
  .navbar-logo {
    height: 36px;
    max-height: 40px;
  }
  
  /* Enhanced mobile toggler */
  .custom_nav-container .navbar-toggler {
    border: 2px solid rgba(45, 45, 45, 0.1);
    border-radius: 6px;
    padding: 8px;
    width: 38px;
    height: 38px;
    background: rgba(45, 45, 45, 0.03);
    transition: all 0.3s ease;
  }
  
  .custom_nav-container .navbar-toggler:hover {
    background: rgba(45, 45, 45, 0.08);
    border-color: rgba(45, 45, 45, 0.2);
  }
  
  .custom_nav-container .navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.1);
  }
  
  .custom_nav-container .navbar-toggler span {
    width: 20px;
    height: 2px;
    margin: 3px 0;
  }
  
  /* Mobile menu dropdown */
  .navbar-collapse {
    background: #ffffff;
    margin: 10px -15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Mobile nav items styling */
  .custom_nav-container .navbar-nav {
    padding: 10px 0;
  }
  
  .custom_nav-container .navbar-nav .nav-item {
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    margin: 0;
  }
  
  .custom_nav-container .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #2d2d2d;
    display: block;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link:hover {
    background: rgba(45, 45, 45, 0.04);
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link::after {
    display: none;
  }
  
  .custom_nav-container .navbar-nav .nav-item.active .nav-link {
    background: rgba(45, 45, 45, 0.08);
    font-weight: 600;
    color: #000000;
  }
  
  /* Phone in mobile menu */
  .nav-phone {
    margin: 15px 0 10px;
    padding: 0 15px;
    justify-content: center;
    display: flex;
  }
  
  .nav-phone .phone-link {
    width: 100%;
    justify-content: center;
    max-width: 280px;
    padding: 14px 25px;
    font-size: 15px;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .nav-phone .phone-link i {
    font-size: 16px;
  }
  
  /* Mobile language selector in menu */
  .mobile-lang-selector {
    display: block;
    text-align: center;
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 10px;
  }
  
  .mobile-lang-selector label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }
  
  #langSelectMobile {
    width: 100%;
    max-width: 280px;
    padding: 12px 15px;
    font-size: 15px;
    border: 2px solid #2d2d2d;
    border-radius: 6px;
    background: #ffffff;
    color: #2d2d2d;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  #langSelectMobile:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.1);
  }
}

/* Hide mobile language selector on desktop */
@media (min-width: 992px) {
  .mobile-lang-selector {
    display: none;
  }
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand span {
  font-size: 24px;
  font-weight: 700;
  color: #2d2d2d;
  text-transform: uppercase;
}

/* navbar logo sizing and alignment */
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.navbar-logo{
  height: 55px;
  max-height: 65px;
  width: auto;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

@media (max-width:576px){
  .navbar-logo { height: 42px; max-height: 48px; }
}

.custom_nav-container {
  z-index: 99999;
  padding: 5px 0;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #2d2d2d;
  border-radius: 4px;
  margin: 6px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #2d2d2d;
  border-radius: 4px;
  top: -9px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.slider_section .slider_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .slider_bg_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider_section .slider_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(47, 37, 25, 0.85)), to(rgba(47, 37, 25, 0.55)));
  background: linear-gradient(to right, rgba(47, 37, 25, 0.85), rgba(47, 37, 25, 0.55));
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel {
  width: 100%;
  z-index: 3;
}

.slider_section .detail-box {
  color: #ffffff;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
}

.slider_section .detail-box p {
  margin: 25px 0;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #fa7d09;
  color: #ffffff;
  border-radius: 0;
  border: 1px solid #fa7d09;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: transparent;
  color: #fa7d09;
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 0;
  border: 1px solid #ffffff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: transparent;
  color: #ffffff;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.slider_section .carousel-indicators li {
  background-color: #fa7d09;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 17px;
  height: 17px;
  background-color: #ffffff;
}

/* Quotes inside carousel */
.carousel-quotes {
  margin-top: 30px;
  padding: 20px 0;
}

.quote-slide {
  animation: fadeIn 0.8s ease-in;
  display: none;
}

.quote-slide.active {
  display: block;
}

.slide-quote {
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 10px;
  opacity: 0.95;
}

.slide-author {
  font-size: 13px;
  color: #fa7d09;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

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

.service_section .box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 45px;
}

.service_section .box.b2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* Footer/contact items: icon on the left, text to the right and allowed to wrap.
   The column itself is pushed to the right with Bootstrap (`ml-lg-auto`).
   Rules below apply to both generic .contact_nav and the .info_section variant. */
.contact_nav a {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* icon left, text follows */
  gap: 12px;
  padding: 6px 0;
  color: inherit;
}

.contact_nav a i {
  flex: 0 0 28px; /* reserve space for the icon */
  width: 28px;
  text-align: left;
  font-size: 18px;
  color: inherit; /* inherit color so icons are visible on dark footers */
}

.contact_nav a span {
  display: inline-block;
  flex: 1 1 auto; /* allow text to wrap cleanly */
  text-align: left;
}

.service_section .box .img-box img {
  width: 100%;
}

.service_section .box .detail-box {
  background-color: #f4f5f6;
  padding: 15px;
  min-height: 265px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
}

.service_section .box .detail-box a {
  color: #fa7d09;
}

.about_section {
  padding-top: 80px;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .about-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about_section .about-img-box img {
  width: 100%;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.about_section .about-img-box:hover img {
  transform: scale(1.05);
}

.about_section .about-detail-box {
  padding-left: 40px;
}

.about_section .about-detail-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about_section .about-detail-box p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-top: 15px;
  margin-bottom: 35px;
}

.about_section .about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: 50px;
  border: 2px solid #1a1a1a;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.about_section .about-btn i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.about_section .about-btn:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.about_section .about-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .about_section .about-detail-box {
    padding-left: 0;
    padding-top: 40px;
  }
  
  .about_section .about-detail-box h2 {
    font-size: 36px;
  }
}

.work_section {
  position: relative;
  color: #333333;
  background-color: #ffffff;
}

.work_section .work_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
  position: relative;
}

.work_section .work_container .box {
  background-color: #ffffff;
  color: #000000;
  overflow: hidden;
}

/* Ensure carousel/work items have consistent image sizing and padding */
.work_owl-carousel .item .box { padding: 8px; }
.work_owl-carousel .item .box .img-box { overflow: hidden; border-radius: 8px; }
.work_owl-carousel .item .box .img-box img,
.work_section .work_container .box .img-box img {
  width: 100%;
  aspect-ratio: 16/9; /* responsive proportional thumbnails */
  height: auto;
  object-fit: cover;
  display: block;
}

/* On small screens use a slightly taller aspect for thumbnails and restore container padding so items don't touch the edge */
@media (max-width: 576px) {
  .work_owl-carousel .item .box .img-box img,
  .work_section .work_container .box .img-box img { aspect-ratio: 4/3; }

  /* ensure the work section has side padding on small screens */
  .work_section .container-fluid.pr-0 {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* center carousel items and give a little side spacing */
  .work_owl-carousel .owl-stage-outer { padding-left: 24px; padding-right: 24px; }

  /* On phones make each carousel cell center-aligned so the visible item sits mid-screen */
  .work_owl-carousel .owl-item { display:flex; justify-content:center; }

  .work_owl-carousel .item .box { margin: 0 auto; max-width: 360px; }
  
  /* Fix heading text overflow on mobile */
  .work_section .heading_container h2 {
    font-size: 18px;
    line-height: 1.4;
    padding: 0 15px;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Better spacing for work section detail boxes on mobile */
  .work_section .work_container .box .detail-box {
    padding: 15px 12px;
  }
  
  .work_section .work_container .box .detail-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .work_section .work_container .box .detail-box p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}

/* Additional carousel/mobile tweaks to keep items centered and evenly spaced */
@media (max-width: 768px) {
  .work_owl-carousel .owl-stage-outer { padding-left: 8px; padding-right: 10px; }
  .work_owl-carousel .owl-item { padding: 0 6px; }
  .work_owl-carousel .item .box { max-width: 360px; margin: 0; }
  /* ensure the outer container has side padding so items aren't flush to the edge */
  .work_section .container-fluid.pr-0 { padding-left: 10px; padding-right: 10px; }
  
  /* Optimize heading for tablets and mobile */
  .work_section .heading_container h2 {
    font-size: 20px;
    line-height: 1.4;
    padding: 0 10px;
  }
  
  /* Better card spacing */
  .work_section .work_container .box .detail-box {
    padding: 20px 15px;
  }
}

/* Hide prev/next arrow buttons in the lightbox on smaller screens (swipe is available) */
@media (max-width: 768px) {
  .image-lightbox button.lb-prev,
  .image-lightbox button.lb-next { display: none; }
}

/* --- Carousel visual tweaks requested --- */
/* Reduce left padding so items sit more to the left (user requested a bit more left-shift) */
.work_owl-carousel { padding-left: 0; padding-right: 12px; }
.work_owl-carousel .owl-stage-outer { display: block; padding-left: 2px; }
.work_owl-carousel .owl-item { display: flex; justify-content: flex-start; }

/* Modern work cards with shadow and hover effects */
.modern-work-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.modern-work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.modern-work-image {
  position: relative;
  overflow: hidden;
}

.modern-work-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.modern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.modern-view-btn {
  width: 60px;
  height: 60px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.modern-view-btn:hover {
  background: #000000;
  color: #ffffff;
  transform: scale(1.1);
}

/* single consolidated rule for item boxes — left-aligned */
.work_owl-carousel .item .box { background: transparent; padding: 0 12px; margin: 0; max-width: 420px; }
.work_owl-carousel .item .box .img-box { padding: 0; background: transparent; border-radius: 12px; overflow: hidden; }

/* Modern work section titles */
.modern-title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.modern-subtitle {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
}

.modern-cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #000000;
}

.modern-cta-btn:hover {
  background-color: transparent;
  color: #000000;
}

/* Use fixed heights with object-fit and object-position tweaks instead of forcing aspect-ratio.
   This keeps images uniform but lets you tweak the framing per-image with utility classes. */
.work_owl-carousel .item .box .img-box img,
.work_section .work_container .box .img-box img {
  width: 100%;
  height: 280px; /* increased thumbnail height */
  object-fit: cover;
  object-position: center; /* default framing */
  display: block;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

@media (max-width: 576px) {
  .work_owl-carousel .item .box .img-box img,
  .work_section .work_container .box .img-box img { height: 240px; }
  
  .modern-work-image img {
    height: 240px !important;
  }
  
  .modern-title {
    font-size: 32px;
  }
  
  .modern-subtitle {
    font-size: 14px;
  }
  
  .work_section .owl-carousel .owl-nav {
    margin-top: 30px;
  }
  
  .work_section .owl-carousel .owl-nav button.owl-next,
  .work_section .owl-carousel .owl-nav button.owl-prev {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Utility classes to tweak framing per image (apply class to the <img> element) */
.img-pos-top{ object-position: top; }
.img-pos-bottom{ object-position: bottom; }
.img-pos-left{ object-position: left; }
.img-pos-right{ object-position: right; }
.img-pos-center{ object-position: center; }

.work_section .work_container .box .img-box {
  position: relative;
}

.work_section .work_container .box .img-box img {
  width: 100%;
}

.work_section .work_container .box .detail-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(47, 37, 25, 0.85);
  color: #ffffff;
  padding: 15px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.work_section .work_container .box .detail-box h4 {
  font-weight: 600;
}

.work_section .work_container .box .detail-box p {
  font-size: 15px;
}

.work_section .work_container .box .detail-box a {
  color: #fa7d09;
}

.work_section .work_container .box:hover .detail-box {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Disable hover overlay on work items: hide the detail-box that slides up on hover */
.work_section .work_container .box .detail-box {
  display: none !important;
}

.work_section .owl-carousel {
  position: unset;
}

.work_section .owl-carousel .owl-nav {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.work_section .owl-carousel .owl-nav button.owl-next,
.work_section .owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
  margin: 0;
  border-radius: 50%;
  outline: none;
  background-color: #000000;
  color: #ffffff;
  font-size: 20px;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.work_section .owl-carousel .owl-nav button.owl-next:hover,
.work_section .owl-carousel .owl-nav button.owl-prev:hover {
  background-color: #ffffff;
  color: #000000;
}

.work_section .owl-carousel .owl-nav button.owl-next span,
.work_section .owl-carousel .owl-nav button.owl-prev span {
  display: none;
}

.work_section .owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 8px;
}

.work_section .owl-carousel .owl-dot {
  width: 12px;
  height: 12px;
  background-color: #cccccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.work_section .owl-carousel .owl-dot.active {
  width: 30px;
  border-radius: 6px;
  background-color: #000000;
}

.work_section .owl-carousel .owl-dot:hover {
  background-color: #666666;
}

.contact_section {
  position: relative;
}

.contact_section .heading_container {
  margin-bottom: 25px;
}

.contact_section .heading_container h2 {
  text-transform: uppercase;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  outline: none;
  color: #101010;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: #333;
}

.contact_section .form_container input:-ms-input-placeholder {
  color: #333;
}

.contact_section .form_container input::-ms-input-placeholder {
  color: #333;
}

.contact_section .form_container input::placeholder {
  color: #333;
}

.contact_section .form_container input.message-box {
  height: 120px;
}

.contact_section .form_container button {
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: #fa7d09;
  color: #ffffff;
  border-radius: 5px;
  border: 1px solid #fa7d09;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.filter-btn {
  border-radius: 25px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-radius: 25px;
}

.filter-btn.active {
  border-radius: 25px;
  background-color: #333;
  color: #fff;
}

.contact_section .form_container button:hover {
  background-color: transparent;
  color: #fa7d09;
}

.contact_section .map_container {
  height: 345px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0;
}

.contact_section .map_container .map {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact_section .map_container .map #googleMap {
  height: 100%;
}

/* client section start */
.client_section .heading_container {
  margin-bottom: 30px;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 15px;
}

.client_section .box .img-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 105px;
  margin-bottom: -50px;
  margin-left: 25px;
  position: relative;
}

.client_section .box .img-box img {
  border-radius: 100%;
  border: 5px solid #efefef;
}

.client_section .box .detail-box {
  background-color: #ffffff;
  padding: 60px 25px 15px 25px;
  border: 5px solid #efefef;
}

.client_section .box .detail-box h6 {
  font-weight: 600;
  font-size: 18px;
  margin: 15px 0 5px 0;
}

.client_section .box .detail-box p {
  margin-bottom: 0;
  font-size: 15px;
  margin-bottom: 10px;
}

.client_section .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
  padding: 0 15px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  background-color: #fa7d09;
  color: #ffffff;
  outline: none;
  bottom: 0px;
  border-radius: 5px;
  font-size: 24px;
  margin-right: 10px;
}

/* client section end */

/* quotes section start */
.quotes_section {
  background-color: #f8f8f8;
  padding: 90px 0;
}

.quotes_section .heading_container h2 {
  margin-bottom: 60px;
  color: #2f2519;
}

.quotes_container {
  margin-top: 45px;
}

.quote-box {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-left: 4px solid #fa7d09;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

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

.quote-icon {
  font-size: 45px;
  color: #fa7d09;
  margin-bottom: 20px;
  opacity: 0.3;
}

.quote-text {
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.quote-author {
  font-weight: 600;
  color: #2f2519;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.info_section {
  background-color: #2f2519;
  color: #ffffff;
  padding: 60px 0 40px;
}

/* Copyright Section */
.copyright_section {
  background-color: #1a1a1a;
  padding: 15px 0;
  text-align: center;
}

.copyright_section p {
  color: #ffffff;
  font-size: 13px;
  margin: 0;
}

.copyright_section a {
  color: #cccccc;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.copyright_section a:hover {
  color: #ffffff;
}

/* Footer About Section */
.footer-about {
  padding-right: 20px;
}

.footer-logo-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.footer-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: invert(1) brightness(1.2);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Social Media Icons */
.info_section .social_box {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.info_section .social_box a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.info_section .social_box a:hover {
  background: #ffffff;
  color: #2f2519;
  border-color: #ffffff;
}

/* Footer Headings */
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer Links */
.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ffffff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #cccccc;
}

.footer-services ul li {
  color: #ffffff;
  font-size: 14px;
}

/* Footer Contact */
.footer-contact .contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.footer-contact .contact-item i {
  font-size: 16px;
  color: #ffffff;
  min-width: 20px;
  margin-top: 2px;
}

.footer-contact .contact-item div,
.footer-contact .contact-item a {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
  color: #cccccc;
}

/* Footer Bottom */
.footer_section {
  background-color: #1a120e;
  padding: 15px 0;
  text-align: center;
}

.footer_section p {
  color: #ffffff;
  margin: 0;
  font-size: 11px;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .info_section {
    padding: 50px 0 30px;
  }
}

@media (max-width: 767px) {
  .footer-logo {
    width: 100px;
    height: 100px;
  }
  
  .footer-tagline {
    font-size: 13px;
  }
  
  .footer-links h4,
  .footer-services h4,
  .footer-contact h4 {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  .footer_section p {
    font-size: 10px;
  }
}

/* Old info section styles - keep for compatibility */

.info_section .row > div {
  margin-bottom: 35px;
}

.info_section .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.info_section .contact_nav a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* keep icon left in info section as well */
  color: #ffffff;
}

.info_section .contact_nav a i {
  font-size: 20px;
  margin-left: 0;
  margin-right: 10px;
  flex: 0 0 28px;
}

.info_section .contact_nav a:hover {
  color: #fa7d09;
}

.info_section .info_top {
  padding: 45px 0;
}

.info_section h4 {
  text-transform: uppercase;
  position: relative;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}

.info_section .social_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}

.info_section .social_box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 18px;
  margin-right: 10px;
}

.info_section .social_box a:hover {
  color: #fa7d09;
  border-color: #fa7d09;
}

.info_section .info_form input {
  width: 100%;
  border: none;
  height: 45px;
  margin-bottom: 15px;
  padding-left: 25px;
  background-color: #eaeaea;
  outline: none;
  color: #101010;
}

.info_section .info_form button {
  display: inline-block;
  padding: 10px 45px;
  background-color: #fa7d09;
  color: #ffffff;
  border-radius: 0px;
  border: 1px solid #fa7d09;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.info_section .info_form button:hover {
  background-color: transparent;
  color: #fa7d09;
}

/* Gallery styles for the works/portfolio page */
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.gallery img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.gallery a:hover img {
  transform: scale(1.03);
}

/* Works gallery: filter bar and grid */
.filter-bar{ display:inline-flex; gap:8px; flex-wrap:wrap; justify-content:center; }
.filter-btn{ padding:6px 10px; }
.filter-btn.active{ background:#fa7d09; color:#fff; border-color:#fa7d09; }
.work-grid .work-item{ margin-bottom:18px; }
.work-grid .work-item img{ width:100%; height:200px; object-fit:cover; display:block; border-radius:6px; box-shadow:0 2px 6px rgba(0,0,0,0.12); transition:transform .25s; }
.work-grid .work-item a:hover img{ transform:scale(1.03); }

/* --- Service page visual improvements (not plain white) --- */
.service_section{
  /* subtle gradient to avoid an all-white look */
  background: linear-gradient(180deg, #f6f8fa 0%, #ffffff 60%);
}
.service_section .container{
  padding-top: 30px;
  padding-bottom: 40px;
}
.work-grid .work-item{
  background: #ffffff;
  /* keep a small inner padding so the image sits as a card */
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15,15,15,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.work-grid .work-item img{
  width: 100%;
  height: 260px; /* reasonable preview height */
  object-fit: cover;
  border-radius: 6px;
  display:block;
}
.work-grid .work-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15,15,15,0.08);
}

.filter-bar{ margin-bottom: 18px; }
.filter-bar .filter-btn{ background: transparent; border: 1px solid rgba(0,0,0,0.08); color: #333; }
.filter-bar .filter-btn.active{ background: #333; color: #fff; border-color: #333; }


/* footer section*/
.footer_section {
  position: relative;
  text-align: center;
}

.footer_section p {
  color: #000000;
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */

/* --- Image Lightbox styles --- */
.image-lightbox{
  display:none;
  position:fixed;
  z-index:20000;
  inset:0;
  /* full-screen dark overlay so the image reads as full-screen */
  background: rgba(0,0,0,0.85);
  align-items:center;
  justify-content:center;
  padding:20px;
}
.image-lightbox.open{ display:flex; }
.image-lightbox .lb-content{ max-width:1200px; width:100%; text-align:center; position:relative; }
.image-lightbox img{ max-width:100%; max-height:85vh; box-shadow:0 10px 40px rgba(0,0,0,0.6); border-radius:6px; }
.image-lightbox .lb-caption{ color:#fff; margin-top:12px; font-size:14px; opacity:0.95; }
.image-lightbox .lb-counter{ color:#ddd; font-size:13px; margin-top:6px; }
.image-lightbox button.lb-close,
.image-lightbox button.lb-prev,
.image-lightbox button.lb-next{ position:fixed; background:transparent; border:none; color:#fff; cursor:pointer; padding:12px; font-size:30px; line-height:1; }
.image-lightbox button.lb-close{ right:22px; top:18px; font-size:34px; }
.image-lightbox button.lb-prev{ left:18px; top:50%; transform:translateY(-50%); font-size:42px; }
.image-lightbox button.lb-next{ right:18px; top:50%; transform:translateY(-50%); font-size:42px; }
.image-lightbox button:focus{ outline:2px solid rgba(255,255,255,0.15); }

@media (max-width:576px){
  .image-lightbox button.lb-prev, .image-lightbox button.lb-next{ font-size:30px; left:8px; right:8px; }
  .image-lightbox .lb-caption{ font-size:13px; }
  .image-lightbox button.lb-close{ top:68px; }
}

/* When lightbox is open hide site chrome that can overlap the close button */
/* keep header/logo and social icons visible; lightbox won't hide site chrome */
/* hide header chrome (social icons, language select) while lightbox is open so controls don't overlap) */
.lightbox-open .social_box,
.lightbox-open #langSelect {
  display: none !important;
}

/* hide the header brand/logo while lightbox is open to avoid duplicate logos stacking */
.lightbox-open .navbar-brand,
.lightbox-open .header_section .navbar-brand {
  visibility: hidden !important;
}
/* hide caption text entirely (user requested no name display) */
.image-lightbox .lb-caption{ display: none !important; }

/* small logo link inside the lightbox to return home (top-left) */
.image-lightbox .lb-logo{
  position:fixed;
  left:16px;
  top:18px;
  z-index:20010;
  display:inline-block;
}
.image-lightbox .lb-logo img{ height:36px; width:auto; display:block; border-radius:4px; box-shadow:0 2px 8px rgba(0,0,0,0.08); }

/* Mobile override: force carousel items to center and enlarge the visible thumbnail
   This sits at the end of the stylesheet so it can override earlier cascade rules. */
@media (max-width: 576px) {
  /* give a small stage padding so centered item doesn't touch the viewport edge */
  .work_owl-carousel .owl-stage-outer { padding-left: 12px !important; padding-right: 12px !important; }

  /* make sure each owl-item centers its content on phones */
  .work_owl-carousel .owl-item { display: flex !important; justify-content: center !important; padding: 0 !important; }

  /* allow the active item to be larger so users can see it clearly */
  .work_owl-carousel .item .box { max-width: 420px !important; margin: 0 auto !important; }

  /* slightly increase inner padding for the card and the image preview height */
  .work_owl-carousel .item .box .img-box { padding: 8px !important; }
  .work_owl-carousel .item .box .img-box img { height: 200px !important; width: 100% !important; object-fit: cover; }

  /* hide any forced left alignment coming from earlier rules */
  .work_owl-carousel { padding-left: 0 !important; }
}

/* ===== ENHANCED SERVICE PAGE STYLES ===== */

/* Section subtitle */
.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
  font-weight: 400;
}

/* Controls container */
.controls-container {
  background: #ffffff;
  padding: 25px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 35px;
}

/* Search wrapper */
.search-wrapper {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  pointer-events: none;
}

.search-input {
  padding-left: 45px !important;
  height: 48px;
  border-radius: 4px;
  border: 2px solid #e0e0e0;
  font-size: 15px;
}

.search-input:focus {
  border-color: #000000;
  box-shadow: none;
  outline: none;
}

/* View toggle */
.view-toggle-group {
  display: inline-flex;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 4px;
}

.view-toggle-btn {
  background: transparent;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 2px;
  color: #666;
  font-size: 18px;
}

.view-toggle-btn:hover {
  color: #000000;
}

.view-toggle-btn.active {
  background: #000000;
  color: #ffffff;
  box-shadow: none;
}

/* Results count */
.results-count {
  font-size: 15px;
  color: #555;
}

.results-count strong {
  color: #000000;
  font-size: 18px;
}

/* Enhanced filter bar */
.filter-bar-enhanced {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
}

.filter-btn-modern {
  padding: 10px 18px;
  border-radius: 4px;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn-modern i {
  font-size: 16px;
}

.filter-btn-modern:hover {
  border-color: #000000;
  color: #000000;
  box-shadow: none;
}

.filter-btn-modern.active {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
}

/* Work card styles */
.work-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.work-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.work-image-wrapper {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  padding-top: 75%; /* 4:3 aspect ratio */
}

.work-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.work-image-wrapper img.loaded {
  opacity: 1;
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

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

.work-overlay i {
  font-size: 48px;
  color: #ffffff;
}

.work-info {
  display: none;
}

/* Gallery item animations */
.gallery-item {
  opacity: 1;
}

.gallery-item.fade-in {
  opacity: 1;
}

/* List view styles */
.gallery-grid.list-view .work-card {
  display: flex;
  flex-direction: row;
  max-width: 100%;
}

.gallery-grid.list-view .work-image-wrapper {
  width: 100%;
  padding-top: 75%;
  height: auto;
}

/* No results message */
.no-results-message {
  text-align: center;
  padding: 80px 20px;
  color: #999;
}

.no-results-message i {
  font-size: 64px;
  color: #ddd;
  margin-bottom: 20px;
}

.no-results-message h3 {
  font-size: 24px;
  color: #666;
  margin-bottom: 10px;
}

.no-results-message p {
  font-size: 16px;
  color: #999;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

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

.scroll-to-top:hover {
  background: #333333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .controls-container {
    padding: 20px 15px;
    position: relative;
    top: 0;
  }
  
  .search-input {
    font-size: 14px;
    height: 44px;
  }
  
  .view-toggle-group {
    width: 100%;
    justify-content: center;
  }
  
  .results-count {
    margin-top: 10px;
  }
  
  .filter-bar-enhanced {
    gap: 8px;
  }
  
  .filter-btn-modern {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .gallery-grid.list-view .work-card {
    flex-direction: column;
  }
  
  .gallery-grid.list-view .work-image-wrapper {
    flex: none;
    width: 100%;
    padding-top: 75%;
    height: auto;
  }
  
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .section-subtitle {
    font-size: 14px;
  }
  
  .filter-btn-modern {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .filter-btn-modern i {
    font-size: 14px;
  }
  
  .work-card {
    margin-bottom: 20px;
  }
}
/* ==========================================
   ABOUT PAGE REDESIGN STYLES
   ========================================== */

/* About Hero Section */
.about_hero_section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about_hero_content {
  padding-right: 30px;
}

.about_hero_title {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about_hero_subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
}

.about_hero_stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat_item {
  text-align: center;
}

.stat_number {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.stat_label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about_hero_image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about_hero_image img {
  width: 100%;
  height: auto;
  display: block;
}

.about_badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #000000;
  color: #ffffff;
  padding: 25px 30px;
  border-radius: 4px;
}

.badge_number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.badge_text {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Company Story Section */
.company_story_section {
  padding: 80px 0;
  background: #ffffff;
}

.section_title {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.section_description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.story_card {
  padding: 40px 30px;
  background: #f8f9fa;
  border-radius: 4px;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.story_icon {
  width: 60px;
  height: 60px;
  background: #000000;
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.story_card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

.story_card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Timeline Section */
.timeline_section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.timeline_item:not(:last-child):before {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  width: 2px;
  height: calc(100% + 10px);
  background: #e0e0e0;
}

.timeline_marker {
  width: 60px;
  height: 60px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 30px;
  z-index: 1;
}

.timeline_content {
  flex: 1;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 4px;
  border: 2px solid #f0f0f0;
}

.timeline_content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.timeline_content p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Why Choose Us Section */
.why_choose_section {
  padding: 80px 0;
  background: #ffffff;
}

.feature_box {
  text-align: center;
  padding: 40px 30px;
  background: #f8f9fa;
  border-radius: 4px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature_box:hover {
  background: #000000;
  transform: translateY(-5px);
}

.feature_box:hover .feature_icon,
.feature_box:hover h3,
.feature_box:hover p {
  color: #ffffff;
}

.feature_icon {
  width: 80px;
  height: 80px;
  background: #000000;
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.feature_box:hover .feature_icon {
  background: #ffffff;
  color: #000000;
}

.feature_box h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.feature_box p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

/* Testimonials Section */
.testimonials_section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonial_card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 4px;
  border: 2px solid #f0f0f0;
  margin: 10px;
  height: auto;
}

.testimonial_stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial_stars i {
  margin-right: 3px;
}

.testimonial_text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial_author h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 5px;
}

.testimonial_author span {
  font-size: 14px;
  color: #999;
}

.testimonials_carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonials_carousel .owl-dot {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
}

.testimonials_carousel .owl-dot.active {
  background: #000000;
}

/* CTA About Section */
.cta_about_section {
  padding: 60px 0;
  background: #000000;
  color: #ffffff;
}

.cta_title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.cta_description {
  font-size: 16px;
  color: #cccccc;
  margin: 0;
}

.cta_button {
  display: inline-block;
  padding: 15px 40px;
  background: #ffffff;
  color: #000000;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta_button:hover {
  background: #f0f0f0;
  color: #000000;
  transform: translateY(-2px);
}

/* Responsive Styles for About Page */
@media (max-width: 991px) {
  .about_hero_title {
    font-size: 36px;
  }
  
  .about_hero_content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .about_badge {
    bottom: 20px;
    left: 20px;
    padding: 20px 25px;
  }
  
  .badge_number {
    font-size: 28px;
  }
  
  .timeline_marker {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-right: 20px;
  }
  
  .timeline_item:not(:last-child):before {
    left: 25px;
  }
  
  .section_title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .about_hero_section,
  .company_story_section,
  .timeline_section,
  .why_choose_section,
  .testimonials_section {
    padding: 50px 0;
  }
  
  .about_hero_title {
    font-size: 32px;
  }
  
  .about_hero_subtitle {
    font-size: 16px;
  }
  
  .about_hero_stats {
    gap: 25px;
  }
  
  .stat_number {
    font-size: 32px;
  }
  
  .section_title {
    font-size: 26px;
  }
  
  .about_badge {
    bottom: 10px;
    left: 10px;
    padding: 12px 16px;
  }
  
  .badge_number {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  .badge_text {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  
  .cta_about_section {
    padding: 40px 0;
    text-align: center;
  }
  
  .cta_title {
    font-size: 24px;
  }
  
  .cta_button {
    margin-top: 20px;
  }
  
  .timeline_content {
    padding: 20px;
  }
  
  .timeline_marker {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 15px;
  }
  
  .timeline_item:not(:last-child):before {
    left: 20px;
  }
}

/* ==========================================
   MODERN INDEX PAGE STYLES
   ========================================== */

/* Modern Work Section */
.modern-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.modern-subtitle {
  font-size: 16px;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.modern-work-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin: 10px;
  background: #000000;
}

.modern-work-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.modern-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.modern-work-card:hover .modern-work-image img {
  transform: scale(1.08);
}

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

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

.modern-view-btn {
  width: 60px;
  height: 60px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.modern-view-btn:hover {
  background: #000000;
  color: #ffffff;
  transform: scale(1.1);
}

.modern-cta-btn {
  display: inline-block;
  padding: 15px 45px;
  background: #ffffff;
  color: #000000;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.modern-cta-btn:hover {
  background: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .modern-title {
    font-size: 32px;
  }
  
  .modern-subtitle {
    font-size: 15px;
    padding: 0 15px;
  }
  
  .modern-work-card {
    margin: 10px 5px;
  }
  
  .modern-view-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .modern-cta-btn {
    padding: 12px 35px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .modern-title {
    font-size: 28px;
  }
  
  .modern-work-image {
    aspect-ratio: 1/1;
  }
}

/* ==========================================
   ENHANCED SLIDER SECTION
   ========================================== */

.slider-additional-text {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-top: 15px;
  max-width: 550px;
}

.slider-btn-box {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.slider-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #ffffff;
  color: #000000;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.slider-btn:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

.slider-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.slider-btn-outline:hover {
  background: #ffffff;
  color: #000000;
}

/* Responsive slider adjustments */
@media (max-width: 767px) {
  .slider-additional-text {
    font-size: 14px;
    margin-top: 12px;
  }
  
  .slider-btn-box {
    margin-top: 25px;
    gap: 10px;
  }
  
  .slider-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .slider-additional-text {
    font-size: 13px;
  }
  
  .slider-btn {
    padding: 10px 24px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }
  
  .slider-btn-box {
    flex-direction: column;
    gap: 12px;
  }
}

/* ==========================================
   SWIPER HERO SECTION
   ========================================== */

.slider_section {
  position: relative;
  overflow: hidden;
}

.heroSwiper {
  width: 100%;
  height: 100vh;
}

.heroSwiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 65vh;
  padding: 80px 0;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: 0;
}

.heroSwiper .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 60px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 800;
}

.hero-description {
  font-size: 24px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-description em {
  font-style: italic;
  font-weight: 600;
  color: #f0f0f0;
}

.hero-text {
  font-size: 17px;
  color: #d4d4d4;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-btn-primary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}

.hero-btn-primary:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}


.hero-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero-btn-outline:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.hero-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.heroSwiper .swiper-slide:hover .hero-image img {
  transform: scale(1.05);
}

/* Swiper Navigation */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  color: #ffffff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
  font-size: 20px;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
}

.heroSwiper .swiper-pagination {
  bottom: 30px;
}

.heroSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.5;
}

.heroSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 42px;
  }
  
  .hero-description {
    font-size: 18px;
  }
  
  .hero-text {
    font-size: 15px;
  }
  
  .hero-image {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .heroSwiper {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-text {
    font-size: 14px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-btn {
    width: 100%;
    text-align: center;
    padding: 14px 25px;
    font-size: 14px;
  }
  
  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 80px;
  }
  
  .heroSwiper .swiper-button-prev {
    left: 10px;
  }
  
  .heroSwiper .swiper-button-next {
    right: 10px;
  }
  
  .heroSwiper .swiper-button-next:after,
  .heroSwiper .swiper-button-prev:after {
    font-size: 16px;
  }
  
  /* Hide pagination dots on mobile */
  .heroSwiper .swiper-pagination {
    display: none;
  }
}

@media (max-width: 576px) {
  .heroSwiper {
    min-height: calc(100vh - 80px);
    height: auto;
  }
  
  .heroSwiper .swiper-slide {
    padding: 20px 0;
    min-height: calc(100vh - 80px);
  }
  
  .slide-bg {
    filter: brightness(0.3);
  }
  
  .hero-content {
    padding: 40px 15px;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  
  .hero-title .highlight {
    font-size: 36px;
    display: block;
    margin-top: 5px;
  }
  
  .hero-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .hero-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 100%;
  }
  
  .hero-image {
    margin-top: 20px;
  }
  
  .hero-buttons {
    gap: 12px;
    flex-direction: column;
  }
  
  .hero-btn {
    padding: 14px 30px;
    font-size: 13px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Hide navigation arrows on very small screens to avoid overlap */
  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    display: none;
  }
  
  /* Hide pagination dots on mobile */
  .heroSwiper .swiper-pagination {
    display: none;
  }
}

/* ==========================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   ========================================== */

@media (max-width: 767px) {
  /* General mobile improvements */
  body {
    font-size: 15px;
    padding-top: 60px;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Header optimizations for small phones */
  .header_section {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }
  
  .top_bar {
    padding: 2px 0;
  }
  
  .social_box a {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  
  #langSelect {
    font-size: 11px;
    padding: 3px 6px;
  }
  
  .main_nav {
    padding: 4px 0;
  }
  
  .main_nav .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .navbar-brand {
    padding: 4px 0;
  }
  
  .navbar-logo {
    height: 34px;
    max-height: 38px;
  }
  
  .custom_nav-container .navbar-toggler {
    width: 40px;
    height: 40px;
    padding: 9px;
  }
  
  .custom_nav-container .navbar-toggler span {
    width: 20px;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .nav-phone .phone-link {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .top_bar {
    padding: 8px 0;
  }
  
  .top_info a {
    font-size: 13px;
  }
  
  .social_box a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  #langSelect {
    font-size: 13px;
    padding: 4px 8px;
  }
  
  .navbar-logo {
    max-height: 50px;
  }
  
  .navbar-toggler {
    padding: 8px 10px;
    font-size: 20px;
  }
  
  .navbar-nav {
    padding: 15px 0;
  }
  
  .nav-item {
    padding: 8px 0;
  }
  
  .nav-link {
    font-size: 16px;
    padding: 10px 15px !important;
  }
  
  .nav-phone {
    margin-top: 15px;
    justify-content: center;
  }
  
  .phone-link {
    font-size: 16px;
    padding: 10px 20px;
  }
  
  /* Service cards */
  .service_section .box {
    margin-bottom: 30px;
  }
  
  .service_section .img-box {
    height: 200px;
  }
  
  .service_section h5 {
    font-size: 20px;
    margin: 15px 0 10px;
  }
  
  .service_section p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* About section */
  .about_section {
    padding: 50px 0;
  }
  
  .about_section .heading_container h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .about_section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .about_section .img-box img {
    margin-top: 30px;
  }
  
  /* Work section / Gallery */
  .work_section {
    padding: 50px 0;
  }
  
  .work_section .heading_container h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .work_section p {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .modern-work-card {
    margin-bottom: 20px;
  }
  
  .modern-work-card h3 {
    font-size: 18px;
  }
  
  .modern-cta-btn {
    padding: 12px 30px;
    font-size: 14px;
    margin-top: 30px;
  }
  
  /* Contact form */
  .contact_section {
    padding: 50px 0;
  }
  
  .contact_section .heading_container h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .contact_section input,
  .contact_section textarea {
    font-size: 15px;
    padding: 12px 15px;
    margin-bottom: 15px;
  }
  
  .contact_section button {
    padding: 12px 40px;
    font-size: 14px;
  }
  
  /* Footer */
  .info_section {
    padding: 40px 0 20px;
  }
  
  .info_section h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .footer-tagline {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
  }
  
  .footer-links ul li,
  .footer-services ul li {
    margin-bottom: 8px;
  }
  
  .footer-links a,
  .footer-services ul li {
    font-size: 14px;
  }
  
  .footer-contact .contact-item {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .footer-contact i {
    font-size: 16px;
  }
  
  /* About page specific */
  .about_hero {
    padding: 60px 0 40px;
  }
  
  .about_badge {
    padding: 12px 16px;
    bottom: 15px;
    left: 15px;
    right: auto;
  }
  
  .badge_number {
    font-size: 24px;
  }
  
  .badge_text {
    font-size: 11px;
  }
  
  .stats-container {
    gap: 20px;
    margin-top: 30px;
  }
  
  .stat-item h2 {
    font-size: 36px;
  }
  
  .stat-item p {
    font-size: 14px;
  }
  
  .company-story,
  .timeline-section,
  .why-choose-section,
  .cta-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .story-card,
  .timeline-item,
  .feature-box {
    margin-bottom: 25px;
  }
  
  .story-card h3,
  .timeline-item h3,
  .feature-box h3 {
    font-size: 20px;
  }
  
  .story-card p,
  .timeline-item p,
  .feature-box p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* Service page gallery */
  .gallery-header {
    padding: 40px 15px;
  }
  
  .gallery-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .gallery-description {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .gallery-search-bar {
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }
  
  .search-wrapper {
    width: 100%;
  }
  
  .gallery-search-input {
    font-size: 14px;
    padding: 10px 15px;
  }
  
  .share-button {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .gallery-filters {
    padding: 15px;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .filter-tab {
    min-width: auto;
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .filter-icon {
    width: 30px;
    height: 30px;
  }
  
  .filter-icon i {
    font-size: 14px;
  }
  
  .results-info {
    padding: 10px 15px;
  }
  
  .results-count {
    font-size: 13px;
  }
  
  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
  }
  
  /* Lightbox mobile */
  .lb-content img {
    max-width: 95%;
    max-height: 80vh;
  }
  
  .lb-close {
    font-size: 32px;
    padding: 5px 15px;
  }
  
  .lb-prev,
  .lb-next {
    font-size: 24px;
    padding: 15px 10px;
  }
  
  .lb-caption {
    font-size: 14px;
    padding: 10px;
  }
  
  .lb-counter {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  /* Extra small phones */
  body {
    font-size: 14px;
    padding-top: 58px;
  }
  
  /* Header for tiny phones */
  .top_bar {
    display: none;
  }
  
  .social_box a {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  
  .top_right {
    gap: 10px;
  }
  
  #langSelect {
    font-size: 10px;
    padding: 2px 5px;
  }
  
  .main_nav .container-fluid {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .navbar-logo {
    height: 32px;
    max-height: 36px;
  }
  
  .navbar-brand {
    padding: 3px 0;
  }
  
  .custom_nav-container .navbar-toggler {
    width: 38px;
    height: 38px;
    padding: 8px;
  }
  
  .custom_nav-container .navbar-toggler span {
    width: 18px;
    margin: 3px 0;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 11px 12px;
    font-size: 14px;
  }
  
  .nav-phone .phone-link {
    padding: 11px 18px;
    font-size: 13px;
    max-width: 250px;
  }
  
  .heading_container h2 {
    font-size: 24px !important;
  }
  
  .hero-title {
    font-size: 28px !important;
  }
  
  .hero-title .highlight {
    font-size: 32px !important;
  }
  
  .hero-description {
    font-size: 16px !important;
  }
  
  .hero-text {
    font-size: 14px !important;
  }
  
  .hero-btn {
    padding: 12px 25px !important;
    font-size: 12px !important;
  }
  
  .service_section h5 {
    font-size: 18px;
  }
  
  .modern-work-card h3 {
    font-size: 16px;
  }
  
  .photo-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-filters {
    flex-wrap: wrap;
  }
  
  .filter-tab {
    flex: 1 1 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }
  
  .stat-item h2 {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 24px !important;
  }
  
  .footer-logo {
    max-width: 130px;
  }
  
  /* About badge even smaller on tiny phones */
  .about_badge {
    padding: 10px 12px;
    bottom: 10px;
    left: 10px;
  }
  
  .badge_number {
    font-size: 20px;
  }
  
  .badge_text {
    font-size: 10px;
  }
}

/* Landscape orientation fixes for phones */
@media (max-height: 600px) and (orientation: landscape) {
  .heroSwiper {
    min-height: auto;
  }
  
  .hero-content {
    padding: 20px 15px;
  }
  
  .hero-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .hero-title .highlight {
    font-size: 28px;
  }
  
  .hero-description {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .hero-text {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .hero-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* Additional mobile hero fixes */
@media (max-width: 991px) {
  .hero_area {
    margin-top: 0;
    padding-top: 0;
  }
  
  .slider_section {
    padding-top: 0;
    margin-top: 0;
  }
  
  .heroSwiper {
    min-height: calc(100vh - 85px);
  }
  
  .heroSwiper .swiper-slide {
    min-height: calc(100vh - 85px);
  }
}

@media (max-width: 767px) {
  .heroSwiper {
    min-height: calc(100vh - 80px);
  }
  
  .heroSwiper .swiper-slide {
    min-height: calc(100vh - 80px);
  }
}

@media (max-width: 480px) {
  .heroSwiper {
    min-height: calc(100vh - 75px);
  }
  
  .heroSwiper .swiper-slide {
    min-height: calc(100vh - 75px);
  }
}

