/*!!! RESET & GLOBAL STYLES STARTS !!!*/
:root {
  --theme-color: #ff5e14;
  --black: #000000;
  --white: #ffffff;
  --body-text: #647589;
  --poppins: 'Poppins', sans-serif;
  --roboto: 'Roboto', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--poppins);
  color: var(--body-text);
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
  padding-top: 0;
}
a { text-decoration: none; transition: 0.3s; }
a:hover { text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
/*!!! RESET & GLOBAL STYLES ENDS !!!*/

/*!!! BUTTON STYLES STARTS !!!*/
.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 5px;
  transition: 0.3s;
  background-image: -moz-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  background-image: -webkit-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  background-image: -ms-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  color: #ffffff;
  border: none;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}
.btn:hover {
  color: var(--theme-color);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,94,20,0.3);
}
.btn i { margin-left: 8px; }
.white-btn {
  background: var(--white);
  color: var(--theme-color);
}
.white-btn:hover {
  background-image: -moz-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  background-image: -webkit-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  background-image: -ms-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  color: var(--white);
}
/*!!! BUTTON STYLES ENDS !!!*/

/*!!! TOP HEADER BAR STYLES STARTS !!!*/
.top-header-bar {
  background: #111;
  color: #ddd;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 2px solid var(--theme-color);
  position: relative;
  z-index: 1000;
}
.top-header-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.top-header-left span {
  margin-right: 20px;
  display: inline-block;
}
.top-header-left i {
  color: var(--theme-color);
  margin-right: 6px;
  width: 18px;
}
.top-header-social a {
  color: #ccc;
  margin-left: 12px;
  font-size: 15px;
  display: inline-block;
  transition: 0.3s;
}
.top-header-social a:hover { color: var(--theme-color); transform: translateY(-2px); }
/*!!! TOP HEADER BAR STYLES ENDS !!!*/

/*!!! STICKY HEADER STYLES STARTS !!!*/
.menu-padding { padding: 0 20px; }
.logo-mt { margin-top: 4px; }

#sticky-header {
  transition: all 0.4s ease;
  background: #fff;
  position: relative;
  z-index: 999;
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  width: 100%;
}

#sticky-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
  z-index: 9999;
  animation: slideDown 0.4s ease;
  background: #fff;
  padding: 6px 0;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body.sticky-active .top-header-bar {
  display: none;
}

.header-phone {
  font-weight: 700;
  color: var(--black);
  font-size: 16px;
  display: flex;
  align-items: center;
}
.header-phone i {
  color: var(--theme-color);
  font-size: 20px;
  margin-right: 8px;
}
/*!!! STICKY HEADER STYLES ENDS !!!*/

/*!!! MAIN MENU STYLES STARTS !!!*/
.main-menu nav > ul > li {
  display: inline-block;
  position: relative;
  margin-left: 22px;
}
.main-menu nav > ul > li > a {
  display: block;
  font-size: 16px;
  padding: 18px 0;
  transition: 0.3s;
  line-height: 1;
  text-transform: capitalize;
  color: var(--black);
  font-weight: 700;
}
#sticky-header.sticky .main-menu nav > ul > li > a {
  padding: 12px 0;
}
.main-menu nav > ul > li > a i { font-size: 12px; margin-left: 3px; }
.main-menu nav > ul > li:hover > a,
.main-menu nav > ul > li.active > a { color: var(--theme-color); }

