
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #4891ff;
  --light-color: #f4f4f6;
  --dark-color: #111;
}
body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}
/*Navbar*/
.navbar {
  background-color:transparent;
  position: fixed;
  top: 0;
  left:0;
  width: 100%;
  z-index: 200;
  -webkit-backdrop-filter: blur(1);
  backdrop-filter: blur(1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  box-shadow: 0 5px 5px grey;
  margin: auto;
  width: 90%;
  border-radius: 3px;
}
.navbar .main-menu ul {
  display: flex;
  padding: 5px 0;
  gap: 50px;
}

.navbar ul li a {
  padding: 10px 10px;
  display: block;
  font-weight: 600;
  transition: 0.3s;
}

.navbar ul li a::after{
  content: "";
  width: 0%;
  height: 2px;
  background-color: #000;
  display: block;
  transition: 0.3s ease-in-out;
}
.navbar ul li a:hover::after{
  width: 100%;
}
.navbar ul li a:active::after{
  width: 100%;
}

.navbar ul li a:hover {
  color: grey;
  
}

.navbar ul li:last-child a {
  margin-left: 10px;
}

.navbar ul li a span {
  margin-right: 10px;
}
.navbar .container .logo {
  width:fit-content;
}

.logo h1 {
  
    font-weight: 800;
    color: #333;
}

/*----------- Hero ----------*/

.hero {
  margin-bottom: 50px;
  margin-top: 0px;
  border-radius: 10px;
  background-color: #ddd;
  height: 100vh;
  margin-bottom: 100px;
}
.hero .container {
  background-size: 400px 400px;
  background-position: center right;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
   max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero .hero-text {
  width: 60%;
  margin-bottom: 20px;
  text-align: left;
  border-radius: 3px;
  padding: 10px 20px;
  margin: 10px auto;
  
}
.hero .hero-text p.with{
    font-weight: 600;
    text-align: center;
    width: fit-content;
    padding: 10px 50px 10px 5px;
}
.hero .hero-text h1{
    font-size: 40px;
    color:grey;
}
.hero .hero-text a{
    background-color: black;
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    color: white;
    margin-top: 20px !important;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero .hero-text a:hover{
    background-color: white;
    color: black;
    box-shadow: -5px 5px 5px grey;
}

div.herophoto{
  width: calc(100% - 60%);
}

div.herophoto img{
  width: 100%;
  border-radius: 10px;
}

section.services{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 50px;
}

.services .container{
  width:100%;
}

.services .container .card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.services .container .card .cardtext{
  width: 50%;
  text-align: justify;
  text-align-last: center;
}
.services .container .card .cardtext h2{
  font-weight: 100;
  font-size: 30px;
  margin-bottom: 30px;
}
.services .container .card .cardtext p.visible, p.hide{
  font-style: italic;
  margin-top: 30px;
}
.services .container .card  p.hide{
  display: none;
}

.services .container .card img{
  height: 400px;
  width: 50%;
  border-radius: 10px;
  object-fit: cover;

}

div.ctadiv{
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: left;
  margin-top: 30px;
}

div.ctadiv a.CTA{
  padding: 5px 20px;
  box-shadow: -5px 5px 5px grey;
}

/*CONTACT SECTION*/

section.contact{
  width: 100%;
  margin-top: 0px;
  box-sizing: border-box;
  padding-top: 20px;
  background-color: black;
  position: relative;
}

.contact .heading{
  width: 100%;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 0px;
}
.contact .heading h1{
  font-size: 30px;
  color: grey;
}
.contact .container{
  width: 80%;
  display: flex;
  height: 60vh;
  margin: 0px auto;
  justify-content: space-between;
  align-items: start;
  align-content: center;
  gap: 50px;
  position: relative;
}
.contact .container .contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 60%;
  margin-top: 10px;
}
.contact .container .contacts .number{
  padding: 10px 30px;
  border-radius: 5px;
}
.contact .container .contacts .number h2{
  font-size: 25px;
  color: white;
}
.contact .container .contacts .icons{
  display: flex;
  gap: 50px;
}
.contact .container .contacts .icons img{
  width: 50px;
  box-shadow: -5px 5px 5px grey;
  background-color: white;
  border-radius: 3px;
}

.contact .container .contacts .img{
  width: 200px;
  overflow: hidden;
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.contact .container .contacts .img img{
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.contact span#success{
  background-color: grey;
  padding: 10px 30px;
  z-index: 100;
  display: block;
  width: fit-content;
  margin: 50px auto;
  color: white;
  font-weight: 700;
  border-radius: 5px;
  position: absolute;
  top: 200px;
  left: 170px;
  box-shadow: -5px 5px 5px white;
  display: none;
}

.contact .container .form{
  color: white;
  width: 50%;
  margin-left: auto;
  margin-right: 0;
}

.contact .container .form form{
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  text-align: center;
  margin-left: auto;
}

.contact .container .form form input, textarea{
  padding:10px 20px;
  width: 60%;
  text-align: center;
  border: none;
  outline: none;
  border-radius: 3px;
  font-weight: 600;
}

textarea{
  height: 150px;
  resize: none;
}

.contact .container .form form button[type='submit']{
  width: 100px;
  padding: 5px 0;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

.contact .container .form form button[type='submit']:hover{
  box-shadow: -5px 5px 5px grey;
  background-color: black;
  color: white;
}














/*VIDEO*/
.video {
  padding: 10px 0 40px;
}
.video-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-preview {
  margin-bottom: 20px;
}

.video-content img {
  border-radius: 5px;
}

/*Testimonials*/
.testimonials {
  padding: 40px 0;
}
.testimonials .testimonials-heading {
  width: 700px;
  margin-bottom: 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonials .card p:nth-child(2) {
  margin-top: 30px;
  font-weight: bold;
}

/*Pricing*/
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
  gap: 30px;
}

.pricing .pricing-card-subheading {
  margin-bottom: 30px;
}

.pricing .pricing-card-price {
  margin-bottom: 30px;
  padding: 20p 0;
  border-bottom: 1px solid #ccc;
}

.pricing ul {
  margin: 30px 0;
}

.pricing ul li {
  margin-bottom: 20px;
}

.pricing .pricing-footer {
  margin: 30px 0;
}

/*FAQ*/
.faq {
  padding: 40px 0;
}
.faq-group {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.faq-group-header {
  padding: 20px 0;
  margin: 15px;
  position: relative;
}
.faq-group-header h4 {
  font-weight: 600;
  width: 95%;
}

.faq-group-header button {
  position: absolute;
  right: 0;
  top: 35px;
  font-size: 1.3rem;
  cursor: pointer;
}

.faq-group-body {
  display: none;
}

.faq .faq-group .faq-group-body.open {
  display: block;
}
.faq ul.faq-menu {
  max-width: 400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ddd;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.faq ul.faq-menu li {
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
}
.faq ul.faq-menu li.active {
  background-color: var(--primary-color);
  color: #fff;
}

/*======== FOOTER =======*/
footer{
  background-color: #000;
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  padding-bottom: 20px;
  color: white;
  text-align: center;
}

footer .container{
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}















/*Utility Classes*/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

/*Buttons*/
.btn {
  display: inline-block;
  padding: 13px 20px;
  background-color: var(--light-color);
  color: #333;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.btn-dark {
  background: var(--dark-color);
  color: #fff;
}

.btn-block {
  display: block;
  width: 100%;
}

/*Text Classes*/
.text-xxl {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 40px 0 20px;
}

.text-xl {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px 0 20px;
}

.text-lg {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 30px 0 20px;
}

.text-md {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 20px 0 10px;
}

.text-sm {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 10px 0 5px;
}

.text-center {
  text-align: center;
}

/*Backgrounds*/
.bg-primary {
  background: var(--primary-color);
  color: #fff;
}
.bg-light {
  background: var(--light-color);
  color: #333;
}
.bg-dark {
  background: var(--dark-color);
  color: #fff;
}
.bg-black {
  background: #000;
  color: #fff;
}

.hamburger-button {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
 margin-left: auto;
}

.hamburger-button .hamburger-line {
  width: 30px;
  height: 3px;
  background: #333;
  margin: 6px;
}

/*mobile menu*/

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 250px;
  height: 100%;
  z-index: 100;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: right, 0.3s ease-in-out;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  margin-top:60px;
  padding-right: 45px;
}

.mobile-menu ul li {
  margin: 10px 0;
}
.mobile-menu ul li a {
  font-size: 20px;
  transition: 0.3s;
}

/*============== MEDIA QUERIES ===========*/

@media screen and (max-width: 900px) {
  .text-xxl {
    font-size: 2.5rem;
  }



  .navbar .main-menu {
    display: none;
  }

  .logo h1{
    font-size: 12px;
  }

  .navbar ul li a {
  padding:0px;
  display: block;
  font-weight: 200;
  transition: 0.3s;
}

.mobile-menu{
  z-index: 90;
}
  .mobile-menu ul li a {
    text-align: right;
  }
  .navbar .hamburger-button {
    display: block;
    margin-left: auto;

    margin-bottom: 0;
  }

  .hero {
  margin-bottom: 50px;
  margin-top: 50px;
  border-radius: 10px;
  background-color: #ddd;
  padding-top: 50px;
  height: fit-content;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
  
.hero .container {
  background-size: 400px 400px;
  background-position: center right;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.hero .herophoto{
  width: 100%;
}
.hero .hero-buttons .btn{
    margin-bottom:10px;
    display: block;
    width: 100%;
}

.hero .hero-text {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 3px;
  padding: 10px 20px;
  margin: 10px auto;
  
}
.hero .hero-text p.with{
    font-weight: 600;
    text-align: center;
    width: fit-content;
    padding: 0;
    margin: auto;
}
.hero .hero-text h1{
    font-size: 30px;
    color:grey;
}
.hero .hero-text a{
    background-color: black;
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    color: white;
    margin-top: 20px !important;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero .hero-text a:hover{
    background-color: white;
    color: black;
    box-shadow: -5px 5px 5px grey;
}


/*   services  */

.services .container .card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-direction: column;
}

.services .container .card .cardtext{
  width: 80%;
  text-align: justify;
  text-align-last: center;
}

.services .container .card img{
  height: 400px;
  width: 80%;
  border-radius: 10px;
  object-fit: cover;

}


.services .container .card .cardtext p.visible{
  display: none;
}
.services .container .card  p.hide{
  display: block;
  margin-top: 0;
}
  /*text*/

  .text-xl{
    font-size: 1.9rem;
  }
  .text-lg{
    font-size: 1.5rem;
  }

  .text-md{
    font-size: 1.1rem;
  }
  .contact .container .contacts{
    width: 100%;
  }
.contact .container .contacts .number{
  padding: 10px 30px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}
.contact .container .contacts .number h2{
  font-size: 20px;
  color: white;
}


.contact{
  padding-bottom: 30px;
  box-sizing: content-box;
}


.contact .container{
  width: 90%;
  display: flex;
 height: fit-content;
  margin: 0px auto;
  justify-content: space-between;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(images/IMG-20250816-WA0021.jpg);
  align-items: center;
  flex-direction: column;
  align-content: center;
  gap: 50px;
  border-radius: 10px;
}

.contact .container .contacts .img{
  width: 200px;
  overflow: hidden;
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  display: none;
}

.contact .container .form{
  color: white;
  width: 100%;
  margin-right: 0;
}

.contact .container .form form{
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
  margin-left: auto;
}

.contact .container .form form input, textarea{
  padding:10px 20px;
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
  border-radius: 3px;
  font-weight: 600;
}

textarea{
  height: 150px;
  resize: none;
}

.contact .container .form form button[type='submit']{
  width: 100px;
  padding: 5px 0;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 2px;
  margin-bottom: 20px;
  transition: 0.3s ease-in-out;
}

.contact .container .form form button[type='submit']:hover{
  box-shadow: -5px 5px 5px grey;
  background-color: black;
  color: white;
}
}

@media screen and (max-width: 670px) {
  .navbar .main-menu {
    display: none;
  }

  .logo h1{
    font-size: 12px;
  }

  .navbar ul li a {
  padding:0px;
  display: block;
  font-weight: 200;
  transition: 0.3s;
}

.mobile-menu{
  z-index: 90;
}
  .mobile-menu ul li a {
    text-align: right;
  }
  .navbar .hamburger-button {
    display: block;
    margin-left: auto;

    margin-bottom: 0;
  }

  .hero {
  margin-bottom: 50px;
  margin-top: 50px;
  border-radius: 10px;
  background-color: #ddd;
  padding-top: 50px;
  height: fit-content;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
  
.hero .container {
  background-size: 400px 400px;
  background-position: center right;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.hero .herophoto{
  width: 100%;
}
.hero .hero-buttons .btn{
    margin-bottom:10px;
    display: block;
    width: 100%;
}

.hero .hero-text {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 3px;
  padding: 10px 20px;
  margin: 10px auto;
  
}
.hero .hero-text p.with{
    font-weight: 600;
    text-align: center;
    width: fit-content;
    padding: 0;
    margin: auto;
}
.hero .hero-text h1{
    font-size: 30px;
    color:grey;
}
.hero .hero-text a{
    background-color: black;
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    color: white;
    margin-top: 20px !important;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero .hero-text a:hover{
    background-color: white;
    color: black;
    box-shadow: -5px 5px 5px grey;
}


/*   services  */

.services .container .card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-direction: column;
}

.services .container .card .cardtext{
  width: 80%;
  text-align: justify;
  text-align-last: center;
}

.services .container .card img{
  height: 400px;
  width: 80%;
  border-radius: 10px;
  object-fit: cover;

}


.services .container .card .cardtext p.visible{
  display: none;
}
.services .container .card  p.hide{
  display: block;
  margin-top: 0;
}



  /*text*/

  .text-xl{
    font-size: 1.9rem;
  }
  .text-lg{
    font-size: 1.5rem;
  }

  .text-md{
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 500px) {
    .text-xxl{
        font-size: 2rem;
    }

    .hero .hero-text {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 3px;
  padding: 10px 20px;
  margin: 10px auto;
  
}
.hero .hero-text p.with{
    font-weight: 600;
    text-align: center;
    width: fit-content;
    padding: 0;
    margin: auto;
}
.hero .hero-text h1{
    font-size: 25px;
    color:grey;
    text-align: center;
}
.hero .hero-text a{
    background-color: black;
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    color: white;
    margin-top: 20px !important;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero .hero-text a:hover{
    background-color: white;
    color: black;
    box-shadow: -5px 5px 5px grey;
}
}





::-webkit-scrollbar{
    width: 0px;
    scroll-behavior: smooth;
}

::-webkit-scrollbar-thumb{
    background-color: var(--main-color);
    scroll-behavior: smooth;
}
::-webkit-scrollbar-track{
    background-color: var(--bg-color);
    scroll-behavior: smooth;
}

