@charset "utf-8";
/* CSS Document */
/* Author : Binod Raj Dhami */

:root{
    --theme-primary-color: #ffffff;
    --theme-secondary-color: #000000;
    --theme-blue-color: #1e3a8a;
    --theme-blue-light-color: #3b38eb;
    --theme-blue-dark-color: #070d19;
    --theme-title-color: #111A2E;
    --theme-text-color: #737887;
    --theme-font-barlow: "Barlow", sans-serif;
    --theme-font-roboto: "Roboto", sans-serif;
    --transition: all ease-in-out 0.3s;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================================================== Reset specific tags further */
html, body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, li,
figure, blockquote,
span, a {
    margin: 0;
    padding: 0;
    line-height: inherit;
}

a{
    text-decoration: none;
    line-height: inherit;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--theme-font-roboto);
}

/* ================================================== Apply the font globally */
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--theme-text-color);
    font-family: var(--theme-font-roboto);
    background: var(--theme-primary-color);
}

/* Body scrollbar */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--theme-primary-color);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--theme-blue-color);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--theme-blue-color);
}

/* ================================================== Go To Top Section */
#back-top { 
    display: block; 
    position: fixed; 
    bottom: 10px; 
    right: 15px; 
    text-align: center; 
    z-index: 9; 
}

#back-top a { 
    display: block; 
    text-decoration: none;  
}

#back-top a .fa{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px; 
    height: 50px; 
    font-size: 14px; 
    border-radius: 5px; 
    opacity: 1; 
    color: var(--theme-primary-color);
    background: var(--theme-blue-light-color);
    transition: var(--transition);
}

#back-top a .fa:hover {
    background: var(--theme-blue-color);
}

.wrapper{
    position: relative;
    overflow: hidden;
}

/* ================================================== Header Section */
.site-header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 25px 0;
}

.site-header .container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-header-logo{
    margin-right: auto;
}

.site-header-logo img{
    width: 200px;
    height: auto;
}

.site-header-reservation{
    margin-left: auto;
}

.site-header-reservation a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--theme-blue-color);
    border-radius: 5px;
    padding: 15px 20px;
    color: var(--theme-primary-color);
    text-transform: uppercase;
    transition: var(--transition);
}

.site-header-reservation a span{
    font-size: 18px;
    font-family: var(--theme-font-barlow);
}

.site-header-reservation a .fa-solid{
    font-size: 12px;
}

.site-header-reservation a:hover{
    background: var(--theme-yellow-color);
}

/* ========== Site Header Nav ========== */
.site-header-navigation{
    margin: 0 auto;
}

