* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}

:root {
    --primary: #b9232e;
    --secondary: #56353e;
}

html,
body {
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

/* This is the whatsapp section */
/* whatsapp */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .1s all ease-in-out;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 .75rem #18d26e;
    background-color: #18d26e;
    text-decoration: none;
}

.whatsapp:hover {
    background-color: white;
    color: #18d26e;
}

.call {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    transition: .1s all ease-in-out;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    background-color: #222222;
    box-shadow: 0 0 .5rem #eee;
    text-decoration: none;
}

.call:hover {
    background-color: white;
    color: #222222;
}

/* End whatsapp section */


/* This is for the map setion */
.custom-map-img {
    max-width: 100%;
    max-height: 80%;
    /* height: 80%; */
}

/* End map section */

.section {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.squre-effect {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.squre-effect::after {
    position: absolute;
    height: 200%;
    width: 0%;
    content: "";
    left: 47%;
    top: -45%;
    transition: all 0.5s ease;
    transform: rotate(45deg);
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.3);

}

.custom-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition:
        width .18s cubic-bezier(.2, .9, .2, 1),
        height .18s cubic-bezier(.2, .9, .2, 1),
        background-color .18s,
        opacity .15s;
    will-change: transform, width, height, background-color, opacity;
    opacity: 1;
}

/* text container inside cursor */
.custom-cursor .cursor-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .15s;
    pointer-events: none;
    mix-blend-mode: difference;
    /* label hamesha visible */
}

/* when hovering .heading (aapka existing effect) */
.custom-cursor.active {
    width: 60px;
    height: 60px;
    background: #fff;
    mix-blend-mode: difference;
    -webkit-backdrop-filter: saturate(120%);
    backdrop-filter: saturate(120%);
}

/* DRAG state: bada circle + label visible */
.custom-cursor.drag {
    width: 68px;
    height: 68px;
    background: #fff;
    mix-blend-mode: difference;
}

.custom-cursor.drag .cursor-label {
    opacity: 1;
}

/* optional: target element isolation helper if you use it */
.hover-reveal {
    position: relative;
    isolation: isolate;
}

/* Hide custom cursor on touch devices (ID fix) */
@media (hover:none),
(pointer:coarse) {
    #customCursor {
        display: none;
    }

    body {
        cursor: auto;
    }
}

.squre-effect:hover::after {
    width: 152%;
    left: -39%;
    top: -68%;
    opacity: 0;
}


.rotating-btn {
    position: relative;
    width: 150px;
    height: 150px;
}


.rotating-btn {
    position: relative;
    width: 160px;
    height: 160px;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* Rotating animation */
@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* Center Dark Circle */
.center-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #08222e;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
}

/* Rotation Animation */
@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.sub-head {
    border-radius: 20px;
    border: 1px solid #dcdbdb;
    width: fit-content;
    /* margin: 5px 20px; */
    padding: 5px 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub-head i {
    color: var(--primary);
    /* height: 5px; */
    /* width: 3px; */
    margin-right: 5px;
    font-size: 8px;
}

.heading {
    font-weight: 600;
    font-size: 45px;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-family: calibiri;
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: normal;
}

.heading span {
    color: var(--primary);
}

/* btn-main start */
.btn-main {
    position: relative;
    display: inline-block;
    padding: 12px 18px;
    font-size: 16px;
    color: #fff;
    background: var(--primary);
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    font-weight: 600;
    z-index: 1;
}

/* Sliding Layer */
.btn-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: black;
    transition: 0.4s ease;
    z-index: -1;
    color: white !important;
}

/* On Hover Slide Left → Right */
.btn-main:hover::before {
    left: 0;
}

.btn-main:hover {
    color: white !important;
}

/* btn-main start */

/* btn-sec start */
.btn-sec {
    position: relative;
    display: inline-block;
    padding: 12px 18px;
    font-size: 16px;
    color: #fff;
    background: var(--primary);
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    font-weight: 600;
    z-index: 1;
}

/* Sliding Layer */
.btn-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: 0.4s ease;
    z-index: -1;
    color: var(--primary) !important;
}

/* On Hover Slide Left → Right */
.btn-sec:hover::before {
    left: 0;
}

.btn-sec:hover {
    color: var(--primary) !important;
}

/* btn-sec start */

/* thir-btn start */
.thir-btn {
    color: black;
    text-decoration: none;
    transition: 0.5s;
}

.thir-btn:hover {
    color: var(--primary);
    text-decoration: none;
}

/* thir-btn end */


