@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

.clients-section {
    padding: 40px;
    background: #f5f5f5;
    text-align: center;
    font-family: Arial, sans-serif;
}

.clients-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.clients-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.client-card {
    background: #ffffff;
    padding: 20px;
    width: 180px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.client-card img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.client-card p {
    font-size: 18px;
    font-weight: bold;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e1e;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}

img {
  width: 100%;
  overflow: hidden;
}
html,
body {
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #0071f8;
  color: #fff;
}

::-moz-selection {
  background: #0071f8;
  color: #fff;
}

.section {
  margin-top: 120px;
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 56px;
}

.section-heading h2 em {
  font-style: normal;
  color: #0071f8;
}

.section-heading h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.icon-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px 0px 0px;
  border-radius: 25px;
  transition: all .3s;
}

.icon-button a i {
  background-color: #f35525;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  display: inline-block;
  margin-right: 15px;
  margin-left: -1px;
}

.icon-button a:hover {
  color: #f35525;
}

.icon-button a:hover i {
  color: #fff;
}

.main-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all .3s;
}

.main-button a:hover {
  background-color: #f35525;
  color: #fff;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #f35525;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #f35525;
  border-radius: 50%;
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.sub-header {
  background-color: #fff;
  padding: 10px 0px;
  border-bottom: 1px solid #eee;
}

.sub-header ul li {
  display: inline-block;
}

.sub-header ul.social-links {
  text-align: right;
}

.sub-header ul.social-links li {
  margin-left: 8px;
}

.sub-header ul.social-links li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #cdcdcd;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  transition: all .3s;
}

.sub-header ul.social-links li a:hover {
  background-color: #f35525;
}

.sub-header ul.info li {
  font-size: 14px;
  color: #7a7a7a;
  border-right: 1px solid #eee;
  margin-right: 25px;
  padding-right: 25px;
}

.sub-header ul.info li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: none;
}

.sub-header ul.info li i {
  font-size: 20px;
  color: #f35525;
  margin-right: 8px;
}

.background-header {
  background-color: #fff;
  height: 80px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area {
  position: relative;
  background-color: #fff;
  height: 100px;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  background: transparent;
  display: flex;
}

.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
}

.header-area .main-nav .logo h1 {
  line-height: 100px;
  font-size: 28px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 700;
  letter-spacing: 2px;
}

.background-header .main-nav .logo h1 {
  line-height: 80px;
}

.header-area .main-nav ul.nav {
  flex-basis: 100%;
  margin-top: 30px;
  justify-content: right;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li {
  padding-left: 10px;
  padding-right: 10px;
  height: 100px;
  line-height: 100px;
}

.header-area .main-nav .nav li a {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  color: #1e1e1e;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: .25px;
}

.header-area .main-nav .nav li:last-child a {
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  border-radius: 20px;
  padding-left: 0px;
}

.header-area .main-nav .nav li:last-child a i {
  background-color: #f35525;
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  margin-left: -1px;
}

.header-area .main-nav .nav li:last-child:hover a {
  background-color: #1e1e1e;
}

.header-area .main-nav .nav li:last-child:hover a i {
  color: #fff;
}

.header-area .main-nav .nav li:hover a {
  color: #f35525;
}

.header-area .main-nav .nav li a.active {
  color: #f35525;
}


.background-header .main-nav .nav li a.active {
  color: #f35525;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 22px;
}

.background-header .main-nav ul.nav {
  margin-top: 20px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.visible{
  display:inline !important;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 5px;
    padding-right: 5px;
  }

}

@media (max-width: 767px) {
  .background-header .main-nav {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 25px 25px;
    width: 100%;
  }
  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color: #fff;
  }
  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 400;
    color: #1e1e1e;
    background-color: #fff;
     border-radius: 0px 0px 25px 25px;
  }
  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    border-top: 1px solid #ddd;
    background-color: #f1f0fe;
    height: 50px;
    border-radius: 0px 0px 25px 25px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 0px;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #ee626b!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area .nav li:last-child a {
    background-color: transparent !important;
    font-weight: 300 !important;
    text-transform: capitalize !important;
  }
  .header-area {
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 80px !important;
  }
  .background-header.header-sticky .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 220px 20% 320px 20%;
  margin-top: 0px;
}

.main-banner .item-1 {
  background-image: url(../images/banner-01.jpg);
}

.main-banner .item-2 {
  background-image: url(../images/banner-02.jpg);
}

.main-banner .item-3 {
  background-image: url(../images/banner-03.jpg);
}

.main-banner .item span.category {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 6px 15px;
  display: inline-block;
  margin-bottom: 30px;
}

.main-banner .item span.category em {
  font-style: normal;
  color: #f35525;
}

.main-banner .item h2 {
  font-size: 62px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(255, 0, 0);
  line-height: 72px;
  width: 50%;
  margin-bottom: 0px;
}

.main-banner .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 20%;
}

.main-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all .5s;
}

.main-banner .owl-dots .active {
  background-color: #f35525;
}

.main-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.main-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}

.main-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}



/* 
---------------------------------------------
Featured Style
--------------------------------------------- 
*/

.featured .left-image {
  position: relative;
}

.featured .left-image img {
  padding-left: 55px;
}

.featured .left-image a {
  display: inline-block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  background-color: #f35525;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -55px;
}

.featured .section-heading {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 60px;
}

.featured .section-heading h2 {
  width: 70%;
}

.featured .accordion {
  margin-left: 10px;
  margin-right: 10px;
  --bs-accordion-border-radius: 10px;
  --bs-accordion-inner-border-radius: 10px;
  --bs-accordion-bg: #fafafa;
  --bs-accordion-border-color: none;
  border: none !important;
}

