* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

:root {
    --primary: #4c96d7;
    --secondary: #083b66;
    --third: #bb8f65;
}

body {
    font-family: "Poppins", sans-serif;
    color: #666;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    transition: .4s ease;
}

p,
li,
a {
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: .1px;
    transition: .4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
    font-family: "Arimo", sans-serif;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--primary);
    transition: .4s ease;
    margin-bottom: .8rem;
}

a {
    color: inherit;
}

li {
    list-style: none;
}

p {
    line-height: 1.7;
}

ul,
ol,
dl {
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) and (max-width: 1399.98px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1240px;
    }

    html {
        font-size: 15px;
    }

}

/* ===================================== */

.navbar {
    padding: 5px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 70px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: #333;
    padding: 0.8rem 1rem;
}

.nav-link:hover {
    color: var(--primary);
}

.navbar-expand-lg .navbar-nav li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    padding: 0;
    border: 0;
    min-width: 285px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu li a {
    border-bottom: 1px solid #ddd;
    padding: .5rem .8rem;
}






.quote-btn {
    background: var(--secondary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    align-items: center;
    gap: 0.2rem;
    font-size: 15px;
    transition: .4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* border: 2px solid var(--secondary); */
}

.quote-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary);
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.quote-btn:hover::before {
    width: 300px;
    height: 300px;
}

.quote-btn:hover {
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.quote-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.quote-btn:hover::after {
    transform: translateX(100%);
}

.arrow-icon {
    transform: rotate(45deg);
    font-size: 1rem;
    transition: transform 0.4s ease;
}

.quote-btn:hover .arrow-icon {
    transform: rotate(45deg) translate(3px, -3px);
}

/* ======== Banner css ========= */


.banner-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner-slide {
    position: relative;
    height: 100vh !important;
    background-size: cover;
    background-position: center;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-text {
    min-height: 380px;
    max-width: 650px;
    padding: 5rem 2.5rem;
    background: #4c96d7a3;
    /* backdrop-filter: blur(10px); */
    /* border-radius: 10px; */
    /* border-left: 4px solid var(--primary); */
}

.banner-text h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    overflow: hidden;
    text-transform: uppercase;
}

.banner-text h3 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px);
}

.banner-text h3 .word.animate {
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.banner-text p.animate {
    animation: fadeInUpcustome 0.8s ease 0.4s forwards;
}

@keyframes fadeInUpcustome {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: .7em 1.2rem;
    background: transparent;
    color: white;
    border-radius: 50px;
    /* font-weight: 500; */
    transition: .4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    border: 2px solid white;
}

.banner-btn.animate {
    animation: fadeInUpcustome 0.8s ease 0.6s forwards;
}

.banner-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.banner-btn:hover::before {
    width: 400px;
    height: 400px;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(23, 131, 167, 0.4);
    color: white;
}

.banner-btn i {
    transition: transform 0.4s ease;
}

.banner-btn:hover i {
    transform: translateX(5px);
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .4s ease;
}

.slick-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(23, 131, 167, 0.5);
}

.slick-arrow::before {
    font-family: 'bootstrap-icons';
    font-size: 1.2rem;
    color: white;
    opacity: 1;
}

.slick-prev {
    left: 50px;
}

.slick-prev::before {
    content: '\F284';
}

.slick-next {
    right: 50px;
}

.slick-next::before {
    content: '\F285';
}

.slick-dots {
    bottom: 40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--primary);
    opacity: 1;
}

@media (max-width: 768px) {
    .banner-text h3 {
        font-size: 2.5rem;
    }

    .banner-text {
        padding: 2rem;
    }

    .slick-arrow {
        width: 35px;
        height: 35px;
    }

    .slick-prev {
        left: 20px;
    }

    .slick-next {
        right: 20px;
    }
}

.img-hover {
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
}

.img-hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    z-index: 2;
}