/* top header start */
.top-header {
    background: var(--primary);
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.top-header a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: 0.5s;
    font-weight: 500;
}

.top-header .left {
    font-weight: 500;
}

.top-header a:hover {
    color: black;
}

.top-header a i {
    margin-right: 5px;
}

/* top header end */

/* navbar start */
.navbar {
    position: relative;
}

.mega-dropdown {
    position: static !important;
}

.mega-menu {
     position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    padding: 0;
    border-radius: 0;
    z-index: 999;
}

.mega-title {
    font-weight: 600;
    margin-bottom: 10px;
        font-size: 20px;
}

/* Proper list styling */
.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 6px;
}

.mega-list a {
    text-decoration: none;
     color: black;
    font-size: 16px;
}

.mega-list a:hover {
    color: var(--primary);
    transition: 0.5s;
}
.dropdown-menu[data-bs-popper]{
        top: 96% !important;
}


.navbar {
    position: relative;
}

.navbar .nav-link {
    color: black;
    font-size: 18px;
    font-weight: 500;

}

.navbar .nav-link.active{
    color: var(--primary);
    transition: 0.5s;
}

.nav-item::after {
    position: absolute;
    height: 2px;
    width: 0%;
    left: 0;
    bottom: 0;
    background-color: var(--primary);
    content: "";
    transition: 0.5s;

}

.nav-item.active::after {
    width: 100%;
}

.nav-item:hover::after {
    width: 100%;
}


.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler .fa-solid {
    color: black;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--primary) !important;
}


.nav-item {
    margin: 10px;
    position: relative;
}


/* navbar end */

#home-banner.home-banner-1 {
    display: block;
}

#home-banner.home-banner-2 {
    display: none;
}

/* slider start */

.marquee-box {
    background: var(--primary);
    padding: 18px 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;

}

.marquee {
    display: flex;
    white-space: nowrap;
    width: fit-content;
    animation: scroll 28s linear infinite;
}

.marquee span {
    font-size: 22px;
    font-weight: 600;
    color: white;
    padding-right: 70px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* slider end */

/* about-sec start */
#about-sec {
    background-color: #f7f7f7;
}

.about-sec .img-wraper {
    position: relative;
    width: 100%;
    height: 680px;

}

.about-sec .img-wraper .top-img {
    position: absolute;
    left: 0;
    top: 0;

}

.about-sec img {
    border-radius: 10px;
    border: 1px solid gray;
}

.about-sec .img-wraper .bottom-img {
    position: absolute;
    right: 0;
    bottom: 0;

}

.about-sec .about-feature .left {
    border-right: 1px solid gray;
}

.about-sec .about-feature .left .box p {
    margin-bottom: 8px;
}

.about-sec .about-feature .box .icon-box {
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
    height: 22px;
    width: 22px;
    margin-right: 10px;

}

.about-sec .about-feature .box .icon-box i {
    color: white;
    font-size: 12px;
}

.about-sec .about-feature .right p {
    font-weight: bold;
}

.about-sec .about-feature .right h4 a {
    color: var(--primary);
    text-decoration: none;
}


/* about-sec end */


/* product-sec start */

#product-sec {
    background-image: url('img/sec-bg.jpg');
    background-size: cover;
    background-position: center;
}

#product-sec .sub-head {
    color: white;
}

#product-sec .heading {
    color: white;
}

#product-sec .card-title {
    font-size: 20px;
    margin-bottom: .5rem;
    font-family: calibiri;
    font-weight: 600;
}


#product-sec .top-row p {
    color: white;
}

/* product-sec end */

/* why-choose us start */

#why-choose {
    background-color: var(--bg-color);
}

#why-choose .bottom-content-right .main-box .icon-box {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 10px;
}

#why-choose .bottom-content-right .main-box .con-box span {
    color: black;
    font-size: 24px;
    font-weight: 600;
}

#why-choose .bottom-content-right .main-box .icon-box i {
    color: white;
    font-size: 18px;
}

#why-choose .content .main-box .icon-box i {
    color: white;
    transition: 0.5s;
}

#why-choose .content .main-box {
    display: flex;
    margin: 0px 5px;
    border-radius: 20px;
    transition: 0.5s;
    position: relative;
}

#why-choose .content .main-box h5 {
    font-size: 22px;
    margin-bottom: 8px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#why-choose .right .main-box .icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 15px;
    background: #e1e0df;
    position: relative;
}

#why-choose .left .main-box .icon {
    margin-left: 15px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: #e1e0df;
    position: relative;
}


#why-choose .content .main-box i {
    color: var(--primary);
    font-size: 30px;
    z-index: 1;
}

