/* Global Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --color-body: #333;
    --color-primary:#4A95FF;
    --color-dark: #3E4B60;
    --font-primary: "Urbanist", sans-serif;
  }

  html, body {
    font-size: 16px;
    font-family: var(--font-primary);
    color: var(--color-body);
    line-height: 1.2;
    scroll-behavior: smooth; /* smooth scrolling for anchor links */
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  ul {
    list-style: none;
  }
  
  p{
    font-size: 1.125rem;
    line-height: 1.35;
  }

/** Grid **/
.row{
  margin-left: -1.25rem;
	display: flex;
	flex-wrap: wrap;
	grid-row-gap: 1rem;
}
.col-6{
  width: 50%;
}
.col-8{
  width: 66.67%;
}
.col-5{
  width: 50%;
}
.col-4{
  width: 33.33%;
}
.col-2{
  width: 15%;
}

[class^='col-']{
  padding-left: 1.25rem;
}


@media screen and (max-width: 680px) {
  .row{
    margin-left: 0;
  }
  .col-8,
  .col-6,
  .col-4{
    width: 100%;
    padding-left: 0;
  }
  .col-2{
    width: 50%;
  }
}

  /* Container Utility */
  .container {
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
  }
  


  /* Header & Navigation */
  .site-header {
    padding: 1.25rem 0;
    position: absolute;
    top: 0;
    z-index: 10;
    width: 100%;
  }
  .site-header .btn{
    margin-left: 2.5rem;
  }
  .header-top{
    color: #FFF;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 1.25rem;
  }
  .logo-area {
    width: 18.75rem;
  }
  .logo {
    margin-right: 1rem;
    width: 100%;
  }
  .license-info {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary);
  }
  .main-nav ul {
    display: flex;
    gap: 5rem;
    justify-content: center;
  }
  .main-nav a{
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 500;
  }
  .main-nav a:hover {
    color: var(--color-primary); /* Some highlight color on hover */
  }
  .call-info {
    font-weight: bold;
    color: #333;
    font-size: 0.95rem;
  }
  
 /* Hero Section */
  .hero-section {
    position: relative;
    background: linear-gradient(#00000099, #00000033), url("../images/main2.webp") center center no-repeat;
    background-size: cover;

    display: flex;
    color: #fff;
    padding-top: 11.5625rem;
    padding-bottom: 3.125rem;
  }
  .hero-content {
    position: relative;
    /*padding: 2rem 0;*/
    font-weight: 500;
  }
  .hero-content h2 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .subtitle {
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: center;
  }
  .description {
    max-width: 37.5rem;
    margin-bottom: 3rem;
    font-size: 1.25rem;
  }
  .benefits-list {
    margin-bottom: 2rem;
    font-size: 1.25rem;
  }
  .benefits-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
  }
  
  .benefits-list li::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath fill='%23FFF' d='M12 0c6.623 0 12 5.377 12 12s-5.377 12-12 12-12-5.377-12-12 5.377-12 12-12zm0 1c6.071 0 11 4.929 11 11s-4.929 11-11 11-11-4.929-11-11 4.929-11 11-11zm7 7.457l-9.005 9.565-4.995-5.865.761-.649 4.271 5.016 8.24-8.752.728.685z'/%3E%3C/svg%3E");
    background-size: contain;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    left: 0;
    color: #FFF;
    font-weight: bold;
  }
  
  
  /* Form Section to the right */
  .quote-form {
    background-color: #fff;
    color: #333;
    padding: 1.2rem;
    width: 100%;
    margin-left: auto;
    border-radius: 0.4rem;
  }
    .quote-form__title{
      margin: -1.2rem -1.2rem 1.2rem -1.2rem;
      text-align: center;
      color: #FFF;
      background: var(--color-dark);
      font-size: 1.6rem;
      line-height: 1.7rem;
      font-weight: bold;
      text-transform: uppercase;
      padding: 1rem;
      border-radius: 0.4rem  0.4rem 0 0;
    }

    .form-group{
      margin-bottom: 1rem;
    }
  .form-group label {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  .form-control {
    border: 1px solid #1a1a1a;
    font-size: 1rem;
    font-family: var(--font-primary);
    padding: 0 1rem;
    height: 2.8125rem;
    width: 100%;
    border-radius: 0.4rem;
  }

  textarea.form-control{
    height: auto;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .btn{
      background-color: var(--color-primary);
      color: #fff;
      border: none;
      border-radius: 0.4rem;
      padding:1.5rem 1rem;
      line-height: 1;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease,border-color 0.3s ease;
      text-transform: uppercase;
      font-weight: 700;
      text-align: center;
      display: inline-block;
      border : 2px solid var(--color-primary);
    }
    .btn-block{
      display: block;
      width: 100%;
    }
    .btn:hover {
      background-color: var(--color-dark);
      border-color : var(--color-dark);
    }
    .btn.btn-transparent{
      color: var(--color-primary);
      border: 2px solid var(--color-primary);
      background-color: #1a1a1acc;
      font-size:2rem;
      font-weight: 500;
    }
    .btn.btn-transparent:hover{
      background-color: var(--color-primary);
      color: var(--color-dark);
    }
  .quote-btn{
    width: 100%;
  }

  @media screen and (min-width: 768px) and (max-width: 1080px) {
    body,html{
      font-size: clamp(10px, 1.3vw, 16px);
    }

    .col-5-md{
      width: 50%;
    }
  }
   @media screen and (max-width: 767px) {

    .consultation-form {
      margin-left: 0;
      margin-top: 2rem;
    }

    .main-nav{
      display: none;
    }
    .logo-area{
      width: 180px;
    }
    .license-info{
      font-size: 0.8rem;
    }
    .btn.btn-transparent{
      font-size: 1.8rem;  
    }
    .site-header .btn{
      margin-right: auto;
      margin-left: auto;
      margin-top: 1.25rem;
    }    
    .hero-section .col-8{
      order: 1;
    }
    .hero-section .col-4{
      order: 0;
    }
    .hero-content h2{
      font-size: 1.5rem;
    }
    .subtitle{
      font-size: 1.25rem;
      margin-top: 2rem;
    }
    .subtitle span{
      display: block;
    }
    .description, .benefits-list{
      font-size: 1.1rem;
    }
    .benefits-list li::before{
      width: 1.25rem;
      height: 1.25rem;
    }
  }
  
  /* Sections */
  .section {
    padding: 3rem 0;
  }
  .section-bg{
    background: #00000099 center center;
    background-size: cover;
    background-blend-mode: multiply;
    color: #FFF;
  }
section:not(.section-stripe) .section-title {
    color: var(--color-dark);
}
  .section-title{
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1em;
    
  }  
  .title-line{
    position: relative;
    padding-bottom: 10px;
  }
    .title-line:after{
      display: block;
      content: '';
      width: 200px;
      height: 3px;
      position: absolute;
      bottom: 0;
      left: 0;
      background-color: var(--color-primary);
    }

      .text-center.title-line:after{
        left: 50%;
        margin-left: -100px; 
      }


  .section-stripe{
    background: var(--color-dark);
    padding: 20px;
    color: #FFF;
  }
    .section-stripe .btn:hover  {
        border-color: var(--color-primary);
    }

.list-logos{
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}
  .list-logos li img{
    max-width: 100%;
    height: auto;
  }

.list-types{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
  .list-types li{
    min-width: 17.5rem;
    padding:2.25rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    border: 3px solid var(--color-dark);
    border-radius: .4rem;
  }


  /* Footer */
  .site-footer {
    background-color: #f2f2f2;
    text-align: left;
    padding: 1rem 0;
  }
  .site-footer p {
    margin: 0;
    font-size: 0.9rem;
  }
  

  .testimonials {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

    .testimonial-card {
    background-color: #fff;
    color: var(--color-dark);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
  }

  /* Top section with avatar, name, and stars */
  .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .avatar {
    width: 80px;
    height: 80px;
    /* background-color: #333; */
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    overflow: hidden;
  }
  .avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .testimonial-info {
    display: flex;
    flex-direction: column;
  }

  .testimonial-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 3px;
  }

  .testimonial-stars {
    color: #f2b01e; 
    font-size: 1rem;
  }

  .testimonial-text {
    line-height: 1.5;
  }

  @media screen and (max-width:680px) {
    .section-title{
      font-size: 1.3rem;
    }
    .testimonials{
      grid-template-columns: 1fr;
      padding-right: 0;
    padding-left: 0;
    }
    .avatar {
        width: 40px;
        height: 40px;
    }
    .site-footer{
      text-align: center !important;
    }
    .list-logos{
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }
    .list-logos li{
      width: calc(50% - 1rem);
    }
    .mobile-reverse {
        flex-direction: column-reverse;
    }


    
  }

.row-icons {
    margin-bottom: 1rem;
}
.row-icons img{
  display: block;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}  
#about-us .row {
    align-items: center;
}
.service ul {
    list-style: disc;
    margin-left: 15px;
    font-size: 1.1em;
    margin-bottom: 2em;
}
.service li::marker {
    color: var(--color-primary);
}
.service__image{
  /*margin-bottom: 20px;*/
  position: relative;
  padding-bottom: 60%;
  overflow: hidden;
}
  .service__image img{
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.service__title{
  color: var(--color-primary);
  margin-bottom: 1em;
  /*text-align: center;*/
  font-size: 1.6em;
}
.service_description {
    margin-bottom: 1em;
}

/** Modal **/
#thankYouModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-primary);
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-align: center;
}
#modalOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#closeModal {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#closeModal:hover {
  background: #e04842;
}



/* Utility */
.d-flex{
  display: flex;
  flex-wrap: wrap;
}
.align-items-center{
  align-items: center;
}
.justify-content-center{
  justify-content: center;
}
.ml-auto, .mx-auto{
  margin-left: auto;
}
.mr-auto, .mx-auto{
  margin-right: auto;
}

.text-white{
  color: #FFF !important;
}
.text-body{
  color: var(--color-body) !important;
}
.text-primary{
  color: var(--color-primary) !important;
}

.text-right{
  text-align: right;
}
.text-center{
  text-align: center;
}

.text-justify{
  text-align: justify;
}
.text-justify-center{
  text-align-last: center;
}

.fs-20{
  font-size: 1.25rem;
}
.fs-24{
  font-size: 1.5rem;
}
.fs-32{
  font-size: 2rem;
}
.fs-48{
  font-size: 3rem;
}
.lh-1{
  line-height: 1;
}

.font-bold{
  font-weight: bold;
}
.mb-16{
  margin-bottom: 1rem;
}

.mb-32{
  margin-bottom: 2rem;
}
.pb-0{
  padding-bottom: 0;
}
.py-16{
  padding-top: 16px;
  padding-bottom: 16px;
}

.px-16{
  padding-left: 16px;
  padding-right: 16px;
}

.py-20{
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-20{
  padding-left: 20px;
  padding-right: 20px;
}

.py-32{
  padding-top: 32px;
  padding-bottom: 32px;
}

.img-fluid{
  width: 100%;
  display: block;
  border-radius: 0.4rem;
}

.img-decorated{

}

.bg-white{
  background-color: #FFF !important;
}
.bg-gray{
  background-color: #F4F4F4;
}
.border-rounded{
  border-radius: .4rem;
}

.cta-mobile{
  display: none;
  padding: 1rem;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  background: var(--color-primary);
  position: fixed;
  bottom: 0;
  width: 100%;
}

@media screen and (max-width: 680px){
  .xs-hidden{
    display: none;
  }
  .fs-48{
    font-size: 1.8rem;
  }
  .fs-24{
    font-size: 1.2rem;
  }
 .cta-mobile{
  display: block;
 } 
 .site-footer{
  padding-bottom: 5rem;
 }
     .service__title {
        margin-bottom: 0.5em;
        font-size: 1.4em;
    }
}
.site-header .btn {
    font-size: 1.86rem;
}
.license-info {
    font-weight: 500;
    color: #FFF;
}
