
/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 60px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/* Pulse effect */
.pulse-effect {
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Topbar Buttons */
.topbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  background-color: #25D366;
  color: white;
  transition: all 0.3s ease;
}
.topbar-btn i {
  font-size: 16px;
  line-height: 1;
}
.topbar-btn:hover {
  transform: scale(1.05);
  background-color: #1da851;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
  color: white;
}

/* Topbar Bar Background */
.topbar-bar {
  background-color: #B22222 !important; /* Hindu Sindoor Red */
  color: white;
}

/* Marquee Text */
.marquee-wrapper {
  width: 100%;
  text-align: center;
}

.marquee-text {
  display: block;
  font-weight: 700;
  font-size: clamp(12px, 3vw, 16px);
  color: white;
  white-space: normal;
  line-height: 1.4;
  padding: 0 10px;
  text-align: center;
}

@media (max-width: 576px) {
  .marquee-text {
    font-size: 15px !important;
  }
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Responsive Fixes */
@media (max-width: 767.98px) {
  .topbar-btn {
    width: 100%;
    font-size: 13px;
    padding: 8px 12px;
  }

  .topbar-bar .row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .marquee-wrapper {
    font-size: 14px;
    text-align: center;
  }
}
.bg-background {
  background-color: #000 !important;
}

/*** Topbar Start ***/ 
.wide-btn {
  flex: 1 1 30%;
  min-width: 160px;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.wide-btn:hover {
  transform: scale(1.05);
  text-decoration: none;
}
.icon-lg {
  min-width: 24px;
  min-height: 24px;
}

@keyframes colorChangeGreen {
  0% { background-color: #198754; }
  50% { background-color: #157347; }
  100% { background-color: #198754; }
}

@keyframes colorChangeYellow {
  0% { background-color: #ffc107; }
  50% { background-color: #e0a800; }
  100% { background-color: #ffc107; }
}

@keyframes colorChangeRed {
  0% { background-color: #dc3545; }
  50% { background-color: #b02a37; }
  100% { background-color: #dc3545; }
}

.btn-animate-green {
  animation: colorChangeGreen 3s infinite ease-in-out;
}
.btn-animate-yellow {
  animation: colorChangeYellow 3s infinite ease-in-out;
}
.btn-animate-red {
  animation: colorChangeRed 3s infinite ease-in-out;
}

/* Marquee Row Background */
.marquee-row {
  background-color: #B22222 !important;
  color: white;
}

/* Marquee Wrapper */
.custom-marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

/* Marquee Text */
.custom-marquee-text {
  display: inline-block;
  padding-left: 100%;
  color: white;
  font-weight: 700;
  font-size: 16px;
  animation: customMarquee 18s linear infinite;
}

/* Marquee Animation */
@keyframes customMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Responsive Text Size */
@media (max-width: 767.98px) {
  .custom-marquee-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .custom-marquee-text {
    font-size: 12px;
  }
}


/*** Carousel Hero Header Start ***/
/* Limit height and make image responsive in all viewports */
.banner-slide-img {
  width: 100%;
  height: 65vh;
  object-fit: cover;
}

/* Adjust height for smaller screens */
@media (max-width: 768px) {
  .banner-slide-img {
    height: 40vh;
  }
}

.header-carousel .header-carousel-item {
    height: 700px;
}

.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60% 60%;
  filter: brightness(10);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
    border-width: 1.5px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 50% 50%;
  }
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/

/*** Features Start ***/
.feature {
    background: var(--bs-light);
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 90px; 
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}
@keyframes icon-animat {
  0% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    background-color: var(--bs-primary);
  }
  50% {
    border-radius: 50% 50% 45% 55% / 50% 60% 40% 50%;
    background-color: #ffc107; /* warning/yellow */
  }
  100% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    background-color: var(--bs-success);
  }
}


/*** Features End ***/

/*** About Start ***/
:root {
  --bs-primary: #b30000; /* Hindu Red */
  --bs-secondary: #ffcc00; /* Hindu Yellow / Saffron */
  --bs-light: #fff8e7; /* Cream tone background */
  --bs-dark: #1c1b1b;
}

body {
  background: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
}
.text-d{
	font-family: Arial, sans-serif;
	text:#000;
	text-align:justify;
}

/* HEADING */
.section-title {
  color: var(--bs-primary);
  background: var(--bs-secondary);
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
}

/* ABOUT ITEMS */
.about .about-item .about-item-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  border-radius: 10px;
  background: var(--bs-light);
  transition: 0.5s;
  padding: 20px;
  border: 1px solid var(--bs-secondary);
}

.about .about-item .about-item-inner .about-icon {
  width: 70px;
  height: 70px;
  background: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
}

.about .about-item .about-item-inner h5 {
  color: var(--bs-primary);
  font-weight: bold;
  margin-bottom: 10px;
}

.about .about-item .about-item-inner p,
.about .about-item .about-item-inner i {
  color: #000 !important;
  font-size: 15px;
}

/* BUTTONS */
.btn-primary {
  background-color: var(--bs-primary);
  color: #fff;
  border: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--bs-secondary);
  color: var(--bs-primary);
  font-weight: 600;
}

.btn-secondary {
  background-color:#8B0000;
  color: var(--bs-dark);
  border: none;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--bs-primary);
  color: #fff;
  font-weight: 600;
}

/* OFFER BOX */
.offer-box {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 12px 25px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.offer-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    #ff0000,
    #ffa500,
    #ffff00,
    #00ff00,
    #00ffff,
    #0000ff,
    #ff00ff,
    #ff0000
  );
  background-size: 400% 400%;
  animation: animateBorder 5s linear infinite;
  z-index: -1;
  filter: blur(5px);
}

.offer-box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 28px;
  z-index: -1;
}

.offer-link {
  color: #d00000;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  animation: pulse 2s infinite;
}

@keyframes animateBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .about .row.flex-column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .about .about-item .about-item-inner {
    text-align: left;
    align-items: flex-start;
  }

  .about .about-item .about-icon {
    margin: 0 auto 15px 0;
  }
}
/*** About End ***/


/*** Fact Counter Start ***/
.counter {
    background: linear-gradient(rgba(153, 0, 0, 0.85), rgba(255, 102, 0, 0.85)), url(../img/fact-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item .counter-item-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}
.bg-deep-green {
  background-color: #1d3c34;
}

.text-hindu-yellow {
  color: #facc15 !important;
}

.counter-item-icon img {
  filter: brightness(0) invert(1); /* Make SVGs white by default */
}


/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
  background: var(--bs-white);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: 0.5s;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  height: 100%;
}

.service .service-item img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.service .service-item h5 {
  font-size: 18px;
  margin-top: 15px;
  color: #000;
}

.service .btn-wrap {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.service .btn-call,
.service .btn-whatsapp {
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  border: none;
  transition: 0.3s ease;
  color: #fff;
  white-space: nowrap;
}

.service .btn-call {
  background-color: #000;
}

.service .btn-whatsapp {
  background-color: #25D366;
}

@media (max-width: 768px) {
  .service .service-item {
    margin-bottom: 20px;
  }
}
.service .service-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: 0.5s ease;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 0;
    z-index: 0;
    transition: 0.5s;
}

.service .service-item:hover::after {
    opacity: 0.15; /* Adjust for stronger or lighter overlay */
}

.service .service-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.service .service-item h5 {
    margin-top: 15px;
    font-weight: 600;
    color: #000;
    z-index: 1;
    position: relative;
}

.service .btn-wrap {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
    z-index: 1;
    position: relative;
}

.service .btn-call,
.service .btn-whatsapp {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}

.service .btn-call {
    background: #ffc107;
    color: #000;
}

.service .btn-whatsapp {
    background: #25d366;
    color: #fff;
}

/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Cars Categories End ***/

/* Full-section background with overlay */
.certificate-section {
  background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0.4));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Optional: control card image */
.certificate-card img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}

