@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --black : #1B1B1B;
    --white: #fff;
    /* --blue: #0f2a5a; */
    --blue: #283249;
    --darkblue: #08142b;
    --golden: #d4af37;
    --darkgrey: #8b8b8b;
    --body-font: "Poppins", sans-serif;
    --heading-font: "Roboto", sans-serif;
}
body, html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    background: var(--white);
    color: var(--darkgrey);
    font-size: 13px;
    line-height: 1.6;
    font-family: var(--body-font);
    font-weight: 400;
}
p{
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--body-font);
    color: var(--darkgrey);
}
a{
    text-decoration: none !important;
    font-family: var(--body-font);
}
p:last-child{
    margin-bottom: 0;
}
img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sec-space{
    padding: 98px 0;
}
.btn {
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    border: 1px solid transparent;
    text-transform: capitalize;
    font-family: var(--body-font);
    padding: 0 24px;
    min-width: 148px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::before {
    content: "";
    width: 36px;
    height: 120%;
    background: linear-gradient(3deg, #ffffff40, transparent);
    position: absolute;
    top: 0;
    left: 20%;
    transform: skewX(-20deg);
    transition: 0.3s ease-in-out;
    z-index: -1;
}
.btn-primary{
    background: linear-gradient(90deg, #d4af37, #836b1b);
    color: var(--darkblue);
    border: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active{
    background: linear-gradient(90deg, #d4af37, #836b1b) !important;
    color: var(--darkblue) !important;
    border-color: var(--golden) !important;
}
.btn-primary:hover::before, .btn-primary:focus::before, .btn-primary:active::before{
    left: 60%;
}
.btn-outline{
    color: var(--golden);
    border-color: var(--golden);
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active{
    border-color: var(--blue);
    background: var(--blue);
    color: var(--black);
}
.btn-line{
    font-weight: 700;
    color: var(--blue);
    text-decoration: underline !important;
}
.section-heading{
    margin-bottom: 42px;
    max-width: 80%;
}
.form-control {
    font-size: 13px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid #ffffff20;
    padding: 8px 12px;
    color: var(--white);
    font-weight: 500;
}
.form-control::placeholder, textarea::placeholder{
    color: #ffffff40;
    font-weight: 300;
    text-transform: capitalize;
    font-size: 13px;
}
textarea {
    width: 100%;
    height: 80px;
    background: transparent;
    border-radius: 4px;
    border: 1px solid #ffffff20;
    padding: 8px 12px 8px 32px;
    color: var(--white);
}
.form-control:focus, textarea:focus{
    border-color: var(--golden) !important;
    background: #F5F5F5;
    box-shadow: none;
    outline: none;
}
.form-group{
    position: relative;
    margin-bottom: 1rem;
}
.form-group .bi{
    color: var(--white);
    font-size: 20px;
    position: absolute;
    left: 0;
}
.contact-form  label{
    font-size: 13px;
    color: var(--golden);
    font-weight: 300;
    margin-bottom: 4px;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    background: transparent;
    height: 40px;
    width: 40px;
    border: 1px solid var(--darkgrey);
    border-radius: 4px;
    color: var(--darkgrey);
    font-size: 20px;
    position: absolute;
    top: 240px;
    left: -60px;
    transition: 0.3s ease-in-out;
}
.owl-carousel .owl-nav button.owl-next{
    left: auto;
    right: -60px;
}
.owl-carousel .owl-nav button:hover, .owl-carousel .owl-nav button:focus, .owl-carousel .owl-nav button:active{
    color: var(--white);
    background: var(--blue);
    border: none;
    outline: 0;
}
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 24px;
}
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: 1px solid var(--blue);
    padding: 0!important;
    font: inherit;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 8px;
    background: transparent;
    transition: 0.3s ease-in-out;
}
.owl-carousel button.owl-dot.active{
    background: var(--blue);
    width: 24px;
}




/* Header  */
.myHeader{
    background: var(--blue);
    padding: 4px 0;
    width: 100%;
}
.navbar-brand img {
    height: 60px;
    width: auto;
}
.navbar-toggler-icon{
    color: var(--blue);
    font-size: 36px;
}
.myHeader.fixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--golden);
    z-index: 99;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.myHeader.fixed{
    background: var(--white);
}
.myHeader.fixed .navbar-brand img {
    height: 60px;
}
.myHeader.fixed .navbar-collapse, .myHeader.fixed .nav-text{
    margin-top: 0px;
}
.navbar-nav li a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    font-family: var(--heading-font);
    color: #ffffff60;
    position: relative;
    transition: 0.4s ease-in-out;
}
/* .myHeader.fixed .navbar-nav li a{
    color: var(--black);
} */
.navbar-nav li{
    margin-right: 20px;
    transition: 0.3s ease-in-out;
    position: relative;
}
.navbar-nav li.active a, .navbar-nav li:hover a{
    color: var(--white);
}
a.dropdown-item {
    color: var(--darkblue) !important;
}


/* Banner  */
.banner{
    z-index: 1;
}
.banner::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #1B1B1Bc6;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.banner::after, .mid-banner::after {
    content: "";
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,transparent , #d4af3720,  var(--golden),#d4af3720, transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.banner-img {
    position: relative;
    padding-top: 45%;
    width: 100%;
    z-index: 1;
}
.banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
}
.banner-wrapper{
    position: absolute;
    top:50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}
