/* google fonts connections  */
/* Lato front  */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

 /* Playfair Display front  */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

  #preloader{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .preloader_content .img_box{
    width: 500px;
    height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin: auto;
  }
  .preloader_content img{
    display: block;
    width: 500px;
    height: 0px;
    border-bottom: 5px solid #fff;
    animation: imgUp 2s forwards;
    object-fit: cover;
    opacity: 0;
  }
  @keyframes imgUp {
    0%{
      height: 0px;
      opacity: 0;
    }
    100%{
      height: 500px;
      opacity: 1;
    }
  }
  .proloader_text{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: goRight 1.5s linear;
  }
  @keyframes goRight {
    0%{
      transform: translateX(-250px);
      opacity: 0;
    }
    100%{
      transform: translateX(0px);
      opacity: 1;
    }
  }
  .preloader_content h2 {
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-top: 20px;
    color: #fff;
    height: 60px;
  }
  .spinner {
  border: 6px solid #ecf0f1;
  border-top: 6px solid #e52d27;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#preloader.hide{
  opacity: 0;
  visibility: hidden;
  /* width: 0; */
  height: 0;
  transition:0.5s, opacity 0.5s ease, visibility 0.5s ease;
}

/* start body ============= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}
html,
body {
  width: 100%;
  /* height: 100%; */
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}
header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 55px;
  align-items: center;
  padding: 0% 3%;
  background: #fad390;
  position: fixed;
  top: 0;
  z-index: 99;
}
.logo {
  width: 100px;
  height: 40px;
  cursor: pointer;
  margin-left: 100px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navbar{
  align-content: center;
  margin-right: 100px;
}
.navbar i {
  display: none;
}
.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}
.navbar ul li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  transition: 0.2s;
}
.navbar ul li a:hover{
  color: #b31217;
}
.navbar ul li::after{
  content: "";
  width: 0%;
  height: 2px;
  background: linear-gradient(135deg, #b31217, #e52d27);
  display: block;
  margin-top: 2px;
  transition: 0.4s;
}
.navbar ul li:hover::after{
  width: 100%;
}
.navbar ul li:last-child{
  border-radius: 20px;
  width: 150px;
  height: 35px;
  text-align: center;
  line-height: 32px;
  background: linear-gradient(135deg, #b31217, #e52d27);
  transition: 0.1s;
}
.navbar ul li:last-child::after{
  display: none;
}
.navbar ul li:last-child:hover{
  transform: translateY(-2px);
}
.navbar ul li:last-child a{
  color: #fff;
  font-size: 12px;
}
/* ================= hero section ==============  */
.header {
  height: 900px;
  z-index: 1;
}
.hero {
  background-image: url(image/scr.png);
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  min-height:800px;
  margin-top: 55px;
  width: 100%;
}
/* ==================== about section ============= */
#about {
  display: flex; 
  padding: 0 50px;
  align-items: center;
  gap: 50px;
}
.abouts {
  text-align: center;
  margin: 50px auto 20px;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  letter-spacing: 5px;
  font-size: 50px;
  color: #b31217;
}
.image {
  display: flex;
  flex-basis: 40%;
  gap: 20px;
  align-items: center;
  position: relative;
  transform: scale(0);
  transition: 1s;
  opacity: 0;
}
.image .imgs {
  flex-basis: 1fr;
  width: 100%;
  border-radius: 150px;
}
.image .imgs img{
  height: 400px;
  object-fit: cover;
  border-radius: 150px;
  border: 2px solid #EA202750;
}
.image .imgs2 img{
  width: 300px;
  height: 600px;
  border-radius: 150px;
  transition: 0.3s;
}
.image .imgs1{
  width: 200px;
  margin-bottom: 200px;
  position: relative;
}
.image .imgs1 img {
  width: 200px;
  transition: 0.3s;
}
.image .imgs3{
  margin-top: 180px;
  position: relative;
}
.image .imgs3 img {
  width: 180px;
  height: 300px;
  transition: 0.3s;
}
.image .imgs:hover.imgs img{
  transform: scale(1.1);
}
.imgs1 .inner_image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -30px;
}
.imgs3 .inner_image{
    width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.imgs1 .inner_image img, .imgs3 .inner_image img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid #EA202780;
}
.image .imgs2 {
  position: relative;
}
.imgs2::before {
  content: "";
  display: block;
  width: 360px;
  height: 350px;
  background: #EE5A2450;
  border-radius: 50%;
  position: absolute;
  top: -70px;
  left: -10px;
  z-index: -1;
}
.imgs2::after {
  content: "";
  display: block;
  width: 360px;
  height: 350px;
  background: #F79F1F50;
  border-radius: 50%;
  position: absolute;
  bottom: -70px;
  left: -50px;
  z-index: -1;
}
.logosss{
  position: absolute;
  bottom: -30px;
  left: 30px;
  transform: rotate(-20deg);
}
.logosss img {
  width: 200px;
  filter: drop-shadow(0px 0px 30px #F79F1F);
}
.sign{
  position: absolute;
  bottom: -30px;
  right: 120px;
  transform: rotate(-10deg);
}
.sign img {
  width: 400px;
}
.about_text{
  flex-basis: 60%;
  width: 100%;
  padding: 30px;
  transform: translateY(200px);
  transition: 1s;
  opacity: 0;
}
.about_text h3 {
  font-size: 35px;
  color: #EA2027;
  margin-bottom: 30px;
}
.about_text p {
  font-size: 18px;
  line-height: 25px;
  text-align: justify;
}
.about_gap1 {
  display: block;
  margin:20px auto ;
}
/* ========================= service sections ======================== */
.service{
  margin-top: 100px;
}
.service1{
  display: flex;
  gap: 50px;
  padding: 0 10%;
  margin: 30px 0 70px;
  transform: translateY(500px);
  transition: 1.3s;
  opacity: 0;
}
.service1_text {
  flex-basis: 70%;
}
.service1_text h3 {
  font-size: 30px;
  font-family: "Playfair Display", serif;
  color: #b31217;
  margin-bottom: 20px;
}
.service1_text h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.service1_image {
  flex-basis: 30%;
  width:450px;
  height: 280px;
  position: relative;
}
.service1_image img {
  width:450px;
  height: 280px;
  object-fit: cover;
  transition: 0.3s;
}
.service2, .service4 {
  flex-direction: row-reverse;
}
.service1_image span {
  width: 100%;
  height: 0%;
  display: flex;
  gap: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0%;
  left: 0;
  background: linear-gradient(135deg,#EA202760, #b3121760, #e52d2760);
  z-index: 2;
  transition: 0.5s;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  opacity: 0;
  text-align: center;
}
.service1_image span i {
  font-size: 70px;
  color: #fff;
}
.service1_text:hover~.service1_image span, .service1_image:hover span {
  height: 100%;
  opacity: 1;
}
.service1 button {
  width: 200px;
  height: 35px;
  margin-top: 50px;
  margin-bottom: 20px;
  border: 2px solid #e52d27;
  border-radius: 30px;
  color: #e52d27;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
}
.service1 button:hover{
  background: #e52d27;
  color: #fff;
}

/* ==================== blog section ============= */
.blogs {
  margin: 30px 0 50px ;
}
.blog{
  display: flex;
  align-items: center;
  padding: 30px;
  width: 80%;
  height: 600px;
  margin: auto;
  border-radius: 30px;
  background: linear-gradient(135deg,#EA2027, #b31217, #e52d27);
  color: #fff;
    transform: translateY(300px);
  transition: 1s;
  opacity: 0;
}
.blog_image{
  flex-basis: 35%;
  width: 100%;
  height: 600px;
}
.blog_image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.blog_text{
  flex-basis: 65%;
  padding: 20px;
  text-align: justify;
}
.blog_text button{
  display: block;
  width: 150px;
  height: 40px;
  margin: auto;
  margin-top: 50px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}
.blog_text button:hover {
  background: #fff;
  color: #e52d27;
}
/* ========== blog text style ========= */
.one{
  display: block;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.two {
  margin-left: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.three {
  display: block;
  margin: 10px 0;
}
/* ======================= mini blog ======================== */
.mini_blog{
  width: 80%;
  margin:30px auto;
  display: flex;
  gap: 20px;
}
.m_blog{
  width: 100%;
  border: 2px solid #e52d2760;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s,
}
.m_blog:hover {
  transform: translateY(-5px);
}
.m_blog h3 {
  color: #e52d27;
  margin-bottom: 10px;
}
.m_blog button {
  float: right;
  background: transparent;
  border: none;
  margin-top: 20px;
  font-size: 18px;
  color: #e52d27;
  cursor: pointer;
}
.m_blog button:hover {
  color: #0000ff;
}
.m_blog_1{
  transition: 0.8s;
  transform: translateX(-200px);
  opacity: 0;
}
.m_blog_2{
  transition: 1.3s;
  transform: translateX(-400px);
  opacity: 0;
}
.m_blog_3{
  transition: 1.7s;
  transform: translateX(-600px);
  opacity: 0;
}
.m_blog_4{
  transition: 2.1s;
  transform: translateX(-800px);
  opacity: 0;
}

/* ========================== experience section ================== */
.experiencesss{
  margin: 100px auto 100px;
}
.experience{
  display: flex;
  flex-direction: column;
  width: 95%;
  margin: 50px auto;
  gap: 20px;
}
.left_part{
  flex-basis: 30%;
  width: 100%;
  height: 300px;
  box-shadow: 0px 0px 10px #00000060;
  border-radius: 20px;
  overflow: hidden;
      transform: translateY(300px);
  transition: 1.2s;
  opacity: 0;
}
.left_part .left_part_text {
  padding: 20px;
}
.left_part p {
  text-align: justify;
  margin: 30px 0 10px;
}
.left_part h3 {
  color: #e52d27;
  font-family: "Playfair Display", serif;
  letter-spacing: 2px;
  margin-top: 20px;
  font-size: 35px;
}
.left_part button {
  width: 150px;
  height: 35px;
  margin: 20px auto 0;
  border-radius: 10px;
  border:none;
  background: #e52d27;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
.left_part button:hover{
  background: #ED4C67;
}
.left_part img{
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.right_part{
  flex-basis: 70%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  gap: 20px;
}
.right_part span, .right_part p {
  display: block;
  margin: 0px auto;
}
  .right_one{
    width: 100%;
    padding: 20px;
    background: #f6e58d80;
      border-radius: 10px;
    border: 2px solid #EA202760;
        transform: translateY(300px);
  transition: 1.5s;
  opacity: 0;
  }
  .right_part .i {
    display: flex;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff60;
    align-items: center;
    justify-content: center;
    font-size: 35px;
  }
  .right_part h2 {
    margin: 10px auto;
  }
.right_part .right_one:nth-child(5) {
  grid-column: 1 / 3;
  justify-self: center;
  width: 70%;
}
/* =========================== testimonial =============== */
.testimonialsss{
  margin: 50px auto;
}
.testimonial{
  width: 70%;
  height: 500px;
  margin: auto;
  background:#dfe6e9 ;
  border-radius: 20px;
  display: flex;
  align-items: center;
      transform: translateY(300px);
  transition: 1.5s;
  opacity: 0;
}
.review{
  padding: 50px;
}
.review #h3, .review h3 {
  margin-top: 20px;
  font-size: 30px;
  word-spacing: 7px;
  color: #636e72;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  letter-spacing: 3px;
}
.quote{
  font-size: 50px;
  color:#636e72 ;
  opacity: 0.5;
  margin-bottom: 20px;
}
.review p {
  font-size: 20px;
}
.buttons{
  display: flex;
  margin-top: 40px;
  width: 120px;
  height: 50px;
  align-items: center;
  justify-content: space-between;
}
.buttons button{
  display: flex;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  background: #00000050;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
.buttons .left:hover {
  transform: translateX(-5px);
}
.buttons .right:hover {
  transform: translateX(5px);
}

/* ========================= contact section ======================= */
  .contact {
    width: 90%;
    height: 300px;
    background: linear-gradient(135deg,#EA2027, #b31217, #e52d27);
    margin: auto;
    margin-top: 100px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 50px;
    color: #fff;
    gap: 50px;
        transform: translateY(300px);
  transition: 1.5s;
  opacity: 0;
  }
  .left_contact h3{
    font-size: 30px;
  }
  .left_contact h4 {
    font-size: 45px;
    margin-top: 30px;
  }
  .social{
    display: flex;
    gap:20px;
    margin-top: 20px;
    cursor: pointer;
  }
  .social .fb {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    filter: drop-shadow(0px 0px 5px #fff);
    border: 2px solid #fff;
  }
  .social .fb:hover {
    transform: translateY(-5px);
  }
  .social i {
    font-size: 25px;
  }
  .social abbr {
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  .social .fb {
    background: linear-gradient(135deg, #0984e3 , #3742fa) ;
  }
  .social .tiktok {
    background: linear-gradient(135deg,#2f3542, #EA2027 );
  }
  .social .link {
    background: linear-gradient(135deg,#222f3e, #341f97 );
  }
  .social .insta {
    background: linear-gradient(136deg,#EE5A24 ,#FFC312,#EA2027,#F79F1F);
  }
  .right_contact h3{
    font-size: 45px;
    margin-top: 30px;
    font-family: "Playfair Display", serif;
  }
  .right_contact button {
    width: 200px;
    height: 40px;
    border-radius: 30px;
    border: none;
    margin-top: 30px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
  }

/* ======================= footer =================== */
.footer{
  width: 100%;
  height: 400px;
  background: #fad390;
  margin-top: 150px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.footer_part1{
  padding-right: 20px;
}
.footer_part1 img {
  width: 200px;
  height: 120px;
  filter: drop-shadow(0px 0px 10px #00000030);
  object-fit: cover;
  cursor: pointer;
}
.footer_part1 h3 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 10px;
}
.footer_part4{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_part4 img{
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-bottom: 5px solid #e52d27;
  position: absolute;
  bottom: 50px;
}
.footer_part4 p {
  position: absolute;
  bottom: 0;
}
.footer_part3{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.footer_part3 ul li{
  list-style: none;
  margin: 8px;
  transition: 0.3s;
}
.footer_part3 ul li:hover {
  transform: translateX(3px);
  font-weight: bold;
}
.footer_part3 h3 {
  font-size: 25px;
}
.footer_part3 ul li a {
  text-decoration: none;
  color: #000;
}
.footer_part2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}
.footer_part2 h3 {
  font-size: 30px;
  text-align: center;
  font-family: "Playfair Display", serif;
}
.footer_part2 button {
  width: 150px;
  height: 35px;
  background: transparent;
  border: 2px solid #EA2027;
  color: #EA2027;
  font-weight: bold;
  border-radius: 20px;
  margin-top: 15px;
  cursor: pointer;
}
.footer_part2 button:hover {
  background: #e52d27;
  color: #fff;
}

/* ================== mini footer ==================  */
.mini_footer{
  width: 100%;
  height: 30px;
  background: linear-gradient(135deg,#EA2027, #b31217, #e52d27);
  text-align: center;
  align-content: center;
  color: #fff;
  font-size: 14px;
}



/* scroll animation  */
.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}





/* =================== body scroll off when  preloader enable ================ */
/* Body scroll disable class */
body.noscroll {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
/* Preloader hide animation */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(100, 100, 100, 0.4); 
  backdrop-filter: blur(30px);   /* Blur effect */
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  transition: 0.5 opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
