@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth !important;
    scroll-padding-top: 60px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Quicksand", serif;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
    color: var(--black-color);
}

:root {
    --primary-color: #4563AE;
    --light-primary-color: #9CB1E4;
    --secondary-color: #1E1E1E;
    --black-color: #000000;
    --white: #fff;
    --section-space: 100px;
    --section-smallspace: 50px;
    --section-hero-title: 85px;
    --section-hero-subtitle: 55px;
    --section-heading: 36px;
    --section-subheading: 22px;
    --section-subtitle: 18px;
    --section-paragraph: 16px;
    --container-space: 2%;
    --font-quicksand: "Quicksand", serif;
    --font-urbanist: "Urbanist", serif;
}
.section-space
{
    padding-top: var(--section-space);
}

.section-b-space
{
    padding-bottom: var(--section-space);
}

.font-quicksand
{
    font-family: var(--font-quicksand) !important;
}

/* PRELOADER CSS */

.preloader {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 99999;
    background-color: white;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.preloader .spinner {
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2s infinite linear;
    animation: sk-rotate 2s infinite linear;
}

.preloader .dot1,
.preloader .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: var(--primary-color);
    border-radius: 100%;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

.preloader .dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}


/* Preloader-end */

/* 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;
}

.bg-light-grey {
    background-color: var(--light-grey) !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;
}


/* font-family */

.font-quicksand {
    font-family: "Quicksand", serif;
}

.font-urbanist {
    font-family: "Urbanist", serif;
}

/* Font-weight */

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}


/* Extra-css */

.z-99 {
    z-index: 99;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Urbanist", serif;
}

p {
    font-family: "Quicksand", serif;
    font-size: var(--section-paragraph);
    color:var(--black-color);
    font-weight: 600;
}

/* .container-fluid {
    padding: 0 var(--container-space) !important;
} */

.section-heading{
    font-size: var(--section-heading);
    font-weight: 600;
}

.section-subheading{
    font-size: var(--section-subheading);
}

.section-subtitle{
    font-size: var(--section-subtitle);
}



/* Spacing */

.section-top-smallspace {
    padding-top: var(--section-smallspace);
}

.section-bottom_smallspace {
    padding-bottom: var(--section-smallspace);
}

.section-top-space {
    padding-top: var(--section-space) !important;
}

.section-bottom-space {
    padding-bottom: var(--section-space);
}

.section-margin-top-space {
    margin-top: var(--section-space);
}

.section-margin-top-smallspace {
    margin-top: var(--section-smallspace);
}

.section-margin-bottom-smallspace {
    margin-bottom: var(--section-smallspace);
}

.section-margin-bottom-space {
    margin-bottom: var(--section-space);
}


/* Button-css */
.primary_btn{
    background-color: var(--primary-color);
    color:white;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    border:2px solid var(--primary-color);
    font-weight: 600;
    transition: 0.3s ease-in-out;
    display: inline-block;
    font-family: var(--font-urbanist);
}

.primary_btn:hover{
      background-color: white;
      border:2px solid var(--primary-color);
      color:var(--black-color);
}


/* Button-css-end */



.header_fixed .secondary_btn:hover {
    background-color: var(--light-color) !important;
    color: var(--secondary-color);
}

/* Header-css */

.header_fixed {
    position: fixed !important;
    top: 0px;
    left: 0;
    right: 0;
    transition: 0.3s;
    animation: slideDown 0.3s ease forwards;
    z-index: 999;
    box-shadow: 0 0px 25px rgb(48 51 57 / 30%);
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
}

