/* All Page Main CSS */

@font-face {
  font-family: "Roboto-Bold";
  src: url("fonts/Roboto-Bold.ttf");
}

@font-face {
  font-family: "Dosis";
  src: url("fonts/Dosis-Bold.ttf");
}

@font-face {
  font-family: "Roboto-Regular";
  src: url("fonts/Roboto-Regular.ttf");
}

@font-face {
  font-family: "Dosis-Regular";
  src: url("fonts/Dosis-Regular.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.2;
  font-size: 18px;
  font-family: "Dosis";
}

:root {
  --primary-color: #f15d30;
  --secondary-color: #040e26;
  --btn-color: #a71c7e;
  --white: #fff;
  --black: #000000;
  --darken: #33313b;
}

header a{
  color: white;
}

.main-btn {
  background-color: var(--btn-color);
  padding: 10px 30px;
  font-weight: bold;
  color: #fff;
}

.main-btn:hover {
  background-color: #d4189c;
  transition: 1s ease-in-out all;
}

.hero-section h1 {
  font-family: "Roboto-Bold";
  font-size: 4rem;
  color: var(--white);
}

.hero-section h3 {
  font-family: "Dosis";
  font-size: 2rem;
  color: var(--white);
}

.hero-section span {
  font-family: "Roboto-Regular";
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;

}

.hero-paragraph{
  width: 60%;
  color: var(--white);
  text-align: justify;
}

.main-txt {
  font-family: "Dosis-Regular";
  font-size: 2.5rem;
  text-align: center;
  margin-top: 10px;
}

.secondery-text {
  font-family: "Dosis";
  color: #007aff;
  text-align: center;
  margin-top: 10px;
}

ul li a,
ul li i {
  text-decoration: none;
  line-height: 2;
}

.hero-img1 {
  margin-left: -100px;
}

.hero-img2 {
  margin-top: -30px;
}

.hero-img3 {
  margin: -20px -100px 0;
}

.CTA{
  background-image: url("Images/CTA.png");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

.offer-img{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


 /* Card hover effect */
 .card-hover {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Card hover shadow and lift */
.card-hover:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

/* Full-width button styling */
.btn-full-width {
  width: 100%;
  padding: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Button hover effect */
.btn-full-width:hover {
  background-color: #FFC107;
  transform: scale(1.02);
}


/* Curved line styling */
.curved-line-top {
  position: absolute;
  top: -1px;
  width: 100%;
  z-index: 0;
}

.bg-blur {
  background: rgba(75, 0, 130, 0.7);
  backdrop-filter: blur(10px);
  z-index: 0;
}

/* Input effects */
.input-effect {
  background: rgba(255, 255, 255, 0.8);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.input-effect:focus {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}

/* =======================CTA ========================= */

.whatsapp-btn {
  position: fixed;
  bottom: 50px;
  right: 10px;
  z-index: 1000;
}

.whatsapp-btn .btn-success {
  background-color: #25d366;
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  animation: blink 1s linear infinite;
}

.whatsapp-popup {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  padding: 15px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  animation: fadeInUp 0.3s ease-in-out forwards;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

@keyframes blink {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.5;
  }
}

.btn-success.w-100 {
  display: block;
  width: 100%;
  background-color: #25d366;
  border: none;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
}

.btn-success.w-100:hover {
  background-color: #1ebe57;
}

.about-img{
  top: 400px;
  bottom: 0;
  

}

/* =======================CTA ========================= */

/* All Page Main CSS End*/

.bg-img {
  background-image: url("Images/6.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 89vh;
}

.gallery-img {
  height: 385px;
  width: 100%;
  background-size: cover;
}

.estimate-section {
  background-color: #006f7b;
  padding: 40px 0;
  color: white;
}
.estimate-section img {
  max-width: 100%;
  height: auto;
}

.card {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.card-img-top {
  height: 150px;
  object-fit: cover;
}

/* Animation-section start */

#effect-sec {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@keyframes appear {
  from {
    opacity: 0;
    clip-path: inset(100% 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.hero-section h1,
h3,
h4,
.hero-paragraph, 
& .hero-section img {
  animation: main-effect 2s ease-in-out;
}

@keyframes main-effect {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-40%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

#second-effect {
  animation: view 2s ease-in-out;
}

@keyframes view {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: translateX(-20%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

/* Animation-section end */

/* Responsive */

@media (max-width: 480px) {
  .main-btn {
    padding: 8px 20px;
    font-size: 0.8rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section h3 {
    font-size: 1.5rem;
  }


  .hero-paragraph{
    font-size: 1rem;
    text-align: justify;
    width: 100%;
  }

  .main-txt {
    font-size: 2rem;
  }

  .bg-img {
    height: 100vh;
  }

  .hero-img1,
  .hero-img2,
  .hero-img3 {
    width: 250px;
    height: 0px;
  }

  .hero-img1 {
    margin: 0;
  }

  .hero-img2 {
    margin-top: -80px;
    margin-left: 100px;
  }

  .hero-img3 {
    margin: -40px 0px 0;
  }

  .card-title{
    font-size: 1rem;
  }

  .card-text{
    font-size: 0.9rem;
  }

}


@media (min-width: 500px) and (max-width: 992px) {
  
  .bg-img {
    height: 100vh;
  }

  .hero-paragraph{
    font-size: 1rem;
    text-align: justify;
    width: 100%;
  }

  .hero-img1,
  .hero-img2,
  .hero-img3 {
    width: 500px;
    height: 0px;
  }

  .hero-img1 {
    margin: 0;
  }

  .hero-img2 {
    margin-top: -70px;
    margin-left: 170px;
  }

  .hero-img3 {
    margin: -40px 0px 0;
  }

 
}


