@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary-color: #023363;
    --secondary-color: #ffd700;
    --bg-color: #f1f6fb;
    --white-color: #ffffff;
    --black-color: #000000;
    --footer-bg: #0b6230;
    --heading-font: "DM Sans", sans-serif;
    --transition: all 0.3s ease 0s;
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body,
html {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #636363;
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p {
    margin-top: 0;
    margin-bottom: 10px
}

p:last-child {
    margin-bottom: 0
}

a,
button {
    cursor: pointer;
    transition: var(--transition)
}

a,
body,
button,
html,
p {
    color: #636363;
}

body,
html,
ul {
    margin: 0;
    padding: 0
}
.logo,
.main-btn,
.main-head,
.section-heading-center,
body,
html {
    position: relative
}

.pagination li a,
a,
a:focus,
a:hover,
button {
    text-decoration: none
}

a, button, img, input, textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition)
}

:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
a:focus {
    outline: 0
}
a:hover {
    color: inherit
}
img {
    max-width: 100%;
    height: auto
}
li {
    list-style: disc;
    margin-left: 15px;
    margin-bottom: 5px;
}
.rslides li {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
}
.section-margin {
    margin: 50px 0
}
.margin-top {
    margin-top: 50px
}
.margin-bottom {
    margin-top: 50px
}
.section-padding {
    padding: 50px 0
}
.pad-top {
    padding-top: 50px
}
.pad-bottom {
    padding-bottom: 50px
}
.pad-half-top {
    padding-top: 25px
}
.pad-half-bottom {
    padding-bottom: 25px
}
/*------------------- section heading start ------------------------*/
.section-heading-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column
}
.section-heading-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}
.section-heading {
    margin-bottom: 15px
}
.main-head {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--primary-color);
    font-family: var(--heading-font);
}
.section-heading-center .main-head {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}
.section-heading-center p {
    width: 60%;
}
.section-heading.section-heading-center {
    margin-bottom: 15px
}
/*--------- section heading end ---------*/