#why-choose .content .main-box .icon::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    background-color: black;
    height: 0%;
    width: 0%;
    transition: 0.5s;
    border-radius: 50%;
}

#why-choose .content .main-box:hover .icon::after {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

#why-choose .left {
    height: 100%;
}


/* why-choose us end */

/* we-work start */
#we-work {
    background-color: #f7f7f7;
}

#we-work .box .content h4 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
}

#we-work .box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: white;
    padding: 25px 15px 45px 15px;
    text-align: center;
    border-radius: 8px;
    z-index: 0;
    height: 100%;
    /* stacking context normal */
}

#we-work .box::after {
    height: 0%;
    width: 0%;
    left: 50%;
    top: 50%;
    content: "";
    position: absolute;
    background-color: black;
    transition: 0.5s;
    transform: translate(-50%, -50%);
    z-index: -1;
    /* IMPORTANT: behind content */
    border-radius: 8px;
}

#we-work .box:hover::after {
    height: 100%;
    width: 100%;

}

#we-work .box:hover .content h4 {
    color: white;
}

#we-work .box:hover .content p {
    color: white;
}


#we-work .box .num {
    position: absolute;
    left: 50%;
    bottom: -25px;
    background-color: var(--primary);
    color: white;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    align-items: center;
    font-size: 22px;
    text-transform: tr;
    transform: translateX(-50%);
    z-index: 2;
    border: 5px solid #ececec;
}


/* we-work end */



/* faq-sec start */
/* Remove Bootstrap default right arrow */
.accordion-button::after {
    display: none !important;
}

.faq-sec .left {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* FAQ Styling */
.faq-btn {
    font-size: 20px;
    font-weight: 600;
    color: #0e2a47;
    background: transparent;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    /* Push icon to RIGHT END */
    align-items: center;
    padding-right: 15px;
    position: relative;
}

/* Yellow box icon */
.faq-icon {
    width: 35px;
    height: 35px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: 0.3s;
    flex-shrink: 0;
}

/* Icon inside */
.faq-icon i {
    font-size: 16px;
    color: white;
    transition: 0.3s;
}

/* When open */
.faq-btn:not(.collapsed) .faq-icon {
    background: black;
}

.faq-btn:not(.collapsed) .faq-icon i {
    color: white;
    transform: rotate(180deg);
}

/* Body text */
.accordion-body {
    font-size: 16px;
    color: #444;
    padding-left: 5px;
    padding-bottom: 20px;
}

/* Borders */
.accordion-item {
    border: none !important;
    border-bottom: 1px solid #e4e4e4 !important;
    background: transparent;
}

.accordion-button {
    font-size: 20px !important;
}

.accordion-button:not(.collapsed) {
    color: black !important;
}

/* faq-sec end */



/* blog start */
#blog-sec {
    background-image: url("img/bg.svg");
}

.blog-card {
    background: transparent;
}

.blog-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
    border-radius: 10px;

}

/* hover scale */
.blog-card:hover .blog-img-wrap img {
    transform: scale(1.08);


}

.blog-content {
    padding-top: 18px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 5px;
}

.blog-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link span.arrow {
    font-size: 22px;
    transform: translateY(1px);
    transition: transform .25s ease;
}

.blog-link:hover span.arrow {
    transform: translate(3px, 1px);
}

.blog-link:hover {
    text-decoration: underline;
}



/* blog end */

/* testimonials start */
#testimonials {
    background-image: url('img/sec-bg.jpg');
    background-size: cover;
    background-position: center;
}

#testimonials .sub-head {
    color: white;
}

#testimonials .heading {
    color: white;
}

#testimonials .top-row p {
    color: white;
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: rgba(255, 227, 100, 0.06);
    border-radius: 20px;
    padding: 8px 14px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 227, 100, 0.08);
}

.eyebrow .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 227, 100, 0.06);
}

.headline {
    font-size: 54px;
    line-height: 1.02;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--white);
}

.subtext {
    color: var(--muted);
    max-width: 520px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: #08222e;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    border: 3px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    margin-top: 18px;
}

.cta-btn .icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    color: #08222e;
    font-size: 14px;
}

/* avatars row */
.avatars {
    display: flex;
    gap: -10px;
    align-items: center;
    margin-top: 36px;
}

.avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--bg);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    margin-left: -10px;
}

