html,body {
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
}
 

/* Custom cursor for links */
 

/* Text selection cursor */
::selection {
  background: #ff00cc;
  color: white;
}
 
  a{
      text-decoration: none;
      color:inherit;
  }

.footer {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  padding: 50px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  margin: 10px;
  min-width: 250px;
}

.footer-section h3 {
  color: #ffffff;
  border-bottom: 2px solidrgb(0, 0, 0);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  color: #a0a0a0;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copyright {
  text-align: center;
  background-color: #121212;
  color: #a0a0a0;
  padding: 15px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-section {
    width: 100%;
    margin: 10px 0;
  }
}

.navo {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 16px;
  transition-property: font-size, color, font-weight;
  transition-duration: 0.5s;
}

.navo:hover {
  color: #d00c70;
  /* font-size: 20px; */
  font-weight: bolder;
}
.active-nav {
  color: #fe4f00 !important; /* Change this to any color you want */
  font-weight: bold;
  border-bottom: 2px solid #ff7f50;
}
.nav-bg-cust {
  border-radius: 100px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px 0px,
    rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
    rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

@media (max-width: 1000px) {
  .nav-bg-cust {
    border-radius: 8px;
    padding: 20px;
  }
}

.btn-24 {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px 0px,
    rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
    rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  border: 0;
  border-radius: 100px;
  color: white;
  padding: 5px;
  background: #ce0a70;
  transition-property: border-radius, background-color;
  transition-duration: 1s;
  margin-left: 20px;
}

.btn-24:hover {
  border-top-left-radius: 7px;
  background-color: rgb(0, 0, 0);
}

.btn-24-inner-text {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 15px;
  color: white;
  transition-property: border-radius, background-color, color;
  transition-duration: 2s;
}

.btn-24-inner-text:hover {
  color: #fff;

  border-radius: 100px;
}

.swiper {
  width: 100%;
  height: 100%;
  background: transparent;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.swiper-wrapper {
  background: transparent;
}

.swiper-css {
  border-radius: 30px;
  width: 100%;
}

.property-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 0 0 15px;
}

.rating {
  color: #ffc107;
  /* Yellow for stars */
  font-weight: bold;
}

.book-now {
  color: #fd5812;
  font-weight: bold;
  text-decoration: none;
}

.process-section {
  padding: 50px 20px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  /* background: transparent; */

  /* border-radius: 15px; */
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  transition: transform 0.3s ease-in-out;
}

.process-section h4 {
  font-size: 25px;
  font-weight: 700;
}

.process-step {
  padding: 20px;
  /* color:white; */
  transition: transform 0.3s ease-in-out;
  /* border-radius: 8px; */
}

/* Process Icon Styling */
.process-icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;

  transition: transform 0.3s ease-in-out;
  /* Smooth sliding effect */
}

.process-step:hover .process-icon {
  transform: translateX(10%);
}

.process-step h4:hover {
  color: #fd5812;
}

.process-section h2 {
  color: #ff6247;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.process-section h2:hover {
  color: black;
}

.contant h4 {
  font-size: 20px;
  font-weight: bold;
  color: #d00e6f;
}

.contant h4 a{
  font-size: 20px;
  font-weight: bold;
  color: #d00e6f;
}
.contant p {
  font-size: 14px;
}

.contant button {
}

.dabba {
  /* border-radius: 8px; */
  /* margin: 10px; */
  /* padding: 25px; */
  width:100%;
  background: white;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  /* border:2px solid rgb(231, 231, 231); */
  /* box-shadow: rgba(120, 120, 122, 0.51) 0px 48px 100px 0px; */
  /* box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  /* Ensure items stack vertically */
  align-items: flex-start;
  /* Content left align rahega */
  justify-content: flex-start;
  /* Content top pe rahega */
  text-align: left;
  /* background: transparent; */

  /* padding: 15px; */
  /* Space for text */
  height: 100%;
  transition: transform 2s ease-in-out;
  /* Full height maintain kare */
}

/* Ensure image and text align properly */
.dabba img {
  max-width: 100%;
  
  height: 250px;
  /* border-radius:8px; */
  /* object-fit: contain; */
  /* Responsive image */
  transition: transform 0.3s ease-in-out;
  /* Smooth transition added */
  border-radius: 15px 15px 0 0;
  object-fit: cover;
  /* Rounded corners only on top */
}
.dabba:hover{
  /* border:2px solid rgb(0, 0, 0); */
}