.featured .accordion-header {
  border-bottom: 1px solid #eaeaea;
}

.featured .accordion-button {
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  color: #1e1e1e;
}

.featured .accordion-button:not(.collapsed) {
  color: #f35525;
  background-color: #fafafa;
  outline: none;
}

.featured .accordion-button::after {
  display: none;
}

.featured #headingThree {
  border-bottom: none;
}

.featured .accordion-item:last-of-type .accordion-collapse {
  border-top: 1px solid #eaeaea;
}

.featured .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
}

.featured .info-table ul li {
  display: block;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eee;
}

.featured .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.featured .info-table ul li img {
  float: left;
  margin-right: 25px;
}

.featured .info-table ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.featured .info-table ul li h4 span {
  font-size: 15px;
  color: #aaa;
  font-weight: 400;
}

/* 
---------------------------------------------
Video Style
--------------------------------------------- 
*/

.video {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 250px 0px;
  position: relative;
}

.video-content {
  margin-top: -240px;
}

.video .section-heading h2 {
  color: #fff;
}

.video-content .video-frame {
  position: relative;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.video-content .video-frame img {
  border-radius: 10px;
}

.video-content .video-frame a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-26px, -26px);
  width: 52px;
  height: 52px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 52px;
  color: #f35525;
  outline: 15px solid rgba(254, 85, 37, 0.5);
  font-size: 18px;
}

/* 
---------------------------------------------
Fun Facts Style
--------------------------------------------- 
*/

.fun-facts {
  text-align: center;
  margin-top: 125px;
}

.fun-facts .counter {
  background-color: #ffeee9;
  position: relative;
  border-radius: 10px;
  width: 270px;
  padding: 20px 0px;
  display: inline-block;
}

.fun-facts .counter h2,
.fun-facts .counter p {
  display: inline-flex;
  vertical-align: middle;
}

.fun-facts .counter p {
  text-align: left;
  font-size: 16px;
  color: #1e1e1e;
  font-weight: 600;
  line-height: 28px;
}

.fun-facts .counter h2 {
  margin-right: 25px;
  font-size: 40px;
  color: #f35525;
}

.fun-facts .counter:after {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #f35525;
  border-radius: 50%;
  content: '';
  right: -25px;
  top: -25px;
}


/* 
---------------------------------------------
Best Deal Style
--------------------------------------------- 
*/

.best-deal {
  background-color: #fafafa;
  padding: 100px 0px;
}

.best-deal .tab-content img {
  padding: 0px 45px;
}

.best-deal .tabs-content .nav-link {
  font-size: 16px;
  font-weight: 500;
  background-color: #1e1e1e !important;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding: 0px 25px;
  color: #fff;
}

.best-deal .tabs-content .nav-tabs .nav-link.active {
  background-color: #f35525 !important;
  color: #fff;
}

.best-deal .tabs-content ul.nav-tabs {
  border-bottom: none !important;
  margin-bottom: 80px;
  align-items: end;
  justify-content: end;
  margin-top: -130px;
}

.best-deal .tabs-content ul.nav-tabs li {
  padding-right: 0px;
  border-right: none;
  margin-left: 20px;
}

.best-deal .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
}

.best-deal .info-table ul li {
  display: block;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 15px;
  color: #aaa;
  font-weight: 400;
}

.best-deal .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.best-deal .info-table ul li span {
  font-size: 20px;
  color: #1e1e1e;
  font-weight: 700;
  float: right;
  display: inline-block;
}

.best-deal .tabs-content {
  padding: 0px;
  background-color: transparent;
}

.best-deal .tabs-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 30px;
}

.best-deal .icon-button {
  margin-top: 30px;
}


/* 
---------------------------------------------
Properties Style
--------------------------------------------- 
*/

.properties .item {
  background-color: #fafafa;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.properties .item img {
  border-radius: 10px;
}

.properties .item span.category {
  background-color: #fbd9cf;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  color: #1e1e1e;
  padding: 5px 12px;
  display: inline-block;
  margin-top: 25px;
}

.properties .item h4 {
  font-size: 19px;
  margin: 25px 0px;
}

.properties .item h4 a {
  color: #1e1e1e;
}

.properties .item ul li {
  display: inline-block;
  font-size: 15px;
  color: #4a4a4a;
  margin-right: 20px;
}

.properties .item ul li span {
  font-weight: 600;
  color: #1e1e1e;
}

.properties .item ul {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.properties .item h6 {
  font-size: 20px;
  color: #f35525;
  margin-top: 6px;
  display: inline-block;
  float: right;
  margin-top: 30px;
}

.properties .item .main-button {
  text-align: center;
}


/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact {
  background-image: url(../images/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 250px 0px;
  position: relative;
}

.contact .section-heading h2 {
  color: #fff;
}

.contact-content {
  margin-top: -240px;
  position: relative;
  z-index: 1;
}

.contact-content #map {
  border-radius: 10px;
  margin-bottom: 60px;
}

.contact-content .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
}

.contact-content .phone {
  margin-right: 15px;
}

.contact-content .email {
  margin-left: 15px;
}

.contact-content .item.email {
  background: #f7f7f7;  
  width: 550px;           /* set desired width (e.g. 320px or 80%) */
  max-width: 130%;        /* keep responsive on small screens */
  padding: 16px;
  border-radius: 6px;
  display: inline-block;  /* inline-block keeps width from stretching full column */
}

.contact-content .item img {
  float: left;
  margin-right: 25px;
  vertical-align: middle;
}

.contact-content .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}

.contact-content .item h6 span {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 400;
}

.contact-content #contact-form {
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
}

.contact-content #contact-form label {
  font-size: 15px;
  color: #3a3a3a;
  margin-bottom: 15px;
}

