/********** Template CSS **********/
:root {
    --primary: #000;
    --secondary: #000;
    --light: #fbcf00;
    --dark: #060315;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #000;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.bg-cream{
    background-color:#e2e6e5 !important;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #000;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item img,
.team-item img {
    transition: .5s;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: var(--secondary);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .5);
    animation: pulse 1s ease-out .5s;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/map.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}










.youtube-embed {
  position: relative;
  padding-bottom: 56%;
  width: 100%;
  text-align: left;
}

.youtube-embed iframe {
  width: 100%;
  position: absolute;
  height: 100%;
  overflow: hidden;
}


.service{
    background: url('../img/s.png');
    background-size: auto;
    background-repeat: repeat;
    background-position: 0 0;
}
.h2-box {
  background-color: gold; /* Red box */
  color: black; /* White text */
  padding: 20px; /* Adds space inside the box */
  text-align: center; /* Centers text */
  border-radius: 5px; /* Optional: Rounded corners */
  display: inline-block; /* Adjusts box size to text */
}
.img-shadow {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
  border-radius: 5px; /* Optional */
}

.dots1{
    background: url('../img/dots1.png');
    background-repeat: no-repeat;
    background-position: 0 0; 
}
.dots2{
    background: url('../img/dots2.png');
    background-repeat: no-repeat;
    background-position: bottom right; 
}
.wb {
    background: url('../img/wb.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.tback {
    background: url('../img/tback.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.map {
    background: url('../img/map2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.icon > span {
    font-size: 2.5rem;
    color: #000; 
    height: 70px;
    width: 70px;
    background: #fbcf00;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}






 /* video Layout */
.wrap{
  position: relative;
  max-width: 1000px;
  width: 90%;
  margin: 100px auto;
}

 /* The outer-div to move the elements */
.box-video{
  position: relative;
  width: 100%;
  margin:0 auto 20px auto;
  cursor: pointer;
  overflow: hidden;
}

 /* Set Cover aka Background-Image */
.box-video .bg-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
}

 /* Add light shade to make play button visible*/
.bg-video::after{ 
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.1);
    z-index: 3;
    }


/* Enhanced Play Button */
.box-video .bt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  display: inline-block;
  width: 70px;  /* Slightly bigger */
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  text-indent: -999em;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease-out;
  
  /* Stronger Pulsating Effect */
  animation: pulse 1.2s infinite ease-in-out;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

/* The Play-Triangle */
.box-video .bt-play:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  height: 0;
  width: 0;
  margin: -14px 0 0 -7px;
  border: solid transparent;
  border-left-color: #ff0000;
  border-width: 14px 22px;
  transition: all 0.3s ease-out;
}

/* Stronger Pulsating Keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  }
  50% {
    transform: scale(1.3);  /* Increased scale */
    opacity: 0.5;
    box-shadow: 0 0 25px rgba(255, 0, 0, 1); /* Stronger glow */
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  }
}

/* Hover Effect */
.box-video:hover .bt-play {
  transform: scale(1.15);
}


/* When Class added the Cover gets hidden... */
.box-video.open .bg-video{
  visibility: hidden;
  opacity: 0;

  -webkit-transition: all .6s .8s;
  transition: all .6s .8s;  
}

/* and iframe shows up */
.box-video.open .video-container{
  opacity: 1;
  -webkit-transition: all .6s .8s;
  transition: all .6s .8s;
}

/* Giving the div ratio of 16:9 with padding */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
  margin: 0;
  z-index: 1;
    padding-bottom: 56.27198%;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}










.topbar {
  background: #252154; /* Blue color */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-family: Arial, sans-serif;
  flex-wrap: wrap; /* Ensures content remains flexible */
}

.topbar-left {
  display: flex;
  align-items: center;
}

.topbar-left i {
  margin-right: 8px;
}

.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-right a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-size: 18px;
}

.topbar-right a:hover {
  opacity: 0.7;
}

/* Ensures both columns stay side by side in mobile view */
@media (max-width: 600px) {
  .topbar {
    flex-wrap: nowrap; /* Prevents stacking */
    padding: 10px;
  }

  .topbar-left, .topbar-right {
    width: auto; /* Keeps them in a row */
    font-size: 14px; /* Adjusts text size for mobile */
  }

  .topbar-right a {
    margin-left: 10px; /* Adjust spacing */
    font-size: 16px;
  }
}




.happyclients{
    background-color:#c4c8ee;
}

.shipment{
    background-color:#fdcbca;
}

