@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: "Poppins", sans-serif;
}

:root{
    --primary: #003153;
    --secondary: #BA160C;
}

a{
    text-decoration: none !important;
}

p{
    text-align: justify;
}

h1, h2{
    font-size: 45px;
    font-family: "Old Standard TT", serif;
    color: var(--primary);
}

@media(max-width:768px){
    h1, h2{
        font-size: 35px !important;
    }
}

.point{
    color: var(--secondary);
}


/**** Buttons Start ****/

/* CSS */
.button-86 {
    all: unset;
    width: 100px;
    height: 30px;
    font-size: 16px;
    background: transparent;
    border: none;
    position: relative;
    color: #f0f0f0;
    cursor: pointer;
    z-index: 1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-86::after,
  .button-86::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
  }
  
  .button-86::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
  }
  
  .button-86::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
  }
  
  .button-86:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
  }
  
  .button-86:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
  }
  
  .button-86:active::after {
    transition: 0s;
    transform: translate(0, 5%);
  }

/**** Buttons End ****/


/*** Navbar Start ***/

.bg-color{
    background-color: rgb(255, 255, 255) !important;
}

.bg-transparents{
    background-color: #ffffff53;
}

.navbar{
    z-index: 999999 !important; 
    width: 100%;
    transition: .5s ease-in-out;
}



.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-brand h2{
    color: rgb(0, 0, 0);
    font-family: "Poppins", sans-serif;
    font-size: 35px !important;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: rgb(0, 0, 0);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    font-family: "Poppins", "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.text-darks{
    color: rgb(138, 133, 133);
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar-toggler{
    border: none !important;
    box-shadow: none !important;
}

.menu{
    font-size: 25px;
}

/**** Navbar End ****/



/**** Slider Start ****/


.splide__slide img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    background-size: cover;
}

@media(max-width:768px){
    .splide__slide img{
        height: 70vh !important;
    }
    .splide__slide h1{
        font-size: 24px;
    }
    .splide__slide .slide-content p{
        font-size: 14px !important;
    }
}  

.slide-content {
    position: relative;
}
  
.slide-content img {
    width: 100%;
    height: auto;
    display: block;
}
  
/* Text overlay styling */
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.375); /* Semi-transparent background */
    padding: 90px 60px;
    border-radius: 10px;
    color: #fff;
    width: 80%;
}

@media(max-width:768px){
    .text-overlay{
        padding: 50px 30px; 
    }
}
  
.text-overlay h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
  
.text-overlay p {
    font-size: 16px;
    margin-bottom: 10px;
}
  
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}
  
  .btn:hover {
    background: #ff3300;
}
  


/**** Slider End ****/



/**** Page Header Start ****/

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.322), rgba(0, 0, 0, 0.24)), url(../image/carousel1.jpg) center center no-repeat;
    background-size: cover;
    object-fit: cover;
    height: 40vh;
    width: 100%;
    top: 0;
    text-align: center;
}

/* @media(max-width:768px){
    .page-header{
        height: 100% !important;
    }
} */

.page-header .container{
    display: flex;
    justify-content: center;
    margin-top: 5%;
    align-items: center;
    text-align: center;
}

@media(max-width:768px){
    .page-header .container{
        margin-top: 25%;
    }
}

.page-header .nav .breadcrumb{
    text-align: center !important;
    align-items: center;
    justify-content: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}




/**** About Start ****/

.about-style2-image-box{
    position: relative;
    display: block;
}
.about-style2-image-box .pattern{
    position: absolute;
    top: -110px;
    left: 5px;
    right: 0;
    bottom: -110px;
    background: #ebebeb;
    background-repeat: no-repeat;
    width: 664px;
    height: 765px;
    content: "";
    z-index: -1;
}
@media(max-width:767px){
    .about-style2-image-box .pattern {
        top: -80px !important;
        left: 0;
        right: 0;
        bottom: -80px !important;
        width: 100%;
        height: auto;
    }
}
.about-style2-image-box .image{
    position: relative;
    display: block;
    max-width: 470px;
    width: 100%;
    margin: 0 auto;
    z-index: 3;
}
.about-img{
    height: 600px !important;
    width: 100%;
    object-fit: cover;
}
.about-style2-image-box img{
    width: 100%;
}
.about-style2-image-box .overlay-box{
    position: absolute;
    left: 40px;
    bottom: 30px;
    right: 40px;
    background: #ffffff;
}
.about-style2-image-box .overlay-box:before {
    font-family: "Font Awesome" !important;
    position: absolute;
    top: -20px !important;
    left: 30px;
    content: "\f0d8";
    color: #ffffff;
    font-size: 50px;
}