.banner-text{
    max-width: 46%;
}
.banner-text h1 {
    font-size: 54px;
    line-height: 1.2;
    color: var(--white);
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: capitalize;
}
.banner-text h1 strong, .about-text h2 strong, .section-heading h2 strong{
    color: var(--golden) !important;
    font-weight: 700;
}
.banner-text p {
    font-size: 14px;
    color: #ffffffb0;
    letter-spacing: 0.2px;
}
.banner-slider .owl-dots {
    position: absolute;
    top: 50%;
    left: -67%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
.banner-slider.owl-carousel button.owl-dot.active{
    width: 8px;
    height: 42px;
}

/* Stat  */
.stat{
    background: linear-gradient(55deg, #0c182f, var(--darkblue), #0d1931, var(--darkblue));
}
.spec-row{
    margin: 0 -8px;
}
.spec-row [class*="col-"]{
    padding: 0 8px;
}
.spec-row .serv-icon{
    background: #2832497a;
    margin-right: 14px;
}
.spec-row .serv-icon img{
    filter: brightness(0) saturate(100%) invert(97%) sepia(17%) saturate(6239%) hue-rotate(322deg) brightness(84%) contrast(96%);
}
.whyus-box h5, .spec-text h5{
    font-size: 18px;
    margin-bottom: 2px;
    font-weight: 700;
    color: var(--golden);
    font-family: var(--heading-font);
}
.spec-text h5 {
    font-size: 32px;
}

/* About start  */
.about-img{
    position:relative;
    padding-top: 80%;
    z-index: 1;
}
.about-img img{
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
}
.exp h3{
    font-size: 22px;
    color: var(--darkblue);
    font-weight: 600;
    margin-bottom: 0;
}
.ab-grid .exp {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--golden);
    border-radius: 8px;
    width: 60%;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}
.exp .bi {
    color: var(--golden);
    font-size: 22px;
    margin-right: 10px;
}
.about-text{
    padding: 0 0 0 40px;
}
.about-text h6, .section-heading h6{
    font-size: 13px;
    color: var(--golden);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-text h2, .section-heading h2{
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--black);
    font-family: var(--heading-font);
    position: relative;
}
.about-text ul, .about-text ol {
    list-style-type: none;
    color: var(--blue);
    font-weight: 500;
}
.about-text ul li, .about-text ol li{
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}
.about-text ul li::before, .about-text ol li::before{
    content: "\F26A";
    font-family: 'Bootstrap-icons';
    color: var(--golden);
    position: absolute;
    top: 0;
    left: 0;
}

/* Services  */
.services{
    background: linear-gradient(-45deg, #d4af37, #9c8025, var(--golden)) !important;
}
.services .section-heading h2, .services .section-heading h6, .services .section-heading p,
.faq .section-heading h2, .faq .section-heading p{
    color: var(--white);
}
.service-img{
    padding-top: 52%;
    padding-right: 40%;
    overflow: hidden;
    border: 1px solid transparent;
    z-index: 1;
}
.service-img img{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
.service-box:hover img{
    transform: scale(1.1);
}
.service-img::before, .service-img::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #1b1b1b1e;
    transition: 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.service-box a.desc{
    font-size: 20px;
    line-height: 1.4;
    font-family: var(--heading-font);
    color: var(--black);
    text-transform: capitalize;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}
.desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.service-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.service-box h6{
    font-size: 12px;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}
.service-desc{
    background: var(--white);
    padding: 20px;
}
.serv-icon {
    height: 64px;
    width: 64px;
    border-radius: 4px;
    padding:12px;
    flex-shrink: 0;
}
.services .serv-icon{
    background: var(--blue);
    border: 1px solid var(--white);
    margin-bottom: 12px;
    z-index: 1;
}
.serv-icon img{
    filter: brightness(0) invert(1);
}
.services .owl-item{
    padding-bottom: 20px;
}
.sameheight.owl-carousel .owl-stage {
    display: flex;
    justify-content: center;
}
.sameheight .item {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding: 1px;
}

/* FAQ  */
.faq{
    background: url(../images/faq-bg.jpg) var(--darkblue) no-repeat center;
    background-blend-mode: saturation;
    background-attachment: fixed;
}
.faq .accordion .card:not(:last-child){
    margin-bottom: 12px;
}
.faq .card-header {
    padding: 0;
    background-color: var(--blue);
}
.faq button.btn.btn-link {
    color: var(--white);
    height: 48px;
    line-height: 48px;
}
.faq button.btn.btn-link::before{
    opacity: 0.4;
}
.faq .card{
    background-color: var(--darkblue);
    border-color: var(--blue);
}

/* Why Us  */
.whyus .about-text{
    padding: 0 40px 0 0;
}
.whyus-box{
    background: var(--white);
    padding: 24px;
    border-radius: 4px;
    box-shadow: 0 4px 4px #00000025;
}
.why-icon{
    height:64px;
    width: 64px !important;
    background: var(--blue);
    border-radius: 4px;
    padding: 12px;
    flex-shrink: 0;
    margin-right: 24px;
}
.why-icon img{
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.whyus-box h3{
    font-size: 20px;
    font-family: var(--heading-font);
    color: var(--black);
}
.whyus-list .whyus-box:not(:last-child){
    margin-bottom: 20px;
}


/* Middle Banner  */
.mid-banner{
    background-attachment: fixed !important;
    background-size: cover !important;
    z-index: 1;
}
.mid-banner::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #1b1b1bcc;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.mid-banner h2{
    color: var(--white);
    font-weight: 600;
}
.mid-banner p{
    font-size: 16px;
    color: #8b8b8b;
}


/* Footer  */
.email-subscribers{
    display: flex;
    max-width: 48%;
    margin: 0 auto;
}
.email-subscribers .form-control{
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    cursor: pointer;
    margin-right: 12px;
}
.email-subscribers .form-control::placeholder{
    color: var(--white);
}


/* Footer Main  */
.main-footer{
    background: var(--darkblue);
}
.footer-row{
    padding: 96px 0 40px;
}
.footer-logo.navbar-brand img {
    height: 160px;
}
.main-footer h3{
    font-size: 16px;
    font-weight: 600;
    font-family: var(--heading-font);
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 32px;
}
.main-footer h3::after{
    content: "";
    display: block;
    height: 4px;
    width: 60px;
    background: var(--blue);
    margin-top: 8px;
}
.myFooter .navbar-nav li a, .con-box, .con-box a{
    font-size: 13px !important;
    font-family: var(--body-font) !important;
    color: var(--darkgrey) !important;
    font-weight: 400 !important;
    padding: 4px 0 !important;
}
.myFooter .navbar-nav li a:hover, .myFooter .navbar-nav li.active a{
    color: var(--golden) !important;
}
.myFooter .navbar-nav li{
    background: transparent !important;
    margin: 0;
}
.myFooter .con-box{
    padding-left: 36px !important;
    position: relative;
}
.con-box .bi {
    display: block;
    color: var(--golden);
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 0;
    /* background: var(--purple); */
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
}
.con-list .con-box:not(:last-child), .timing li:not(:last-child){
    margin-bottom: 6px;
}
.con-box .call-icon {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-57%);
    filter: brightness(0) saturate(100%) invert(97%) sepia(17%) saturate(6239%) hue-rotate(322deg) brightness(84%) contrast(96%);
}
.con-box h5{
    font-size: 12px;
    color: var(--golden);
    margin-bottom: 0;
    font-weight: 300;
}
.myHeader .con-box, .whyus .con-box{
    padding-left: 42px !important;
}

.social-list li .bi{
    display: block;
    height: 36px;
    width: 36px !important;
    line-height: 36px;
    text-align: center;
    border: 1px solid var(--blue);
    color: var(--blue); 
    font-size: 18px;
    margin-right: 10px;
    transition: 0.3s ease-in-out;
}
.social-list li:not(:last-child){
    margin-right: 4px;
}
.social-list li:hover .bi{
    color: var(--black);
    background: var(--blue);
}
.myFooter hr{
    background: var(--blue);
    margin-top: 0;
}
.copyright{
    padding: 0 0 20px 0;
}
.copyright p, .main-footer p{
    color: var(--darkgrey);
    margin-bottom: 0;
}
.copyright p a{
    color: var(--blue);
}


/* Inner Pages  */
.inner-banner {
    padding: 120px 0;
}
.inner-banner{
    background-size: cover !important;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.inner-banner::before {
    content: "";
    background: linear-gradient(45deg, #8b711e, #00000086);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.inner-banner-text h2 {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 700;
}
.inner-banner .breadcrumb{
    background: transparent;
    color: var(--white);
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
    content: " // ";
}
.inner-banner .breadcrumb-item a{
    color: var(--white);
    text-decoration: underline !important;
}
.inner-banner .breadcrumb-item{
    color: var(--white);
}

/* About Page  */
.about-cms .about-img {
    padding-top: 84%;
    border-radius: 20px;
}
.about-cms .ab-wrap:nth-child(even) .ab-row{
    flex-direction: row-reverse;
}
.about-cms .ab-wrap:not(:last-child){
    margin-bottom: 80px;
}
.about-cms .ab-wrap:nth-child(even) .about-text{
    padding: 0 40px 0 0;
}
.mission{
    background: var(--golden);
}
.mission-row [class*="col-"]:nth-child(2) .mission-box{
    flex-direction: column-reverse !important;
}
.mission-box{
    border: 1px solid var(--golden);
    border-radius: 12px;
    overflow: hidden;
    row-gap: 8px;
}
.mission-img{
    height: 49%;
}
.mission-text{
    padding: 32px 20px;
    background: var(--white);
    /* min-height: 49%; */
}
.mission-text h3{
    font-size: 20px;
    color: var(--black);
}

/* Testimonial  */
.test-box{
    background: #efefef;
    padding: 24px;
    transition: 0.3s ease-in-out;
}
.review{
    height: 220px;
    overflow-y: auto;
}
.client-info{
    margin-top: 20px;
}
.client-img{
    flex-shrink: 0;
    background: #c4c4c4;
    border-radius: 50%;
}
.client-img img{
    width: 64px !important;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #c4c4c4;
}
.test-box .bi{
    color: var(--darkgrey);
    font-size: 42px;
    margin-right: 1px;
}
.cust-info h4{
    font-size: 18px;
    font-family: var(--heading-font);
    color: var(--black);
    text-transform: capitalize;
}
.cust-info h5{
    color: var(--darkgrey);
    font-size: 14px;
}
.testimonial-slider.owl-carousel .owl-dots {
    text-align: left;
}
.quote {
    height: 84px;
    width: 84px !important;
    object-fit: contain;
    position: absolute;
    bottom: -12px;
    right: -12px;
}
.testimonial-slider .owl-item.active.center .test-box{
    background: var(--golden) !important;
}
.testimonial-slider .owl-item.active.center .test-box .bi{
    color: #89701d;
} 
.testimonial-slider .owl-item.active.center .test-box h4, 
.testimonial-slider .owl-item.active.center .test-box h5, 
.testimonial-slider .owl-item.active.center .test-box p{
    color: #5c4b12;
}


.contact-cms .about-text ul li::before, .contact-cms .about-text ol li::before{
    display: none;
}
.contact-cms .con-box .bi {
    color: var(--white);
    height: 46px;
    width: 46px;
    line-height: 46px;
    border-radius: 50%;
    background: var(--golden);
}
.contact-cms .con-box{
    padding-left: 60px !important;
}
.contact-cms .con-box, .contact-cms .con-box a{
    color: var(--black) !important;
    font-weight: 500 !important;
}
.contact-cms .con-box h5 {
    font-size: 14px;
    font-weight: 500;
}
.contact-cms .con-list .con-box:not(:last-child){
    margin-bottom: 20px;
}
.contact-form{
    background: var(--blue);
    border-radius: 12px;
    padding: 40px;
}

/* Process Workflow */
.workflow-row::before {
    content: "";
    width: 100%;
    height: 4px;
    border-bottom: 2px dashed #ced4da;
    position: absolute;
    top: 30%;
    left: 0;
    transform: translateY(-50%);
}
.workflow-icon {
    height: 128px;
    width: 128px;
    border: 4px solid var(--blue);
    border-radius: 50%;
    background: var(--white);
    padding: 27px;
    margin: 0 auto;
}
.workflow-icon span{
    display: block;
    font-size: 14px;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    background: var(--golden);
    color: var(--white);
    position: absolute;
    bottom: 0;
    right: 0;
}
.flow-box h4{
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--golden);
    margin-top: 32px;
}