.contact-content #contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 15px;
}

.contact-content #contact-form textarea {
  width: 100%;
  height: 150px;
  max-height: 180px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 15px 15px;
}

.contact-content #contact-form button {
  background-color: #1e1e1e;
  height: 44px;
  border-radius: 22px;
  padding: 0px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 500;
  transition: all .5s;
}

.contact-content #contact-form button:hover {
  background-color: #f35525;
}


/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer.footer-no-gap {
  margin-top: 0px;
}

footer {
  margin-top: 150px;
  background-color: #1e1e1e;
  min-height: 100px;
}

footer p {
  text-align: center;
  line-height: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

footer p a {
  color: #fff;
  transition: all .3s;
  position: relative;
  z-index: 3;
}

footer p a:hover {
  opacity: 0.75;
}


/* 
---------------------------------------------
Page Header Style
--------------------------------------------- 
*/

.page-heading {
  background-image: url(../images/page-heading-bg.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0px;
  text-align: center;
}

.page-heading span {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
}

.page-heading span a {
  color: #1e1e1e;
}

.page-heading h3 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}


/* 
---------------------------------------------
Properties Style
--------------------------------------------- 
*/

.properties ul.properties-filter {
  list-style: none;
  text-align: center;
  margin-bottom: 70px;
}

.properties ul.properties-filter li {
  display: inline-block;
  margin: 5px 8px;
}

.properties ul.properties-filter li a {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
  background-color: #1e1e1e;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all .3s;
}

.properties ul.properties-filter li a.is_active {
  background-color: #f35525;
  color: #fff;
}

.properties ul.properties-filter li a.is_active:hover {
  color: #fff;
}

.properties ul.properties-filter li a:hover {
  color: #f35525;
}

.properties ul.pagination {
  margin-top: 50px;
  text-align: center;
  width: 100%;
  display: inline-block;
}

.properties ul.pagination li {
  display: inline-block;
  margin: 0px 5px;
}

.properties ul.pagination li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50%;
  transition: all .3s;
}

.properties ul.pagination li a:hover,
.properties ul.pagination li a.is_active {
  background-color: #f35525;
  color: #fff;
}


/* 
---------------------------------------------
Single Page Style
--------------------------------------------- 
*/

.single-property .main-image img {
  float: none;
}

.single-property .main-content h4 {
  font-size: 25px;
  margin-top: 25px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.single-property .main-content span.category {
  background-color: #fbd9cf;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  color: #1e1e1e;
  padding: 5px 12px;
  display: inline-block;
  margin-top: 40px;
}

.single-property .accordion {
  margin-top: 60px;
  margin-left: 0px;
  margin-right: 0px;
  --bs-accordion-border-radius: 10px;
  --bs-accordion-inner-border-radius: 10px;
  --bs-accordion-bg: #fafafa;
  --bs-accordion-border-color: none;
  border: none !important;
}

.single-property .accordion-header {
  border-bottom: 1px solid #eaeaea;
}

.single-property .accordion-button {
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  color: #1e1e1e;
}

.single-property .accordion-button:not(.collapsed) {
  color: #f35525;
  background-color: #fafafa;
  outline: none;
}

.single-property .accordion-button::after {
  display: none;
}

.single-property #headingThree {
  border-bottom: none;
}

.single-property .accordion-item:last-of-type .accordion-collapse {
  border-top: 1px solid #eaeaea;
}

.single-property .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  margin-left: 60px;
}

.single-property .info-table ul li {
  display: block;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eee;
}

.single-property .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.single-property .info-table ul li img {
  float: left;
  margin-right: 25px;
}

.single-property .info-table ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.single-property .info-table ul li h4 span {
  font-size: 15px;
  color: #aaa;
  font-weight: 400;
}


/* 
---------------------------------------------
Contact Page Style
--------------------------------------------- 
*/

.contact-page #map {
  margin-top: 100px;
}

.contact-page .section-heading {
  margin-bottom: 40px;
  margin-right: 280px;
}

.contact-page p {
  margin-bottom: 50px;
}

.contact-page .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
  display: inline-block;
  min-width: 360px;
}

.contact-page .phone {
  margin-bottom: 30px;
}

.contact-page .item img {
  float: left;
  margin-right: 25px;
  vertical-align: middle;
}

.contact-page .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}

.contact-page .item h6 span {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 400;
}

.contact-page #contact-form {
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
}

.contact-page #contact-form label {
  font-size: 15px;
  color: #3a3a3a;
  margin-bottom: 15px;
}

.contact-page #contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 15px;
}

.contact-page #contact-form textarea {
  width: 100%;
  height: 150px;
  max-height: 180px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 15px 15px;
}

.contact-page #contact-form button {
  background-color: #1e1e1e;
  height: 44px;
  border-radius: 22px;
  padding: 0px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 500;
  transition: all .5s;
}

.contact-page #contact-form button:hover {
  background-color: #f35525;
}


/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .header-area .main-nav .logo h1 {
    line-height: 80px !important;
  }
  .best-deal .tabs-content .nav-link {
    font-size: 14px;
    padding: 0px 15px;
    height: 44px;
    line-height: 44px;
  }
  .best-deal .tabs-content ul.nav-tabs li {
    margin: 0px 5px;
  }
  .properties ul.properties-filter li a {
    font-size: 14px;
    padding: 10px 15px;
  }
  .properties ul.properties-filter li {
    margin: 5px;
  }
  .header-area .main-nav .nav li:last-child {
    display: none;
  }
}

