@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

html,
body {
  width: 100%;
  overflow-x: hidden;
 
}

:root {
  --primary: #F36F21;
  --secondary: #1C3A7B;
  --light-prim:#FFF5DA;
  --tit-color:#0A1A2F;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
}
h1, h2, h3, h4, h5, h6{
  font-family: "Outfit", sans-serif;
  color: var(--tit-color);
  font-weight: 600;
  text-transform: uppercase;
}
h1{
  font-size: calc(2.7rem + 0.5vw);
}
h2{
  font-size: calc(2.5rem + 0.5vw);
}
h3{
  font-size: calc(2.2rem + 0.5vw);
}
h4{
  font-size: calc(1.9rem + 0.5vw);
}
h5{
  font-size: calc(1.7rem + 0.5vw);
}
h6{
  font-size: calc(1.4rem + 0.5vw);
}

p {
  
  line-height: 1.7rem;
  font-size: 1rem;
  color: #0A1A2F;
  
}

ul{
  list-style: none;
  margin: 0px;
}
a{
  text-decoration: none!important;
}
a:hover{
  text-decoration: none!important;
}
.menu-header{
  width: 100%;
  padding: 5px 50px;
  background:rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);  
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.1);
}

.logo-center{
  width: 20%;
}
.logo-center img{
  width: 100%;
}
.nav-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav-right .prim-btn{
  margin-right: 15px;
}
.banner-bx{
  width: 100%;
  height: 100vh;
  position: relative;
}
.invis{
  max-width: 180px;
  position: absolute;
  top:100px;
  right: 30px;
  z-index: 500;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 0.5rem;
}
.invis {
  width: 100%;
}
.banner-bx img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

}
.banner-cont{
  position: absolute;
  top: 60%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 99;
}
.banner-cont{
  text-transform: capitalize;
  padding: 2rem;
}
.banner-cont h2{
  color: var(--tit-color);
}
.banner-cont h2 span{
  color: var(--primary);
  font-size: calc(2.7rem + 0.5vw);
  font-family: "Outfit", sans-serif;
}
.small-tit{
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 600;
}

.banner-cont p{
  max-width: 45%;
  font-size: 1rem;
  color: #0F0F0F;
}

.prim-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background-color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  color:#fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  border: 0px;
}
.prim-btn:hover{
  background-color: #fa7a30;
   color: #fff;
}
.sec-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background-color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  color:#fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
   text-transform: uppercase;
}
.sec-btn:hover{
    background-color: #234388;
   color: #fff;
}
.grid-container-wr{
  width: 100%;
  height: auto;
  padding: 0px 50px;
  position: relative;
  margin-top: -30px;
}
.grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
      gap: 0;
      border-radius: 12px;
      overflow: hidden;
    }

    .grid-item {
      padding: 25px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      min-height: 200px;
    }
    .grid-item:hover .grid-ico{
      transform: translateY(-5px);
    }

    .grid-item.blue {
      background: var(--secondary);
      color: #fff;
    }
  .grid-item.blue h3{
    color: #fff;

  }

    .grid-item.sunset {
      background: var(--light-prim);
      color: var(--tit-color);
    }

    .grid-item h3 {
      font-size: 18px;
      margin: 10px 0 0;
      font-weight: bold;
      text-transform: capitalize;
    }

    .grid-item p {
      font-size: 14px;
      margin: 5px 0 0;
    }
    .grid-ico {
      transition: all 0.3s ease-in-out;
        }
    .grid-ico img{
      width: 70px;
      
    }

    /* Responsive */
    @media (max-width: 600px) {
      .grid-item {
        min-height: 120px;
        padding: 20px 15px;
      }
      .grid-item h3 {
        font-size: 16px;
      }
      .grid-item p {
        font-size: 13px;
      }
    }