.img-hover:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.img-hover img {
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-hover:hover img {
    transform: scale(1.05);
}


section {
    position: relative;
    overflow-x: clip;
}

.padding {
    padding: 4rem 0;
}

.subtitle {
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 2px solid;
    display: inline-block;
    margin: 0 0 .8rem;
}

.web-title {
    line-height: 1.4;
    font-family: "Arimo", sans-serif;
    font-weight: 700;
    /* letter-spacing: .8px; */
    text-transform: uppercase;
    color: var(--primary);
    font-size: 2.2rem;
}

.web-title .word {
    /* display: inline-block; */
    overflow: hidden;
    vertical-align: top;
}

.web-title .word .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.about-tag-contet {
    border-left: 2px solid var(--primary);
    padding-left: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-left {
    width: 90%;
    margin: auto;
}

.product-sec:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 400px;
    background: var(--primary);
    top: 0;
}

.product-sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.product-sec .nav-tabs .nav-link {
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 6px 20px;
    color: white;
    font-weight: 400;
    background: transparent;
    transition: .4s ease;
    position: relative;
    overflow: hidden;
}

.product-sec .nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.product-sec .nav-tabs .nav-link:hover::before {
    width: 300px;
    height: 300px;
}

.product-sec .nav-tabs .nav-link:hover {
    color: #333 !IMPORTANT;
    border-color: white !IMPORTANT;
}

.product-sec .nav-tabs .nav-link.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.subcategory-box {
    /* background: white; */
    /* border-radius: 10px; */
    /* padding: 2rem 1.5rem; */
    /* margin-bottom: 2rem; */
    /* border: 2px solid #e0e0e0; */
    transition: .4s ease;
    position: relative;
    overflow: hidden;
    /* height: 300px; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: space-between; */
}

.subcat-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000000d1, transparent);
    transition: height 0.4s ease;
    z-index: 1;
    /* opacity: .4; */
}

.subcat-content:hover::before {
    height: 100%;
}

.subcategory-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(23, 131, 167, 0.2);
}

.subcat-content {
    position: relative;
    z-index: 9;
    transition: .4s ease;
    height: 300px;
}

.subcategory-box h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.7rem;
    transition: .4s ease;
}

.subcategory-box p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    transition: .4s ease;
}

.subcategory-box:hover h5,
.subcategory-box:hover p {
    color: white;
}

.view-products {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(10px);
    transition: .4s ease;
    position: relative;
    z-index: 1;
}

.subcategory-box:hover .view-products {
    opacity: 1;
    transform: translateY(0);
    color: white;
}

.view-products i {
    transition: transform 0.3s ease;
}

.subcategory-box:hover .view-products i {
    transform: translateX(5px);
}

.subcat-content-img {
    width: 100%;
    height: 100%;
}

.subcat-content-text {
    position: absolute;
    bottom: 0;
    padding: 0 20px 20px;
    width: 100%;
    z-index: 999;
}

.subcat-content:after {
    position: absolute;
    content: "";
    width: 95%;
    height: 95%;
    background: transparent;
    top: 50%;
    left: 50%;
    border: 2px solid #ffffff;
    padding: 10px;
    transform: translate(-50%, -50%);
    z-index: 9;
    opacity: 0;
    transition: .4s ease;
}

.subcat-content:hover:after {
    opacity: 1;
}

.service-box {
    background: white;
    /* border-radius: 10px; */
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: .4s ease;
    /* margin-bottom: 2rem; */
    /* height: 100%; */
    /* display: flex; */
    /* flex-direction: column; */
    border: 1px solid #ddd;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(23, 131, 167, 0.15);
}

.service-img {
    position: relative;
    height: 250px;
    overflow: visible;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    position: absolute;
    bottom: -30px;
    left: 70px;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: .4s ease;
    padding: 10px;
}

.service-box:hover .service-icon {
    transform: translateX(-50%) scale(1.1) rotateY(360deg);
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-content {
    padding: 3rem 2rem 2rem;
    /* text-align: center; */
    flex-grow: 1;
    /* display: flex; */
    flex-direction: column;
}

.service-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    /* margin-bottom: 1rem; */
    transition: .4s ease;
}

.service-box:hover .service-content h4 {
    color: var(--primary);
}

.service-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--third);
    font-weight: 500;
    font-size: 0.95rem;
    transition: .4s ease;
    text-decoration: none;
}

.read-more:hover {
    color: var(--primary);
    gap: 0.8rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.bg-color {
    background-color: #f5fbf7;
}












.mission-box {
    text-align: center;
    border: 2px solid #cee3eb;
    padding: 2rem;
    height: 100%;
    border-right: 0;
    transition: .4s ease;
}

.mision-sec .col-lg-3 {
    padding: 0;
}

.mission-box img {
    margin: 0 0 1rem;
    transition: .4s ease;
}

.mission-box:hover {
    background: var(--secondary);
    transform: scale(1.1);
    border-color: var(--secondary);
    color: white;
}

.mission-box:hover img {
    filter: brightness(100);
}

.mission-box p {
    margin: 0;
    font-size: .9rem;
}

.testimonials-sec {
    background-color: var(--primary);
}


.testimonial-box {
    background: white;
    padding: 2rem;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    width: 95%;
    margin: auto;
}

.test-content {
    width: 75%;
}

.test-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.test-icon img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.test-icon i {
    position: relative;
    bottom: 25px;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    border-radius: 100%;
    font-size: 1.4rem;
}

.test-content h6 {
    margin: .5rem 0;
}

.test-content span {
    font-weight: 500;
}

.testimonial-slider .slick-dots {
    bottom: -45px !important;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--third);
    opacity: 1;
}