@media (max-width: 992px) {
  .sub-header {
    display: none;
  }
  .header-area .main-nav .logo h1 {
    line-height: 100px;
  }
  .background-header .main-nav .logo h1 {
    line-height: 80px;
  }
  .header-area .main-nav .nav li a {
    padding-left: 3px;
    padding-right: 3px;
  }
  .header-area .main-nav .nav li:last-child a {
    padding-right: 15px;
  }
  .main-banner .item h2 {
    width: 100%;
  }
  .featured .section-heading {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 100px;
  }
  .featured .accordion {
    margin-left: 0px;
    margin-right: 0px;
  }
  .featured .info-table {
    margin-top: 45px;
  }
  .fun-facts .counter {
    margin-bottom: 45px;
  }
  .best-deal .section-heading {
    text-align: center;
  }
  .best-deal .tabs-content ul.nav-tabs {
    margin-top: 0px;
    justify-content: center;
  }
  .best-deal .info-table {
    margin-bottom: 45px;
  }
  .best-deal .tab-content img {
    padding: 0px;
  }
  .best-deal .tabs-content h4 {
    margin-top: 45px;
  }
  .properties .item h6 {
    text-align: center;
    margin-bottom: 15px;
  }
  .properties .item .main-button {
    text-align: center;
  }
  .properties .item ul li {
    margin-right: 10px;
    font-size: 13px;
  }
  .contact-content .phone {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .contact-content .email {
    margin-left: 0px;
    margin-bottom: 45px;
  }
  .contact-content #contact-form {
    margin-left: 0px;
  }
  .single-property .info-table {
    margin-left: 0px;
    margin-top: 45px;
  }
  .contact-page .section-heading {
    margin-right: 0px !important;
  }
  .contact-page #contact-form {
    margin-left: 0px;
    margin-top: 60px;
  }
  .best-deal .info-table ul li span {
    float: right !important;
    width: auto !important;
  }
}

@media (max-width: 1200px) {
  .best-deal .info-table ul li span {
    float: none;
    width: 100%;
  }
  .contact-page .section-heading {
    margin-right: 100px;
  }
}
/* about */
 .about-us {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  .about-us .section-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
  }
  .about-us .about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
  }
  .about-us .btn-primary {
    background-color: #ff6f61;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  .about-us .btn-primary:hover {
    background-color: #ff4c3b;
  }
  /* about ends */
  .item.phone {
  /* Use the icon as a background */
  background-image: url("../images/phone-icon.png");
  background-repeat: no-repeat;
  background-position: 16px center; /* adjust horizontal offset */
  background-size: 50px;      /* increase this to make it larger */
  padding-left: 96px;              /* space for the background icon */
  min-height: 64px;
  display: flex;
  align-items: center;
}

/* hide inline <img> if still present */
.item.phone img {
  display: none;
}
/* note */
.location-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.location-section .section-heading h6 {
  color: #ff5722;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.location-section .section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.location-section .section-heading p {
  font-size: 16px;
  color: #555;
}

.location-section .map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* form */
/* GET QUOTE Button */
.quote-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff7f50;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 20px;
}

.quote-btn:hover {
  background: #ff541f;
  transform: translateY(-2px);
}

/* Quote Form Box */
.quote-box {
  max-width: 550px;
  margin: 50px auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-top: 5px solid #ff7f50;
}

.quote-box h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

/* Input styling */
.quote-box input,
.quote-box textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: 0.2s;
}

.quote-box input:focus,
.quote-box textarea:focus {
  border-color: #ff7f50;
  box-shadow: 0 0 8px rgba(255,127,80,0.4);
  outline: none;
}

