/********** Template CSS **********/
:root {
  --primary: #fea116;
  --light: #f1f8ff;
  --dark: #0f172b;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  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 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.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;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 43, 0.7);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .page-header {
    /* height: 180px !important; */
  }
  

  .page-header-inner {
    height: 165px !important;
  }

  .page-header h1 {
    font-size: 28px;
   
  }
}

.page-header-inner {
  background: rgba(0, 0, 0, 0.4);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
  display: none;
}

/*** Service ***/
.service-item {
  height: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item .service-icon {
  margin: 0 auto 30px auto;
  width: 65px;
  height: 65px;
  transition: 0.5s;
}

.service-item i,
.service-item h5,
.service-item p {
  transition: 0.5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
  color: #ffffff !important;
}

/*** Youtube Video ***/
.video {
  position: relative;
  height: 100%;
  min-height: 500px;
  background:
    linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
    url(../img/video.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial {
  /* background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; */
}
.testimonial-card {
  background-color: #ffffff !important;
  border-radius: 10px !important;
}

.testimonial-adjust {
  margin-top: -50px !important; /* section ko upar uthayega */
  margin-bottom: 100px !important; /* niche ka gap kam karega */
  padding-top: 20px !important; /* upar padding kam */
  padding-bottom: 20px !important; /* niche padding kam */
  margin-top: 20px !important;
}

.testimonial-card-section {
  margin-top: -40px !important;
}

.testimonial-carousel {
  padding-left: 65px;
  padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
  padding: 30px;
}

@media (max-width: 768px) {
  .testimonial-carousel .testimonial-item {
    padding: 10px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #a56f0a;
  border-radius: 2px;
  font-size: 18px;
  transition: 0.5s;
}

.double-quote {
  color: #bbbbbb !important ;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #000;
  background: #dfa300;
}

@media (max-width: 768px) {
  /* mobiles */
  .testimonial-carousel {
    padding-left: 20px;
    padding-right: 20px;
  }
  .testimonial-carousel .testimonial-item {
    padding: 25px;
    min-height: 200px; /* card bigger on small screens */
  }
}

/* Optional: make carousel nav smaller on mobile */
@media (max-width: 576px) {
  .testimonial-carousel .owl-nav .owl-prev,
  .testimonial-carousel .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
  transition: 0.5s;
}

.team-item:hover {
  border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
  background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
  color: var(--secondary) !important;
}

/*** Footer ***/
.newsletter {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  margin-top: -110px;
  padding-top: 80px;
}
.about-footer {
  margin-top: 20px;
}

/* Default logo size */
.logo-img {
  height: 90px;
  transition: height 0.3s ease;
  margin-top: -30px !important;
}

@media (max-width: 768px) {
  .logo-img {
    height: 90px;
  }
}

.ayodhya {
  color: #c59c13 !important;
}
.ayodhya:hover {
  color: #e0ba3b !important;
}

@media (max-width: 767px) {
  .footer .rounded {
    padding: 0 !important;
  }
}

@media (max-width: 767px) {
  .copyright p {
    text-align: center;
  }

  .copyright p a.ayodhya {
    display: block;
    margin-top: 5px;
  }
}

.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: 0.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: 0.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: 0.2px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.welcome-back {
  background-image: url("../img/welcome-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* margin-top: -50px; */
}

.welcome-back-2 {
  /* background-image: url("../img/hehe.jpg"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -50px;
}
.age-tech-heading {
  color: red !important;
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: 40px;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .age-tech-heading {
    color: red !important;
    font-family: "Cinzel", serif;
    font-weight: 900;
    font-size: 28px !important;
    margin-left: 5px;
    
  }
}

.age-tech-heading-2 {
  color: red !important;
  font-family: "Cinzel", serif !important;
  font-weight: 900;
  font-size: 38px !important;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .age-tech-heading-2 {
    color: red !important;
    font-family: "Cinzel", serif !important;
    font-weight: 900;
    font-size: 26px !important;
    margin-left: 5px;
  }
}

.side-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 900;
}

.powering-heading {
  font-size: 22px;
  font-weight: 700;
  color: #525252;
}

@media (max-width: 768px) {
  .powering-heading {
    font-size: 16px;
    font-weight: 700;
    color: #525252;
    margin-top: -15px;
  }
}
.sub-heading {
  color: rgb(226, 121, 1) !important;
}
.welcome-para {
  text-align: justify;
  color: #424242;
}

/* product tab section end */

.product-background {
  background-image: url("../img/product-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.premium-list .list-group-item {
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 15px 20px;
  font-weight: 500;
  border: none;
  border-bottom: 1px solid #eee;
  background: #ffffff9f;
  border-radius: 10px !important;
}

@media (max-width: 768px) {
  .premium-list .list-group-item {
    font-size: 15px;
  }
}
.premium-list .list-group-item:hover {
  background: linear-gradient(135deg, #ac5c01, #ff9939);
  color: #fff;
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.premium-list .list-group-item.active {
  background: linear-gradient(135deg, #ac5c01, #ff9939);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
}

/* Center Image */
.premium-img-wrapper {
  transition: all 0.3s ease;
  border-radius: 20px !important;
}
.premium-img-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.fade-img {
  transition: opacity 0.3s ease;
  border: 2px solid grey;
  border-radius: 20px;
}
.fade-out {
  opacity: 0;
}

/* Icons */
.premium-list li i {
  color: #007bff;
}

/* Responsive */
@media (max-width: 991px) {
  .row.align-items-center {
    flex-direction: column;
  }
  #mainImage {
    margin: 20px 0;
  }
  .premium-list .list-group-item {
    text-align: center;
    transform: none !important;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .row.align-items-center {
    flex-direction: column;
  }
  #mainImage {
    margin: 20px 0;
  }
  .premium-list .list-group-item {
    text-align: left; /* Left aligned text on mobile */
    transform: none !important; /* Remove slide effect on mobile */
  }
}

/* Background Section */
.catalogue-section {
  background: url("../img/catalogue-background.jpg") bottom center/cover
    no-repeat;
  position: relative;
  /* background-attachment: fixed; */
  z-index: 1;
}

/* Dark Overlay */
.catalogue-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0); /* adjust darkness here */
  z-index: -1;
}

/* Inner Transparent Box */
.catalogue-box {
  max-width: 850px;
  margin: auto;
  padding: 10px 35px;
  /* background: rgba(28, 91, 163, 0.4); */
  /* backdrop-filter: blur(5px);
  border-left: 2px solid #fe1616;
  border-right: 2px solid #fe1616; */
  /* border-radius: 30px; */
}

/* Text */
.catalogue-text {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  /* font-family: "Cormorant Garamond", serif; */
  font-weight: 500;
}

/* Button */
.catalogue-btn {
  background: #0d6efd;
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.catalogue-btn:hover {
  background: #0b5ed7;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .catalogue-box {
    padding: 30px 20px;
  }

  .catalogue-text {
    font-size: 15px;
    margin-top: -38px;
  }
}

/* Number Ring Style */
.number-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border: 2px solid #ff7b00; /* Ring color */
  border-radius: 50%; /* Circle */
  font-weight: 600;
  color: #000000; /* Number color */
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .number-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    border: 2px solid #ff7b00; /* Ring color */
    border-radius: 50%; /* Circle */
    font-weight: 600;
    color: #000000; /* Number color */
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
}

/* Hover & Active */
.list-group-item:hover .number-ring,
.list-group-item.active .number-ring {
  /* background: #000000; */
  color: #fff;
  border-color: #ffffff;
}
/* product tab section end */

.plus-sign {
  font-size: 2.2rem; /* adjust size as needed */
  vertical-align: top; /* aligns + nicely with number */
  /* margin-left: 0.1rem; */
  color: #000000; /* same as your icon color if you like */
  font-weight: 900;
}
.counter-head {
  font-size: 35px;
  font-family: "Cinzel", serif !important;
  font-weight: 900;
  /* color: red; */
}

/* Hall & Terrace Section start*/
.hall-terrace-section {
  background-image: url("../img/why-choose-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 575px) {
  .hall-terrace-section {
    /* margin-top: -50px; */
  }
}
.right-sec {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 575px) {
  .right-sec {
    padding: 20px;
  }
}

/* Image */
.hall-terrace-image img {
  width: 100%;
  height: auto; /* maintain aspect ratio */
  max-height: 600px;
  object-fit: cover;
  /* margin-left: 30px */
}

/* Content */
.hall-terrace-content {
  /* background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); */
  background-color: #000;
}

.hall-heading {
  font-weight: 700;
  color: #ffffff;
}

.hall-description {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Features List */
.hall-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hall-feature-list li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Subheading */
.hall-subheading {
  color: #ffcc66;
  font-weight: 600;
}

/* Event Tags */
.hall-event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hall-event-tags span {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.rooftop-highlight {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  border-left: 4px solid #ffc107;
  padding: 18px 20px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

.rooftop-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.rooftop-text {
  color: #f1f1f1;
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.6;
}

.hall-feature-list {
  list-style-type: disc; /* normal bullets */
  padding-left: 1.5rem; /* space for bullets */
}

.hall-feature-list li {
  color: #ffffff; /* text color */
  margin-bottom: 0.5rem;
  position: relative;
}

.hall-feature-list li::marker {
  color: rgb(255, 153, 0); /* bullet color */
  font-size: 1.2rem; /* make bullet slightly bigger if you like */
}

/* Hall & Terrace Section end*/

/* Service Section */

.work-area-section {
  padding-bottom: 150px !important;
  background-image: url("../img/welcome-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-item {
  height: 100%;
  min-height: 170px; /* sab cards ka fixed height */
  display: flex;
  flex-direction: column;
  justify-content: center !important; /* content center me */
  align-items: center;
  text-align: center;
  background: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgb(223, 223, 223) !important;
}

/* Icon Wrapper */
.service-icon {
  width: 70px;
  height: 70px;
}

.icon-color {
  color: #9f6809 !important;
}

.service-icon .border {
  width: 100%;
  height: 100%;
}

/* Title Styling */
.service-item h5 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* Hover Effect (Optional but Attractive) */
.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .service-item {
    min-height: 170px;
  }
}

@media (max-width: 768px) {
  .area-heading {
    font-size: 13px !important;
  }
}

.testimonial-section {
  margin-bottom: 200px !important;
}

.explore {
  color: #000000 !important;
  font-family: "Cormorant Garamond", serif;
}

.hall-terrace-image {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.main-img {
  width: 100%;
}

.circle-img {
  position: absolute;
  top: 0;
  right: 0;

  animation: rotateCircle 6s linear infinite;
}

@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* catalogue button */
.gw-all-products-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff; /* yellow text */
  background: #000000; /* black background */
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgb(250, 201, 23);
  /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
}

@media (max-width: 768px) {
  .gw-all-products-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff; /* yellow text */
    background: #000000; /* black background */
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgb(250, 201, 23);
    /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
  }
}

/* Shining overlay – left to right only */
.gw-all-products-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.1)
  );
  transform: skewX(-60deg);
  animation: shineLTR 1.5s linear infinite;
  pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Hover effect */
.gw-all-products-btn:hover {
  color: #000000;
  background: #ecbd1f;
  /* box-shadow: 0 0 5px rgba(255,255,255,1), 0 0 20px rgba(255,215,0,0.9); */
  /* transform: translateY(-3px); */
}

/* catalogue button */
.header-gw-all-products-btn {
  display: inline-block;
  padding: 25px 20px !important;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff; /* yellow text */
  background: linear-gradient(90deg, rgb(212, 0, 0), rgb(145, 2, 2));
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  /* border: 1px solid rgb(250, 201, 23); */
  /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
  border: none !important;
}

@media (max-width: 768px) {
  .header-gw-all-products-btn {
  display: inline-block;
  padding: 15px 20px !important;
  font-size: 15px !important;
  font-weight: 600;
  color: #ffffff; /* yellow text */
  background: linear-gradient(90deg, rgb(212, 0, 0), rgb(145, 2, 2));
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  /* border: 1px solid rgb(250, 201, 23); */
  /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
  border: none !important;
  border-radius: 10px !important;
}
}

/* Shining overlay – left to right only */
.header-gw-all-products-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.1)
  );
  transform: skewX(-60deg);
  animation: shineLTR 1.5s linear infinite;
  pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Hover effect */
.header-gw-all-products-btn:hover {
  color: #000000;
  background: #ecbd1f;
  /* box-shadow: 0 0 5px rgba(255,255,255,1), 0 0 20px rgba(255,215,0,0.9); */
  /* transform: translateY(-3px); */
}

.used-card:hover {
  background-color: #c90909;
}

.brand-values-heading {
  font-weight: 600;
  color: #111;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.values-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(90deg, rgb(243, 33, 33), rgb(124, 1, 1));
  color: #ffffff;
  /* border-radius:50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  /* border: 1px solid #000000; */
}

.values-list strong {
  font-size: 16px;
}

.values-list div {
  font-size: 15.5px;
  color: #666;
}
.durability {
  color: #414141;
}

/* philosophy section start */

.philosophy-background {
  background-image: url("../img/philosophy-background.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

/* Philosophy Card */
.philosophy-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-top: 30px;
  border: 2px solid #eaba45;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Image */
.card-image img {
  width: 90%; /* Reduce width to 90% of column */
  max-width: 350px; /* Maximum width for large screens */
  border-radius: 15px;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto; /* Center horizontally */
}

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

/* Content */
.card-content {
  border-left: 2px solid #d48105;
  border-radius: 20px;
  padding: 30px;
}

.card-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

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

.services-list li {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.services-list li i {
  color: #d48105 !important; /* golden icon color */
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .philosophy-card .row.g-0 {
    flex-direction: column;
  }
  .card-content {
    border-left: none;
    border-top: 5px solid #ecbd1f;
    padding: 20px;
  }
  .card-image img {
    border-radius: 15px 15px 0 0;
  }
}

/* philosophy section end */

/* Vision & Mission section start */

.mission-section {
  margin-top: -10px;
}
.vision-mission-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content */
  justify-content: flex-start;
  text-align: center; /* Text centered */
  border: 1px solid red;
}

.vision-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Card Icon */
.card-icon {
  width: 60px;
  height: 60px;
  background: #fea116;
  color: #ffffff;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Title */
.card-title {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 15px;
}

/* Card Text */
.card-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
  .vision-mission-card {
    padding: 20px 15px;
  }
  .card-icon {
    margin-bottom: 15px;
  }
}

/* contact page */

.contact-page-section {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .contact-page-section {
    /* margin-top: -50px; */
    padding-top: 30px !important;
    margin-bottom: 0px !important; 
    
  }
}

.contact-info-wrapper {
  gap: 1.5rem; /* spacing between cards */
}

.contact-info-card {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  background-color: #fff;
  box-shadow: none !important;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Perfect circular icon */
.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: #8f4a12; /* primary color */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-right: 15px;
}

.contact-info-title {
  font-weight: 600;
}

.contact-info-text {
  color: #555;
}

.enquiry-section {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .enquiry-section {
    /* margin-top: -50px; */
  }
}

.explore-section {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .explore-section {
    margin-top: -50px;
  }
}

.our-client-sec {
  background-color: #f1f1f1 !important;
  margin-top: -50px !important;
  padding-top: 50px !important;
}
.expertise-font {
  font-size: 14.5px !important;
}
.counter-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
}



/* product page start */
.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.product-list li {
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.product-list li:hover {
  background: #f7f7f7;
}

.product-list li.active {
  background: linear-gradient(135deg, #b60101, #ff0c0c);
  color: #fff;
}

.product-content {
  display: none;
}

.product-content.active {
  display: block;
}

.range-title {
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.range-card{
    text-align:center;
    padding:12px;
    border:1px solid #a0a0a0;
    border-radius:8px;
    transition:0.3s;
    background:#fff;
    margin-top: 10px;
}

@media (max-width: 768px) {
 .range-card{
    text-align:center;
    padding:8px;
    border:1px solid #a0a0a0;
    border-radius:8px;
    transition:0.3s;
    background:#fff;
    margin-top: 10px;
}
}

.range-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.range-card img{
    width:100%;
    height:180px;          /* image height fix */
    object-fit:contain;    /* image crop nahi hoga */
    object-position:center;
    margin-bottom:10px;
}

.range-card span{
    display:block;
    font-size:15px;
    font-weight:500;
}

@media (max-width: 768px) {
.range-card span{
    display:block;
    font-size:15px;
    font-weight:500;
    margin-top: -15px !important;
}
}


.product-heading
{
    color: red;
}

.product-bullet-icon{
    font-size:28px;
    color:#fd0000 !important;
    margin-right:8px;
    vertical-align:middle;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: li-counter;
}

.product-list li {
    position: relative;
    padding: 12px 18px 12px 45px; /* left padding for circle */
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

@media (max-width: 768px) {
.product-list li {
    position: relative;
    padding: 12px 18px 12px 45px; /* left padding for circle */
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    font-size: 14.5px;
}
}

/* Normal state */
.product-list li::before {
    counter-increment: li-counter;
    content: counter(li-counter);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ff0c0c; /* outer ring color */
    background: transparent;    /* transparent center */
    color: #ff0c0c;             /* number color */
    text-align: center;
    line-height: 23px;
    font-weight: bold;
    font-size: 14px;
}

/* Hover state */
.product-list li:hover::before {
    border-color: #ff0000;   /* ring color white */
    color: #ff0000;          /* number color white */
}

/* Active state */
.product-list li.active::before {
    border-color: #fff;   /* ring color white */
    color: #fff;          /* number color white */
    background: #ff0c0c;  /* optional: background red if want filled look */
}

.send-message-btn{
  background: linear-gradient(135deg, #b60101, #ff0c0c);
  border: none;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.send-message-btn:hover{
  background: rgb(145, 0, 0);
}