@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth !important;
    scroll-padding-top: 80px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    font-family: "Lexend", sans-serif;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
    color:var(--black-color);
  }
  
  :root {
    --primary-color: #0B9444;
    --secondary-color: #00A7F1;
    --black-color:#000000;
  }

  /* colors */

.bg-primary {
    background-color: var(--primary-color) !important;
  }
  
  .bg-secondary {
    background-color: var(--secondary-color) !important;
  }
  
  .bg-light {
    background-color: var(--light-color) !important;
  }
  
  .text-primary {
    color: var(--primary-color) !important;
  }
  
  .text-secondary {
    color: var(--secondary-color) !important;
  }
  
  .text-black {
    color: var(--black-color) !important;
  }
  
  .text-info {
    color: var(--info-color) !important;
  }
  
  .text-grey {
    color: var(--text-grey);
  }
  
  .text-dark {
    color: var(--text-dark) !important;
  }
  
  .bg-light {
    background-color: rgba(1, 34, 105, .1) !important;
  }
  
  .border-primary {
    border-color: var(--primary-color) !important;
  }
  

  /* Spacing */
  .pt-100 {
    padding-top: 100px;
  }
  
  .pb-100 {
    padding-bottom: 100px;
  }
  
  .pb-50 {
    padding-bottom: 50px;
  }
  
  .pt-50 {
    padding-top: 50px;
  }
  
  .mt-50 {
    margin-top: 50px;
  }

  /* Extra-css */

.z-99 {
    z-index: 99;
  }
  
  .form-control {
    padding: 8px 20px;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: #747474;
}
  
  .form-control:focus {
    box-shadow: none;
    border: none;
  }

  .form-select{
    color: #747474;
  }

  /* Button-css */
  .primary_btn {
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 50px;
    transition: 0.5s ease-in-out;
}
.primary_btn:hover{
    box-shadow: 0 80px 0 0  rgba(0,0,0,0.25) inset, 0 -80px 0 0  rgba(0,0,0,0.25) inset;
}

/* Header-css */
.header .navbar-nav .nav-link{
    color:var(--black-color);
    padding: 0 16px;
}
.header .navbar-nav .nav-link:hover, .header .navbar-nav .nav-link.active{
    color:var(--primary-color);
}
.header .header_nav{
    position: absolute;
    left: 0;
    right: 0;
    top:20px;
    background-color: white;
    padding: 16px 20px;
    border-radius: 50px;
}
.header_fixed .header_nav {
    position: fixed !important;
    top: 10px;
    left: 0;
    right: 0;
    transition: 0.3s;
    animation: slideDown 0.3s ease forwards;
    z-index: 999;
    max-width: 95%;
    margin: 0 auto;
    box-shadow: 0 0px 25px rgb(48 51 57 / 30%);
}

@keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
  
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

/* Banner-start */
.hero_banner {
    background-image: url(../../images/banner-bg.png);
    background-size: cover;
    height: 100%;
    min-height: 800px;
    background-position: center;
}
.hero_banner_content {
    padding-top: 30%;
    padding-right: 10%;
}
.hero_banner_content h1{
    font-size: 54px;
    font-weight: 600;
}
.hero_banner_content h6 {
    font-size: 22px;
    font-weight: 300;
    line-height: 30px;
}

/* About-us-css */
.about-us{
    padding-top: 100px;
    padding-bottom: 90px;
}
.circle{
    width: 15px;
    height: 15px;
    display: block;
    background-color: var(--primary-color);
    border-radius: 50px;
}
.section-heading{
    font-size: 40px;
    color:var(--black-color);
}

.choose_card{
    padding: 0 30px;
}

.choose_card h5 {
    padding: 20px 0;
    margin-bottom: 0;
}

.book-now h2{
    font-size: 40px;
    font-weight: 400;   
}


/* Service-css */
.services {
    padding-top: 100px;
}
.service_badges{
    position: absolute;
    right: 0px;
    bottom: 20px;
    background-color: rgb(0 167 241 / 60%);
    padding: 12px 24px;
    backdrop-filter: blur(3px);
    z-index: 9;
    min-width: 250px;
}