/* Submit Button */
.quote-submit {
  width: 100%;
  background: #ff7f50;
  color: #fff;
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.quote-submit:hover {
  background: #ff541f;
}

/* end */
/* -------- FOOTER -------- */
.light-footer {
  background: #f5f5f5;
  padding: 60px 0 30px;
  border-top: 1px solid #e6e6e6;
  margin-top: 50px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  width: 23%;
  min-width: 230px;
  margin-bottom: 30px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.light-footer h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.light-footer p {
  color: #555;
  font-size: 15px;
  line-height: 22px;
}

.light-footer ul {
  list-style: none;
  padding: 0;
}

.light-footer ul li {
  margin-bottom: 10px;
}

.light-footer ul li a {
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

.light-footer ul li a:hover {
  color: #ff7f50;
  padding-left: 5px;
}

/* Social icons */
.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 22px;
  color: #444;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ff7f50;
  transform: translateY(-3px);
}

/* Newsletter box */
.newsletter-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 5px;
}

.newsletter-btn {
  width: 100%;
  padding: 10px;
  border: none;
  background: #ff7f50;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: .3s;
}

.newsletter-btn:hover {
  background: #e86a3f;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.footer-bottom p {
  color: #555;
  font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 800px) {
  .footer-col {
    width: 48%;
  }
}

@media (max-width: 600px) {
  .footer-col {
    width: 100%;
  }
}
.cursor-dot {
  position: fixed !important;
  width: 10px !important;
  height: 10px !important;
  background: #d4af37 !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  z-index: 999999 !important;
  transform: translate(-50%, -50%) !important;
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:focus,
.navbar-nav .nav-item .nav-link:visited {
    background: transparent !important;
    color: black !important; /* optional */
}

/* Capsule shape remove */
.navbar-nav .nav-item .nav-link {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 8px 14px !important; /* adjust if needed */
}
.nav-link.active {
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
.main-nav .nav li a {
    background: transparent !important;
    border-radius: 0 !important;
}

.main-nav .nav li a.active,
.main-nav .nav li a:hover,
.main-nav .nav li a:focus {
    background: transparent !important;
    color: #fba707 !important; /* golden highlight (optional) */
    border-radius: 0 !important;
}
.main-nav .nav li a[href="contact.html"] {
    color: black !important;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #444;
  line-height: 1.5;
}

.footer-contact li i {
  font-size: 16px;
  margin-right: 10px;
  color: #d4af37; /* Golden icons */
}
/* Popup Background */
.estimate-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; 
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

/* Popup Box */
.estimate-content {
  background: white;
  width: 90%;
  max-width: 420px;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  animation: fadeIn 0.4s ease;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
}

/* Inputs */
.estimate-content label {
  margin-top: 10px;
  font-weight: 600;
  display: block;
}

.estimate-content select,
.estimate-content input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.submit-estimate {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: #d4af37;
  border: none;
  color: white;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
}

@keyframes fadeIn {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.estimate-btn {
  background-color: #000 !important;
  color: #fff !important;
  padding: 10px 16px !important;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 10px;
  display: inline-block;
}

.estimate-btn:hover {
  background-color: #333 !important;
  color: #fff !important;
}
.estimate-btn {
  background-color: #000000 !important; /* BLACK */
  color: #ffffff !important;            /* WHITE TEXT */
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 10px;
  display: inline-block;
}

.estimate-btn:hover {
  background-color: #333333 !important; /* LIGHTER BLACK HOVER */
  color: #ffffff !important;
}
.nav li a.estimate-btn,
.main-nav .nav li a.estimate-btn {
  background-color: #000000 !important; /* BLACK */
  color: #ffffff !important;           /* WHITE */
  padding: 10px 16px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  display: inline-block !important;
}

.nav li a.estimate-btn:hover,
.main-nav .nav li a.estimate-btn:hover {
  background-color: #333333 !important;
  color: #ffffff !important;
}
.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav li {
    display: flex;
    align-items: center;
}

.estimate-btn {
    background-color: #000 !important;
    color: #fff !important;
    padding: 10px 18px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    margin-left: 15px !important;
    line-height: normal !important;
    display: flex !important;
    align-items: center !important;
}
/* Fix alignment of menu + button */
.main-nav .nav,
.nav {
    display: flex !important;
    align-items: center !important;
}

.main-nav .nav li,
.nav li {
    display: flex !important;
    align-items: center !important;
}

/* Fix the button alignment */
.estimate-btn {
    background-color: #000 !important;
    color: #fff !important;
    padding: 10px 18px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    margin-left: 18px !important;
    display: flex !important;
    align-items: center !important;
    height: auto !important;
    line-height: 1 !important;
}
.estimate-box {
    width: 100%;
    max-width: 450px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(0,0,0,0.12);
    border: 1px solid #d4af37;
    font-family: 'Poppins', sans-serif;
}

.estimate-box h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
}

.estimate-box label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #222;
}

.estimate-box input,
.estimate-box select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 15px;
}

.estimate-box input:focus,
.estimate-box select:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 5px rgba(212,175,55,0.5);
}

.estimate-submit {
    width: 100%;
    padding: 13px;
    background: #d4af37;
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    font-size: 17px;
    transition: 0.3s ease;
}

.estimate-submit:hover {
    background: #b9972f;
}
.about-pro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 80px 0;
}

/* Text Area */
.about-pro-left {
  flex: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.about-pro-left.show {
  opacity: 1;
  transform: translateY(0);
}

.about-pro-left h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
}