.dabba:hover .pulse {
  background: #ff6247;
}

.contant {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 8px;
  width: 100%;
  /* Ensure content spans full width */
}

.dabba .contant p{
  height: 35px;
}
.button {
  display: inline-block;
  padding: 9px 35px 9px 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color:#cf0d6e;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(-30% 0%, 70% 0%, 100% 50%, 70% 100%, -30% 100%, 0% 50%);
  transition: 0.3s;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Active/click effect */
.button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Ripple effect */
.button::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}

.button:hover::after {
  transform: translate(-50%, -50%) scale(2);
  transform: skewY(50deg);
  transform: translateY(-50%);
  clip-path: polygon(0% 80%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);
  transition: 0.3s;
  opacity: 1;
}

/* Pulsing animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(103, 109, 103, 0.47);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(90, 99, 90, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(129, 138, 130, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

.ab-tera-ka-hoga {
  font-size: 10px;
  padding-left: 10px;
}

.dabba:hover img {
  /* transform: scale(1); */
  /* Smooth scaling effect */
}

.dabba:hover {
  /* transform: scale(1); */
  /* Smooth scaling effect */
}

.projects-hading {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #0f0000;
}

.main-wrapper {
  /* height: 60vh; */

  background: url(images/slider/banner-24.jpg);
  background-size: 100% 100%;
  /* animation: gradientAnimation 2s ease infinite alternate; */
  border-radius: 15px;
}
.main-wrapper-2 {
  /* height: 60vh; */

  background: url(images/slider/banner-16.jpg);
  background-size: 300% 300%;
  background-size: cover;
  animation: gradientAnimation 2s ease infinite alternate;
  border-radius: 15px;
}
.main-wrapper-3 {
  /* height: 60vh; */

  background: url(images/slider/banner-24.jpg);
  background-size: 300% 300%;
  background-size: cover;
  animation: gradientAnimation 2s ease infinite alternate;
  border-radius: 15px;
}

/* @media (max-width: 1200px) {
            .main-wrapper {
                height: 50vh;
            }
        }

        @media (max-width: 1000px) {
            .main-wrapper {
                height: 40vh;
            }
        }

        @media (max-width: 800px) {
            .main-wrapper {
                height: 35vh;
            }
        }

        @media (max-width: 700px) {
            .main-wrapper {
                height: 30vh;
            }
        }

        @media (max-width: 550px) {
            .main-wrapper {
                height: 25vh;
            }
        }

        @media (max-width: 450px) {
            .main-wrapper {
                height: 20vh;
            }
        } */

.main-wrapper-text {
  font-size: x-large;
  font-weight: bold;
}

.sp-1 {
  font-size: 40px;
  color: #164ce2;
}

.sp-2 {
  color: #08c05a;
}

.sp-3 {
  color: #fd5812;
}

.main-imgg {
  /* animation: transform 2s ease infinite alternate; */
  transition: transform 0.5s ease-in-out;
  margin-bottom: -50px;
  /* Smooth hover effect */
}

@keyframes neonGlow {
  0% {
    filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 5px #000000);
  }

  100% {
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff);
  }
}

.hr-main {
  font-size: 40px;
  font-weight: 600;
  color: #000000;
}

.hr-main-ct {
  width: 100%;

  background: #fff;

  border-radius: 100px;
  justify-content: center;
  align-items: center;

  padding-left: 20px;
  margin-top: 20px;
}

.btn-25-inner-text {
  text-decoration: none;
  border: 0;
  background: #d3196d;
  color: white;
  padding: 10px;
  border-radius: 30px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 10px;
  font-weight: 700;
  transition-property: border-radius,background;
  transition-duration: 2s;
}

.btn-25-inner-text:hover {
  /* display: none; */
  background: #000;
  border-top-left-radius: 0;
}

.hululu {
  padding: 20px;
}

.pd-5 {
  padding-left: 20px;
}

.md-5 {
  margin-left: 20px;
}

@media (max-width: 1200px) {
  .sp-1 {
    font-size: 30px;
    color: #164ce2;
  }

  .hr-main {
    font-size: 30px;
  }

  .hr-main-p {
    font-size: 12px;
  }

  .hr-main-ct {
    margin-top: 15px;
  }
}

