@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
:root {
    --primary-color: #FFCF2D;
    --secondary-color: #2F4858;
    --third-color: #006A79;
    --red-color: #ff0000;
    --yellow-color: #FCBF2E;
    --dark-color: #200055;
    --white-color: #FFFFFF;
    --text-color: #4D4D4D;
    --text-color-2: #7B7B7B;
    --my-font: "Playfair Display", serif;
    --my-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1)
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Onest", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

.pointer {
    cursor: pointer;
}

.primary-color {
    color: var(--primary-color) !important;
}

.second-color {
    color: var(--secondary-color) !important;
}

.third-color {
    color: var(--third-color) !important;
}

.section-padding {
    padding: 40px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 30px;
}

.section-title span {
    color: var(--third-color);
}

.bg-color {
    background-color: #EEF3F4 !important;
}

.btn1 {
    display: inline-block;
    padding: 7px 16px;
    text-align: center;
    min-width: 136px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.35s ease-in-out;
}
.btn1:hover {
    background-color: var(--third-color);
    color: var(--primary-color);
}
.search-btn {
    padding: 7px 16px;
    text-align: center;
    width: 180px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #121212;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.35s ease-in-out;
}
.btn1:hover  {
    background-color: var(--third-color);
    color: var(--primary-color);
}
.search-btn:hover  {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
/* ================================ 
Navbar Section
===================================*/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 3px 3px 30px rgba(2, 2, 2, 0.055);
    z-index: 999;
}

.navbar .navbar-brand>img {
    height: 60px;
}

.navbar .nav-link {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 8px 0 !important;
    margin: 0 18px;
    color: var(--white-color);
}

.navbar .nav-link::before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    transition: all 0.25s ease-in-out;
    height: 2px;
    background-color: var(--primary-color);
}

.navbar .nav-link:hover::after {
    width: 8px;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

@media all and (min-width:992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden;
        min-width: 22rem
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        min-width: 14rem;
        border-radius: 0;
        border: 0;
        box-shadow: -2px 3px 10px rgb(0 0 0 / .1)
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 15px;
        text-decoration: none;
        font-size: 15px
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: #006A79;
        background-color: #fff0
    }

    .dropdown-toggle::after {
        margin-left: 8px
    }
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

.scroll-on .nav-link {
    color: #121212;
}

.navbar .navbar-toggler i {
    color: var(--white-color);
}

.scroll-on .navbar-toggler i {
    color: #121212;
}
.breadcrumb-item+.breadcrumb-item::before{
    color: #fff;
}
/* ================================ 
Banner Section
===================================*/
.banner {
    width: 100%;
    color: var(--white-color);
}

.heading {
    overflow: hidden;
}


.heading>h2 {
    font-size: 48px;
    line-height: 1.11;
    letter-spacing: 1px;
}


.bannerContent {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    display: inline-block;
}


.bannerContent h1 {
    color: var(--white-color);
    font-family: "Bebas Neue", sans-serif;
    font-size: 100px;
    display: inline-block;
    position: relative;
    margin-bottom: 0;
}

.bannerContent h1::after,
.bannerContent h1::before {
    content: "";
    width: 100px;
    height: 2px;
    display: inline-block;
    background-color: var(--white-color);
    position: absolute;

}

.bannerContent h1::after {
    background-color: var(--primary-color);
    bottom: -10px;
    right: -100px;
}

.bannerContent h1::before {
    top: 0px;
    left: -100px;
}

.bannerContent h1 span {
    color: #FFDA59;
    font-style: italic;
}

.banner .slick-dots {
    bottom: 25px;
}

.banner .banner-img {
    width: 100%;
    height: 100vh;
    filter: brightness(0.7);
}

.banner .btn-grppp a {
    line-height: 1.2;
}

.banner .btn2 span {
    color: var(--white-color);
}

.banner .slick-dotted.slick-slider {
    margin-bottom: 0;
}

/* ================================ 
Foorm Section
===================================*/
.form-section {
    padding: 35px 0;
    background-color: var(--third-color);
}

.form-section label {
    font-weight: 500 !important;
    color: #000 !important;
}

.form-floating>.form-select {
    padding-top: 1.8rem;
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext,
.form-floating>.form-select {
    height: 60px;
    font-weight: 600;
}

.form-floating,
.search-btn {
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.15);
}

/* ================================ 
Preferable Section
===================================*/
.preferable img {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    filter: brightness(0.65);
}

.preferable .content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white-color);
}

.preferable .content span {
    display: inline-block;
    padding: 7px 16px;
    font-weight: 500;
    color: var(--white-color);
    background-color: var(--third-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.preferable .content span:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--third-color);
}


/* ================================ 
Featured Section
===================================*/
.featured .inner-contain {
    background-color: var(--white-color);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.05);
}