.about-pro-left h2 span {
  background: linear-gradient(90deg, #d4af37, #b38a2e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-pro-left p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Image Layout */
.about-pro-right {
  flex: 1;
  position: relative;
  height: 420px;
}

.img-box {
  position: absolute;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.7s ease;
}

.img-box img {
  width: 100%;
  display: block;
}

/* 3 Stacked Layout */
.img1 { 
  width: 70%; 
  left: 0; 
  top: 0; 
  z-index: 3;
}

.img2 { 
  width: 65%; 
  right: 0; 
  top: 80px; 
  z-index: 2;
}

.img3 { 
  width: 60%; 
  left: 60px; 
  bottom: 0; 
  z-index: 1;
}

/* Parallax hover effect */
.img-box:hover {
  transform: translateY(-12px) scale(1.03);
}

/* Responsive Mobile */
@media(max-width: 900px) {
  .about-pro {
    flex-direction: column;
    text-align: center;
  }

  .about-pro-right {
    height: auto;
    width: 90%;
  }

  .img-box {
    position: relative;
    margin-bottom: 20px;
  }
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 95vh;

  background-image: url("../images/head.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-end;
  padding: 100px 60px;
}
.hero-banner::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
}
.header-overlay{
position:absolute;
top:0;
left:0;
width:100%;
padding:25px 60px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:3;
}
.header-overlay .left-info{
display:flex;
align-items:center;
gap:25px;
color:#fff;
font-size:15px;
}
.header-overlay img{
height:70px;
}
.banner-text{
position:relative;
z-index:3;
max-width:650px;
animation:fadeInUp 1.5s ease;
}
.banner-text h1{
color:#fff;
font-size:48px;
font-weight:700;
line-height:1.2;
margin-bottom:15px;
}
.banner-text p{
color:#e8e8e8;
font-size:20px;
margin-bottom:25px;
}
.cta-btn{
padding:14px 32px;
background:linear-gradient(45deg,#d4af37,#f5e6a3);
color:#000;
font-weight:600;
border-radius:6px;
}
    /* Hero Header Matching index.html */
    .header-overlay {
      position: absolute;
      top: 25px;
      left: 0;
      width: 100%;
      padding: 0 40px;
      z-index: 999;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .header-overlay .left-info {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .header-overlay .left-info img {
      height: 55px;
    }

    .header-overlay .left-info span {
      color: #fff;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .baf-section {
      margin-top: 120px;
    }

    .baf-grid img {
      border-radius: 12px;
      width: 100%;
      height: 320px;
      object-fit: cover;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    @media(max-width:768px) {
      .baf-grid img {
        height: 240px;
      }
    }

    /* Golden Cursor */
    .cursor-dot {
      width: 12px;
      height: 12px;
      background: linear-gradient(45deg, #ffdd55, #ffcc00);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 999999;
    }
    
.section-heading h2 {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .section-heading h2 {
    white-space: normal;
  }
}
.fun-facts {
  background-image: none !important;
  background: #f8f8f8 !important; /* ya white #fff */
}

.fun-facts::before {
  content: none !important;
  display: none !important;
}
.video,
.video-content,
.section {
  background: none !important;
  background-image: none !important;
}
.fun-facts {
  padding: 40px 0;
}

.counter {
  text-align: center;
  margin-bottom: 20px;
}

.count-title {
  font-size: 28px;
}

.count-text {
  font-size: 14px;
}
@media (max-width: 768px) {
  .fun-facts .col-lg-4 {
    width: 100%;
    margin-bottom: 20px;
  }
}
.section-heading {
  text-align: center;
}
.navbar-brand img {
  height: 70px;   /* try 60–90px */
}
@media (max-width: 768px) {
  .navbar-brand img {
    height: 50px;
  }
}
.header-overlay {
  padding: 20px 0;
}
.video.section {
  margin: 0;
  padding: 0;
  height: auto;
}

.video-content {
  margin: 0;
  padding: 0;
}

.featured.section {
  margin-bottom: 0;
}

.fun-facts {
  margin-top: 0;
}
/* NAVBAR BASE */
.custom-navbar {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 15px 0;
}

/* LOGO */
.logo {
  height: 50px;
}

/* MENU */
.custom-navbar .nav-link {
  color: #fff !important;
  margin: 0 12px;
  font-weight: 500;
  transition: 0.3s;
}

.custom-navbar .nav-link:hover {
  color: #d4af37 !important; /* gold */
}

/* BUTTON */
.btn-gold {
  background: #d4af37;
  color: #000;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-gold:hover {
  background: #b8962e;
  color: #000;
}

/* MOBILE */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ===== GLASS NAVBAR FINAL ===== */
.header-overlay {
  background: rgba(255, 255, 255, 0.08) !important; /* light glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-overlay {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.custom-navbar .navbar-nav {
  margin-left: 30px; /* adjust space from logo */
}

.custom-navbar .nav-link {
  margin-right: 20px;
}
/* ===== FIX BOOTSTRAP CONFLICT ===== */
.header-area,
.main-nav {
  all: unset;
}

/* ===== MOBILE MENU FIX ===== */
@media (max-width: 991px) {

  .navbar-collapse {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 14px;
    margin-top: 10px;
  }

  /* LEFT ALIGN PERFECT */
  .navbar-nav {
    align-items: flex-start;
    padding-left: 10px;
  }

  .nav-link {
    font-size: 16px;
    margin: 8px 0;
  }

  /* CTA FULL WIDTH */
  .btn-gold {
    width: 100%;
    margin-top: 12px;
  }
}
.menu-left {
  margin-left: 25px;
}
.navbar-nav {
  all: unset;
  display: flex;
  flex-direction: row;
}
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
  }
}

/* ===== GLASS MOBILE MENU ===== */
@media (max-width: 991px) {

  .navbar-collapse {
    background: rgba(20, 20, 20, 0.4); /* transparent */
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;

    padding: 20px;
    margin-top: 10px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  }

}
.nav-link {
  color: #fff !important;
}

.nav-link:hover {
  color: #d4af37 !important;
}

.navbar-collapse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.05)
  );
  pointer-events: none;
}
/* FORCE WHITE TEXT IN NAVBAR */
.custom-navbar .navbar-nav .nav-link {
  color: #ffffff !important;
}

/* HOVER GOLD */
.custom-navbar .navbar-nav .nav-link:hover {
  color: #d4af37 !important;
}
@media (max-width: 991px) {
  .custom-navbar .nav-link {
    color: #fff !important;
  }
}

.custom-navbar {
  background: rgba(20,20,20,0.3);
  backdrop-filter: blur(10px);
  padding: 15px 0;
}
.custom-navbar {
  transition: all 0.3s ease;
}
/* ===== NAVBAR NORMAL (NO FLOAT, NO FIXED) ===== */
.custom-navbar {
  background: #ffffff; /* solid clean */
  padding: 15px 0;
}

/* LEFT ALIGN MENU */
.menu-left {
  margin-left: 20px;
}

/* NAV LINKS WHITE */
.custom-navbar .nav-link {
  color: #fff !important;
  margin-right: 15px;
}

.custom-navbar .nav-link:hover {
  color: #d4af37 !important;
}

/* GOLD BUTTON */
.btn-gold {
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #fff;
  border-radius: 30px;
  padding: 8px 18px;
}

/* MOBILE FIX */
@media (max-width: 991px) {

  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .navbar-nav {
    align-items: flex-start;
  }

  .btn-gold {
    width: 100%;
    margin-top: 10px;
  }
}

/* HERO FULL HEIGHT */
.hero-banner {
  min-height: 100vh;
}
/* ===== FIX SECTION HEADING ===== */
.section-heading {
  text-align: left !important;
  margin-left: 40px;
}

/* SMALL TEXT */
.section-heading h6 {
  color: #d4af37;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* MAIN HEADING */
.section-heading h2 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
}

nav.custom-navbar ul.navbar-nav li a {
  color: #fff !important;
}
/* ===== BLACK HAMBURGER ICON ===== */
.navbar-toggler-icon {
  filter: invert(0) !important; /* black */
}
.navbar-toggler {
  border: 1px solid #000;
}
/* ===== MOBILE IMAGE FIX ===== */
@media (max-width: 768px) {

  .featured .left-image img {
    padding-left: 0 !important;
    margin-left: 0 !important;
    display: block;
  }

}
/* INITIAL STATE (hidden) */
.typing-text {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #d4af37;
  width: 0;
  color: #d4af37;
  letter-spacing: 2px;
}

/* WHEN ACTIVE */
.typing-text.active {
  animation: typing 3s steps(25, end) forwards, blink 0.7s infinite;
}

/* typing */
@keyframes typing {
  from { width: 0 }
  to { width: 220px; }
}

/* cursor blink */
@keyframes blink {
  50% { border-color: transparent; }
}
.typing-text.active {
  animation: typing 2.5s steps(20, end) forwards, blink 0.7s infinite;
}
/* LOGO FIX ALL DEVICES */
.logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* iPhone specific safety */
@media screen and (max-width: 768px) {
  .logo {
    height: 35px;
  }
}

/* UNDERLINE HOVER (PREMIUM) */
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: 0.3s;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 40px;
}

.logo{
    flex-shrink:0;
}

.logo img{
    height:85px;
    width:auto;
    display:block;
}

.navbar{
    min-height:110px;
    padding:15px 40px;
    align-items:center;
}
.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#ff6b00;
}