.main-menu nav > ul > li .sub-menu {
  background: #fff;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 120%;
  transition: 0.3s;
  visibility: hidden;
  width: 210px;
  z-index: 9;
  border-top: 3px solid var(--theme-color);
  text-align: left;
}
.main-menu nav > ul > li:hover .sub-menu {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.main-menu nav > ul > li .sub-menu li a {
  color: #666;
  font-size: 14px;
  padding: 11px 18px;
  display: block;
  font-weight: 400;
  border-bottom: 1px solid #f0f0f0;
}
.main-menu nav > ul > li:hover > .sub-menu li > a:hover {
  color: #fff;
  background: var(--theme-color);
}
/*!!! MAIN MENU STYLES ENDS !!!*/

/*!!! SLIDER STYLES STARTS !!!*/
.single-slider {
  background-size: cover;
  background-position: center center;
  min-height: 680px;
  display: flex !important;
  align-items: center;
  position: relative;
}
.slider-content h1 {
  position: absolute;
  z-index: 1;
  font-size: 160px;
  line-height: 1;
  opacity: 0.09;
  top: -50px;
  left: 0;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  color: var(--white);
  font-weight: 900;
}
.slider-content h2 {
  font-size: 80px;
  margin-bottom: 40px;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--white);
  font-weight: 800;
}
.slider-content h2 span {
  color: var(--theme-color);
  font-style: italic;
}
.slider-active .slick-arrow {
  font-size: 20px;
  right: 15%;
  opacity: 1;
  position: absolute;
  text-align: center;
  top: 49%;
  transition: 0.3s;
  color: var(--white);
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 9;
  background-image: -moz-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  background-image: -webkit-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  background-image: -ms-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  border: none;
}
.slider-active .slick-next { top: 39%; right: 10%; }
.slider-active .slick-prev { left: 10%; right: auto; }
.slider-active .slick-arrow:hover { background: var(--white); color: var(--theme-color); }
/*!!! SLIDER STYLES ENDS !!!*/

/*!!! SECTION TITLE STYLES STARTS !!!*/
.section-title { position: relative; }
.section-title h1 {
  position: absolute;
  z-index: 0;
  font-size: 180px;
  line-height: 1;
  opacity: 0.06;
  top: -30px;
  left: 0;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  font-weight: 900;
  pointer-events: none;
}
.section-title > span {
  color: var(--theme-color);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}
.section-title h2 {
  font-size: 44px;
  margin-top: 18px;
  letter-spacing: -0.3px;
  color: var(--black);
  font-weight: 800;
}
.line { padding-left: 60px; position: relative; }
.line::before {
  position: absolute;
  background: var(--theme-color);
  content: "";
  height: 3px;
  width: 40px;
  left: 0;
  bottom: 11px;
}
.section-2 h1 { right: 0; left: auto; }
.white-title span { color: var(--white); }
.white-title h1, .white-title h2 { color: var(--white); }
/*!!! SECTION TITLE STYLES ENDS !!!*/