.blog-img {
    width: 100%;
    height: 300px;
}

.blog-box {
    position: relative;
    width: 95%;
    margin: auto;
}

.blog-text {
    background: var(--secondary);
    width: 90%;
    margin-left: auto;
    padding: 2rem;
    color: white;
    border-bottom: 4px solid var(--third);
    margin-top: -85px;
    position: relative;
    z-index: 9;
    transition: .4s ease;
}

.blog-text h5 {
    text-transform: capitalize;
    font-size: 1.4rem;
    margin: .5rem 0;
}

.blog-box:hover img {
    transform: scale(1.2);
}

.blog-box:hover .blog-text {
    background: var(--primary);
    color: white;
    margin-top: -95px;
}

.blog-box:hover .blog-text h5 {
    color: white;
}



.footer {
    padding: 4rem 0 0;
    background: var(--primary);
    color: white;
}

.footer-logo img {
    width: 135px;
    margin: 0 0 1rem;
}

.footer h4 {
    color: var(--secondary);
    margin: 0 0 1rem;
    font-size: 1.3rem;
}

ul.footer-links li a {
    width: 100%;
    display: inline-block;
    margin: 0 0 .7rem;
}

.footer-form form {
    display: flex;
    align-items: center;
    width: 90%;
    border: 1px solid;
    margin: 1.5rem 0 0;
}

.footer-form form input[type="email"] {
    width: 90%;
    padding: 10px 12px;
    background: transparent;
    border: 0;
    color: white;
    outline: none;
}

.footer-form form input[type="email"]::placeholder {
    color: white;
}

.footer-form form input[type="submit"] {
    padding: 10px;
    border: 2px solid var(--secondary);
    background: var(--secondary);
    color: white;
    width: auto;
}

.footer-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
}

.footer-gallery a {
    width: 30%;
    margin: 0 0 .7rem;
}

.footer-gallery a img {
    width: 100%;
    height: 55px;
    object-fit: cover;
}

ul.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 .7rem;
}

ul.footer-contact li i {
    color: var(--secondary);
    font-size: 1.4rem;
}

.footer-social {
    margin: 1rem 0 0;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-content: center;
    border: 1px solid #fff;
    border-radius: 100%;
    font-size: 1rem;
    margin: 0 2px;
}

.footer-copyright {
    background: var(--secondary);
    text-align: center;
    padding: 1rem 0;
    margin: 3rem 0 0;
}


.filter-buttons {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border: none;
}

ul#portfolioTabs .filter-btn {
    padding: 0.7rem 1.8rem;
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: .4s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 0;
    margin-right: 2px;
}


.filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    z-index: 1;
    position: relative;
}

ul#portfolioTabs .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    z-index: 1;
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23, 131, 167, 0.95), rgba(112, 191, 139, 0.95));
    opacity: 0;
    transition: .4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: .5;
}


.plus-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: .4s ease;
    transform: rotate(0deg);
    z-index: 2;
}

.portfolio-item:hover .plus-icon {
    background: white;
    color: var(--primary);
    transform: rotate(90deg);
}


.tab-pane {
    animation: fadeInNew 0.5s ease;
}

@keyframes fadeInNew {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* ============= */

.inner-section {
    position: relative;
    padding: 12rem 0 5rem;
    background-size: cover;
    z-index: 9;
}

.inner-content {
    /* text-align: center; */
    width: 75%;
    /* margin: auto; */
    position: relative;
    /* background: #ffffff36; */
    padding: 3rem 2rem;
    z-index: 9;
    border-radius: 10px;
}

.inner-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    font-family:
        "Arimo", sans-serif;
    text-transform: uppercase;
    margin: 0 0 .5rem;
}

nav.breadcrumb ul {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 10px;
    color: white;
    text-transform: capitalize;
    background: #ffffff42;
    padding: 11px;
}

.inner-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #00000096;
    top: 0;
    left: 0;
    background-size: cover;
    /* opacity: 0; */
    z-index: -1;
}

/* ======= Contact Page Css ========= */

.contact-pg .contact-info a {
    color: var(--third);
    font-weight: 500;
    font-size: 1.3rem;
}

.contact-pg .contact-info h5 {
    color: var(--secondary);
}

.contact-pg-form {
    background-image: url(https://form.ancorathemes.com/wp-content/uploads/2025/09/background-04-copyright.jpg);
    background-size: cover;
    position: relative;
    z-index: 9;
}

.contact-pg-form:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to right, black, #00000073);
    z-index: -1;
}

.contact-text li {
    margin: 0 0 .7rem;
    font-weight: 500;
    font-size: 1.2rem;
    font-style: italic;
    border-bottom: 1px solid #cdcdcd38;
    padding: 0 0 .7rem;
}