/*** Process Start ***/
.steps {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(../img/bg-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.overlay-card-left,
.overlay-card-right {
  background-color: rgba(255, 255, 255, 0.05); /* transparent white overlay */
  backdrop-filter: blur(4px); /* optional: adds frosted effect */
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.accordion-button {
  color: #fff;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.1);
}

.accordion-item {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.accordion-button:focus {
  box-shadow: none;
}

/*** Process End ***/

/*** Banner Start ***/

/* Banner Base */
.banner {
  margin-top: 30px; /* Adds spacing after banner */
}

/* Banner Card Box */
.banner .banner-item {
  position: relative;
  width: 100%;
  height: 450px; /* FIXED HEIGHT */
  border-radius: 10px;
  overflow: hidden;
}

/* Image Styling */
.banner .banner-item img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Overlay Effect */
.banner .banner-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Text Content Over Image */
/* Text Content Over Image */
.banner .banner-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* 🔁 CHANGED from flex-start to center */
  text-align: center;   /* ✅ Added to center text inside */
}

/* Text Sizes */
.banner-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.banner-content h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.banner-content p {
  font-size: 18px;
}

/* Buttons Margin */
.banner-btn {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .banner .banner-item {
    height: 360px;
  }

  .banner-content h1 {
    font-size: 28px;
  }

  .banner-content h2 {
    font-size: 18px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .banner-btn a {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Test spacing for next section */
.next-section {
  background: #f8f9fa;
}

/*** Banner End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px; 
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background-color: #8B0000; /* Hindu astrology red */
    padding-top: 4rem;
    color: white;
}

.footer h4 {
    font-size: 1.25rem;
}

.footer p,
.footer a {
    font-size: 0.95rem;
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

/* Footer Buttons Inside Lists */
.footer .btn {
    font-size: 0.95rem;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

/* Hover Effect for Social Buttons */
.footer .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

/* Social Media Buttons */
.footer-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/* Square Style Buttons */
.btn-square {
    width: 40px;
    height: 40px;
    padding: 0;
    text-align: center;
    line-height: 40px;
    border-radius: 0;
}

/* Align text inside button left for contact buttons */
.footer .btn.text-start {
    text-align: left;
}

/* -----------------------------------
   Copyright Footer
----------------------------------- */

.copyright {
    background-color: rgb(226, 169, 0);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.copyright .row {
    justify-content: center;
    text-align: center;
}

/* -----------------------------------
   Responsive Styles
----------------------------------- */

@media (max-width: 767.98px) {
    .footer h2 {
        font-size: 1.5rem;
    }

    .footer-btn {
        justify-content: center;
    }

    .btn-square {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .footer .btn {
        font-size: 0.9rem;
    }
}

/*** contact Form ***/
.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  background: #fff;
  flex-wrap: wrap;
}

.contact-left {
  width: 50%;
}

.contact-right {
  width: 45%;
  background: #0B15BA;
  padding: 30px;
  border-radius: 6px;
  color: white;
}

.contact-subheading {
  color: darkred;
}

.contact-heading {
  color: #b30000;
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-services-heading {
  color: #fff;
  margin-top: 25px;
}

.contact-services-list {
  padding-left: 20px;
  list-style: none;
}

.contact-services-list li {
  margin-bottom: 5px;
}

form input,
form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 15px;
  border: none;
  border-radius: 4px;
}

form textarea {
  resize: vertical;
}

form button {
  width: 100%;
  padding: 12px;
  background: orange;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #e69500;
}

/* ✅ Responsive Styling */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 20px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-heading {
    font-size: 26px;
  }

  form input,
  form textarea {
    font-size: 14px;
  }

  form button {
    font-size: 15px;
  }
}


/*** bottom call button ***/
@media (max-width: 767.98px) {
  .mobile-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #8B0000; /* Same as btn-success */
  }
.btn-success-c {
	background-color: #8B0000;
}
  .mobile-fixed-buttons a {
    height: 60px;
    font-size: 16px;
    border-radius: 0;
  }

  .mobile-bottom-spacer {
    height: 60px; /* Same height as the fixed buttons */
    width: 100%;
  }
}