#mega-menu-wrap-header-menu{
    background: transparent;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item{
    margin-right: 20px;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link{
    position: relative;
    padding: 0;
    height: inherit;
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-roboto);
    background: transparent;
    transition: var(--transition);
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--theme-primary-color);
    transition: var(--transition);
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:focus,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:active,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link{
    color: var(--theme-primary-color);
    background: transparent;
    font-weight: 400;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:hover::before,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:focus::before,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:active::before,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link::before,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link::before,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link::before{
    width: 100%;
}

.site-header-buttons{
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.site-header-buttons a {
    display: inline-block;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 15px;
    font-weight: 500;
    color: var(--theme-blue-color);
    background: var(--theme-primary-color);
    text-transform: capitalize;
    box-shadow: 0 5px 30px rgba(59, 56, 235, 0.1);
    transition: var(--transition);
}

.site-header-buttons a:hover{
    color: var(--theme-primary-color);
    background: var(--theme-blue-light-color);
}

.site-header-buttons .menu-toggle-btn{
    display: inline-block;
    padding: 15px 20px;
    font-size: 18px;
    border-radius: 15px;
    font-weight: 500;
    color: var(--theme-blue-color);
    background: var(--theme-primary-color);
    text-transform: capitalize;
    box-shadow: 0 5px 30px rgba(59, 56, 235, 0.1);
    border: rgba(59, 56, 235, 0.12) solid 1px;
    transition: var(--transition);
}

.site-header-buttons .menu-toggle-btn:hover{
    color: var(--theme-primary-color);
    background: var(--theme-blue-light-color);
}

.site-header-buttons .menu-toggle-btn .fa-solid{
    transition: var(--transition);
}

.site-header-buttons .menu-toggle-btn.active{
    color: var(--theme-primary-color);
    background: var(--theme-blue-light-color);
}

.site-header-buttons .menu-toggle-btn.active .fa-solid{
    transform: scaleX(-1);
}

.aside{
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    z-index: 999;
    background: var(--theme-primary-color);
    transform: translateX(100%);
    transition: var(--transition);
    padding: 40px;
    padding-right: 25px;
    overflow-y: scroll;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

/* Aside Menu scrollbar */
.aside::-webkit-scrollbar {
    width: 15px;
}

.aside::-webkit-scrollbar-track {
    background: var(--theme-primary-color);
}

.aside::-webkit-scrollbar-thumb {
    background-color: var(--theme-blue-color);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.aside::-webkit-scrollbar-thumb:hover {
    background-color: var(--theme-blue-color);
}

.aside.active{
    transform: translateX(0);
}

.aside-blur-bg{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.1);
}

.aside-blur-bg.active{
    transform: translateX(0);
}

.aside-close-btn{
    position: absolute;
    top: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    border: none;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-light-color);
    transition: var(--transition);
}

.aside-close-btn:hover{
    background: var(--theme-blue-color);
}

.aside-logo{
    margin: 80px 0 30px -8px;
}

.aside-logo img{
    width: 200px;
    height: auto;
}

.aside-information p{
    color: var(--theme-text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.aside-contact-info{
    margin: 30px 0;
}

.aside-contact-info h4{
    color: var(--theme-title-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.aside-contact-info ul li{
    line-height: 30px;
    list-style: none;
    display: flex;
    gap: 10px;
}

.aside-contact-info ul li .fa-solid{
    position: relative;
    top: 8px;
    color: var(--theme-blue-light-color);
    font-size: 14px;
}

.aside-contact-info ul li a{
    color: var(--theme-text-color);
    font-size: 16px;
}

.aside-social-links{
    display: flex;
    justify-content: flex-start;
    margin-top: auto;
    width: 100%;
}

.aside-social-links ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 5px;
}

.aside-social-links ul li a .fa-brands{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--theme-blue-light-color);
    border: var(--theme-text-color) solid 1px;
    font-size: 14px;
    transition: var(--transition);
}

.aside-social-links ul li a .fa-brands:hover{
    border-color: var(--theme-blue-light-color);
    background: var(--theme-blue-light-color);
    color: var(--theme-primary-color);
}

.aside-copyright{
    margin-top: 15px;
}

.aside-copyright p{
    color: var(--theme-text-color);
    line-height: 24px;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
}

 /* ================================================== Banner Section */
.banner{
    position: relative;
    z-index: 1;
}

.banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    backdrop-filter: blur(25px);
}

.banner-container{
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9;
}

.banner-wrapper{
    margin-top: 150px;
    max-width: 888px;
}

.banner-subtitle{
    display: inline-block;
    padding: 10px 20px;
    text-transform: uppercase;
    color: var(--theme-blue-light-color);
    background: var(--theme-primary-color);
    border: rgba(59, 56, 235, 0.12) solid 1px;
    border-radius: 10px;
    font-size: 18px;
}

.banner-title{
    margin: 30px 0;
    font-weight: 900;
    font-size: 80px;
    line-height: 80px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-barlow);
}

.banner-title span{
    display: block;
    font-size: 48px;
    line-height: 60px;
    font-family: var(--theme-font-barlow);
}

.banner-description{
    font-size: 18px;
    line-height: 30px;
    color: var(--theme-primary-color);
}

.banner-link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.banner-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    border-radius: 5px;
    font-size: 18px;
    background: var(--theme-blue-light-color);
    color: var(--theme-primary-color);
    transition: var(--transition);
}

.banner-link a .fa-solid{
    font-size: 14px;
}

.banner-link a:last-child{
    color: var(--theme-title-color);
    background: var(--theme-primary-color);
}

.banner-link a:hover{
    color: var(--theme-title-color);
    background: var(--theme-primary-color);
}

.banner-link a:last-child:hover{
    color: var(--theme-primary-color);
    background: var(--theme-blue-light-color);
}


/* ================================================== Section Section */
.section-heading{
    margin-bottom: 30px;
}

.section-heading-sub-title{
    position: relative;
    color: var(--theme-blue-light-color);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--theme-font-roboto);
    padding: 4px 0 4px 40px;
    margin-bottom: 15px;
}

.section-heading-sub-title::before{
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 15px;
    height: 15px;
    border-radius: 5px;
    background: var(--theme-blue-light-color);
}

.section-heading-sub-title span{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 5px;
    border: var(--theme-blue-light-color) solid 1px;
}

.section-heading-sub-title span:nth-child(2){
    left: 16px;
}

.section-heading-sub-title span:nth-child(3){
    top: 16px;
}

.section-heading-sub-title span:last-child{
    left: 16px;
    top: 16px;
}

.section-heading-title{
    font-family: var(--theme-font-barlow);
    color: var(--theme-title-color);
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
}

.section-body-description p{
    font-family: var(--theme-font-roboto);
    color: var(--theme-text-color);
    font-size: 16px;
    line-height: 30px;
}

.section-body-btn{
    margin-top: 30px;
    display: flex;
}

.section-heading-btn-link,
.section-body-btn-link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    border-radius: 5px;
    font-size: 16px;
    background: var(--theme-blue-light-color);
    color: var(--theme-primary-color);
    transition: var(--transition);
}

.section-heading-btn-link:hover,
.section-body-btn-link:hover{
    background: var(--theme-blue-color);
}

.section-heading-btn-link .fa-solid,
.section-body-btn-link .fa-solid{
    font-size: 14px;
}

/* ================================================== Welcome Section */
.welcome{
    background: var(--theme-primary-color);
    padding: 100px 0;
}

.welcome .container .row{
    display: flex;
    align-items: center;
}

.welcome-thumbnail{
    width: calc(100% - 50px);
}

.welcome-thumbnail img{
    width: 100%;
    height: auto;
}

/* ================================================== Service Section */
.service{
    position: relative;
    margin-bottom: -200px;
}

.service-wrapper{
    position: relative;
    padding-top: 100px;
    z-index: 1;
}