.about-style2-image-box .overlay-box .title {
    position: relative;
    display: block;
    float: left;
    padding: 23px 0 23px;
    padding-left: 70px;
}
.about-style2-image-box .overlay-box .title h1{
    color: #555555;
    font-size: 48px;
    font-weight: 500;
    filter: alpha(opacity=50);
    font-family: 'Rubik', sans-serif;
}
.about-style2-image-box .overlay-box .title h1 span{
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.about-style2-image-box .overlay-box .button{
    position: relative;
    display: block;
    float: right;    
}
.about-style2-image-box .overlay-box .button a span:before {
    position: relative;
    display: block;
    width: 80px;
    background: #e9212e;
    color: #ffffff;
    font-size: 30px;
    line-height: 100px;
    text-align: center;
    transform: rotate(180deg);
}
@media(max-width:768px){
    .about-style2-image-box {
        margin-top: 120px !important;
    }
}

/**** About End ****/



/**** Services Start ****/

.index_service_carousel img{
    height: 550px;
    width: 100%;
    object-fit: cover;
}

.index_service_carousel .owl-nav {
    position: absolute;
    content: "";
    display: flex;
    /* flex-direction: column; */
    width: 100%;
    justify-content: center !important;
    /* align-items: end; */
    /* top: 0%;  */
    /* right: 0% !important; */
}  

.index_service_carousel .owl-nav button span{
    background-color: var(--primary);
    padding: 20px;
    
}

.index_service_carousel .owl-prev:hover{
    background-color: transparent !important;
    box-shadow: none !important;
}

.index_service_carousel .owl-next:hover{
    background-color: transparent !important;
    box-shadow: none !important;
}

.index_service_carousel .owl-theme .owl-nav:hover{
    background-color: transparent !important;
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 0px !important;
    padding: 0px !important;
    background: transparent !important;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.text-c{
    color: var(--primary);
}

.service_container .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block;
}


.service_container h4{
    text-transform: uppercase;
}


/* .service_container h1 span{
    font-size: 70px;
    font-family: "Old Standard TT", serif;
    color: var(--primary);
} */

.service_container .cads{
    position: relative;
    overflow: hidden;
}


.service_container .cads .cads-info{
    opacity: 1;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
}

.service_container .cads .cads-info-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
}

.service_container .cads .cads-info-content h4{
    color: white;
    font-weight: 500;
    margin-bottom: 2px;
    font-size: 18px;
}

.service_container .cads .line{
    height: 0px;
    width: 95px;
    border: 1px solid white;
}

.service_container .cads:hover .cads-info{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    transition: 0.4s;
}

.service_container .cads:hover .cads-info-content{
    bottom: 60px;
    transition: bottom 0.4s;
}


.cards{
    border-bottom: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .5s all ease-in-out;
}

.cards::before{
    position: absolute;
    content: "";
    transform: rotate(0deg);
    width: 0%;
    height: 0%;
    bottom: 0px;
    right: 0px;
    z-index: -1;
    background-color: var(--primary) !important;
    transition: .5s ease-in-out;
}

.cards:hover::before{
    transform: rotate(0deg);
    width: 130%;
    height: 65%;
    bottom: 0px;
    right: 0px;
    z-index: -1;
    background-color: var(--primary) !important;
    transition: .5s ease-in-out;
    color: white;
}

.cards:hover{
    color: white !important;
}

.cards img{
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.services h4{
    text-transform: uppercase;
}


/**** Services End ****/



/**** Highlight Content Start ****/

.Highlight_Content h4{
    font-size: 45px;
    font-weight: 700;
    color: var(--secondary);
}

.Highlight_Content h6{
    font-weight: 600;
}

.Highlight_Content .exp{
    margin-left: 40px;
    box-shadow: 0px 0px 30px #e3e3e3;
    padding: 25px 25px 25px 65px;
}

.Highlight_Content .exp-icon{
    top: 50%;
    left: -40px;
    z-index: 1;
    width: 80px;
    height: 80px;
    position: absolute;
    border-radius: 100%;
    background-color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-shadow: 5.694px 12.79px 30px 0px rgb(224, 224, 224);
    box-shadow: 5.694px 12.79px 30px 0px rgb(224, 224, 224);
}

.Highlight_Content .exp-icon i{
    color: var(--primary);
    font-size: 35px;
    line-height: 0.75;
}

/**** Highlight Content End ****/


/*** Testimonial ***/

.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px) !important;
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    border-radius: 0px;
    font-size: 18px;
    transition: .5s;
    z-index: 111 !important;
}
@media(max-width:768px){
    .testimonial-carousel .owl-dot  {
    display: none !important;
}
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary) !important;
    border-radius: 0px !important;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}
.border-primary {
    border-color: var(--primary) !important;
}
.text-primarys{
    color: var(--secondary) !important;
}
.testimonial h1{
    color: var(--primary);
}


/**** Testimonial End ****/



/**** Gallery Start ****/

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
}
  
.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}
  
.gallery .gallery-item:hover img {
    transform: scale(1.1);
}
  
.gallery-img{
    height: 350px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}

/**** Gallery End ****/



/**** Contact Start ****/

.contact_container .ctn-icon{
    background-color: var(--primary);
}

.contact_container input, textarea{
    box-shadow: none !important;
}

.contact_container input:focus{
    border-color: var(--primary) !important;
}

.contact_container textarea:focus{
    border-color: var(--primary) !important;
}

.contact_container .contact-info{
    background-color: #f3f3f3;
    padding: 30px 20px;
}


/**** Contact End ****/


/**** Footer Start ****/

.footer{
    background-color: #27282c;
}

.footer a h3{
    color: white !important;
}

.footer .our-info p{
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
}

.footer .quick-links a i{
    color: white;
    font-size: 13px;
}

.footer .quick-links a{
    color: white;
    transition: .5s all ease-in-out;
}

.footer .quick-links a:hover{
    margin-left: 7px;
}

.footer .contact-details i{
    color: white;
    font-size: 13px;
}

.footer .contact-details span{
    color: white;
}

.footer .social-media .icon{
    font-size: 19px;
    color: white;
    border: 1px solid white;
    padding: 7px;
    border-radius: 10px;
    transform: .5s all ease-in-out;
}

.footer .social-media .icon:hover{
    background-color: var(--primary);
}


/**** Footer End ****/


.modal{
    z-index: 1111111111;
}

.modal .modal-content{
    border-radius: 0px !important;
    /* border: none !important; */
}

.modal .btn-close{
    box-shadow: none !important;
}



/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--primary);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--primary) !important;
}
/*** Blog End ***/