.estimate-btn{
    background:#ff6b00;
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.estimate-btn:hover{
    background:#e65f00;
    transform:translateY(-2px);
}
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;   /* pehle 10px ya 15px hoga */
    min-height:100px;    /* navbar bada ho jayega */
}
.logo{
    display:flex;
    align-items:center;
    padding-top:5px;
}

.nav-links a{
    position:relative;
    text-decoration:none;
    color:#222;
    font-weight:600;
    padding-bottom:5px;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:3px;
    background:#ff6b00;
    transition:width 0.3s ease;
}

.nav-links a:hover::after{
    width:100%;
}
.navbar{
    display:flex;
    align-items:center;
}

nav{
    margin-left:auto;
}
/* ===== NAVBAR ===== */

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 60px;
    min-height:95px;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* Logo */

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    height:90px;
}

/* Navigation */

nav{
    margin-left:auto;
    margin-right:50px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:55px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-links a{
    position:relative;
    text-decoration:none;
    color:#222;
    font-size:18px;
    font-weight:600;
    padding-bottom:8px;
    transition:0.3s;
}

/* Orange Underline Hover Effect */

.nav-links a::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:3px;
    background:#ff6b00;
    transform:translateX(-50%);
    transition:width 0.3s ease;
}

.nav-links a:hover::after{
    width:100%;
}

/* Book Now Button */

.book-btn{
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:8px;
    font-size:18px;
    font-weight:600;
    transition:0.3s;
}

.book-btn:hover{
    background:#e55f00;
    transform:translateY(-2px);
}
/* ===== BOOKING SECTION ===== */

.booking-section{
    padding:100px 8%;
    background:#f8f9fb;
}

.booking-container{
    max-width:1100px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.booking-header{
    text-align:center;
    margin-bottom:40px;
}

.booking-tag{
    color:#ff6b00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.booking-header h2{
    font-size:42px;
    margin:15px 0;
    color:#222;
}

.booking-header p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.booking-form .form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.form-group input,
.form-group select,
.form-group textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#ff6b00;
    box-shadow:0 0 0 3px rgba(255,107,0,0.15);
}

.full-width{
    margin-top:25px;
}

.submit-btn{
    margin-top:30px;
    background:#ff6b00;
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:10px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.submit-btn:hover{
    background:#e55f00;
    transform:translateY(-2px);
}

@media(max-width:768px){

    .booking-container{
        padding:30px 20px;
    }

    .booking-form .form-grid{
        grid-template-columns:1fr;
    }

    .booking-header h2{
        font-size:32px;
    }
}
/* ===== EVENTS SECTION ===== */

.events-section{
    padding:80px 5%;
    background:#fff;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-tag{
    color:#ff6b00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.section-header h2{
    font-size:48px;
    margin:15px 0;
    color:#222;
}

.section-header p{
    color:#666;
    font-size:18px;
}

/* GALLERY */

.event-gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    max-width:1400px;
    margin:auto;
}

.event-card{
    overflow:hidden;
    border-radius:28px;
    line-height:0;
}

.event-card img{
    width:100%;
    display:block;
    border-radius:28px;
    transition:0.4s ease;
}

.event-card:hover img{
    transform:scale(1.05);
}

/* Tablet */

@media (max-width:1024px){

    .event-gallery{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:38px;
    }
}

/* Mobile */

@media (max-width:768px){

    .event-gallery{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:32px;
    }

    .events-section{
        padding:60px 5%;
    }
}
/* ===== EVENTS SECTION ===== */

.events-section{
    padding:100px 5%;
    background:#fff;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-tag{
    color:#ff6b00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.section-header h2{
    font-size:56px;
    margin:15px 0;
    color:#222;
}

.section-header p{
    color:#666;
    font-size:18px;
}

.event-gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    max-width:1400px;
    margin:auto;
}