.service-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: -150px;
    width: calc(100% + 300px);
    height: 100%;
    border-radius: 10px;
    background: var(--theme-blue-dark-color);
}

.service .section-heading{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.service .section-heading div:first-child{
    width: 50%;
}

.service .section-heading-title{
    color: var(--theme-primary-color);
}

.service .section-heading-btn-link:hover{
    background: var(--theme-primary-color);
    color: var(--theme-blue-dark-color);
}

.service .section-body{
    position: relative;
    margin-top: -130px;
    transform: translateY(50%);
}

.service-card{
    position: relative;
    padding: 60px 15px 30px;
    border-radius: 10px;
    background: var(--theme-primary-color);
    box-shadow: 0 10px 15px rgb(8 14 28 / .09);
}

.service-card-icon{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    margin: 0 auto;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--theme-blue-light-color);
}

.service-card-icon .fa-solid{
    color: var(--theme-primary-color);
    font-size: 24px;
}

.service-card-content{
    text-align: center;
}

.service-card-content h3 a{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    color: var(--theme-title-color);
    font-family: var(--theme-font-barlow);
    transition: var(--transition);
}

.service-card-content h3 a:hover{
    color: var(--theme-blue-color);
}

.service-card-content p{
    font-family: var(--theme-font-roboto);
    color: var(--theme-text-color);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.service-card-btn{
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.service-card-btn-link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 14px;
    background: var(--theme-blue-light-color);
    color: var(--theme-primary-color);
    transition: var(--transition);
}

.service-card-btn-link:hover{
    background: var(--theme-blue-color);
}

.service-card-btn-link .fa-solid{
    font-size: 12px;
}

#serviceSlider .slide-item{
    padding: 40px 0;
}

#serviceSlider .owl-nav{
    transition: var(--transition);
    margin-top: 0;
    opacity: 0;
}

#serviceSlider:hover .owl-nav{
    opacity: 1;
}

#serviceSlider .owl-nav button.owl-prev{
    position: absolute;
    top: calc(50% - 5px);
    left: -25px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 14px;
    background: var(--theme-blue-light-color);
    color: var(--theme-primary-color);
}

#serviceSlider .owl-nav button.owl-next{
    position: absolute;
    top: calc(50% - 5px);
    right: -25px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 14px;
    background: var(--theme-blue-light-color);
    color: var(--theme-primary-color);
}

/* ================================================== Why Choose Us Section */
.why-choose-us{
    padding-top: 450px;
    padding-bottom: 100px;
    background: url('../images/why-choose-us-bg.jpg') no-repeat center center;
    background-size: cover;
}

.why-choose-us .row{
    display: flex;
    align-items: center;
}

.why-choose-us-thumbnail{
    padding-left: 50px;
}

.why-choose-us-thumbnail img{
    width: 100%;
    height: auto;
}

.why-choose-us ul li{
    margin-top: 30px;
    list-style: none;
}

.why-choose-us-short-list{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.why-choose-us-short-list .progress-circle {
    position: relative;
    width: 100px;
    height: 100px;
}

.why-choose-us-short-list .progress-circle svg {
    transform: rotate(-90deg);
}

.why-choose-us-short-list .progress-circle circle {
    fill: none;
    stroke-width: 6;
}

.why-choose-us-short-list .progress-circle .bg {
    stroke: transparent;
}

.why-choose-us-short-list .progress-circle .progress {
    stroke: var(--theme-blue-light-color);
    stroke-linecap: round;
}

.why-choose-us-short-list .progress-circle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    background: var(--theme-primary-color);
    color: var(--theme-title-color);
}

.why-choose-us-short-list .progress-circle1 .progress {
    stroke-dasharray: 260 23;
}

.why-choose-us-short-list .progress-circle2 .progress {
    stroke-dasharray: 270 13;
}


.why-choose-us-short-list-title{
    width: 100%;
}

.why-choose-us-short-list-title h3{
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    color: var(--theme-title-color);
    font-family: var(--theme-font-barlow);
}

.why-choose-us-short-list-title p{
    font-family: var(--theme-font-roboto);
    color: var(--theme-text-color);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

/* ================================================== Project Section */
.project{
    padding: 100px 0 50px;
}

.project .section-heading{
    text-align: center;
}

.project .section-heading .section-heading-sub-title{
    display: inline-block;
}

.project-card{
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: var(--theme-primary-color);
    box-shadow: 0 0 15px rgb(8 14 28 / .05);
    border: rgba(0, 0, 0, 0.1) solid 1px;
    z-index: 1;
}

.project-card-thumbnail{
    position: relative;
    cursor: pointer;
}

.project-card-thumbnail img{
    width: 100%;
    height: auto;
}

.project-card-content{
    padding: 30px;
    border-top: #eee solid 1px;
}

.project-card-content h4 a{
    color: var(--theme-title-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    height: 30px;
}

.project-card-content h6{
    color: var(--theme-text-color);
    font-size: 16px;
}

.project-card-content .project-card-btn{
    margin-top: 20px;
    display: flex;
}

.project-card-content .project-card-btn .project-card-btn-link{
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    gap: 10px;
    background: var(--theme-blue-light-color);
    color: var(--theme-primary-color);
    transition: var(--transition);
}

.project-card-content .project-card-btn .project-card-btn-link:hover{
    background: var(--theme-blue-color);
}

.project-card-content .project-card-btn .project-card-btn-link span{
    font-size: 16px;
    font-weight: 400;
}

.project-card-content .project-card-btn .project-card-btn-link .fa-solid{
    font-size: 14px;
}

#projectSlider .slide-item{
    padding: 30px 15px;
}

#projectSlider .owl-nav{
    transition: var(--transition);
    margin-top: 0;
    opacity: 0;
}