.grid-item h3 span{
  font-size: 0.9rem!important;
  font-weight: 500;
}
.meet-dent{
   width: 100%;
   height: auto;
   padding: 70px 50px;
}
.meet-dent h4{
  margin-bottom: 0px;
}
.doc-name{
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
}
.meet-dent p{
  margin-top: 15px;
}
.book-frm h4{
  text-align: center;
}
.book-frm{
  width: 100%;
  height: auto;
  padding: 50px;
  background-color: #F5F6F9;
}
.conslt-frm{
  max-width: 700px;
  margin: 50px auto;
  padding: 30px;
}
.form-control{
  background-color: transparent;
}
.submi{
  color: #6D809A;
}
.map-sec{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.map-left{
  width: 50%;
  height:500px;
}
.map-left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.map-right{
  width: 50%;
  height: 500px;
}
.faq{
  width:100%;
  height: auto;
  padding: 70px 50px;
}
.faq h4{
  text-align: center;
}
.faq-wr{
  max-width: 90%;
  margin: 20px auto;
  display: block;
  background-color: var(--light-prim);
  border-radius: 15px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}


    .faq-header {
      font-weight: 600;
      font-size: 1.8rem;
      margin-bottom: 20px;
      text-align: center;
    }

    .card {
      border: none;
      margin-bottom: 10px;
      border-radius: 8px;
      background-color: transparent;
      border-bottom: 1px solid #d2d2d2;
    }
        .card:last-child{
          border-bottom: 0px;
        }

    .card-header {
      width:100%;
      background: transparent;
      border-bottom: none;
      padding: 15px 20px;
      cursor: pointer;
      
    }
 .card-header h5 button{
      display: flex;
      align-items: center;
      justify-content: space-between;
      outline: none;
      font-size: 1.2rem;
      font-weight: 500;
 }
    .card-header h5 {
      margin: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .card-header .btn-link {
      text-decoration: none;
      color: #0A1A2F;
      width: 100%;
      text-align: left;
      padding: 0;
    }

    .card-header i {
      transition: transform 0.3s ease;
    }

    .card-header[aria-expanded="true"] i {
      transform: rotate(180deg);
    }
.ft-sec{
  width:100%;
  height: auto;
  padding: 20px 50px 20px 50px;
  background-color: #F5F6F9;
}
.ft-sec hr{
  margin-bottom: 0px;
}
.b-list li{
  margin-bottom:20px;
  padding-left: 2%;
  border-left: 4px solid var(--primary);
  font-size: 14px;
  line-height: 19px;
  color: #666666 ;
}
.ft-sec h6{
  font-size: 1.22rem;
}
.qk-link li{
  margin-bottom: 8px;
}
.qk-link li a{
  color: #666666;
  font-size: 14px;
  line-height: 19px;
}
.copy{
  width: 100%;
  height: auto;
  padding: 10px 50px 0px 50px;
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  color: #666666 ;
}

        
        .fixed-cont a {
            margin: 15px 0px;
            color: var(--tit-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        
        .what-icon, .spot-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.7rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .what-icon {
            background-color: #4FCC5D;
        }
        
        .spot-icon {
            background-color: var(--primary);
        }
        
        .what-icon img, .spot-icon img {
            width: 100%;
        }
        .fix-what{
           position: fixed;
            bottom: 60px;
            right: 30px;
            z-index: 999;
        }
        .fix-claim {
           position: fixed;
            bottom: 0px;
            right: 30px;
            z-index: 999;
        }   
        
        .fix-what, .fix-claim {
            height: 50px;
            overflow: hidden;
            background-color: #fff;
            box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .fixed-cont span {
            text-transform: uppercase;
            font-weight: 600;
            font-family: "Outfit", sans-serif;
            max-width: 0;
            opacity: 0;
            white-space: nowrap;
            overflow: hidden;
            transition: max-width 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
        }
        
        /* Fix: Only show text on hover for the specific link */
        .fix-claim:hover span {
            max-width: 200px;
            opacity: 1;
            margin: 0 12px;
        }
        .fix-what:hover span{
            max-width: 200px;
            opacity: 1;
            margin: 0 12px;
        }
.inner-conta{
  width: 100%;
  height: auto;
  padding: 150px 50px 30px 50px;
  background-color: var(--light-prim);
}
.policy h2{
  font-size: 2rem;
}
.policy h3{
  font-size: 1.6rem;
  margin-top: 30px;
}
.sec-list{
  list-style: circle;
  margin-left: 10px;
}
.sec-list li{
  margin: 10px 0px;
  
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f9f9f9;
  color: #333;
  text-align: left;
  padding: 20px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-content h4 {
  margin: 0 0 8px;
  color: #003366;
  font-weight: 600;
}

.cookie-content p {
  margin: 0;
  color: #444;
}

.cookie-content a {
  color: #003366;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}


.btn-allow {
  background: var(--secondary);
  color: #fff;
}

.btn-allow:hover {
  background: #004c99;
}

.btn-essential {
  background: #ccc;
  color: #333;
}

.btn-essential:hover {
  background: #bbb;
}

.btn-manage {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
}

.btn-manage:hover {
  background: #f0f0f0;
}

@media (max-width: 768px) {
  .cookie-actions {
    flex-direction: column;
  }
}
.review-sec{
  width: 100%;
  height: auto;
  padding: 70px 50px;
}
.review-sec h4{
  text-align: center;
}
.review-card{
  background-color: #F5F6F9;
  padding: 1rem;
  border-radius: 10px;
  position: relative;
}
.review-card-ft{
  width:100%;
  height:auto;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}
.prof-img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.prof-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.prof-name{
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.review-carousel{
  margin-top: 40px;
}
.review-qt{
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 60px;
  z-index: 0;
  opacity:0.8;
}
.review-qt img{
  width: 100%;
}
.ft-sec p{
  font-size:14px;
  line-height: 19px;
  color: #666666 ;
}
.policy a{
  color: var(--secondary);
}