.featured .inner-contain img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.featured .inner-contain .status {
    padding: 4px 8px;
    background-color: #FFE5E5;
    color: var(--red-color);
    font-size: 10px;
    border-radius: 3px;
    font-weight: 500;
    white-space: nowrap;
    margin-right: 1rem;
}

.featured .inner-contain .success {
    color: #007B1F;
    background-color: #DAF1D9;
}

.featured .inner-contain .develop {
    font-size: 12px;
    color: var(--third-color);
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
}

.featured .inner-contain .fea-dets {
    margin-top: 12px;
}

.featured .inner-contain .fea-dets h3 {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.featured .fea-dets .pro-dets {
    font-size: 14px;
    color: #2e2e2e;
    margin-bottom: 10px;
}

.featured .fea-dets .pro-dets i {
    font-size: 18px;
    margin-right: 12px;
    line-height: 1;
}

.featured .price {
    font-size: 16px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 5px;
    background-color: #E5F0F1;
    display: inline-block;
    margin: 10px 0;
    color: #005D6A;
    margin-left: 8px;
}

/* ================================ 
Service Section
===================================*/
.service .inner-contain {
    padding: 24px;
    border: 1px solid #c3c3c3;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    transition: all 0.35s ease-in-out;
    min-height: 269px;
}

.service .inner-contain:hover {
    border-color: var(--third-color);
}

.service .inner-contain h3 {
    font-size: 50px;
    font-family: var(--my-font);
    color: #D0D0D0;
}

.service .inner-contain h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.service .inner-contain p {
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    color: #565656;
    line-height: 26px;
}


/* ================================ 
Parallax Section
===================================*/

/* ================================ 
Parallax Section
===================================*/
.parallax-section {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../images/banner/parallax-banner.jpg") no-repeat center;
    color: var(--white-color);
    background-size: cover;
    background-attachment: fixed;
    padding: 4.5rem 0;
}

.parallax .inner-contain {
    padding: 8px;
    border-radius: 8px;
    background: var(--white-color);
    position: relative;
}

.parallax .inner-contain .tool-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    width: 250px;
    height: 40px;
    text-align: center;
    background: #FFE17C;
    border-radius: 8px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 18px;
}



/* ================================ 
Blogs Section 
=================================== */
.blogs .inner-contain img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blogs .inner-contain .date-badge {
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    padding-bottom: 4px;
}

.blogs .inner-contain h3 {
    font-size: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 30px;
    font-weight: 600;
    color: #353535;
}


.latest {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: #eef4f9;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
}
.latest .lat-post {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: var(--white-color);
    border-radius: 0.5rem;
}

.latest .lat-post img {
    width: 100px;
    border-radius: 5px;

}

.latest .lat-post h6 {
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.25s ease-in-out;
    margin-bottom: 10px;
}

.latest .lat-post:hover h6 {
    color: var(--red-color);
}

.latest .lat-post p {
    color: var(--black-color);
    font-size: 13px;
    margin-bottom: 0;
}



/* ================================ 
Footer Section
===================================*/
footer {
    background-color: #072538;
}
footer ul li a:hover {
    color: var(--primary-color);
}



/* ===================================
Inner Panel Section
====================================*/
.hero-section {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.heroImgSection {
    margin: 0;
    position: absolute;
    width: 100vw;
    left: 50%;
    top: 0;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    height: auto;
}
.heroImgSection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.anim {
    animation: move 5s linear infinite;
}
@keyframes move {
    0% {
      transform: translateX(0);
  
    }
    50% {
      transform: translateX(10%);
    }
    100% {
      transform: translateX(0);
  
    }
}


.anim2 {
    animation: move 5s linear infinite;
}
@keyframes move {
    0% {
      transform: translateX(0);
  
    }
    50% {
      transform: translateX(60%);
    }
    100% {
      transform: translateX(0);
  
    }
}

.contactForm label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contactForm input,
.contactForm select,
.contactForm textarea {
    min-height: 50px;
    border-radius: 0.5rem;
}

.soft
{
    background:#fff9c6;
    color: #7d7003;
}
  
  
  /* ============================== */
/* Modal Panel */
/* =============================== */
.getquoteModal .my-btn-close {
    position: absolute;
    top: -12px;
    right: -12px;
    border-radius: 50%;
    padding: 10px;
    background-color: var(--red-color);
    color: var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 5px;
    z-index: 88;
    border: none;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}



/* ================================================
RESPONSIVE PANEL
======================================================================= */
@media(max-width:800px){
    .bannerContent h1::after, .bannerContent h1::before{
        display: none;
    }
    .bannerContent h1{
        font-size: 60px;
    }
    .bannerContent{
        top: 60%;
    }
    .banner .banner-img{
        height: 40vh;
    }
    .hero-section{
        min-height: 300px;
    }
}