#projectSlider:hover .owl-nav{
    opacity: 1;
}

#projectSlider .owl-nav button.owl-prev{
    position: absolute;
    top: calc(50% + 15px);
    left: -50px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 14px;
    border-radius: 5px;
    color: var(--theme-blue-light-color);
    background: var(--theme-primary-color);
    border: var(--theme-blue-light-color) solid 1px;
    transition: var(--transition);
}

#projectSlider .owl-nav button.owl-next{
    position: absolute;
    top: calc(50% + 15px);
    right: -50px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 14px;
    border-radius: 5px;
    color: var(--theme-blue-light-color);
    background: var(--theme-primary-color);
    border: var(--theme-blue-light-color) solid 1px;
    transition: var(--transition);
}

#projectSlider .owl-nav button.owl-prev:hover,
#projectSlider .owl-nav button.owl-next:hover{
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
}

/* ================================================== Achievement Section */
.achievement{
    position: relative;
    padding: 100px 0;
    background: var(--theme-blue-light-color);
}

.achievement::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/achievement-bg.png') no-repeat center center;
    background-size: cover;
}

.achievement-card{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.achievement-card-icon .fa-solid,
.achievement-card-icon .fa-regular{
    width: 70px;
    height: 70px;
    border: var(--theme-primary-color) solid 2px;
    color: var(--theme-primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    border-radius: 5px;
}

.achievement-card-content h3{
    font-size: 36px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-barlow);
}

.achievement-card-content span{
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-roboto);
}

#achievementSlider .owl-nav{
    transition: var(--transition);
    margin-top: 0;
    opacity: 0;
}

#achievementSlider:hover .owl-nav{
    opacity: 1;
}

#achievementSlider .owl-nav button.owl-prev{
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 14px;
    border-radius: 5px;
    color: var(--theme-blue-light-color);
    background: var(--theme-primary-color);
    border: var(--theme-blue-light-color) solid 1px;
    transition: var(--transition);
}

#achievementSlider .owl-nav button.owl-next{
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 14px;
    border-radius: 5px;
    color: var(--theme-blue-light-color);
    background: var(--theme-primary-color);
    border: var(--theme-blue-light-color) solid 1px;
    transition: var(--transition);
}

#achievementSlider .owl-nav button.owl-prev:hover,
#achievementSlider .owl-nav button.owl-next:hover{
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
}

/* ================================================== Process Section */
.process{
    padding: 100px 0;
    background: var(--theme-primary-color);
    background: url('../images/process-bg.png') no-repeat center center;
    background-size: cover;
}

.process .section-heading{
    margin-bottom: 50px;
    text-align: center;
}

.process .section-heading .section-heading-sub-title{
    display: inline-block;
}

.process-card{
    position: relative;
    padding: 50px;
    text-align: center;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-primary-color);
    box-shadow: 0 0 15px rgb(8 14 28 / .2);
}

.process-card-counter{
    position: absolute;
    top: 35px;
    left: 35px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-blue-light-color);
    background: var(--theme-primary-color);
    border: var(--theme-blue-light-color) solid 1px;
    box-shadow: 0 0 15px rgb(8 14 28 / .06);
}

.process-card-icon{
    color: var(--theme-blue-light-color);
    font-size: 90px;
}

.process-card-title{
    margin: 15px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--theme-title-color);
    font-family: var(--theme-font-barlow);
}

.process-card-description {
    font-family: var(--theme-font-roboto);
    color: var(--theme-text-color);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}


#processSlider .slide-item{
    padding-top: 30px;
}

#processSlider .owl-nav{
    margin-top: 0;
}

#processSlider .owl-nav button.owl-prev{
    position: absolute;
    top: calc(50% + 15px);
    left: -40px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    font-size: 14px;
    border-radius: 50%;
    background: var(--theme-primary-color);
    color: var(--theme-blue-color);
    border: var(--theme-blue-color) solid 1px;
    box-shadow: 0 0 15px rgb(8 14 28 / .06);
    transition: var(--transition);
}

#processSlider .owl-nav button.owl-next{
    position: absolute;
    top: calc(50% + 15px);
    right: -40px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    font-size: 14px;
    border-radius: 50%;
    color: var(--theme-blue-color);
    background: var(--theme-primary-color);
    border: var(--theme-blue-color) solid 1px;
    box-shadow: 0 0 15px rgb(8 14 28 / .06);
    transition: var(--transition);
}

#processSlider .owl-nav button.owl-prev:hover,
#processSlider .owl-nav button.owl-next:hover{
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
}

/* ================================================== Testimonial Section */
.testimonial{
    position: relative;
    margin-bottom: -200px;
}

.testimonial-wrapper{
    position: relative;
    padding-top: 100px;
    z-index: 1;
}