@media (max-width: 1000px) {
  .sp-1 {
    font-size: 25px;
    color: #164ce2;
  }

  .hr-main {
    font-size: 25px;
  }

  .hr-main-p {
    font-size: 10px;
  }

  .hr-main-ct {
    margin-top: 10px;
  }
}

@media (max-width: 800px) {
  .main-wrapper-text {
    font-size: 20px;
  }

  .hr-main {
    font-size: 20px;
  }

  .hr-main-p {
    font-size: 10px;
  }

  .hr-main-ct {
    margin-top: 8px;

    margin-left: 30px;
    margin-right: 30px;
    border-radius: 100px;

    padding-left: 20px;
    margin-top: 10px;
  }
}

@media (max-width: 700px) {
  .main-wrapper-text {
    font-size: 20px;
  }

  .hr-main {
    font-size: 15px;
  }

  .hr-main-p {
    font-size: 10px;
    /* display: none; */
  }

  .hr-main-ct {
    margin-top: 8px;

    margin-left: 30px;
    margin-right: 30px;
    border-radius: 100px;
    background: transparent;

    padding-left: 20px;
    margin-top: 10px;
  }

  .sp-5 {
    /* display: none; */
    font-size: small;
    /* display: none; */
  }

  .pd-5 {
    padding-left: 10px;
  }

  .md-5 {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .main-wrapper-text {
    font-size: 20px;
  }

  .hr-main {
    font-size: 15px;
    /* display: none; */
  }

  .hr-main-p {
    font-size: 10px;
    /* display: none; */
  }

  .hr-main-ct {
    margin-top: 8px;

    margin-left: 30px;
    margin-right: 30px;
    border-radius: 100px;
    background: transparent;

    padding-left: 20px;
    margin-top: 10px;
  }

  .sp-5 {
    /* display: none; */
    font-size: small;
    /* display: none; */
  }

  .pd-5 {
    padding-left: 10px;
  }

  .md-5 {
    margin-left: 0;
  }
}

@media (max-width: 550px) {
  .main-wrapper-text {
    font-size: 15px;
  }

  .hr-main {
    font-size: 15px;
    /* display: none; */
  }

  .hr-main-p {
    font-size: 10px;
    /* display: none; */
  }

  .hr-main-ct {
    margin-top: 3px;
    display: none;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 100px;
    background: transparent;

    padding-left: 20px;
  }

  .sp-5 {
    /* display: none; */
    font-size: small;
    /* display: none; */
  }

  .pd-5 {
    padding-left: 10px;
  }

  .md-5 {
    margin-left: 0;
  }

  .btn-25-inner-text {
    display: none;
  }

  .sp-5 {
    display: none;
  }

  .main-imgg {
    margin-bottom: -200px;
  }
}

.animated-background {
  width: 100%;
  /* height: 300px; */
  background: linear-gradient(45deg, #f5f7fa, #ecedee, #ffffff, #e6e9ec);
  background-size: 100% 100%;
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
  animation: gradientShift 15s ease infinite;
  position: relative;
  /* overflow: hidden; */
}

.animated-background::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.267) 0%,
    rgba(255, 255, 255, 0.13) 50%
  );
  opacity: 0.2;
  animation: shimmer 12s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmer {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.faddu-img {
  /* margin-bottom: -70px; */
  /* margin-right: -200px; */
  z-index: 1000;


  transition: filter 0.5s ease-in-out 0.5s;
  /* Delay of 2 seconds before applying */
}

.faddu-img:hover {
}

.faddu-img-div {
  /* background: linear-gradient(45deg, #c7e4ed, #fcf9ed); */
  border-radius: 10px;
}

.y2 {
  width: 100%;
  height: auto;
  background: linear-gradient(
    90deg,
    rgb(255, 255, 255),
    #ecf3ed,
    #ecf3ed,
    #ecf3ed
  );
  background-size: 300% 300%;
  animation: gradientAnimationn 6s ease infinite;
  box-shadow: 1px 1px 6px rgba(90, 88, 88, 0.58);
  border-radius: 10px;
}

@keyframes gradientAnimationn {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.how-we-work {
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 600px;
  margin: auto;
  background: transparent;
  padding: 20px;
  /* border-radius: 10px; */

  z-index: -100;
}

.how-we-work h2 {
  color: #fd5812;
  font-weight: bold;
}

.how-we-work p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.work-steps {
  list-style: none;
  padding: 0;
}

.work-steps li {
  background: rgba(252, 252, 252, 0.116);
  /* box-shadow: 1px 5px 6px rgba(0, 0, 0, 0.05); */
  color: black;
  margin: 10px 0;
  color: rgb(0, 0, 0);
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.work-steps li:hover {
}

.specialization-section {
  text-align: center;
  padding: 50px 20px;
}

.specialization-section h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

.specialization-section p {
  max-width: 800px;
  margin: auto;
  color: #6c757d;
}
 
.specialization-box {
  padding: 30px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  color: #000000;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height:100%;
}

.specialization-box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.specialization-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.specialization-box h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.specialization-box ul {
  list-style: none;
  padding: 0;
  color: #fff;
  margin: 0;
}

.specialization-box ul li {
  /* color: #6c757d; */
  font-size: 15px;
  color: #020000;
}

.animate-fade {
  opacity: 0;
  transform: translateY(20px);
   
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Background Animation */
.contact-section {
  background: linear-gradient(45deg, #c7e4ed, #fcf9ed);
  background-size: 300% 300%;

  padding: 60px 20px;
  animation: gradientAnimation 2s ease infinite alternate;
}

.contact-heading {
  font-weight: 800;
  color: #fd5812;
}

.contact-box {
  padding: 30px;
  border-radius: 10px;
  background: white;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-box p {
  font-weight: 600;
}

.contact-info p {
  color: #6c757d;
  font-size: 14px;
  font-weight: 700;
}

.contact-info strong {
  color: #1d2d50;
}

.form-control {
  border-radius: 5px;
  height: 50px;
}

textarea.form-control {
  height: 120px;
  resize: none;
}

.btn-submit {
  background: #d0116e;
  color: white;
  padding: 12px;
  border-radius: 5px;
  transition: background, 0.3s ease-in-out;
}

.btn-submit:hover {
  background: rgba(0, 0, 0, 0.8);
  color:white;
}

/* Fade-in animation */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.hding-2 {
  font-size: 14px;
  font-weight: 600;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.submit-contact {
  width: 100px;
  margin-bottom: -100px;
  z-index: 1000;
  position: relative;
}

.service-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.service-image {
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-title {
  color: #333;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 42px;
}

.service-description {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.service-points {
  padding-left: 0;
  list-style-type: none;
}

.service-points li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
}

.service-points .point-icon {
  margin-right: 15px;
  color: #4f9eb9;
  font-size: 20px;
}

.service-points .point-text {
  font-size: 17px;
  color: #555;
}

.service-content {
  padding: 20px;
}

@media (max-width: 767px) {
  .service-image-container {
    margin-bottom: 40px;
  }

  .service-title {
    font-size: 32px;
  }
}

.heyguzz {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
  url('images/New folder/gallery-122-min.jpg') no-repeat center center/cover;
  padding-top: 40px;
  padding-bottom: 40px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 20%;
  }

  100% {
    background-position: 100% 80%;
  }
}
.stats-section {
  padding: 80px 0;
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255));
  color: black;
  text-align: center;
}

.stat-box {
  background: #d0116e;
  color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}

.stat-text {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stat-box {
    margin-bottom: 20px;
  }
}

.form-container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.form-check {
  background: #ce0a70;
  padding: 10px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  padding-left: 20px;
  padding-right: 20px;
}

.form-check input {
  width: 18px;
  height: 18px;
}

.form-check label {
  font-weight: 700;
  color:white;
}

.form-check input:checked + label {
  color: rgb(255, 255, 255);
  background: #d1d1d1;
}

.btn-quote {
  width: 100%;
  background-color: #d1166d;
  border: 0;
  color: white;
  font-weight: bold;
   
  padding: 10px;
  transition-property: color,background-color,border-radius;
  transition-duration: 1.5s;
}

.btn-quote:hover {
  background-color: black;
  color: white;
  border-radius: 6px;
}

.form-check input:checked + label {
  background-color: #d1d1d1 !important;
  /* Change color when selected */
  color: black !important;
  position: relative;
}

/* Create the arrow below the selected button */
.form-check input:checked + label::after {
  content: "";
  position: absolute;
  bottom: -10px;
  /* Adjust position */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #d1d1d1;
  /* Match button color */
}
.about-mini-text {
  font-size: 16px;
  font-weight: 700;
}
.about-mini-text span {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #4e60fc;
}
.about-medium-text {
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fc7318;
  font-weight: 600;
}
 
.custom-li {
  border: 2px solid #eeb2a704;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 8px;
  padding: 10px;
  margin: 10px;
  background-color: #ce0c6f;
  transition: transform 0.3s ease;
  justify-content: center;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: white;
}
.custom-li:hover {
  transform: scale(1.02);
}
.ulll {
  display: flex;
}
@media (max-width: 550px) {
  .ulll {
    display: block;
  }
}
.about-p {
  font-size: 16px;
  font-weight: 500;
}
.company-name {
  font-weight: 700;
  color: #007bff;
}

.Project_maincontant {
  background: linear-gradient(135deg, #ffffff, #ffffff, #ffffff, #ffffff);
  padding: 15px;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px; */
  border-left: 4px solid #ff0000;
  color: black;

  border-radius: 10px;
}
.Project_maincontant h4 {
  color: #d3196d;
  font-weight: 700;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: xx-large;
}
.Project_maincontant p {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}
.serv-page{

}


.serv-page h2{
    font-size:xx-larger;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:#ff4d00;
}
.serv-page p{
    font-size:15px;
    
}.news-section {
  display: flex;
  gap: 30px;
  padding: 40px;
  align-items: flex-start;
}

.news-header {
  padding-top:170px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically centers content */
}

.news-header h2 {
  font-size: 32px;
  font-weight: bold;
  color:white;
  margin-bottom: 15px;
}

.view-more {
  text-decoration: underline;
  font-weight: 500;
  color: #ffffff;
}
 

.date-badge1 {
  position: absolute;
  top: 25px;
  left: 20px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  text-align: center;
  line-height: 1;
  border-radius: 5px;
  font-size: 14px;
}

.date-badge1 span {
  font-size: 10px;
}
 .abab{
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e4e45d 100%);
  z-index: 1;
}
.abab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 10% 20%, rgba(255, 108, 22, 0) 0%, transparent 20%),
      radial-gradient(circle at 80% 30%, rgba(40, 167, 69, 0.03) 0%, transparent 25%),
      radial-gradient(circle at 30% 70%, rgba(255, 193, 7, 0.03) 0%, transparent 22%),
      radial-gradient(circle at 90% 85%, rgba(220, 53, 69, 0.03) 0%, transparent 25%);
  z-index: -1;
  animation: backgroundShift 30s ease-in-out infinite alternate;
}
.abab::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -2;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007bff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: patternMove 60s linear infinite;
}
@keyframes backgroundShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

@keyframes patternMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.interior-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  position: relative;
}

.interior-image-container {
  flex: 1 1 400px;
  max-width: 550px;
  padding: 10px;
}

.interior-image-container img {
  width: 100%;
  border-radius: 10px;
}

.interior-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 10px 0;
}

.interior-stat-box {
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
  
  font-size: 1.2rem;
  font-weight: bold;
  color: #d2186c;
  border-radius: 5px;
}

.interior-content {
  flex: 1 1 400px;
  max-width: 600px;
  padding: 20px;
}

.interior-content h5 {
  text-transform: uppercase;
  color: #d2186c;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.interior-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.interior-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.interior-btn {
  background-color: #d2186c;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 3px;
}

.interior-decor-plants {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.interior-decor-plants img {
  width: 160px;
}

@media (max-width: 768px) {
  .interior-wrapper {
      flex-direction: column;
      text-align: center;
  }

  .interior-content {
      padding-top: 30px;
  }

  .interior-decor-plants img {
      width: 80px;
  }

}

#quote {
  position: relative;
  overflow: hidden;

}

.interior-decor-plants1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* pointer-events: none; */
  /* optional: so they don't block form inputs */
  z-index: -1;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.interior-decor-plants1 img {
  max-width: 190px;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  /* Optional: make them blend with the background */
}

@media (max-width: 768px) {
  .interior-decor-plants1 img {
      max-width: 80px;
  }
}