/*!!! ABOUT SECTION STYLES STARTS !!!*/
.about-us-area { padding: 80px 0; }
.about-us-img { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
/*!!! ABOUT SECTION STYLES ENDS !!!*/

/*!!! SERVICES SECTION STYLES STARTS !!!*/
.services-section { padding: 80px 0; background: #f9f9f9; }
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  transition: 0.4s;
  height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(255,94,20,0.12); }
.service-card .service-img { height: 220px; overflow: hidden; position: relative; }
.service-card .service-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-card .service-img .service-overlay {
  position: absolute; top:0; left:0; right:0; bottom:0;
  background: linear-gradient(135deg, rgba(235,18,10,0.7), rgba(255,94,20,0.7));
  opacity: 0; transition: 0.4s; display: flex; align-items: center; justify-content: center;
}
.service-card:hover .service-img .service-overlay { opacity: 1; }
.service-card .service-img .service-overlay a {
  color: #fff; font-size: 13px; font-weight: 600; text-transform: uppercase;
  border: 2px solid #fff; padding: 8px 22px; border-radius: 30px;
}
.service-card .service-img .service-overlay a:hover { background: #fff; color: var(--theme-color); }
.service-card .service-content { padding: 25px 20px 28px; }
.service-card .service-content .service-icon {
  font-size: 38px; color: var(--theme-color); margin-bottom: 12px; display: inline-block;
}
.service-card .service-content h3 { font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.service-card .service-content p { font-size: 15px; line-height: 1.7; margin-bottom: 15px; }
.service-card .service-content .service-link {
  color: var(--theme-color); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center;
}
.service-card .service-content .service-link i { margin-left: 8px; transition: 0.3s; }
.service-card .service-content .service-link:hover { color: var(--black); }
.service-card .service-content .service-link:hover i { transform: translateX(5px); }
/*!!! SERVICES SECTION STYLES ENDS !!!*/

/*!!! FEATURES SECTION STYLES STARTS !!!*/
.features-02-area { position: relative; background: #f7f7f7; }
.features-bg-img {
  background-size: cover; height: 100%; left: 0; position: absolute; top: 0; width: 50%;
  background-position: center center;
}
.features-02-wrapper { padding: 60px 40px 80px 40px; }
.features-02-link ul li { padding-bottom: 22px; }
.features-02-link ul li:last-child { padding-bottom: 0; }
.features-02-icon { margin-right: 22px; float: left; }
.features-02-icon i {
  font-size: 22px; color: var(--theme-color); line-height: 56px; width: 56px;
  background: #fae9e2; text-align: center; border-radius: 50%; transition: 0.3s;
}
.features-02-link li:hover .features-02-icon i {
  background-image: -moz-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  background-image: -webkit-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  background-image: -ms-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  color: var(--white);
}
.features-02-info { overflow: hidden; }
.features-02-info h3 { font-size: 20px; margin-bottom: 8px; color: var(--black); font-weight: 700; }
/*!!! FEATURES SECTION STYLES ENDS !!!*/

/*!!! COUNTER SECTION STYLES STARTS !!!*/
.counter-area {
  background-position: center center;
  background-size: cover;
  padding: 90px 0 70px;
}
.counter-icon i { font-size: 60px; color: var(--theme-color); line-height: 1; }
.counter-text { margin-bottom: 25px; }
.counter-text h1 { color: var(--white); font-size: 40px; line-height: 1; margin-top: 18px; font-weight: 800; }
.counter-text h1 > span { font-size: 28px; font-weight: 600; color: var(--theme-color); position: relative; top: -20px; left: -2px; }
.counter-text span { color: var(--white); font-size: 14px; font-weight: 500; }
.counter-wrapper .progress { border-radius: 0; height: 6px; overflow: visible; background: rgba(255,255,255,0.25); }
.counter-wrapper .progress-bar {
  background-image: -moz-linear-gradient(0deg, #eb120a 0%, #ff5e14 99%);
  background-image: -webkit-linear-gradient(0deg, #eb120a 0%, #ff5e14 99%);
  background-image: -ms-linear-gradient(0deg, #eb120a 0%, #ff5e14 99%);
  border-radius: 0 30px 30px 0;
  width: 70%;
}
.white-02-title span { color: var(--theme-color); }
.white-02-title h1, .white-02-title h2 { color: var(--white); }
/*!!! COUNTER SECTION STYLES ENDS !!!*/

/*!!! GALLERY SECTION STYLES STARTS !!!*/
.gallery-section { padding: 80px 0; background: #f0f0f0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.4s;
  height: 220px;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 10px 35px rgba(255,94,20,0.25); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay {
  position: absolute; top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.45); opacity: 0; transition: 0.4s;
  display: flex; align-items: center; justify-content: center; flex-direction: column; color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i { font-size: 36px; margin-bottom: 8px; }
.gallery-item .gallery-overlay span { font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
/*!!! GALLERY SECTION STYLES ENDS !!!*/

/*!!! LIGHTBOX STYLES STARTS !!!*/
.lightbox {
  display: none; position: fixed; top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.92); z-index: 99999;
  align-items: center; justify-content: center; animation: fadeIn 0.25s ease;
}
.lightbox.active { display: flex; }
@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
.lightbox .lightbox-content { max-width: 90%; max-height: 90%; position: relative; }
.lightbox .lightbox-content img { width: 100%; height: auto; max-height: 80vh; border-radius: 10px; box-shadow: 0 10px 50px rgba(0,0,0,0.6); }
.lightbox .close-btn {
  position: absolute; top: -50px; right: -10px; font-size: 36px; color: #fff;
  cursor: pointer; transition: 0.3s; background: none; border: none;
}
.lightbox .close-btn:hover { color: var(--theme-color); transform: rotate(90deg); }
.lightbox .lightbox-caption { color: #fff; text-align: center; padding: 12px 0; font-size: 17px; font-weight: 500; }
/*!!! LIGHTBOX STYLES ENDS !!!*/

/*!!! CONTACT SECTION STYLES STARTS !!!*/
.contact-section { padding: 80px 0; background: #fff; }
.contact-info-wrapper .info-item { display: flex; align-items: flex-start; margin-bottom: 28px; }
.contact-info-wrapper .info-item .info-icon {
  width: 56px; height: 56px; min-width: 56px; background: #fae9e2; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-right: 18px; transition: 0.3s;
}
.contact-info-wrapper .info-item .info-icon i { font-size: 22px; color: var(--theme-color); transition: 0.3s; }
.contact-info-wrapper .info-item:hover .info-icon {
  background-image: -moz-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  background-image: -webkit-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  background-image: -ms-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
}
.contact-info-wrapper .info-item:hover .info-icon i { color: #fff; }
.contact-info-wrapper .info-item .info-text h4 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 4px; }

.contact-form-wrapper {
  background: #f9f9f9; padding: 35px 30px; border-radius: 15px; box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}
.contact-form-wrapper h3 { font-size: 26px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.form-group { margin-bottom: 18px; }
.form-group label { font-weight: 600; color: var(--black); font-size: 14px; margin-bottom: 4px; display: block; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid #e8e8e8; border-radius: 8px;
  font-size: 15px; font-family: var(--poppins); transition: 0.3s; background: #fff; color: var(--black);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--theme-color); box-shadow: 0 0 0 3px rgba(255,94,20,0.08);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group .btn { width: 100%; padding: 14px; font-size: 16px; }
/*!!! CONTACT SECTION STYLES ENDS !!!*/

/*!!! FOOTER STYLES STARTS !!!*/
.black-bg { background: #1a1a1a; }
.black-soft-bg { background: #111111; }
.footer-top-area { padding-top: 60px; padding-bottom: 30px; }
.footer-middle-area { margin-top: 40px; padding-top: 50px; border-top: 2px solid #414141; }
.footer-wrapper { margin-bottom: 30px; }
.footer-title {
  font-size: 20px; color: #fff; margin-bottom: 20px; font-weight: 600;
  position: relative; padding-bottom: 18px;
}
.footer-title::before { height: 3px; width: 40px; background: var(--theme-color); content: ""; position: absolute; left: 0; bottom: 0; }
.footer-link ul li { padding-bottom: 10px; }
.footer-link ul li a { color: #d4d4d4; font-size: 14px; font-weight: 400; transition: 0.3s; }
.footer-link ul li a:hover { color: var(--theme-color); border-bottom: 1px solid var(--theme-color); }
.contact-link li { margin-bottom: 16px; }
.contact-address-icon { float: left; margin-right: 14px; }
.contact-address-icon i { font-size: 18px; color: var(--theme-color); position: relative; top: 4px; }
.contact-address-text { overflow: hidden; }
.contact-address-text span { font-size: 16px; color: #d4d4d4; font-weight: 500; }
.footer-text p { color: #d4d4d4; margin-bottom: 20px; line-height: 1.6; }
.footer-icon a {
  color: #9f9f9f; font-size: 14px; display: inline-block; text-align: center; transition: 0.3s;
  height: 38px; width: 38px; line-height: 38px; border: 2px solid #9f9f9f; border-radius: 50%; margin-right: 5px;
}
.footer-icon a:hover {
  color: #fff;
  background-image: -moz-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  background-image: -webkit-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  background-image: -ms-linear-gradient(-51deg, #eb120a 0%, #ff5e14 99%);
  border-color: var(--theme-color);
}
.footer-bottom-area { padding: 18px 0; }
.copyright p { margin-bottom: 0; color: #d4d4d4; font-size: 14px; }
.copyright p a { color: var(--theme-color); }
.copyright p a:hover { text-decoration: underline; }
/*!!! FOOTER STYLES ENDS !!!*/

/*!!! SEARCH MODAL STYLES STARTS !!!*/
#search-modal .modal-dialog { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: none; outline: 0; }
#search-modal .modal-dialog .modal-content { background: 0 0; box-shadow: none; border: none; }
#search-modal .modal-dialog .modal-content form { width: 90%; max-width: 555px; margin: 0 auto; position: relative; }
#search-modal .modal-dialog .modal-content form input {
  width: 100%; font-size: 32px; border: none; border-bottom: 3px solid rgba(255,255,255,0.15);
  background: 0 0; color: #fff; padding-bottom: 12px; padding-right: 40px;
}
#search-modal .modal-dialog .modal-content form input::placeholder { font-size: 30px; color: rgba(255,255,255,0.6); }
#search-modal .modal-dialog .modal-content form button {
  position: absolute; right: 0; font-size: 28px; color: rgba(255,255,255,0.5);
  background: 0 0; border: none; cursor: pointer; top: 10px;
}
.modal-backdrop { background-color: rgba(23,26,33,0.95); }
.modal-backdrop.show { opacity: 1; }
/*!!! SEARCH MODAL STYLES ENDS !!!*/

/*!!! MOBILE MENU STYLES STARTS !!!*/
.mobile-menu { display: none; }
.mobile-menu-toggle { cursor: pointer; padding: 4px 0; }
.mobile-menu-toggle i { font-size: 24px; color: #222; }
.mobile-nav {
  background: #fff; padding: 16px 18px; border-radius: 8px; box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  margin-top: 4px; position: absolute; right: 0; left: 0; z-index: 999; width: 100%;
}
.mobile-nav li { padding: 8px 0; border-bottom: 1px solid #eee; }
.mobile-nav li:last-child { border-bottom: 0; }
.mobile-nav a { color: #333; font-weight: 600; display: block; }
.mobile-nav ul { padding-left: 16px; margin-top: 4px; }
.mobile-nav ul li { padding: 5px 0; border-bottom: none; }
.mobile-nav ul li a { font-weight: 400; color: #666; font-size: 14px; }
/*!!! MOBILE MENU STYLES ENDS !!!*/

/*!!! LOGO STYLES STARTS !!!*/
.logo-text {
  font-family: var(--poppins);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  display: inline-block;
  vertical-align: middle;
}
.logo-text .brand { color: var(--theme-color); }
.logo-text .sub {
  font-weight: 500;
  font-size: 12px;
  color: #333;
  display: block;
  letter-spacing: 0.3px;
  margin-top: 0px;
}
#sticky-header.sticky .logo-text .sub { color: #555; }
/*!!! LOGO STYLES ENDS !!!*/

/*!!! RESPONSIVE STYLES STARTS !!!*/
@media (max-width: 1199px) {
  .features-bg-img { display: none; }
  .features-02-wrapper { padding: 40px 25px 60px 25px; }
  .slider-content h2 { font-size: 70px; }
  .slider-content h1 { font-size: 130px; }
  .slider-active .slick-arrow { display: none !important; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); }
}

@media (max-width: 991px) {
  .main-menu { display: none; }
  .mobile-menu { display: inline-block; vertical-align: middle; margin-left: 8px; }
  .slider-content h2 { font-size: 54px; margin-bottom: 30px; }
  .slider-content h1 { font-size: 90px; top: -35px; }
  .single-slider { min-height: 580px; }
  .section-title h2 { font-size: 34px; }
  .section-title h1 { font-size: 130px; }
  .counter-area { padding: 70px 0 50px; }
  .services-section { padding: 60px 0; }
  .gallery-section { padding: 60px 0; }
  .contact-section { padding: 60px 0; }
  .features-02-wrapper { padding: 30px 20px 50px 20px; }
  
  #sticky-header .container-fluid .row { display: flex; align-items: center; flex-wrap: nowrap; }
  #sticky-header .col-6:first-child { flex: 1; }
  #sticky-header .col-6:last-child { flex: 0 0 auto; width: auto; }
  .header-right { display: flex; align-items: center; }
  .header-phone { font-size: 14px; }
  .header-phone i { font-size: 16px; }
  .logo-text { font-size: 22px; }
  .logo-text .sub { font-size: 11px; }
}

@media (max-width: 767px) {
  .top-header-bar .container { flex-direction: column; align-items: center; text-align: center; }
  .top-header-left span { display: block; margin-right: 0; margin-bottom: 4px; }
  .top-header-social { margin-top: 4px; }
  .slider-content h2 { font-size: 38px; margin-bottom: 22px; }
  .slider-content h1 { font-size: 60px; top: -25px; }
  .single-slider { min-height: 460px; }
  .section-title h2 { font-size: 28px; }
  .section-title h1 { font-size: 90px; top: -18px; }
  .btn { padding: 13px 24px; font-size: 13px; }
  .counter-text h1 { font-size: 34px; }
  .footer-top-area { padding-top: 40px; padding-bottom: 10px; }
  .footer-middle-area { margin-top: 20px; padding-top: 30px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-item { height: 170px; }
  .lightbox .lightbox-content { max-width: 95%; }
  .lightbox .close-btn { top: -40px; right: 0; font-size: 28px; }
  .contact-form-wrapper { padding: 20px 15px; }
  .features-02-wrapper { padding: 20px 15px 40px 15px; }
  .slider-area { margin-top: 0; }
  .line { padding-left: 45px; }
  .line::before { width: 30px; }
  .counter-area .row { justify-content: center !important; }
  .counter-area .col-md-6 { text-align: center; }
  .counter-wrapper { max-width: 280px; margin-left: auto; margin-right: auto; }
  .header-phone span { display: none; }
  .header-phone i { font-size: 20px; margin-right: 0; }
}

@media (max-width: 480px) {
  .slider-content h2 { font-size: 28px; margin-bottom: 18px; }
  .slider-content h1 { font-size: 44px; top: -16px; }
  .single-slider { min-height: 380px; }
  .section-title h2 { font-size: 22px; margin-top: 12px; }
  .section-title h1 { font-size: 60px; }
  .section-title > span { font-size: 15px; }
  .btn { padding: 10px 18px; font-size: 12px; }
  .service-card .service-img { height: 160px; }
  .service-card .service-content { padding: 18px 14px 22px; }
  .service-card .service-content h3 { font-size: 17px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item { height: 140px; }
  .gallery-item .gallery-overlay i { font-size: 24px; }
  .gallery-item .gallery-overlay span { font-size: 11px; }
  .counter-icon i { font-size: 44px; }
  .counter-text h1 { font-size: 28px; }
  .counter-text h1 > span { font-size: 20px; top: -16px; }
  .footer-icon a { height: 32px; width: 32px; line-height: 32px; font-size: 12px; }
  .logo-text { font-size: 20px; }
  .logo-text .sub { font-size: 10px; }
  .mobile-menu-toggle i { font-size: 20px; }
  .header-phone i { font-size: 18px; }
}

.container { max-width: 1200px; }
.slick-slide { outline: none; }
.slick-dots { display: none !important; }
/*!!! RESPONSIVE STYLES ENDS !!!*/


/*!!! SLIDER WITH IMAGE BLUR STARTS !!!*/
.single-slider {
  background-size: cover;
  background-position: center center;
  min-height: 500px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Background blur only - No dark overlay */
.single-slider .slider-bg-blur {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: inherit;
  background-size: cover;
  background-position: center center;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transform: scale(1.1);
  z-index: 0;
}

.single-slider .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Slider Content */
.slider-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  width: 100%;
}

/* Heading Styles - CLEAR WHITE TEXT */
.slider-content h1 {
  font-size: 80px;
  color: #ffffff !important;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 0, 0, 0.6);
  letter-spacing: 2px;
  line-height: 1.2;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 10;
}
.slider-content h1 span {
  color: var(--theme-color);
}

/* Breadcrumb Styles */
.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.breadcrumb-nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb-nav a:hover {
  color: var(--theme-color);
}
.breadcrumb-nav a i {
  font-size: 12px;
}
.breadcrumb-nav .separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.breadcrumb-nav .current {
  color: var(--theme-color);
  font-size: 14px;
  font-weight: 600;
}

/*!!! RESPONSIVE STYLES STARTS !!!*/
@media (max-width: 991px) {
  .single-slider {
    min-height: 400px;
  }
  .slider-content h1 {
    font-size: 55px;
    margin-bottom: 18px;
  }
  .breadcrumb-nav {
    padding: 8px 20px;
    gap: 8px;
  }
  .breadcrumb-nav a,
  .breadcrumb-nav .current {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .single-slider {
    min-height: 350px;
  }
  .slider-content {
    padding: 30px 15px;
  }
  .slider-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }
  .breadcrumb-nav {
    padding: 6px 16px;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .breadcrumb-nav a,
  .breadcrumb-nav .current {
    font-size: 12px;
  }
  .breadcrumb-nav a i {
    font-size: 10px;
  }
  .breadcrumb-nav .separator {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .single-slider {
    min-height: 280px;
  }
  .slider-content {
    padding: 20px 10px;
  }
  .slider-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .breadcrumb-nav {
    padding: 5px 12px;
    gap: 5px;
    border-radius: 30px;
  }
  .breadcrumb-nav a,
  .breadcrumb-nav .current {
    font-size: 10px;
  }
  .breadcrumb-nav a i {
    font-size: 9px;
  }
}
/*!!! RESPONSIVE STYLES ENDS !!!*/
/*!!! SLIDER WITH IMAGE BLUR ENDS !!!*/



.contact-address-text span { font-size: 13px !important; }




/*!!! WHATSAPP FLOATING BUTTON STARTS !!!*/
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn i {
    font-size: 28px;
}

.whatsapp-btn .whatsapp-text {
    display: inline-block;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { transform: translate(-30%, -30%) rotate(0deg); }
    100% { transform: translate(30%, 30%) rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        padding: 12px 18px;
        font-size: 14px;
        gap: 10px;
    }
    
    .whatsapp-btn i {
        font-size: 24px;
    }
    
    .whatsapp-text {
        display: none; /* Mobile par sirf icon dikhe */
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        padding: 10px 14px;
        border-radius: 50px;
    }
    
    .whatsapp-btn i {
        font-size: 22px;
    }
}
/*!!! WHATSAPP FLOATING BUTTON ENDS !!!*/

/*!!! ANIMATED COUNTERS SECTION STARTS !!!*/
.counter-wrapper {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
}

.counter-wrapper:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(240, 91, 43, 0.3);
}

.counter-icon {
    font-size: 48px;
    color: #f05b2b;
    margin-bottom: 15px;
}

.counter-text h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.counter-text h1 span {
    display: inline-block;
}

.counter-text h1 .counter-number {
    min-width: 60px;
}

.counter-text > span {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.progress {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #f05b2b, #ff6b35);
    border-radius: 10px;
    width: 0%;
    transition: width 1.5s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .counter-text h1 {
        font-size: 36px;
    }
    
    .counter-wrapper {
        padding: 30px 15px;
    }
    
    .counter-icon {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .counter-text h1 {
        font-size: 28px;
    }
    
    .counter-wrapper {
        padding: 20px 10px;
    }
}
/*!!! ANIMATED COUNTERS SECTION ENDS !!!*/



/*!!! ENHANCED COLOR SCHEME STARTS !!!*/
:root {
    /* Primary Colors */
    --primary: #f05b2b;
    --primary-dark: #d94a1a;
    --primary-light: #ff6b35;
    --primary-gradient: linear-gradient(135deg, #f05b2b, #d94a1a);
    --primary-gradient-light: linear-gradient(135deg, #ff6b35, #f05b2b);
    
    /* Secondary Colors */
    --secondary: #1a1a2e;
    --secondary-dark: #0f0f1a;
    --secondary-light: #2a2a4e;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: rgba(255,255,255,0.85);
    --text-muted: rgba(255,255,255,0.6);
    
    /* Accent */
    --accent: #ff6b35;
    --accent-glow: rgba(240, 91, 43, 0.3);
}

/* Buttons with Gradient */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-gradient);
    color: #ffffff;
    border-radius: 60px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(240, 91, 43, 0.25);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 91, 43, 0.4);
    color: #ffffff;
    background: var(--primary-gradient-light);
}

.btn.white-btn {
    background: transparent;
    border: 2px solid #ffffff;
    box-shadow: none;
}

.btn.white-btn:hover {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
}

/* Section Titles with Gradient */
.section-title h1 {
    color: rgba(240, 91, 43, 0.08);
    font-size: 100px;
    font-weight: 900;
    position: absolute;
    top: -30px;
    left: 0;
    line-height: 1;
}

.section-title .line {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 5px;
}

.section-title h2 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* White Section Titles */
.white-02-title h1 {
    color: rgba(255,255,255,0.05);
}

.white-02-title span {
    color: #f05b2b;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.white-02-title h2 {
    color: #ffffff;
}

/* Service Cards with Gradient */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(240, 91, 43, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: -30px auto 15px;
    box-shadow: 0 8px 25px rgba(240, 91, 43, 0.25);
}

.service-content h3 {
    color: var(--secondary);
    font-weight: 700;
    font-size: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Contact Info Icons */
.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* Footer Links Hover */
.footer-link ul li a:hover {
    color: #f05b2b;
    padding-left: 8px;
}

/* Logo Gradient */
.logo-text .brand {
    font-size: 32px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header Phone */
.header-phone i {
    color: var(--primary);
}

/* Counter Section Enhancements */
.counter-wrapper .counter-text h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 30px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}
/*!!! ENHANCED COLOR SCHEME ENDS !!!*/

/*!!! SERVICE ICON CUT FIX STARTS !!!*/

/* Fix Icon Container - Proper Size */
.service-card .service-content .service-icon {
    width: 65px !important;
    height: 65px !important;
    min-width: 65px !important;
    min-height: 65px !important;
    background: linear-gradient(135deg, #eb120a, #ff5e14);
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: -32px auto 15px !important;
    box-shadow: 0 8px 25px rgba(255, 94, 20, 0.25);
    transition: 0.4s;
    flex-shrink: 0;
    position: relative;
    overflow: visible !important;
    z-index: 2;
}

/* Fix Icon Inside - No Cut */
.service-icon i,
.service-icon .fas {
    font-size: 28px !important;
    color: #ffffff !important;
    display: inline-block !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    top: 0;
    left: 0;
}

/* Mobile Fix */
@media (max-width: 767px) {
    .service-card .service-content .service-icon {
        width: 55px !important;
        height: 55px !important;
        min-width: 55px !important;
        min-height: 55px !important;
        margin: -28px auto 12px !important;
    }
    
    .service-icon i,
    .service-icon .fas {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .service-card .service-content .service-icon {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        margin: -24px auto 10px !important;
    }
    
    .service-icon i,
    .service-icon .fas {
        font-size: 20px !important;
    }
}

/* Hover Effect */
.service-card:hover .service-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 12px 40px rgba(255, 94, 20, 0.4);
}

/* Ensure no clipping */
.service-card .service-content {
    overflow: visible !important;
    padding-top: 10px !important;
}

/*!!! SERVICE ICON CUT FIX ENDS !!!*/