.testimonial-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: -150px;
    width: calc(100% + 300px);
    height: 100%;
    border-radius: 10px;
    background: url('../images/testimonial-bg.jpg') no-repeat center center;
    background-size: cover;
}

.testimonial .section-heading{
    margin-bottom: 0;
    position: relative;
    text-align: center;
}

.testimonial .section-heading-sub-title{
    display: inline-block;
}

.testimonial .section-heading-title{
    color: var(--theme-primary-color);
}

.testimonial .section-heading-btn-link:hover{
    background: var(--theme-primary-color);
    color: var(--theme-blue-dark-color);
}

.testimonial .section-body{
    position: relative;
    margin-top: -130px;
    transform: translateY(50%);
}

.testimonial-card{
    position: relative;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 15px rgb(8 14 28 / .09);
    border: rgba(0, 0, 0, 0.1) solid 1px;
    background: var(--theme-primary-color);
    transition: var(--transition);
}

.testimonial-card-profile{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.testimonial-card-profile span{
    display: block;
    margin-top: 10px;
}

.testimonial-card-profile span .fa-solid{
    color: var(--theme-blue-color);
    transition: var(--transition);
}

.testimonial-card-content h3{
    margin: 10px 0 5px;
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    color: var(--theme-title-color);
    font-family: var(--theme-font-barlow);
    transition: var(--transition);
}

.testimonial-card-content span{
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-blue-color);
    font-family: var(--theme-font-roboto);
    transition: var(--transition);
}

.testimonial-card-content p{
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--theme-text-color);
    font-family: var(--theme-font-roboto);
    transition: var(--transition);
}

#testimonialSlider .center .testimonial-card{
    background: var(--theme-blue-color);
}

#testimonialSlider .center img{
    border-color: var(--theme-primary-color);
}

#testimonialSlider .center .testimonial-card-profile span .fa-solid,
#testimonialSlider .center .testimonial-card-content h3,
#testimonialSlider .center .testimonial-card-content span,
#testimonialSlider .center .testimonial-card-content p{
    color: var(--theme-primary-color);
}

#testimonialSlider img {
    margin-top: -80px;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    border: 10px inset var(--theme-blue-dark-color);
    background: #fff;
    transition: var(--transition);
}

#testimonialSlider .slide-item{
    padding: 50px 0;
}

#testimonialSlider .owl-nav{
    transition: var(--transition);
    margin-top: 0;
    opacity: 0;
}

#testimonialSlider:hover .owl-nav{
    opacity: 1;
}

#testimonialSlider .owl-nav button.owl-prev{
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 14px;
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
}

#testimonialSlider .owl-nav button.owl-next{
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 14px;
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
}

/* ================================================== Technology Section */
.technology{
    padding: 475px 0 100px;
}

.technology .section-heading{
    margin-bottom: 50px;
    text-align: center;
}

.technology .section-heading .section-heading-sub-title{
    display: inline-block;
}

.technology-cards{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.technology-card-item{
    width: 16%;
}

.technology-card{
    position: relative;
    overflow: hidden;
    border: rgba(0, 0, 0, 0.1) solid 1px;
    transition: var(--transition);
}

.technology-card:hover{
    transform: scale(1.05);
    z-index: 9;
    box-shadow: 0 0 15px rgb(8 14 28 / .2);
}

.technology-card img{
    width: 100%;
    height: auto;
}

/* ================================================== Quatation Section */
.google-map-wrapper{
    position: relative;
    width: 100%;
    height: 350px;
}

.google-map-wrapper iframe{
    width: 100%;
    height: 100%;
}


/* ================================================== News & Blog Section */
.news-article{
    padding: 100px 0 80px;
}

.news-article .section-heading{
    margin-bottom: 50px;
    text-align: center;
}

.news-article .section-heading .section-heading-sub-title{
    display: inline-block;
}

.news-article-card{
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 15px rgb(8 14 28 / .03);
    border: rgba(0, 0, 0, 0.1) solid 1px;
}

.news-article-card-thumbnail{
    position: relative;
    overflow: hidden;
}

.news-article-card-content{
    padding: 30px;
}

.news-article-card-content ul{
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin-bottom: 15px;
}

.news-article-card-content h3 a{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    color: var(--theme-title-color);
    font-family: var(--theme-font-barlow);
    transition: var(--transition);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    height: 60px;
}

.news-article-card-content p{
    font-family: var(--theme-font-roboto);
    color: var(--theme-text-color);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.news-article-card-btn a{
    display: inline-block;
    margin-top: 10px;
    font-family: var(--theme-font-roboto);
    color: var(--theme-title-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.news-article-card-content h3 a:hover,
.news-article-card-btn a:hover{
    color: var(--theme-blue-color);
}

.news-article-card-thumbnail img,
#newsSlider .news-article-card-thumbnail img {
    width: 100%;
    height: auto;
}

#newsSlider .slide-item{
    padding-bottom: 15px;
}

#newsSlider .owl-nav{
    transition: var(--transition);
    margin-top: 0;
    opacity: 0;
}

#newsSlider:hover .owl-nav{
    opacity: 1;
}

#newsSlider .owl-nav button.owl-prev{
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 14px;
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
}

#newsSlider .owl-nav button.owl-next{
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 14px;
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
}