.gallery-slide .service_badges{
    right: unset;
}

.service_card{
    overflow: hidden;
}
.service_card:hover .service_img img {
    transform: scale(1.1);
}
.service_card .service_img img {
    transition: 0.3s;
}


/* Gallery-css */
.gallery-start{
    padding-top: 80px;
    padding-bottom: 80px;
}
.grid-col-1 img, .grid-col-6 img{
    height: 547px;
    max-height: 547px;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.grid-col-2 img{
    height: 250px;
    max-height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.grid-col-3 img{
    height: 290px;
    max-height: 290px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.grid-col-4 img{
    height: 300px;
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.grid-col-5 img{
    height: 240px;
    max-height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}


/* Testimonial-css */
.testimonials-section {
    padding-top: 100px;
}
.testimonial-icon-1 {
    position: absolute;
    left: 6%;
    top: 60px;
}
.testimonial-icon-2{
    position: absolute;
    left: 38%;
    top: 0px;
}
.testimonial-icon-3{
    position: absolute;
    right: 8%;
    top: 40px;
}

.testimonials-section .slick-list {
    height: auto;
    overflow: unset;
}

.testimonial-slider-start{
    overflow: hidden;
}

.review-card {
    background: #F0F0F0;
    border-radius: 20px;
    text-align: center;
    padding: 25px;
    margin: 0 20px;
    position: relative;
    margin-top: 25px;
}
.review-card:hover{
    background-color: rgba(0, 167, 241, 0.6);
}
.review-card::before {
    content: "";
    background: url(../../images/quote.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 22px;
    top: -25px;
}
.review-card::after {
    content: "";
    background: url(../../images/quote-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 22px;
    bottom: -26px;
}
h3.reviewer-name {
    font-size: 21px;
    margin-bottom: 0;
    font-weight: 600;
}
.rate-star {
    display: flex
;
    list-style: none;
    gap: 5px;
    justify-content: center;
    margin-top: 20px;
}

.slick-dots{
    bottom: -45px !important;
}

.testimonials-section .slick-dots{
    display: none !important;

}

.slick-dots li button:before{
    font-size: 10px;
    color: var(--primary-color);
}
.slick-dots li.slick-active button:before{
    color:var(--primary-color);
    font-size: 14px;
}
.slick-dots li{
    margin: 0;
    top: 5px;
}

.rate-star i {
    font-size: 25px;
    color: #FFCB78;
}
h4.review-title {
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 20px;
    font-weight: 500;
}
.review-card p {
    font-size: 14px;
    margin-top: 20px;
}


/* Gallery-css */
.gallery-slide{
    margin: 0 10px;
}

/* Contact-css */
.contact-section{
    padding-top: 100px;
}
.contact-icon-1 {
    position: absolute;
    top: 0;
    left: 20%;
}
.contact-icon-2{
    position: absolute;
    right: 10%;
    top: -25%;
    z-index: -1;
}
.contact-icon-3{
    position: absolute;
    bottom: 21%;
    left: 2%;
}
.contact-icon-4{
    position: absolute;
    left: 27%;
    bottom: 27%;
}
.contact-icon-5{
    position: absolute;
    right: 5%;
    bottom: 100px;
    z-index: -1;
}
.contact-menu-list li a{
    display: flex;
    align-items: center;
    text-decoration:none;
    gap: 0.7rem;
}
.timeline-list{
    margin-top: 40px;
}
.social-media-list{
    margin-top: 60px;
}

.contact_form_section{
    padding: 80px 0;
}

.contact-form {
    background-color: #F1F1F1;
    padding: 15px;
    border-radius: 10px;
}

footer{
    background-color: var(--black-color);
    padding: 80px 0 1px 0;
}

footer p{
    font-weight: 200;
}
.footer-navigation{
    padding-left: 50%;
}
.footer-navigation li a{
    color:white;
    text-decoration: none;
    font-weight: 200;
}
.footer-navigation li a:hover, .footer-navigation li a.active{
    color:var(--primary-color);
}

.footer-logo img{
    height: 85px;
}

.footer-heading{
    font-weight: 200;
}

.copyright{
    padding-top: 50px;
}

.copyright p {
    text-align: center;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding: 15px 0;
    margin: 0;
}


/* Modal-css */
.loader-icon
{
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top: 3px solid var(--color-primary);
    border-radius: 50%; 
    animation: spin 1s linear infinite;
    margin-left: 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-body {
    text-align: center;
}
.modal-body  h3
{
    color: var(--color-primary);
    margin-bottom: 10px;
    margin-top: 20px;
}
div#success-modal img {
    width: 250px;
    margin: 0 auto;
    text-align: center;
}
button.btn-close {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 0;
    outline: 0 !important;
    box-shadow: none !important;
}

.modal-content {
    border-radius: 30px;
}

/* Media-quiries */

@media (min-width: 1201px) and (max-width: 1366px) {
    .hero_banner_content h1 {
        font-size: 50px;
    }
    .book-now h2 {
        font-size: 36px;
    }
    .contact_form_section {
        padding: 50px 0;
    }
    .contact-section{
        padding-top: 50px !important;
    }
    .review-card{
        min-height: 300px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header .navbar-nav .nav-link {
        padding: 0px 10px;
    }
    .hero_banner_content h1 {
        font-size: 48px;
    }
    .book-now h2 {
        font-size: 32px;
    }
    .about-us {
        padding-bottom: 50px;
    }
    .review-card{
        min-height: 310px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header .navbar-nav .nav-link {
        padding: 12px 0px;
    }
    .header .navbar-nav{
        padding: 10px 0;
    }
    .header .header_nav {
        padding: 20px 0px 20px 0px;
        border-radius: 10px;
    }
    .navbar-toggler-icon {
        width: 40px !important;
        height: 40px !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230B9444' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-toggler{
        border:none !important;
        padding: 0;
    }
    .navbar-toggler:focus {
        box-shadow: none !important;
        padding: 0;
    }
    .social_media{
        margin-top: 10px !important;
    }
    .hero_banner{
        background-color: var(--primary-color);
        background-image: none;
        min-height: 680px;
    }
    .hero_banner_content {
        padding-top: 25%;
        padding-right: 10%;
    }
    .header_fixed .header_nav {
        max-width: 95%;
        margin: 0 auto;
        top: 20px;
    }
    .book-now h2 {
        font-size: 30px;
    }
    .section-heading {
        margin-bottom: 10px;
    }
    .footer-navigation {
        padding-left: 0;
        margin: 20px 0 30px 0;
    }
    .contact-form {
        margin-top: 20px;
    }
    .social-media-list {
        margin-top: 40px;
    }
    .contact-form {
        margin-top: 20px;
    }
    .testimonial-icon-2, .contact-icon-4, .contact-icon-3, .testimonial-icon-3, .contact-icon-5{
        display: none;
    }
    .gallery-start {
        padding-bottom: 0px;
    }
    .about-us {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .services {
        padding-top: 50px;
    }
    .gallery-start {
        padding-top: 50px;
        padding-bottom: 0px;
    }
    .testimonials-section {
        padding-top: 50px;
    }
    .contact-section {
        padding-top: 50px;
    }
    .contact_form_section {
        padding: 40px 0;
        padding-bottom: 50px;
    }
    .copyright {
        padding-top: 10px;
    }
    .review-card{
        min-height: 310px;
    }
    body .slick-dots{
        display: block !important;
        bottom: -55px;
    }
    .slick-dots {
        bottom: -25px !important;
    }
    .slick-dots li button:before{
        font-size: 10px;
        color: var(--primary-color);
    }
    .slick-dots li.slick-active button:before{
        color:var(--primary-color);
        font-size: 14px;
    }
    .slick-dots li{
        margin: 0;
        top: 5px;
    }

}

@media (min-width: 600px) and (max-width: 615px) {
    .hero_banner {
        background-color: var(--primary-color);
        background-image: none;
        min-height: fit-content;
        padding-bottom: 50px;
    }
    .hero_banner_content {
        padding-top: 30% !important;
    }
    .testimonials-section {
        padding-top: 0px;
    }
    
}

@media (max-width: 767px) {
    .logo img{
        height: 40px;
    }
    .header .navbar-nav .nav-link {
        padding: 10px 0px;
    }
    .header .navbar-nav{
        padding: 10px 0;
    }
    .header .header_nav {
        padding: 20px 0px 20px 0px;
        border-radius: 10px;
    }
    
    .navbar-toggler-icon {
        width: 40px !important;
        height: 40px !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230B9444' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-toggler{
        border:none !important;
        padding: 0;
    }
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    .hero_banner {
        background-color: var(--primary-color);
        background-image: none;
        min-height: fit-content;
        padding-bottom: 50px;
    }
    .hero_banner_content {
        padding-top: 45%;
        padding-right: 0%;
    }
    .primary_btn{
        display: inline-block;
    }
    .header_fixed .header_nav {
        top: 20px;
        max-width: 95%;
        margin: 0 auto;
    }
    .hero_banner_content h1 {
        font-size: 26px;
        font-weight: 600;
    }
    .banner_icon{
        margin-bottom: 20px;
    }
    .section-heading br{
        display: none;
    }
    .section-heading {
        font-size: 28px;
    }
    .hero_banner_content h6 {
        font-size: 16px;
        line-height: 26px;
    }
    .book-now h2 {
        font-size: 24px;
        margin-bottom: 20px !important;
    }
    .grid-col-1 img, .grid-col-6 img {
        height: 300px;
        max-height: 300px;
    }
    .grid-col-2 img {
        height: 140px;
        max-height: 140px;
    }
    .grid-col-3 img {
        height: 150px;
        max-height: 150px;
    }
    .grid-col-4 img {
        height: 160px;
        max-height: 160px;
    }
    .grid-col-5 img {
        height: 130px;
        max-height: 130px;
    }
    .about-us {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    .services {
        padding-top: 40px;
        overflow: hidden;
    }
    .gallery-start {
        padding-top: 40px;
        padding-bottom: 0px;
    }
    .testimonials-section {
        padding-top: 40px;
    }
    .contact-section {
        padding-top: 0px;
    }
    .choose_card svg{
        height: 100px;
        width: 100px;
    }
    .choose_card h5{
        font-size: 16px;
        padding: 20px 0 10px 0;
    }
    .choose_card h5 br{
        display: none;
    }
    .choose_card {
        padding: 0 10px;
    }
    .contact-icon-1 svg{
        width: 80%;
    }
    .contact-icon-2 {
        position: absolute;
        right: 2%;
        top: -10%;
        z-index: -1;
        width: 30%;
    }
    .contact-icon-2 svg {
        width: 100%;
    }
    .testimonial-icon-1{
        top: 15%;
    }
    .contact-icon-1 {
        left: 5%;
    }
    .testimonial-icon-1 svg{
        width: 30%;
    }
    .testimonial-icon-3 {
        position: absolute;
        right: 2%;
        top: 20px;
        display: inline-block;
        width: 40%;
    }
    .testimonial-icon-3 svg {
        width: 100%;
    }
    .testimonial-icon-2, .contact-icon-4, .contact-icon-3, .contact-icon-5{
        display: none;
    }
    .footer-navigation{
        padding: 0 !important;
        margin: 20px 0 30px 0;
    }
    .contact-form {
        margin-top: 20px;
    }
    .footer-logo img {
        height: 70px;
    }
    .contact_form_section {
        padding: 40px 0;
    }
    .social-media-list {
        margin-top: 30px;
    }
    footer {
        padding: 40px 0 20px 0;
    }
    .copyright {
        padding-top: 10px;
    }
    .testimonial-slider-start{
        overflow: hidden;
    }
    .review-card{
        min-height: 310px;
    }
    .testimonials-section .slick-dots{
        display: block !important;
    }
    .slick-dots{
        display: block !important;
    }
    .slick-dots {
        bottom: -25px !important;
    }
    .slick-dots li button:before{
        font-size: 10px;
        color: var(--primary-color);
    }
    .slick-dots li.slick-active button:before{
        color:var(--primary-color);
        font-size: 14px;
    }
    .slick-dots li{
        margin: 0;
        top: 5px;
    }
}