.header_start{
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Header-top-start-css */

.header-top_start {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.header_top_contact_icon .icon {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.header-top_contact{
    display: flex;
    gap: 1rem;
}
.header_top_contact_icon a{
    color:white;
    text-decoration: none;
}
.header-top_start h5 {
    color: white;
    font-size: var(--section-subheading);
    font-weight: bold;
    /* position: absolute;
    left: 0;
    right: 0; */
    text-align: center;
}
.top-annouce-right
{
    display: flex;
    align-items: center;
    gap: 40px;
}
.social-media li{
    display: flex;
    align-items: center;
    line-height: 00;
}
.social-media li svg{
    fill:white;
}
.header_nav .navbar-nav .nav-link{
    padding: 0;
    color:var(--black-color);
    font-weight: 600;
    font-family: var(--font-urbanist);
}
.header_nav .navbar-nav .nav-link.active,
.header_nav .navbar-nav .nav-link:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* header-css */

.header{
border-radius: 19px;
background: rgba(255, 255, 255, 1);
/* backdrop-filter: blur(10.800000190734863px); */
margin-left: var(--container-space);
margin-right: var(--container-space);
padding: 12px 0;
}

.navbar-nav{
    align-items: center;
    gap: 40px;
}

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

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Banner-start */

.home_banner_slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 0px;
    height: 900px;
    object-position: top;
}


.home_baner_content {
    position: absolute;
    top: 40%;
    width: 100%;
    z-index: 9;
}


.home_baner_content h1{
    font-size: var(--section-hero-title);
    color:white;
    margin-bottom: 10px;
    font-weight: bold;
}

.home_baner_content h3{
    font-size: var(--section-hero-subtitle);
    color:white;
    font-weight: bold;
    margin-bottom: 15px;
}

.home_baner_content p{
    font-size: var(--section-subheading);
    color:white;
    margin-bottom: 40px;
    font-weight: 400;
}



/* About-css */
.sub-banner img{
    height: 700px;
    object-position: center;
}
.sub-banner .home_baner_content {
    top: 35%;
}
.about-section{
    padding-top: var(--section-space);
}

.about-section h5, .service-section h5, .our-story h5, .our-story h4{
    margin-bottom: 10px;
}
.about-section h2, .our-story h2{
    margin-bottom: 10px;
}
.about-section p{
    margin-bottom: 40px;
}

.our-story{
    text-align: center;
}

.our-story{
    padding-top: var(--section-space);
}
.our-story h4{
    font-size: var(--section-subheading);
    color:var(--primary-color);
}

.our_value_card svg{
    margin-bottom: 15px;
}

.our-value_list{
    padding-top: var(--section-smallspace);
}

.our_value_card h5{
    margin-bottom: 10px;
    font-size: var(--section-subheading);
    font-weight: 600;
    color:var(--primary-color);
}

/* Service-section-css */
.service-section{
    margin-top: var(--section-space);
}
.service-start{
    padding: var(--section-smallspace) 0;
    background-image: url('../../images/services/service-banner.png');
    background-size: cover;
    border-radius: 60px;
    background-repeat: no-repeat;
}

.service_cards_list{
    margin-top: var(--section-smallspace);
}

.service_card{
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    transition: 0.3s ease-in-out;
    height: 100%;
}

.service_card:hover{
    background-color: var(--primary-color);
}

.service_card:hover .service_icon > svg{
    fill:white;
}

.service_card:hover h5, .service_card:hover p{
    color:white;
}

.service_card h5{
    font-size: var(--section-subheading);
    color:var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.service_icon > svg{
    fill:var(--primary-color);
    margin-bottom: 15px;
}

.service-btn {
    background-color: var(--light-primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
}

.service-btn > svg{
    stroke:var(--primary-color);
}

.service_main-btn{
    padding-top: 80px;
    text-align: center;
}

/* Footer-css */

.footer{
    background-color: var(--secondary-color);
    padding: var(--section-smallspace) 0;
}
.footer-navigation_start {
    padding-left: 25%;
}
.footer-navigation li a {
    color: white;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.footer-navigation li a:hover{
    color:var(--primary-color);
}
.footer h5{
    margin-bottom: 30px;
    font-weight: bold;
}
.copyright-start{
    background-color: var(--secondary-color);
}
.copyright-start{
    text-align: center;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 1);
    padding: 20px 0;
    margin: 0;
}

.privacy-banner img {
    height: 400px !important;
    object-position: center;
}

.privacy-banner .home_baner_content {
    top: 55% !important;
}

.privacy-policy {
  max-width: 900px;
  margin: 80px auto;
  padding: 30px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privacy-policy h1 {
  font-size: 2rem;
  color: #222;
  text-align: center;
  margin-bottom: 25px;
}

.privacy-policy p {
  margin: 8px 0;
  font-size: 1rem;
  color: #444;
}

.privacy-policy h3 {
  margin-top: 15px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--primary-color); 
  border-left: 4px solid var(--primary-color);
  padding-left: 10px;
}

.privacy-policy ul {
  margin: 8px 0 10px 20px;
  padding: 0;
}

.privacy-policy ul li {
  margin-bottom: 3px;
  padding-left: 5px;
  font-weight: 500;
  font-size: 0.98rem;
}

.privacy-policy strong {
  color: #222;
}

.privacy-policy a {
  color: var(--primary-color);
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

/****************/
section.section-testimonial {
    margin-top: 80px;
}
.review-list-card {
    background: #fff;
    box-shadow: 0px 55px 40px rgba(21,21,21,8%);
    padding: 0px 40px 30px 40px;
    border: 1px solid #EEEEEE;
    border-radius: 20px;
    position: relative;
    margin-bottom: 80px;
    min-height: 280px;
}

.testimonial-card-main{
    /* min-height: auto; */
    margin: 0 25px
}

.review-user {
    height: 375px;
}
.review-user img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.quote-box {
    position: absolute;
    top: -32px;
    left: 40px;
}
.review-content p
{
    padding-top: 60px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}
.review-content h4
{
    font-size: 22px;
    font-weight: 600;
}


.review-user {
    margin-top: -80px;
}

.review-list .review-container:nth-child(even) {
    margin-left: auto;
}

@media (max-width:767px) {
    .quote-box {
        top: -25px;
        left: 30px;
        width: 60px;
    }
    .review-user {
        height: 235px;
        width: 45%;
        margin-left: auto;
    }
    .review-content p {
        padding-top: 50px;
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 20px;
    }
    .review-list-card {
        box-shadow: 0px 25px 20px rgba(21,21,21,6%);
        padding: 0px 30px 30px 30px;
        margin-bottom: 60px;
    }
    .review-content h4 {
        font-size: 20px;
        font-weight: 600;
    }
}
@media (max-width:575px) 
{
    .review-user {
        height: 175px;
        width: 55%;
        margin-left: auto;
    }
    .review-list-card {
        margin-bottom: 40px;
        min-height: auto;
    }
}

/*******Service****/

.service--card svg {
    fill: var(--primary-color);
    margin-bottom: 15px;
}

.row-space
{
    margin-top: 60px;
}
.service--card {
    padding: 20px ;
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0,15%);
    border-radius: 20px;
    transition: all .5s ease-in-out;
    margin-bottom: 60px;
}
.service--card:last-child
{
    margin-bottom: 0;
}
.service--card h5
{
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-color);
}
.service--card p 
{
    padding-left: 80px;
    padding-right: 80px;
}
.service--card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service--card:hover {
    background: var(--primary-color);
}


.service--card:hover h5, .service--card:hover p 
{
    color: var(--white);
}
.service--card:hover  svg {
    fill: var(--white);
}
@media (max-width:992px ) {
    .service--card p 
{
    padding-left: 10px;
    padding-right: 10px;
}
}

@media (max-width:767px ) {
    .service--card p 
{
    padding-left: 00px;
    padding-right: 0px;
    margin-bottom: 20px;
}
}

/******Blog****/

.blog--card {
    background: rgba(69,99 ,174, 12%);
    border-radius: 20px;
    position: relative;
    height: 100%;
}

.blog--media {
    width: 100%;
    height: 300px;
}

.blog--media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.blog--body {
    padding: 30px 20px;
    padding-bottom: 80px;
}
.blog--body h5 {
    font-size: 21px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.blog--body p {
    font-size: 15px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.blog--foot {
    background: var(--primary-color);
    padding: 15px 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.blog--foot a {
    width: 100%;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: center;
}

.text-bold
{
    font-weight: 600;
}

.bkg-overlay {
    background: rgba(0,0,0,0.3);
    position: absolute;
    width: 100%;
    height: 100%;
}

.section-blog-details h4 
{
    margin-bottom: 8px;
    margin-top: 40px;
}


.loader-icon {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top: 0px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}
button.btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
}
#success-modal h3
{
    font-size: 20px;
    font-weight: bold;
    font-family: var(--font-termina);
    margin-bottom:15px;
}
#success-modal img
{
    width: 200px;
    margin-bottom:15px;
}   

.select-icon{
    position: absolute;
    right: 30px;
    top: 11px;
}

.mobile-address
{
    display: none;
}

.mobile-address .header-top_contact
{
    gap: 10px;
}
.divide-line
{
    height: 1px;
    width:  100%;
    border-top: 1px solid #dadada;
    display: none;

}

.mobile-address .header_top_contact_icon a {
    color: #000;
}
.mobile-address .header_top_contact_icon a  svg, .mobile-address .social-media svg {
    fill:  var(--primary-color);
}

.frame-box1
{
    width: 100%;
    border-radius: 20px;
    height: 400px;
}
@media (max-width:991px)
{
    .mobile-address, .divide-line
    {
        display: block;
    }
}

.space-md
{
    margin-bottom: 40px;
}

.space-md:nth-last-child(1), .space-md:nth-last-child(2) {
    margin-bottom: 0px;
}