.avatars .count {
    background: var(--primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-left: 6px;
    font-size: 14px;
    border: 3px solid var(--bg);
}

.avatars-caption {
    margin-top: 18px;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.avatars-sub {
    color: white;
    font-size: 14px;
    margin-top: 6px;
}

/* SWIPER / CARDS */


.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    min-height: 360px;
    position: relative;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.rating {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--accent);
}

.rating .stars {
    display: flex;
    gap: 6px;
    align-items: center;
}

.rating .score {
    color: var(--white);
    font-weight: 400;
    margin-left: 6px;
    color: black;
    font-size: 14px;
}

.quote-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    ;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 22px;
    top: 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.quote-text {
    color: black;
    font-size: 18px;
    line-height: 1.7;
    margin-top: 28px;
    margin-bottom: 28px;
    /* font-weight: 500; */
}

.divider {
    height: 1px;
    background: rgb(144 144 144);
    margin: 12px 0 22px 0;
}

.author {
    font-weight: 500;
    font-size: 22px;
    color: black;
    margin-bottom: 4px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.role {
    color: black;
    font-size: 16px;

}

.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
    border: var(--primary);
}


/* pagination bullets style like yellow hollow */
.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: transparent;
    border: 2px solid var(--primary);
    opacity: 1;
    box-shadow: none;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(255, 227, 100, 0.08);
}

/* Responsive tweaks */
@media (min-width: 992px) {
    .headline {
        font-size: 64px;
    }

}

@media (max-width: 767.98px) {
    .headline {
        font-size: 32px;
    }

    .testimonial-card {
        min-height: 320px;
        padding: 22px;
    }

    .testimonials {
        padding: 40px 0;
    }

    .text-column {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* testimonials end */

/* footer start */

#footer {
    background-image: url('img/footer-bg.jpg');
    background-position: center;
    background-size: cover;
}

.footerJah {
    background-image: url('img/footer-bg.jpg');
    background-position: center;
    background-size: cover;
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footerJah a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    transition: 0.5s;
}

.footerJah a:hover {
    color: white;
    background-color: var(--primary);
}

/* Top row */
.footer-topJah {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footerJah li a {
    color: white;
    font-size: 16px;
}

.footerJah li:hover a {
    color: var(--primary);
    background-color: transparent;
}


.footer-logoJah {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logoJah img {
    width: 50%;
}

.footer-logoIconJah {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-logoTextJah {
    font-size: 22px;
    font-weight: 600;
}


.footer-socialsTitleJah {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: right;
    margin-right: 10px;

}

.footer-socialsJah {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.footer-socialsJah a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background-color: white;
    /* border: 1px solid var(--primary-dark); */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Column headings */
.footer-headingJah {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--primary);
}

.footer-linksJah {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-linksJah li {
    margin-bottom: 12px;
    font-size: 14px;
}

/* Contact */
.footer-contactItemJah {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
}

.footer-contactIconJah {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.footerJah .footer-contactItemJah a {
    color: white !important;
    font-size: 16px;
    transition: 0.5s;
}

.footerJah .footer-contactItemJah a:hover {
    color: var(--primary) !important;
    background-color: transparent;
}

/* Newsletter */
.footer-newsTextJah {
    font-size: 16px;
    margin-bottom: 20px;
    color: #d1d5db;
}

.footer-inputWrapJah {
    position: relative;
}

.footer-inputJah {
    width: 100%;
    /* border-radius: 999px; */
    border: 1px solid #4b5563;
    background: white;
    padding: 10px 42px 10px 16px;
    font-size: 14px;
    color: black;
}

.footer-inputJah i {
    color: black !important;
}

.footer-inputJah::placeholder {
    color: black !important;
    font-size: 16px;
}


.footer-inputArrowJah {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #9ca3af;
}

.footer-inputArrowJah i {
    color: black;
}

/* Bottom */
.footer-bottomJah {
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: white;
}

.footer-bottomJah a {
    color: white;
}

.footer-bottomJah a:hover {
    color: var(--primary);
    background-color: transparent;
}

@media (max-width: 767.98px) {
    .footer-socialsTitleJah {
        text-align: left;
    }

    .footer-socialsJah {
        justify-content: flex-start;
    }

    .footer-bottomJah {
        margin-top: 20px;
    }
}

/* footer end */

#industries {
    background-color: #ffffff;
}


#industries .industries-sec p {
    max-width: 750px;
    margin: 0 auto 40px auto;
    color: #555;
}

#industries .industry-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px 20px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#industries .industry-box .icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    font-size: 26px;
    color: var(--primary);
    transition: all 0.35s ease;
}

#industries .industry-box h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#industries .industry-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

/* Hover effect */
#industries .industry-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000, #333333);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

#industries .industry-box:hover::before {
    opacity: 1;
}

#industries .industry-box:hover {
    transform: translateY(-6px);
}

#industries .industry-box>* {
    position: relative;
    z-index: 1;
}