/* ================================================== Newsletter Section */
.newsletter {
    padding-bottom: 70px;
}

/* Wrapper */
.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    background-image: linear-gradient(to bottom right, #0f172a, #1e3a8a, #6b21a8);
}

/* Icon */
.newsletter-icon .fa-solid {
    font-size: 130px;
    color: var(--theme-primary-color);
}

/* Title */
.newsletter-title {
    font-family: var(--theme-font-barlow);
    font-size: 36px;
    font-weight: 700;
    color: var(--theme-primary-color);
    margin-bottom: 15px;
}

/* Description */
.newsletter-description {
    font-size: 16px;
    color: var(--theme-primary-color);
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Form */
.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 15px;
}

/* Input */
.newsletter-form input {
    flex: 1;
    height: 56px;
    padding: 0 20px;
    border: 1px solid rgba(30, 58, 138, 0.15);
    border-radius: 30px 0 0 30px;
    font-size: 15px;
    font-family: var(--theme-font-roboto);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder{
    color: var(--theme-text-color);
}

/* Input Focus */
.newsletter-form input:focus, {
    border-color: var(--theme-blue-color);
}

/* Button */
.newsletter-form button {
    height: 56px;
    padding: 0 35px;
    border: none;
    border-radius: 0 30px 30px 0;
    background: linear-gradient(
        135deg,
        var(--theme-blue-light-color),
        var(--theme-blue-color)
    );
    color: var(--theme-primary-color);
    font-family: var(--theme-font-barlow);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

/* Button Hover */
.newsletter-form button:hover {
    background: linear-gradient(
        135deg,
        var(--theme-blue-color),
        var(--theme-blue-dark-color)
    );
}

/* Footer Text */
.newsletter-footer-text {
    font-size: 14px;
    color: var(--theme-primary-color);
    margin-top: 10px;
}

/* ================================================== Footer Section */
.site-footer{
    background: var(--theme-blue-dark-color);
}

.footer-content{
    padding: 100px 0 50px;
}

.footer-content-block h4{
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-barlow);
}

.site-footer-logo img{
    width: 250px;
    height: auto;
}

.footer-content-block p{
    color: var(--theme-text-color);
    font-family: var(--theme-font-roboto);
    margin: 30px 0;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

.footer-social-link ul{
    display: flex;
    list-style: none;
    gap: 5px;
}

.footer-social-link ul li a .fa-brands{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 50%;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
}

.footer-contact-block ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-block ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.footer-contact-block ul li .fa-solid{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
}

.footer-contact-block ul li a{
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
    color: var(--theme-text-color);
    font-family: var(--theme-font-roboto);
}

.footer-contact-block ul li a:hover{
    color: var(--theme-primary-color);
}

.footer-menus-block ul li{
    list-style: none;
}

.footer-menus-block ul li a{
    position: relative;
    display: inline-block;
    padding-left: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    color: var(--theme-text-color);
    font-family: var(--theme-font-roboto);
    transition: var(--transition);
}

.footer-menus-block ul li a::before{
    content: '\f0da';
    position: absolute;
    top: -2px;
    left: 0;
    width: 15px;
    height: 15px;
    font-size: 14px;
    color: var(--theme-blue-light-color);
    font-family: 'fontawesome';
}

.footer-menus-block ul li a:hover{
    color: var(--theme-primary-color);
}

.copyright{
    padding: 20px 0;
    border-top: rgba(255, 255, 255, 0.1) solid 1px;
    text-align: center;
}

.copyright p{
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-text-color);
    font-family: var(--theme-font-roboto);
}

/* ================================================== Page */
.page-banner{
    padding: 150px 0 50px;
    background-image: linear-gradient(to bottom right, #0f172a, #1e3a8a, #6b21a8);
}

.page-breadcrumb h1{
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-barlow);
    text-transform: uppercase;
}

.page-breadcrumb p{
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: var(--theme-font-roboto);
}

.page-breadcrumb p a{
    color: var(--theme-primary-color);
}

.page-breadcrumb p span{
    color: var(--theme-primary-color);
}

.page-content{
    padding: 50px 0;
    min-height: 50vh;
}

.page-thumbnail img{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.page-description{
    margin-bottom: 30px;
}

.page-description h2{
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    color: var(--theme-title-color);
    font-family: var(--theme-font-barlow);
    text-transform: uppercase;
    z-index: 1;
}

.page-description h2::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--theme-title-color);
    z-index: -1;
}

.page-description h3{
    position: relative;
    margin-bottom: 15px;
    padding-left: 25px;
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-title-color);
    font-family: var(--theme-font-barlow);
    z-index: 1;
}

.page-description h3::before{
    content: '\23';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    color: var(--theme-title-color);
    font-family: 'fontawesome';
    z-index: -1;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.page-description h4{
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-title-color);
    font-family: var(--theme-font-barlow);
}

.page-description h5{
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-title-color);
    font-family: var(--theme-font-barlow);
}

.page-description h6{
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 700;
    color: var(--theme-title-color);
    font-family: var(--theme-font-barlow);
}