.form-box {
    background: var(--primary);
    padding: 2rem;
    border-radius: 20px;
}

.form-box.form-control,
.form-box input,
.form-box textarea,
.form-box select {
    margin: 0 0 1rem;
    padding: 7px 15px;
    min-height: auto !important;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 6px;
    line-height: 1;
    color: #444444;
}

textarea {
    height: 110px;
}

.form-box h5 {
    color: white;
    margin: 0 0 1rem;
    font-size: 1.6rem;
}

.form-box input[type="submit"] {
    background: var(--secondary);
    color: white;
    border: 0;
    padding: 15px 30px;
    font-weight: 500;
    border-radius: 10px;
    width: auto;
}


/* Service detail  */

.service-detail-sec {
    background: #f8f9fa;
}


.service-content-detail {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-content-detail ul,
.service-content-detail ol {
    margin: 1rem 0;
}

.service-content-detail li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    border-bottom: 1px solid #e9ecef;
}

.service-content-detail li:last-child {
    border-bottom: none;
}

.service-content-detail li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.2rem;
}

.service-content-detail h4,
.service-content-detail h5,
.service-content-detail h6 {
    color: var(--secondary);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.related-service {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    transition: .3s ease;
}

.related-service:last-child {
    border-bottom: none;
}

.related-service:hover {
    padding-left: 10px;
}

.related-service a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
    transition: .3s ease;
}

.related-service:hover a {
    color: var(--primary);
}

.related-service i {
    font-size: 1.2rem;
    color: var(--primary);
}

/* Form */
.service-form .form-control , .service-form .form-select {
    padding: 0.4rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    transition: .3s ease;
    font-size: 14px;
    color: #707275;
}

.service-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(23, 131, 167, 0.1);
}

.service-form textarea.form-control {
    min-height: 100px;
}

.service-form .submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: .4s ease;
    position: relative;
    overflow: hidden;
}

.service-form .submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.service-form .submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.service-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(23, 131, 167, 0.3);
}

/* ============ Blog Detail =========== */

.blog-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.blog-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}


.blog-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--third);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

.blog-content ul {
    margin: 1.5rem 0;
}

.blog-content ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.blog-content ul li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--secondary);
}


.recent-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h6 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-post-content h6 a {
    color: #333;
    transition: .3s ease;
}

.recent-post-content h6 a:hover {
    color: var(--primary);
}

.recent-post-date {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}


/* =============== product Pages Css  ==================== */

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: .4s ease;
    position: relative;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(23, 131, 167, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 235px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-name a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    /* margin-bottom: 0.8rem; */
    /* line-height: 1.4; */
}

.product-name a:hover {
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: .4rem;
}

.stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.85rem;
    color: #999;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.old-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.6rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: .4s ease;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 131, 167, 0.3);
}

/* ================ product detail css ====================== */

.product-breadcrum {
    background: #f8f8f8;
    padding: 10px;
    margin: 0 0 2rem;
}

.product-gallery .product-gallery-main {
    width: 100%;
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
}

.product-gallery .product-gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.product-gallery-thumbs img {
    height: 75px;
    width: 95%;
    object-fit: cover;
    border: 2px solid #eee;
    margin: auto;
    cursor: pointer;
    padding: 5px;
}

form label , .form-label {
    text-transform: capitalize;
    font-size: 14px;
    margin-bottom: 5px;
}

.related-products-slider .product-card {
    width: 95%;
    margin: auto;
}

.product-gallery-thumbs .slick-current img {
    border-color: var(--primary);
}

/* Featured Section Styles */

.featured-section {
    background: var(--primary);
    color: white;
    background: url(../imgs/parttern-1.png);
    background-size: cover;
}


.featured-img img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 350px;
    width: 90%;
    object-fit: cover;
    margin: auto;
}


.featured-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.featured-pg .featured-content h3 {
    color: var(--third);
}

.featured-slider .slide-item .row {
    width: 95%;
    margin: auto;
}

.featured-pg .col-lg-12:nth-child(even) .row {
    flex-direction: row-reverse;
}

.featured-pg .col-lg-12 .row {
    margin-bottom: 3rem;
}

.featured-pg .col-lg-12:last-child .row {
    margin-bottom: 0;
}

.featured-pg .col-lg-12:nth-child(even) .row .featured-img {
    text-align: right;
}

/* Virtual Tour Gallery */
.virtual-gallery {
    background-color: #f8f9fa;
}

.virtual-gallery .img-fluid {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: rgb(0 0 0 / 25%) 0px 3px 8px;
}

.virtual-gallery a:hover .img-fluid {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.virtual-gallery a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0.375rem;
}

.virtual-gallery a:hover .play-icon {
    opacity: 1;
}