.event-card{
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.event-card img{
    width:100%;
    display:block;
    border-radius:28px;
    transition:.4s ease;
}

.event-card:hover img{
    transform:scale(1.05);
}

@media(max-width:1024px){
    .event-gallery{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:42px;
    }
}

@media(max-width:768px){
    .event-gallery{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:32px;
    }
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#fff;
    color:#333;
    line-height:1.7;
}

/* HERO */

.about-hero{
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('https://images.unsplash.com/photo-1511578314322-379afb476865?w=1600');
    background-size:cover;
    background-position:center;
    height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.about-hero-content h1{
    font-size:60px;
    margin-bottom:15px;
}

.about-hero-content p{
    font-size:20px;
    max-width:700px;
    margin:auto;
}

/* ABOUT */

.about-section{
    padding:100px 8%;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:70px;
    align-items:center;
}

.section-tag{
    color:#ff6b00;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.about-content h2{
    font-size:48px;
    margin:15px 0 25px;
}

.about-content p{
    margin-bottom:20px;
    color:#666;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.feature{
    background:#fff7f1;
    padding:15px;
    border-radius:10px;
    font-weight:600;
}

.stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.stat-card{
    background:#f8f9fb;
    padding:40px 20px;
    border-radius:15px;
    text-align:center;
}

.stat-card h3{
    font-size:38px;
    color:#ff6b00;
}

.stat-card p{
    margin-top:10px;
    color:#666;
}

/* MISSION */

.mission{
    background:#f8f9fb;
    padding:100px 8%;
}

.mission-container{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.mission h2{
    font-size:42px;
    margin-bottom:25px;
}

.mission p{
    max-width:800px;
    margin:auto;
    color:#666;
}

/* WHY CHOOSE US */

.why-us{
    padding:100px 8%;
}

.why-us h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.cards{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    padding:35px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.card h3{
    color:#ff6b00;
    margin-bottom:15px;
}

/* CTA */

.cta{
    background:#ff6b00;
    color:white;
    text-align:center;
    padding:90px 20px;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

.cta-btn{
    display:inline-block;
    padding:16px 35px;
    background:white;
    color:#ff6b00;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-2px);
}

@media(max-width:768px){

    .about-hero-content h1{
        font-size:42px;
    }

    .about-container{
        grid-template-columns:1fr;
    }

    .features{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:1fr 1fr;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .about-content h2,
    .mission h2,
    .why-us h2,
    .cta h2{
        font-size:32px;
    }
}
.count-title{
    font-size:48px;
    font-weight:700;
    color:#fff; /* ya jo color use kar rahe ho */
}

.count-title .timer{
    display:inline;
}
/* ===== CONTACT SECTION ===== */

.contact-section{
    padding:100px 6%;
    background:#f8f9fb;
}

.contact-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.contact-tag{
    color:#ff6b00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.contact-header h2{
    font-size:52px;
    color:#222;
    margin:15px 0;
}

.contact-header p{
    color:#666;
    line-height:1.8;
    font-size:18px;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:35px;
    max-width:1400px;
    margin:auto;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-card{
    background:#fff;
    padding:30px;
    border-radius:24px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.info-card h3{
    color:#ff6b00;
    margin-bottom:15px;
    font-size:22px;
}

.info-card p{
    color:#555;
    line-height:1.8;
}

.info-card a{
    text-decoration:none;
    color:#555;
}

.info-card a:hover{
    color:#ff6b00;
}

.map-container{
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.map-container iframe{
    width:100%;
    height:100%;
    min-height:520px;
    border:0;
}

/* Mobile */

@media(max-width:992px){

    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-header h2{
        font-size:38px;
    }

    .map-container iframe{
        min-height:400px;
    }
}

@media(max-width:768px){

    .contact-section{
        padding:70px 5%;
    }

    .contact-header h2{
        font-size:32px;
    }

    .contact-header p{
        font-size:16px;
    }
}
.about-hero{
    color:white;
}

.about-hero-content h1{
    color:white;
}

.about-hero-content p{
    color:white;
}
/* ===== MOBILE MENU BUTTON ===== */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:34px;
    cursor:pointer;
    color:#222;
}

/* =========================
   DESKTOP NAVBAR
========================= */

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
}

nav{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:32px;
    cursor:pointer;
}
/* =========================
   DESKTOP FIX
========================= */

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

#mobileMenu{
    position:static;
}

.nav-links{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:40px;
}

.menu-toggle{
    display:none;
}
/* =========================
   MOBILE NAVBAR PREMIUM
========================= */

@media(max-width:768px){

    html,
    body{
        margin:0;
        padding:0;
        width:100%;
        overflow-x:hidden !important;
    }

    *{
        box-sizing:border-box;
    }

    .navbar{
        padding:15px 20px;
        position:relative;
        z-index:10001;
    }

    .logo img{
        height:55px;
        width:auto;
    }

    .menu-toggle{
        display:block;
        margin-left:auto;
        z-index:10002;
        font-size:36px;
        color:#222;
        background:none;
        border:none;
        cursor:pointer;
    }

    #mobileMenu{
        position:fixed;

        top:85px; /* header ke niche */
        left:0;

        width:100vw;
        height:calc(100vh - 85px);

        background:#ffffff;

        transform:translateX(100%);
        transition:transform .35s ease;

        z-index:10000;

        display:flex;
        flex-direction:column;

        justify-content:flex-start;
        align-items:center;

        padding-top:40px;
        overflow-y:auto;
    }

    #mobileMenu.active{
        transform:translateX(0);
    }

    nav{
        display:block;
    }

    .nav-links{
        width:90%;
        max-width:350px;

        display:flex;
        flex-direction:column;

        gap:18px;
        padding:0;
        margin:0;
    }

    .nav-links li{
        list-style:none;
        width:100%;
    }

    .nav-links a{
        display:block;
        width:100%;

        text-align:center;

        background:#f4f4f4;

        padding:18px;

        border-radius:18px;

        font-size:24px;
        font-weight:700;

        color:#222;
        text-decoration:none;

        transition:.3s;
    }

    .nav-links a:hover{
        background:#ff6b00;
        color:#fff;
    }

    .book-btn{
        margin-top:25px;

        width:240px;

        text-align:center;

        padding:16px 20px;

        border-radius:18px;
    }
}

.map-container{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.map-container iframe{
    width:100%;
    height:250px; /* half height */
    border:0;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}