/*--------- button start ---------*/
.inline-main-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-btn {
    width: fit-content;
    height: 45px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* ICON */
.main-btn .btn-icon {
    transition: transform 0.3s ease;
}

/* HOVER ANIMATION */
.main-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* RTL FIX */
html[dir="rtl"] .main-btn:hover .btn-icon {
    transform: translateX(-5px);
}
html[dir="rtl"] .main-btn i {
    transform: rotate(180deg);
}

/* BUTTON STYLES */
.btn-1 {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-1:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-2 {
    color: var(--primary-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-2:hover {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-3 {
    color: var(--white-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-3:hover {
    color: var(--primary-color);
    background: var(--white-color);
    border-color: var(--white-color);
}

.btn-white {
    color: var(--primary-color);
    background: var(--white-color);
    border-color: var(--white-color);
}
.btn-white:hover {
    color: var(--white-color);
    background: transparent;
    border-color: var(--white-color);
}

.hover-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    transition: width .3s
}
.hover-link:hover::after {
    width: 0;
    transition: width .3s
}

.bg-color {
    background: var(--bg-color)
}
.primary-color {
    background: var(--primary-color)
}
.secondary-color {
    background: var(--secondary-color)
}
/*--------- button end ---------*/

/*--------------- top header start ----------------*/
.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.language-box .form-select {
    font-size: 12px;
    padding: 0;
    width: 30px;
    border: 0;
    color: #fff;
    border-radius: 0;
    position: relative;
    -moz-appearance: none;
    appearance: none;
    direction: ltr;
    background: url(../images/icon/down-arrow.png) 16px / 16px no-repeat;
}
.language-box .form-select option {
    color: #000000;
}
.header-top-section {
    padding: 5px 0;
    background: var(--primary-color);
}
.header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-social-list-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 10px;
    display: inline-block;
    background: #fff;
}
.header-social-list-icon:hover {
    background: var(--primary-color);
    color: #fff;
}
.header-social-inline {
    display: flex;
    column-gap: 5px;
    align-items: center;
}
.header-social-inline li {
    list-style: none;
    margin: 0;
}
.top-info a {
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-info a:hover {
    color: var(--white-color);
}
/*--------------- top header end ----------------*/

/*---------- banner start ---------*/
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.banner:before {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
    bottom: 0;
    background: linear-gradient(-90deg, rgb(0 0 0 / 0%) 0%, #023363 100%) !important;
    content: "";
    left: 0;
}
.banner .image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.callbacks_tabs {
    display: none;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    z-index: 11;
    width: 100%;
    gap: 5px;
}
.banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.banner-content .container, .banner-content .container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    height: 100%;
    position: relative;
}
.top-text .main-head {
    color: var(--white-color);
    font-size: 50px;
    line-height: 55px;
    width: 60%;
}
.top-text .main-head span {
    font-weight: 400;
    display: block;
}
.top-text {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.top-text p {
    color: var(--white-color);
    width: 60%;
}
.banner-all-btn {
    gap: 10px;
    display: flex;
}
.head-title {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 16px;
}
/*---------- banner end ---------*/


/*---------- Card Owl Start ----------*/
.card-owl-img img {
    width: 100%;
    height: 450px;
    object-fit: contain;
}
.product-icon {
    position: absolute;
    right: 30px;
    background: var(--primary-color);
    border-radius: 6px;
    padding: 15px;
    width: 75px;
    height: 75px;
    top: -45px;
}
html[dir="rtl"] .product-icon {
    left: 30px;
    right: auto;
}
.card-owl-content .main-head {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.card-owl-item {
    width: 100%;
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
}
.card-owl-content {
    padding: 30px;
    position: relative;
}
.service-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.service-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.card-owl-item:hover .service-img img {
    transform: scale(1.1);
}
.shape {
    position: absolute;
    opacity: 1;
}
.service-1 {
    left: 0;
    top: 0;
}
.service-2 {
    right: 0;
    bottom: 0;
}
.card-owl-content p {
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.service-section-grid {
    width: 100%;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}
.service-section-grid .card-owl-item {
    background: var(--bg-color);
}
.card-owl.right-dots .owl-nav .owl-prev span {
    background: url(../images/icon/arrow-left-white.svg) center no-repeat;
}
.card-owl.right-dots .owl-nav .owl-next span {
    background: url(../images/icon/arrow-right-white.svg) center no-repeat;
}
.service-1 img, .service-2 img {
    width: 100%;
    height: 400px;
}

/*---------- Card Owl End ----------*/

/*---------- About Section Start ----------*/
.about-multi-content-img {
    float: left;
    width: 50%;
    padding-right: 30px;
}
.about-short-text {
    width: 50%;
    float: right;
}
.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    border-radius: 6px;
}
.feature-content h2 {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}
.feature-icon img {
    width: auto;
    height: 40px;
}
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.feature-section {
    margin: 30px 0;
}
.about-multi-content-img .about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
}
.about-extra-text h2, .about-extra-text h3 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
}
.about-extra-text h4, .about-extra-text h5 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.about-multi-content li {
    margin-left: 15px;
    list-style-position: inside;
}
/*---------- About Section End ----------*/


/*---------- Testimonial Section Start ----------*/
.testimonial-section-grid {
    width: 100%;
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.left-testimonial-box img {
    border-radius: 6px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.testimonial-section-grid .testimonial-item {
    padding: 25px;
    border-radius: 10px;
    position: relative;
}
.testimonial-owl:before {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 1;
    top: 30px;
    background-image: url(../images/ux.png);
    content: "";
    right: 30px;
    background-repeat: no-repeat;
    background-size: contain;
}
html[dir="rtl"] .testimonial-owl:before {
    right: auto;
    left: 30px;
}
.right-testimonial {
    position: relative;
}
.testimonial-bg-section {
    position: relative;
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.testimonial-auth {
    margin-bottom: 20px;
    border-bottom: 1px solid #023363;
    padding-bottom: 20px;
}
.testimonial-auth h4 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 700;
}
.testimonial-auth p {
    color: var(--primary-color);
}
.testimonial-section-grid .testimonial-auth p {
    color: #000000;
}
.testimonial-section-grid .testimonial-content p {
    color: #000000;
    line-height: 26px;
}
.testimonial-section-grid .testimonial-item {
    margin-top: 0;
    box-shadow: 0 0 6px 0 #ede7e7;
    border-bottom: 4px solid var(--primary-color);
}
.testimonial-section-grid .testimonial-auth h3 {
    color: var(--black-color);
}
.testimonial-section-grid .testimonial-auth {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #d5d5d5;
}
.testimonial-owl.owl-carousel .owl-nav.disabled {
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    width: 100%;
    top: auto;
    left: 0;
    right: auto;
    transform: translate(0, 0px);
    bottom: 0;
    margin-top: 30px;
}
.testimonial-owl.right-dots .owl-nav .owl-prev {
    left: 0;
    position: relative;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
}
.testimonial-owl.right-dots .owl-nav .owl-next {
    right: 0;
    position: relative;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
}

html[dir="rtl"] .testimonial-owl.owl-carousel .owl-nav.disabled {
    gap: 0;
}
html[dir="rtl"] .testimonial-owl.right-dots .owl-nav .owl-prev {
    left: -40px;
}
html[dir="rtl"] .testimonial-owl.right-dots .owl-nav .owl-next {
    right: -30px;
}

.testimonial-owl.right-dots .owl-nav .owl-prev span {
    width: 16px;
    height: 16px;
    background: url(../images/icon/arrow-left-white.svg) center no-repeat;
}
.testimonial-owl.right-dots .owl-nav .owl-next span {
    width: 16px;
    height: 16px;
    background: url(../images/icon/arrow-right-white.svg) center no-repeat;
}
.testimonial-owl {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 6px;
}
/*---------- Testimonial Section End ----------*/


/*---------- Why Choose Us Section Start ----------*/
.why-choose-grid {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 15px;
}
.why-choose-content {
    position: absolute;
    bottom: 30px;
    width: 100%;
}
.why-choose-section:before {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
    bottom: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, #023363 100%) !important;
    content: "";
    left: 0;
}
.why-choose-section {
    padding: 30px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.why-choose-icon {
    width: 24px;
    height: 24px;
    line-height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-choose-item {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
}
.why-choose-icon img {
    height: 16px;
}
.why-choose-text h4 {
    font-size: 16px;
    color: var(--primary-color);
}

/*---------- Why Choose Us Section End ----------*/




/*---------- CTA Section Start ----------*/
.cta-section {
    background: var(--primary-color);
    padding: 50px;
}
.cta-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cta-section .main-head {
    color: #ffffff;
    margin-bottom: 10px;
}
.cta-section .left-text {
    width: 50%;
}
.cta-section:before {
    position: absolute;
    width: 100%;
    height: 500px;
    opacity: 1;
    top: -170px;
    background-image: url(../images/cta-shape.png);
    content: "";
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/*---------- CTA Section End ----------*/


/*---------- Partner Section Start ----------*/
.partner-item {
    background: #fff;
    box-shadow: 0 0 6px #e3e3e3;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
    border-radius: 6px;
    height: 75px;
}
.partner-item img {
    width: auto;
    object-fit: contain;
    height: 40px;
}
.partner-owl.owl-carousel {
    margin-left: 0;
    margin-right: 0;
}
/*---------- Partner Section End ----------*/


/*---------- Footer Section Start ----------*/
.footer-section {
    position: relative;
    background: var(--primary-color);
}
.item-space {
    padding-left: 40px;
}
html[dir="rtl"] .item-space {
    padding-right: 40px;
    padding-left: initial;
}
.footer-social-inline li {
    list-style: none;
    margin: 0;
}
.margin-left {
    margin-left: -25px;
}
.business-hours h4 {
    margin-top: 0;
    margin-bottom: 8px;
}
.footer-widget h4 {
    font-size: 15px;
    line-height: 20px;
    color: #fff;
    margin-top: 15px;
    font-family: var(--heading-font);
}
.footer-widget-menu li {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
}
.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}
.footer-item, .footer-bottom {
    z-index: 1;
}
.footer-title {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    font-family: var(--heading-font);
}
.footer-bottom p, .footer-widget a, .footer-widget p {
    color: #fff;
    margin-bottom: 0;
}
.footer-social-inline {
    display: flex;
    align-items: center;
    column-gap: 6px;
    margin-top: 10px;
}
.footer-social-list-icon {
    margin-bottom: 0 !important;
}
.footer-widget a {
    width: fit-content;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
.footer-widget a:hover {
    color: var(--white-color);
}
.footer-social-list-icon i {
    width: 25px;
    height: 25px;
    border: 1px solid #fff;
    background: #fff;
    color: var(--primary-color);
    line-height: 25px;
    text-align: center;
    margin: 0;
    border-radius: 50%;
    font-size: 12px;
    display: inline-block;
    transition: var(--transition);
}
.footer-social-list-icon:hover i {
    background: var(--primary-color);
    color: var(--white-color);
}
.contact-info i {
    font-size: 12px;
    width: 24px;
    height: 24px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-bottom {
    padding: 15px 0;
    margin-top: 40px;
    position: relative;
    background: #022c55;
}
/*---------- Footer Section End ----------*/


/*---------- Breadcrumb Section Start ----------*/
.breadcrumb-area {
    width: 100%;
    height: 70px;
    position: relative;
    background: var(--bg-color);
}
.breadcrumb-area .breadcrumb-heading {
    color: var(--secondary-color);
    position: relative;
    font-weight: 700;
    font-size: 26px;
}
.breadcrumb-list ul {
    display: flex;
    background: var(--primary-color);
    width: fit-content;
    padding: 8px 20px;
    border-radius: 30px;
    transition: var(--transition);
}
.breadcrumb-list a, .breadcrumb-list li {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    letter-spacing: 0;
    margin-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.breadcrumb-list li:last-child {
    margin-right: 0;
}
.breadcrumb-list li:after {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.breadcrumb-list li:last-child:after {
    display: none;
}
.breadcrumb-area .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
/*---------- Breadcrumb Section End ----------*/



/*---------- Service Details Page Start ----------*/
.main-service-img img {
    margin-bottom: 20px;
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.sidebar-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.sidebar-service-item.active {
    color: var(--primary-color);
    background: #ffffff;
}
.sidebar-service-item.active h4 {
    color: var(--primary-color);
}
.sidebar-service-item.active .nav-arrow {
    color: var(--primary-color);
}

.sidebar-service-item:hover {
    color: var(--primary-color);
    background: #ffffff;
}
.sidebar-service-item:hover h4 {
    color: var(--primary-color);
}
.sidebar-service-item:hover .nav-arrow {
    color: var(--primary-color);
}


.sidebar-service-item {
    width: 100%;
}
.sidebar-service-item .nav-arrow {
    color: var(--white-color);
    font-size: 16px;
}
.sidebar-service-item h4 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #ffffff;
    width: 80%;
}
.sticky-sidebar {
    position: sticky;
    top: 80px;
}
.service-details-area .main-head {
    margin-bottom: 10px;
    margin-top: 0;
}
.service-details-area h2, .service-details-area h3{
    margin-top: 10px;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px;
    font-weight: 700;
}
.service-details-area h4, .service-details-area h5, .service-details-area h6{
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}
.service-details-area ul {
    margin-bottom: 10px;
}
.service-details-area ul li {
    list-style: inside;
    margin-bottom: 5px;
}
.sidebar-heading {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
    color: var(--primary-color);
}
.service-details-content img {
    float: right;
    width: 50%;
    border-radius: 8px;
    margin-left: 20px;
}
.sub-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.details-img-section p {
    float: left;
    width: 50%;
}
.details-img-section img {
    float: right;
    width: 45%;
    object-fit: cover;
    margin-left: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
}
.sidebar-service-section {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
}
/*---------- Service Details Page End ----------*/


/*---------- Project Details Page Start ----------*/
.check-list li {
    list-style: disc;
    margin-bottom: 5px;
    position: relative;
    margin-left: 16px;
}
.project-details-left-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 10px;
}
.project-details-right-img img {
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
}
.project-details-right-img {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar-project-item {
    display: flex;
    column-gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.sidebar-project-img {
    width: 25%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.sidebar-project-img img {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    transition: var(--transition);
    object-fit: cover;
}
.sidebar-project-content {
    width: 70%;
}
.sidebar-project-content h4 {
    font-size: 16px;
    font-weight: 700;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    height: 1.3em;
    white-space: nowrap;
}
.sidebar-project-content a {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    display: block;
    width: fit-content;
    margin-top: 4px;
}
.sidebar-project-content p {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0;
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.project-details-content h2, .project-details-content h3 {
    margin-top: 10px;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px;
    font-weight: 700;
}
.project-details-content h4, .project-details-content h5, .project-details-content h6 {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}
.project-details-content ul {
    margin-bottom: 12px;
}


/*---------- Project Details Page End ----------*/


/*--------- gallery start ------------*/
.product-details-media {
    display: flex;
    gap: 15px;
}

/* ===== DESKTOP ===== */
.product__media--nav {
    width: 110px;
    height: 450px;
    position: relative;
    padding: 35px 0;
}

.product__media--preview {
    flex: 1;
    height: 450px;
}

.product__media--preview .swiper-slide {
    height: 100%;
}

.product__media--preview img {
    width: 100%;
    height: 435px;
    object-fit: cover;
    border-radius: 10px;
}

.product__media--nav__items--img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
}

/* Desktop Arrow Position */
.thumb-prev {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.thumb-next {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

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

    .product-details-media {
        flex-direction: column;
    }

    .product__media--nav {
        width: 100%;
        height: auto;
        padding: 0 40px;
        margin-top: 15px;
    }

    .product__media--preview {
        height: 300px;
    }

    /* Reset arrow */
    .thumb-prev,
    .thumb-next {
        transform: none;
        top: 50%;
        bottom: auto;
    }

    .thumb-prev {
        left: 0;
    }

    .thumb-next {
        right: 0;
        left: auto;
    }
}

/* FIX: Mobile preview height issue */
@media (max-width: 767px) {
    .product-details-media .swiper-button-prev {
        right: auto;
        left: 0 !important;
        margin-top: 30px !important;
    }
    .product-details-media .swiper-button-next {
        right: 0!important;
        left: auto!important;
        margin-bottom: 10px !important;
    }

    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: 0;
        left: auto;
        bottom: 20px;
    }
    .product__media--preview {
        width: 100%;
        height: 300px !important;   /* 👈 force height */
        display: block;
    }

    .product__media--preview .swiper-wrapper,
    .product__media--preview .swiper-slide {
        height: 100% !important;
    }

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

}

.product-details-media .swiper-button-next, .product-details-media .swiper-button-prev {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #ffffff;
}
.product-details-media .swiper-button-next {
    top: auto;
}
.product-details-media .swiper-button-prev {
    top: auto;
    right: auto;
    left: 50%;
}
.product-details-media .swiper-button-next:after, .product-details-media .swiper-button-prev:after {
    font-size: 16px;
}
.product-details-media .swiper-button-prev {
    right: auto;
    left: 50%;
    margin-top: 0;
}
.product-details-media .swiper-button-next {
    top: auto;
    right: auto;
    left: 50%;
    margin-bottom: 15px;
}
.product-details-media .swiper-button-next.swiper-button-disabled, .product-details-media .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}

/*--------- gallery end ------------*/


/*---------- Contact Page Start ----------*/
.contact-box-inline {
    display: grid;
    width: 100%;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.contact-form {
    border-radius: 10px;
    background: var(--secondary-color);
    padding: 25px;
}
.contact-form .form-group {
    margin-bottom: 10px;
}
.contact-form label {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
}
.contact-form .form-control {
    font-size: 14px;
    border: 1px solid #ece9e3;
    height: 45px;
    border-radius: 10px;
    padding: 5px 10px;
    background: #fff;
}
.form-control:focus,.form-select:focus {
    outline: 0;
    box-shadow: 0 0 0 0 rgba(13, 110, 253, .25);
}
.contact-form .form-select {
    font-size: 14px;
    border: 1px solid #ece9e3;
    height: 45px;
    border-radius: 10px;
    padding: 5px 10px;
}
.contact-form textarea.form-control {
    height: 100px;
    padding: 10px 10px;
}
.container-info {
    display: grid;
    width: 100%;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.contact-info-items {
    border: 1px solid #27ae60;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(174, 181, 206, .09);
    position: relative;
    gap: 15px;
    margin-bottom: 0;
    border-radius: 10px;
    background: var(--bg-color);
}
.container-info .contact-info-icon i {
    font-size: 30px;
    background: var(--secondary-color);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}
.contact-info-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}
.contact-info-content a, .contact-info-content p {
    display: inline-block;
}
.contact-social-link {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 0;
    width: max-content;
}
.contact-social-link li {
    font-size: 20px;
    font-weight: 600;
    list-style: none;
    margin: 0;
    color: var(--primary-color);
}
.contact-social-icon i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #ffffff;
    line-height: 40px;
    text-align: center;
    margin: 0 !important;
    border-radius: 50%;
    position: relative;
    font-size: 16px;
    display: inline-block;
    transition: var(--transition);
}
.contact-social-icon i:hover {
    color: #fff;
    background: var(--secondary-color);
}
.map iframe {
    width: 100%;
    height: 400px;
    margin-bottom: -15px;
}
.container-info-img img {
    width: 100%;
    height: 544px;
    object-fit: cover;
    border-radius: 10px;
}
/*---------- Contact Page End ----------*/

/*---------- Page Start ----------*/
.pages h2, .pages h3 {
    margin-top: 10px;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px;
    font-weight: 700;
}
.pages h4, .pages h5, .pages h6 {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
#preloader img {
    width: 200px;
    height: auto;
}
/*---------- Page End ----------*/


/*--------------------------------------------
        blog page start
--------------------------------------------*/
.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    border-radius: 4px;
    padding: 5px 10px;
    font-weight: 500;
    color: #fff;
}
.blog-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 35px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}
.event-date span {
    color: #fff;
    font-size: 46px;
    line-height: 40px;
    font-weight: 600;
    display: block;
}
.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border: 2px solid #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}
.blog-item .blog-img {
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}
.auth-area img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}
.blog-item {
    box-shadow: 0 0 4px 3px #00000008;
    border-radius: 10px;
}
.blog-content {
    background: #fff;
    position: relative;
    padding: 20px;
    height: auto;
    border-radius: 0 0 10px 10px;
}
.blog-content h4 {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.auth-area {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.blog-content p {
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    font-size: 14px;
    line-height: 20px;
}
.blog-link {
    text-transform: capitalize;
    font-weight: 500;
    color: var(--primary-color);
}
.blog-link:hover {
    color: var(--secondary-color);
}
.sidebar-blog-content .blog-date {
    margin-top: 2px;
    margin-bottom: 2px;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    padding: 0;
    font-size: 14px;
    text-transform: capitalize;
    background: var(--bg-color);
    color: #000000;
    font-weight: 500;
}
.sidebar-blog-content .blog-date i {
    color: #1ca337;
}
.blog-details-page .sidebar-blog-img img {
    height: 80px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.blog-details-page .sidebar-blog-img {
    width: 25%;
}
.blog-details-page .sidebar-blog-content {
    width: 75%;
}
.inner-service-section {
    display: grid;
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}
.sub-head {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.event-time-location {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 16px;
}
.inner-text h4 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
.inner-text {
    margin-top: 30px;
}
.inner-text p {
    margin-bottom: 15px;
}
.inner-service-content-area .main-head {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 10px;
}
.blog-box {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}
.blog-box p {
    margin: 0;
    font-weight: 500;
}
.blog-box img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 3px;
}
.blog-category {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--bg-color);
    padding: 2px 15px;
    border-radius: 4px;
    font-weight: 500;
}
.blog-category-list {
    padding: 20px;
    border-radius: 15px;
    border: 0;
    background: var(--secondary-color);
}
.blog-category-list li {
    border-bottom: 1px solid #86b79b;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
    list-style: none;
    margin-left: 0;
}
.blog-category-list li:last-child {
    border-bottom: 0 solid var(--black-color);
    padding-bottom: 0;
    margin-bottom: 0;
}
.blog-category-list li a {
    color: #ffffff;
}
.blog-category-list li:hover a {
    color: #ffffff;
}
.blog-category-list li:hover:after {
    color: #ffffff;
}
.blog-category-list li:after {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    top: 0;
    right: 0;
    position: absolute;
    color: #ffffff;
}
.blog-category-list.blog-tag li {
    border: 0;
    margin: 0;
    padding: 0;
}
.blog-category-list.blog-tag li:after {
    display: none;
}
.blog-category-list.blog-tag li a {
    background:#13763d;
    padding: 5px 10px;
    border-radius: 6px;
    display: block;
    color: #fff;
    text-transform: capitalize;
}
.blog-category-list.blog-tag li a:hover {
    background: #13763d;
    color: #fff;
}
.blog-category-list.blog-tag ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.blog-category-list.blog-tag {
    margin-top: 30px;
}
.sidebar-blog-section {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 10px;
}
.blog-details-area .main-head {
    margin-bottom: 10px;
    margin-top: 0;
}
.blog-details-area ul {
    margin-bottom: 10px;
}
.blog-details-area ul li {
    list-style: inside;
    margin-bottom: 5px;
}
.main-blog-img img {
    margin-bottom: 20px;
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.sidebar-blog-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #d9dfe5;
}
.sidebar-blog-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0 solid #ffffff;
}
.sidebar-blog-item {
    width: 100%;
}
.sidebar-blog-item .nav-arrow {
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: var(--primary-color);
}
.sidebar-blog-item h4 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    width: 100%;
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.sidebar-blog-content .hover-link {
    font-weight: 500;
    display: block;
    width: fit-content;
}
.blog-details-content h2, .blog-details-content h3 {
    margin-top: 10px;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px;
    font-weight: 700;
}
.blog-details-content h4, .blog-details-content h5, .blog-details-content h6 {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}
/*--------------------------------------------
        blog page end
--------------------------------------------*/

.cta-section-sidebar .left-text {
    margin-bottom: 15px;
}
.cta-section-sidebar .main-head {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
}
.cta-section-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    height: 300px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}
.cta-section-sidebar:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0.3;
}
/*---------------- Feature Section Start ---------------*/
.calculate-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    position: relative;
    z-index: 1;
    gap: 30px;
    padding-left: 50px;
}
.item-icon {
    background: var(--secondary-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.item-icon img {
    height: 55px;
}
.calculate-item {
    background: var(--primary-color);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
    flex-direction: column;
}
.calculate-item .main-head {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin-top: 10px;
}

/*---------------- Feature Section End ---------------*/