.reviews{
    background-color:#bbd9bf;
}




.marquee{
    position: relative;
width: 100%;
margin: 0 auto;
}

.marquee h1 {
  margin: 50px 0;
  text-transform: uppercase;
  color: #a5a5a4;
}










.list-inline2 {
  padding-left: 0;
  list-style: none;
}
.list-inline2 li {
  padding-bottom: 20px; /* Adjust the value as needed */
}
.list-inline2-item {
  display: inline-block;
}

.list-inline2-item:not(:last-child) {
  margin-right: 0.5rem;
}






















/*---------------------------------------------------- */
/*About area*/
/*----------------------------------------------------*/
.ft-about-section {
  padding: 80px 0px 100px;
}

.ft-about-img-exp {
  padding-top: 100px;
}

.ft-about-exp-area {
  top: 0px;
  right: 0;
}
.ft-about-exp-area .ft-about-exp-text {
  top: 50px;
  left: 60px;
  max-width: 185px;
}
.ft-about-exp-area .ft-about-exp-text h3 {
  font-size: 18px;
  color: #00044b;
  font-weight: 700;
}
.ft-about-exp-area .ft-about-exp-text h3 span, .ft-about-exp-area .ft-about-exp-text h3 b {
  font-size: 48px;
}
.ft-about-exp-area .ft-about-exp-text p {
  font-weight: 500;
}

.ft-about-feature-list-warpper {
  padding-top: 35px;
}

.ft-about-feature-list-item {
  padding: 27px 20px 25px 20px;
  border-radius: 6px;
  margin-bottom: 30px;
  -webkit-box-shadow: 1.91px 10.833px 50px 0px rgba(68, 68, 68, 0.15);
          box-shadow: 1.91px 10.833px 50px 0px rgba(68, 68, 68, 0.15);
}
.ft-about-feature-list-item .ft-about-feature-icon {
  width: 55px;
  height: 55px;
  margin-right: 20px;
  border-radius: 100%;
  background-color: #ffebeb;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.ft-about-feature-list-item .ft-about-feature-icon i {
  font-size: 30px;
  line-height: 0.75;
  color: #ea1e00;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.ft-about-feature-list-item .ft-about-feature-text {
  max-width: 420px;
}
.ft-about-feature-list-item .ft-about-feature-text h3 {
  color: #00044b;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 5px;
}
.ft-about-feature-list-item:hover .ft-about-feature-icon {
  background-color: #ea1e00;
}
.ft-about-feature-list-item:hover .ft-about-feature-icon i {
  color: #00044b;
}

.ft-about-section-2 {
  padding: 140px 0px 100px;
}

.ft-about-text-wrapper-2 .ft-section-title-2 h2 {
  max-width: 385px;
}

.ft-about-feature-wrapper-2 {
  margin-top: 40px;
}
.ft-about-feature-wrapper-2 .ft-about-feature-list-item .ft-about-feature-icon {
  background-color: transparent;
  margin-right: 15px;
}
.ft-about-feature-wrapper-2 .ft-about-feature-list-item {
  margin-bottom: 0;
  padding: 18px 15px 20px 15px;
}
.ft-about-feature-wrapper-2 .ft-btn-3 {
  margin-top: 40px;
}

.ft-about-img-2 {
  overflow: hidden;
  border-radius: 8px;
}

.ft-about-img-2-wrapper {
  padding-left: 40px;
  z-index: 1;
}
.ft-about-img-2-wrapper .ft-about-shape1 {
  right: 0;
  top: -30px;
}
.ft-about-img-2-wrapper .ft-about-shape2 {
  left: 0;
  z-index: -1;
  bottom: -40px;
}

.ft-video-section {
  padding-bottom: 105px;
}

