:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}




/*** ---------------------------------
 Heading 
 ---------------------------------- ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}

/***--------------------------
  Navbar Starts
 ---------------------------- ***/
.top{
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.welcome-hero-text {
    width: 90%;
    color:#fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.welcome-hero-text h1{
    font-size: 62px;
    margin-top: 120px;
    color: white;
}
.welcome-hero-txt h2{
    width: 90%;
    color:#fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.welcome-hero-txt h2{
    font-size: 62px;
    margin-top: 100px;
    color: white;
}
.welcome-hero-text p{
    margin: 10px 0 40px;
    font-size: 14px;
    color:#fff;
}
.welcome-btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}
.welcome-btn-primary,
.welcome-btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}
.welcome-btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}


.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}
/**----------------------------------------------
   Second Header
----------------------------------------------**/
.top2{
  min-height: 50vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.5);
  background-image:linear-gradient(rgba(6, 12, 34, 0.8), rgba(6, 12, 34, 0.8)),url('../images/background.jpg');
  }
  .top2 .welcome-hero-txt{
  width: 90%;
  color:#fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 120%);
  text-align: center;
  }
  .top2 .welcome-hero-txt h2{
  font-size: 40px;
  }

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: whitesmoke;
}
.navbar-dark .navbar-brand img {
    color: #FFFFFF;
    width: 80px;
}
.navbar-dark .navbar-toggler {
    color: var(--primary);
    border-color: var(--primary);
}
/* Sidnav Starts*/
.no-scroll {
    overflow: hidden;
}
.sidenav {
    height: 100%;
    max-width: 500px;
    width: 100%;
    position: fixed;
    z-index: 1050;
    top: 0;
    right: -500px;
    background-color: #f8f9fa;
    overflow-x: hidden;
    transition: right 0.5s;
    padding-top: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.sidenav a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #333;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}
.sidenav a:hover {
    background-color: #e9ecef;
    color: #06A3DA;
}
.company-name {
    font-size: 20px;
    margin-top: 35px;
    margin-left: 20px;
    margin-right: 30px;
    color: #06A3DA;
    font-weight: bold;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #06A3DA;
    cursor: pointer;
    transition: transform .3s;
    border-radius: 50%;
}
.close-btn:hover {
    transform: scale(1.1);
    border-radius: 50%;
    transition: .3s;
}
/* Styles for the backdrop */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: 1049;
    display: none;
    background-color: rgba(0, 0, 0, 0.3);
}
/* Sidnav Ends */


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}

/*** -----------------------------
 Features
 ----------------------------- ***/
.feature img{
border-radius: 5px;
}
.feature .container .row h5{
    font-weight: bold;
    padding: 15px 0px 0px 0px;
    text-align: center;
}
.feature .container .row p{
    text-align: center;
}
/***-----------------------------
  Service Starts
  ------------------------------- ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

 /*------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Page Gallery Page
    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
    .custom-search {
    position: relative;
    max-width: 700px;
    width: 50%;
    margin: auto;
    padding-bottom:10px;
    }
    .custom-search input {
    padding-left: 35px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }
    .custom-search .search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    background-color: #fff;
    }
    /* Search Bar Ends---*/
    
    /* ----------------------Gallery Style Starts ---------------------*/
    .product-card.fade-up {
    opacity: 1;
    }
    .product-name {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    width:100%;
    text-align:center;
    padding: 5px;
    cursor: pointer;
    border-radius:3px;
    }
    .modal-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 1050;
    }
    .modal-preview img {
    max-width: 100%;
    max-height: 100%;
    border-radius:10px;
    }
    body.modal-open {
    overflow: hidden;
    }
    .modal-open .container {
    overflow-y: hidden;
    }
    .modal-open .navbar {
    backdrop-filter: none;
    z-index: 1049;
    }
/***-------------------------------
  Carousel 
  -----------------------------------***/
.carousel-inner .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.carousel-inner .owl-dot {
    position
    dis-innerplay: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.carousel-inner .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.carousel-inner .owl-item.center {
    position: relative;
    z-index: 1;
}

.carousel-inner .owl-item .slide-item {
    transition: .5s;
    margin: 0 5px;
}

.carousel-inner .owl-item.center .slide-item {
    background: #FFFFFF;
}



/***------------------------------------------- 
 Miscellaneous 
 -------------------------------------------***/
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}
/***-------------------------------------------
 Media Query
 ---------------------------------------------- ***/
@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }

}
@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }
    .welcome-hero-text h1{
        font-size: 32px;
    }
    .welcomeh1{
        font-size: 20px;
    }
    
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }
}
@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--primary);
    }
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: whitesmoke;
        transition: .5s;
    }
    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
    .sticky-top.navbar-dark .navbar-brand img {
        color: var(--primary);
    }
}