.page-description p{
    margin-bottom: 15px;
    color: var(--theme-text-color);
    font-family: var(--theme-font-roboto);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

.page-description ul,
.page-description ol{
    margin-bottom: 30px;
    padding-left: 18px;
    box-sizing: border-box;
}

.page-description li{
    color: var(--theme-text-color);
    font-family: var(--theme-font-roboto);
    font-size: 16px;
    line-height: 36px;
    font-weight: 400;
}

/* ================================================== News & Article Archive Page */
.archive-news-article-card{
    margin-bottom: 30px;
}

.page-post-date-comment ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    list-style: none;
    margin-bottom: 15px;
}

.page-post-date-comment ul li .fa-regular{
    color: var(--theme-text-color);
    font-size: 16px;
}

.page-post-date-comment ul li span{
    display: inline-block;
    margin-left: 5px;
    font-family: var(--theme-font-roboto);
    color: var(--theme-title-color);
    font-size: 18px;
}

.news-sidebar .sub-title{
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-title-color);
    font-family: var(--theme-font-barlow);
}

.news-categories-list{
    padding: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(8 14 28 / .03);
    border: rgba(0, 0, 0, 0.1) solid 1px;
}

.news-categories-list ul li{
    margin-bottom: 10px;
    list-style: none;
}

.news-categories-list ul li a{
    font-size: 16px;
    color: var(--theme-text-color);
    font-family: var(--theme-font-roboto);
}

.news-categories-list ul li a .fa-solid{
    font-size: 14px;
}

.news-categories-list ul li a:hover{
    color: var(--theme-blue-color);
}

.news-article-table{
    padding: 20px;
    padding-bottom: 5px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(8 14 28 / .03);
    border: rgba(0, 0, 0, 0.1) solid 1px;
}