@-webkit-keyframes border_animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(1.24);
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2.1);
    transform: scale(2.1);
    opacity: 0;
  }
}
@keyframes border_animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(1.24);
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2.1);
    transform: scale(2.1);
    opacity: 0;
  }
}
.ft-video-play {
  left: 0;
  top: 50%;
  right: 0;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ft-video-play a {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 100%;
  background-color: #ea1e00;
}
.ft-video-play a i {
  color: #fff;
}
.ft-video-play a .video_btn_border {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  position: absolute;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  border: 10px solid #ea1e00;
  -webkit-animation: border_animation 3.9s linear 0s infinite;
          animation: border_animation 3.9s linear 0s infinite;
}
.ft-video-play a .video_btn_border.border_wrap-2 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.ft-about-section-3 {
  padding: 115px 0px;
}

.ft-about-sign-img-text {
  right: 0;
  bottom: -20px;
  position: absolute;
}
.ft-about-sign-img-text .sign-shape {
  left: -95px;
  bottom: 10px;
  position: absolute;
}
.ft-about-sign-img-text span {
  color: #141415;
  display: block;
  margin-top: 5px;
  font-weight: 700;
}

.ft-about-text-3 .ft-about-sub-text {
  color: #272727;
  font-size: 17px;
  line-height: 1.765;
  padding: 25px 0px 20px;
}
.ft-about-text-3 .ft-about-feature-text {
  color: #666666;
  font-size: 15px;
  line-height: 1.667;
}
.ft-about-text-3 .ft-about-btn-group {
  margin-top: 30px;
}
.ft-about-text-3 .ft-about-btn-group a {
  color: #141415;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 30px;
  margin-right: 25px;
  font-family: "Poppins";
  border: 2px solid #fa3b0e;
}
.ft-about-text-3 .ft-about-btn-group a i {
  margin-left: 5px;
}
.ft-about-text-3 .ft-about-btn-group a:hover {
  color: #fff;
  border: 2px solid #008eff;
  background-color: #008eff;
}







====================================================================
    Contact CTA Section
====================================================================

***/
.ft2-contact-cta-section {
  position: relative;
}

.ft2-contact-cta-section .outer-container {
  position: relative;
  background-color: #000;
}

.ft2-contact-cta-section .left-column {
  position: relative;
  width: 50%;
  float: left;
}

.ft2-contact-cta-section .left-column .inner-column {
  position: relative;
  padding: 80px 15px;
  text-align: center;
  background-size: cover;
}

.ft2-contact-cta-section .left-column h2 {
  color: #fff;
  z-index: 99;
}

.ft2-contact-cta-section .left-column .text {
  position: relative;
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 1.8em;
  margin-bottom: 20px;
}

.ft2-contact-cta-section .left-column .contact-btn {
  position: relative;
  color: #000000;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 50px;
  display: inline-block;
  background-color: #ffde00;
}

.ft2-contact-cta-section .right-column {
  position: relative;
  width: 50%;
  float: left;
}

.ft2-contact-cta-section .right-column .inner-column {
  position: relative;
  padding: 80px 15px;
  text-align: center;
}
.ft2-contact-cta-section .right-column h2 {
  color: #ffffff;
}

.ft2-contact-cta-section .right-column .text {
  position: relative;
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 1.8em;
  margin-bottom: 20px;
}

.ft2-contact-cta-section .right-column .contact-btn {
  position: relative;
  color: #000000;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 50px;
  display: inline-block;
  background-color: #ffde00;
}


@media only screen and (max-width: 1023px){
    .ft2-contact-cta-section .right-column .text br,
    .ft2-contact-cta-section .left-column .text br{
        display:none;
    }

    .ft2-contact-cta-section .left-column{
        width:100%;
    }
    
    .ft2-contact-cta-section .right-column{
        width:100%;
    }
}













.ft3-contact-info-section {
  position: relative;
  padding: 100px 0px 20px;
  overflow: hidden;
}

.ft3-contact-info-section .contact-column {
  position: relative;
  margin-bottom: 30px;
}

.ft3-contact-info-section .contact-column .inner-column {
  position: relative;
  border: 1px solid gold;
  background-color: #ffffff;
}

.ft3-contact-info-section .contact-column .upper-box {
  position: relative;
  padding: 22px 30px;
  border-bottom: 1px solid #eaeaea;
}

.ft3-contact-info-section .contact-column .upper-box h5 {
  position: relative;
  color: #010101;
  font-size: 22px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.ft3-contact-info-section .contact-column .upper-box .text {
  position: relative;
  color: #666666;
  font-size: 15px;
  margin-top: 5px;
}

.ft3-contact-info-section .contact-column .lower-box {
  position: relative;
  padding: 22px 30px 20px;
  background-color: #f8f8f8;
}

.ft3-contact-info-section .contact-column .lower-box a {
  position: relative;
  padding-left: 50px;
  color: #010101;
  font-size: 18px;
  font-weight: 700;
  padding-top: 8px;
  line-height: 1em;
  font-family: "Inter", sans-serif;
}

.ft3-contact-info-section .contact-column .lower-box a .icon {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 38px;
  height: 38px;
  color: #ffffff;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  background-color: gold;
}
.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}


















.overlay-container {
    position: relative;
}

.overlay-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the opacity here (0.5 = 50%) */
    z-index: 1;
}