#industries .industry-box:hover h4,
#industries .industry-box:hover p {
    color: #ffffff;
}

#industries .industry-box:hover .icon {
    background-color: #ffffff;
    color: #000000;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    #industries .heading {
        font-size: 26px;
    }

    #industries .industries-sec p {
        margin-bottom: 30px;
        padding: 0 10px;
    }
}



/* breadcrumb start */
#breadcrumb {
    background-image: url('img/sec-bg.jpg');
    background-size: cover;
    padding: 100px 0;
}

#breadcrumb h2 {
    color: white;
    font-size: 60px;
    margin-bottom: 20px;
}

#breadcrumb .breadcrumb-item {
    color: white;
    font-size: 20px;

}

#breadcrumb .breadcrumb {
    text-align: center;
    color: white;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: auto;
}

#breadcrumb .breadcrumb-item a {
    color: white;
    font-size: 20px;
}

/* breadcrumb end */

/* about-page start */
#about-sec.about-page {
    background-color: transparent !important
}

/* about-page end */

/* contact-page start */
#contact-page .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: black !important;
    outline: 0;
    box-shadow: none !important;
}

#contact-page .form-control {
    padding: .75rem .75rem !important;
    margin: 5px 0;
}

#contact-page button {
    border: none !important;
}

#contact-page .left {
    background-color: #f7f7f7;
    border-radius: 15px;
    padding: 20px;
}

#contact-page .left .small-icon-box {
    background-color: var(--primary);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

#contact-page .left .small-icon-box::after {
    position: absolute;
    background-color: #000000;
    content: "";
    transition: 0.5s;
    width: 0%;
    height: 0%;
    z-index: -1;
    border-radius: 4px;
}

#contact-page .left .small-icon-box:hover::after {
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

#contact-page .left .small-icon-box i {
    color: white;
    font-size: 30px;
}

#contact-page .left .box {
    align-items: center;
    padding: 10px;
    width: 50%;
}

#contact-page .left .box h4 {
    margin-bottom: 5px;
}

#contact-page .left .box p a {
    color: black;
    font-size: 18px;
}

#contact-page .left .box p {
    color: black;
    font-size: 18px;
    text-align: center;
}

/* contact-page end */


/* blog-details start */
.blog-details-page {
    background: #f8f9fa;
}

.blog-details-page .recent-blog-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.blog-details-page .recent-blog-item:last-child {
    border-bottom: none;
}

.blog-details-page .recent-img {
    width: 80px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 12px;
    border: 1px solid #ddd;
}
.blog-details-page .recent-blogs{
    padding: 20px 10px;
}

.blog-details-page .recent-content a {
    display: block;
    font-weight: 600;
    color: #222;
    font-size: 16px;
    text-decoration: none;
    line-height: 1.4;
}

.blog-details-page .recent-content a:hover {
    color: #dc3545;
}

.blog-details-page .recent-content span {
    font-size: 12px;
    color: #777;
}


.blog-details-page .blog-img {
    /* max-height: 380px; */
    object-fit: cover;
}

.blog-details-page .blog-title {
  font-weight: 700;
    margin-bottom: 10px;
    font-size: 45px;
        font-family: "Plus Jakarta Sans", sans-serif;
}
.blog-details-page .blog-title {
       font-family: "Plus Jakarta Sans", sans-serif;
}

.blog-details-page .blog-meta {
    font-size: 14px;
    color: #888;
}

.blog-details-page .blog-quote {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 6px;
    font-style: italic;
}

/* blog-details end */

/* error-page start */
#error-page .img-box img{
    width: 50%;
}
#error-page {
    padding: 100px 0
}
#error-page h1{
    font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: bold;
    font-size: 50px;
}
#error-page p{
    font-size: 18px;
    padding:  0 100px;

}


/* error-page end */

/* product-page start */

#product-page .card-title {
    font-size: 24px;
    margin-bottom: .5rem;
    font-family: popins;
    font-weight: 600;
}
#product-page .card {
    position: relative;
}

#product-page .card .btn-main{
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.5s;
}
#product-page .card:hover .btn-main{
    opacity: 1;
}
#product-page .card {
    border: 1px solid black;
    height: 100%;
    margin-top: 20px;
}
#product-page .card-body{
    background-color: var(--primary);
    padding: 1rem 1rem 0 5px;

}
#product-page .card-body .card-title{
    color: white;
    margin-bottom: 0;
}

/* product-page end */