.news-article-table-card{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.news-article-table-card-thumbnail img{
    width: 100px;
    height: auto;
}

.news-article-table-card-content .posted-date{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.news-article-table-card-content .posted-date .fa-solid{
    color: var(--theme-text-color);
    position: relative;
    font-size: 10px;
    top: -2px;
}

.news-article-table-card-content .posted-date span{
    color: var(--theme-text-color);
    font-size: 14px;
    line-height: 14px;
}

.news-article-table-card-content h4{
    line-height: 18px;
}

.news-article-table-card-content h4 a{
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--theme-title-color);
    font-family: var(--theme-font-barlow);
    transition: var(--transition);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    height: 40px;
}

.news-article-table-card-content h4 a:hover{
    color: var(--theme-blue-color);
}

/* ================================================== Services Page */
.page-services .service-card{
    margin: 50px 0;
}

/* ================================================== Services Page */
.page-portfolio .project-card{
    margin-bottom: 30px;
}

/* ================================================== Responsive */
/* Large */
@media (max-width: 1199px){
    

}

/* Medium */
@media (max-width: 991px){


}

/* Small */
@media (max-width: 767px){

    .site-header-navigation{
        display: none;
    }

    .site-header-buttons .contact-btn{
        display: none;
    }

    .site-header-buttons .menu-toggle-btn{
        padding: 12px 15px;
        border-radius: 10px;
        font-size: 16px;
    }

    .aside{
        right: initial;
        left: 0;
        transform: translateX(-100%);
        width: 270px;
        padding: 20px;
        padding-right: 15px;
    }

    .aside-blur-bg{
        right: initial;
        left: 0;
        transform: translateX(-100%);
    }

    .aside-close-btn{
        left: initial;
        top: 15px;
        right: 5px;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 14px;
    }

    .aside-logo{
        margin: 15px 0 15px -5px;
    }

    .aside-logo img{
        width: 150px;
    }

    .aside-information p{
        line-height: 24px;
    }

    .aside-contact-info h4{
        font-size: 20px;
        margin-bottom: 10px;
    }

    .aside-social-links{
        justify-content: flex-start;
        text-align: left;
    }

    .aside-social-links ul li a .fa-brands{
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    /* Banner Section */
    .banner-wrapper{
        min-width: 100%;
        max-width: 100%;
        margin-top: 100px;
    }

    .banner-subtitle{
        font-size: 16px;
    }

    .banner-title{
        font-size: 42px;
        line-height: 48px;
        font-weight: 700;
    }

    .banner-title span{
        font-size: 30px;
        line-height: 42px;
    }

    .banner-description{
        font-size: 16px;
    }

    .banner-link a{
        padding: 15px 20px;
        font-size: 16px;
    }

    /* Section */
    .section-heading{
        margin-bottom: 20px;
    }

    .section-heading-title{
        font-size: 30px;
        line-height: 42px;
    }

    .section-body-btn{
        margin-top: 15px;
    }

    .section-heading-btn-link,
    .section-body-btn-link{
        padding: 15px 20px;
        font-size: 14px;
    }

    /* Welcome Section */
    .welcome{
        padding: 70px 0;
    }

    .welcome-thumbnail{
        width: 100%;
        margin-bottom: 50px;
    }

    /* Services Section */
    .service{
        margin-bottom: 0;
    }

    .service-wrapper{
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .service .section-heading{
        display: block;
    }

    .service .section-heading div:first-child{
        width: 100%;
    }

    .service .section-heading div:last-child{
        display: none;
    }

    .service .section-body{
        margin-top: 0;
        transform: translateY(0);
    }

    #serviceSlider .slide-item{
        padding: 40px 10px;
    }

    #serviceSlider .owl-nav{
        opacity: 1;
    }

    #serviceSlider .owl-nav button.owl-prev{
        left: -15px;
    }

    #serviceSlider .owl-nav button.owl-next{
        right: -15px;
    }

    /* Why Choose Us */
    .why-choose-us{
        padding-top: 70px;
        padding-bottom: 50px;
    }

    .why-choose-us ul.row{
        margin-bottom: 30px;
    }

    .why-choose-us-thumbnail{
        padding-left: 0;
    }

    /* Project Section */
    .project{
        padding: 70px 0 50px;
    }

    #projectSlider .slide-item{
        padding: 15px;
    }

    #projectSlider .owl-nav{
        opacity: 1;
    }

    #projectSlider .owl-nav button.owl-prev{
        left: -15px;
        color: var(--theme-primary-color);
        background: var(--theme-blue-light-color);
    }

    #projectSlider .owl-nav button.owl-next{
        right: -15px;
        color: var(--theme-primary-color);
        background: var(--theme-blue-light-color);
    }

    #projectSlider .owl-nav button.owl-prev:hover,
    #projectSlider .owl-nav button.owl-next:hover{
        background: var(--theme-blue-color);
    }

    /* Achievement Section */
    .achievement{
        padding: 50px 0;
    }

    #achievementSlider .owl-nav{
        opacity: 1;
    }

    #achievementSlider .owl-nav button.owl-prev{
        left: 0;
        color: var(--theme-primary-color);
        background: var(--theme-blue-light-color);
    }

    #achievementSlider .owl-nav button.owl-next{
        right: 0;
        color: var(--theme-primary-color);
        background: var(--theme-blue-light-color);
    }

    /* Process Section */
    .process{
        padding: 70px 0;
    }

    .process .section-heading{
        margin-bottom: 15px;
    }

    .process-card{
        width: 300px;
        height: 300px;
        margin: 0 auto;
        padding: 30px;
    }

    .process-card-counter{
        top: 20px;
        left: 20px;
    }

    .process-card-icon{
        font-size: 48px;
    }

    .process-card-title{
        font-size: 20px;
        margin: 10px 0;
        line-height: 24px;
    }

    .process-card-description{
        font-size: 14px;
        line-height: 24px;
    }

    #processSlider .owl-nav button.owl-prev{
        top: 50%;
        left: -15px;
    }

    #processSlider .owl-nav button.owl-next{
        top: 50%;
        right: -15px;
    }

    /* Testimonial Section */
    .testimonial{
        margin-bottom: 0;
    }

    .testimonial-wrapper{
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .testimonial .section-body{
        margin-top: 0;
        transform: translateY(0);
    }

    #testimonialSlider .slide-item{
        padding: 40px 15px;
    }

    #testimonialSlider .owl-nav{
        opacity: 1;
    }

    #testimonialSlider img{
        margin-top: 0;
        width: 50px;
        height: 50px;
        border-radius: 5px;
        border: 5px inset var(--theme-blue-dark-color);
    }

    .testimonial-card-profile{
        margin-bottom: 15px;
    }

    /* Technology Section */
    .technology{
        padding: 70px 0;
    }

    .technology .section-heading{
        margin-bottom: 30px;
    }

    .technology-card-item{
        width: 30%;
    }

    /* News & Article Section */
    .news-article{
        padding: 70px 0 50px;
    }

    .news-article .section-heading{
        margin-bottom: 30px;
    }

    /* News Letter */
    .newsletter{
        padding-bottom: 50px;
    }

    .newsletter-wrapper{
        display: block;
        text-align: center;
    }

    .newsletter-icon .fa-solid{
        margin-bottom: 30px;
        font-size: 72px;
    }

    .newsletter-title{
        font-size: 30px;
    }

    .newsletter-description{
        margin-bottom: 15px;
    }

    .newsletter-form button{
        padding: 0 25px;
    }

    /* Footer Section */
    .footer-content{
        padding: 70px 0 50px;
    }

    .footer-content-block h4{
        margin-top: 30px;
        margin-bottom: 15px;
    }

    /* Page */
    .page-breadcrumb p{
        font-size: 14px;
        line-height: 14px;
    }

    .page-breadcrumb h1{
        margin-top: 10px;
        line-height: 36px;
        font-size: 30px;
    }

    .page-description h2{
        margin-bottom: 20px;
        padding-bottom: 10px;
        font-size: 36px;
        line-height: 48px;
    }

    .page-description h3{
        padding-left: 20px;
        font-size: 24px;
    }

    .page-description h3::before{
        font-size: 18px;
    }

    .page-description h4{
        margin-bottom: 5px;
        font-size: 18px;
    }

    .page-description li{
        line-height: 30px;
    }

    /* News & Article Page */
    .news-categories-list{
        padding: 15px;
        padding-bottom: 5;
    }

    .news-article-table{
        padding: 15px;
        padding-bottom: 0;
    }

    .news-article-table-card{
        margin-bottom: 15px;
    }

    .news-article-table-card-content h4 a{
        font-size: 16px;
        height: 36px;
    }
}

/* Extra Small*/
@media (max-width: 574px){


}

/* Extra Small*/
@media (max-width: 460px){
    
}