.overlay-container * {
    position: relative;
    z-index: 2;
}






@keyframes rotateClockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Adjust the duration for slower speed */
.rotating-image {
    position: absolute;
    top: 150px;
    left: 0;
    width: 300px; /* Adjust as needed */
    height: auto;
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center;
    animation: rotateClockwise 30s linear infinite; /* 30s makes it slower */
}



 




        /* Gallery Container */

.prodhead {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

        .product-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
            max-width: 1000px;
            margin: auto;
        }

        /* Image Styling */
        .product-item {
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 8px;
        }

        .product-item img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            transition: transform 0.3s ease-in-out;
        }

        .product-item:hover img {
            transform: scale(1.05);
        }

        /* Overlay for Enlarged Image */
        .product-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999; /* Higher value to ensure it's above everything */
        }

        /* Large Image */
        .product-large {
            max-width: 80%;
            max-height: 80%;
            border-radius: 8px;
            box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3);
        }

        /* Close Button */
        .product-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 30px;
            color: white;
            cursor: pointer;
            font-weight: bold;
            transition: 0.3s;
            z-index: 10000; /* Ensure close button is above overlay */
        }

        .product-close:hover {
            color: red;
        }

        /* Responsive */
        /* Responsive: Add Gaps on Mobile */
        @media (max-width: 768px) {
            .product-gallery {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px; /* Increase gaps */
                padding: 10px; /* Add padding around the gallery */
            }

            .product-item {
                padding: 10px; /* Add gaps beside images */
            }
        }






/********** location map red circle pulsating css **********/
        .maplocation-container {
        position: relative;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full height of the viewport */
        }
        .maplocation-container img {
            width: 100%;
            max-width: 800px;
            height: auto;
        }
        .maplocation {
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: red;
            border-radius: 50%;
            opacity: 0.8;
            box-shadow: 0 0 10px red;
            animation: maplocation-pulse 1.5s infinite;
        }
                .maplocation-label {
            position: absolute;
            font-size: 14px;
            font-weight: bold;
            color: #333;
            text-align: center;
            transform: translateX(-50%);
            margin-top: 25px;
        }

        @keyframes maplocation-pulse {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.4;
            }
            100% {
                transform: scale(1);
                opacity: 0.8;
            }
        }
        /* Adjust positions based on the map image */
        .maplocation1 { top: 30%; left: 40%; } /* Example location */
        .maplocation2 { top: 50%; left: 60%; } /* Example location */
        .maplocation3 { top: 70%; left: 20%; } /* Example location */







/* Bulletin PlusMinus Section */
        .bullPlusMinus-section {
            width: 90%;
            max-width: 700px;
            margin: 50px auto;
            text-align: left;
        }

        .bullPlusMinus-header {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }

        /* Accordion Item */
        .bullPlusMinus-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        /* Accordion Button */
        .bullPlusMinus-title {
            width: 100%;
            background: gold;
            color: white;
            font-size: 18px;
            font-weight: bold;
            padding: 15px;
            text-align: left;
            border: none;
            outline: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .bullPlusMinus-title:hover {
            background: #000;
        }

        /* Toggle Icon */
        .bullPlusMinus-icon {
            font-size: 20px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        /* Accordion Content */
        .bullPlusMinus-content {
            padding: 15px;
            display: none;
            font-size: 15px;
            color: #333;
            border-top: 1px solid #ddd;
        }

        /* Active Class */
        .bullPlusMinus-active .bullPlusMinus-content {
            display: block;
        }

        /* Rotate Icon */
        .bullPlusMinus-active .bullPlusMinus-icon {
            transform: rotate(180deg);
        }








        /* Buying Guide Section */
        .buyingguide-container {
            width: 90%;
            max-width: 800px;
            margin: 50px auto;
            position: relative;
        }
        .buyingguide-title {
            text-align: center;
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 40px;
        }
        .buyingguide-timeline {
            position: relative;
        }
        .buyingguide-step {
            position: relative;
            margin-bottom: 40px;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        .buyingguide-step h3 {
            margin: 0 0 10px;
            font-size: 20px;
            color: gold;
        }
        .buyingguide-step p {
            margin: 0;
            color: #666;
            font-size: 14px;
        }










/* Page Transition */
        .pagetransition-wrapper {
            opacity: 0;
            animation: pagetransition-fadeIn 1.5s ease-in-out forwards;
        }
        @keyframes pagetransition-fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }




