/*=================================================================
Project:Home Rakshak Painter
Author: 
Last change:
Primary use: Painting theme 
=================================================================*/
/*============================ Table of contents Start ============================
1.Default CSS
2.Header CSS
3.Hero CSS
4.Offer CSS
5.Conter CSS
6.Choose CSS
7.Who CSS
8.Meet CSS
9.Work CSS
10.Testimonial CSS
11.Dream CSS
12.Itwork CSS
13.News CSS
14.Rollimage CSS
15.Footer CSS
16.About_page CSS
17.Process_page CSS
18.Team_page CSS
19.Faq_page CSS
20.Pricing_plan CSS
21.Appointment CSS
22.Testimonial CSS
23.Error CSS
24.Service_page CSS
25.Project_page CSS
26.Blog_page CSS
26.Blog_page CSS
27.Contect CSS
28.Setting CSS
>.Prelaoder CSS 
>.Bottom To Top CSS
>.Custom-Cursor CSS
============================ Table of contents End ============================*/
/*============================ Color codes ============================
Background:   #fff #420000 #F5F6F7
Content:      #FF2424 #000
================================================================= */
/* ============================ Whole Page scroll Aniamtion CSS ======================= */
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 2s;
}

.fade_up {
    transform: translateY(-50%);
}

.fade_down {
    transform: translateY(100%);
}

.zoom_in {
    transform: scale(0.5);
}

.zoom_out {
    transform: scale(1.5);
}

.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s;
}

.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 2s;
}

.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 2s;
}

.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 2s;
}

.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 2s;
}

.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 2s;
}

.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.img-animation-style1,
.img-animation-style2,
.img-animation-style3 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

.img-animation-style1 img,
.img-animation-style2 img,
.img-animation-style3 img {
    transform-origin: 50% 50%;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

.img-animation-style1.active,
.img-animation-style2.active,
.img-animation-style3.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.img-animation-style1.active img,
.img-animation-style2.active img,
.img-animation-style3.active img {
    transform: scale(1) translate(0px, 0px);
}

.img-animation-style1 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.img-animation-style1 img {
    transform: scale(1.5) translate(-100px, 0px);
}

.img-animation-style2 {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}

.img-animation-style2 img {
    transform: scale(1.5) translate(100px, 0px);
}

.img-animation-style3 {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.img-animation-style3 img {
    transform: scale(1.5) translate(0, -100px);
}

/* ============================ 1.Defualt CSS ======================= */
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    /* user-select: none; */
}

body {
    cursor: none;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-corner {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: #f8100d;
    background-clip: content-box;
}

::-webkit-scrollbar-track {
    background-color: #171819;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

.mt-60 {
    margin-top: 60px;
}

.mt-100 {
    margin-top: 100px;
}

/* ============================ 2.Header CSS ======================= */
/* ================= HEADER BASE ================= */

.header_containt {
    padding: 19px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex: 0 0 auto;
}
.logo img{
    width: 280px;
}
@media (max-width:768px) {
    .logo img{
    width: 200px;
}
}
.navbar_header {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.nav li a {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
}

/* ================= ICONS ================= */

.header_icons {
    display: flex;
    /* justify-content: flex-end; */
    align-items: center;
    gap: 18px;
    flex: 0 0 auto;
}


.icon_btn {
    width: 46px;
    height: 46px;
    border: 1px solid #00000026;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.icon_btn i {
    font-size: 18px;
    color: #000;
}

.icon_btn:hover {
    background: #f8100d;
    /* transform: scale(1.1); */
}

.icon_btn:hover i {
    color: #fff;
}

.user_btn {
    background: #f8100d;
}

.user_btn i {
    color: #fff;
}

.login_btn {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    background: #f8100d;
    padding: 0 20px;
    width: 100%;
}


/* ================= DROPDOWN ================= */

.dropdown {
    position: relative;
}

.dropdown_menu {
    position: absolute;
    min-width: 210px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    top: calc(100% + 15px);
    left: 0;
    background-color: #fff;
    z-index: 99;
    padding-left: 0;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown.active .dropdown_menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown_menu li {
    list-style: none;
}

.dropdown_menu li a {
    display: block;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    transition: color 0.3s ease, margin-left 0.3s ease;
}

.dropdown_menu li:hover a {
    color: #FF2424;
    margin-left: 5px;
}


.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    height: 40px;
    width: 40px;
    background-color: #FF2424;
    border-radius: 10px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 21px;
    background: #FFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ================= STICKY HEADER ================= */

header.scrolled {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
    background-color: #fff;
    border-bottom: 2px solid #FF2424;
    transition: all 0.4s ease;
}

/* ================= SIDEBAR + RESPONSIVE ================= */

.sidebar_logo {
    display: none;
}

@media (max-width: 1199px) {

    .hamburger {
        display: flex;
    }

    .header_icons {
        display: none;
    }

    .navbar_header {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 20px;
        transition: all 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .navbar_header.active {
        right: 0;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }

    .sidebar_logo {
        display: block;
        margin-bottom: 20px;
    }

    .bullate {
        display: none;
    }

    /* icons inside sidebar */
    .navbar_header .header_icons {
        display: flex;
        margin-top: 30px;
        gap: 15px;
    }
}





/* ================= OVERLAY ================= */

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 90;
}

.body-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.sidebar-open {
    overflow: hidden;
}

/* ========================================================= */
/* ================= MARQUEE CSS (AS-IT-IS) ================= */
/* ========================================================= */

.top-marquee {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #fde3e2, #fbcfcf, #fde3e2);
    padding: 10px 0;
}

/* wrapper */
.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}

/* moving groups */
.marquee-group {
    display: flex;
    align-items: center;
    animation: scrollMove 30s linear infinite;
}

/* text style */
.marquee-group span {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0 22px;
    letter-spacing: 0.5px;
}

/* star style */
.marquee-group .star {
    color: #000;
    font-size: 16px;
    opacity: 0.8;
    transform: translateY(-1px);
}

/* animation */
@keyframes scrollMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ============================ 3.Hero CSS ======================= */

.home_second_slider .swiper-wrapper {
    transition-timing-function: ease !important;
}


.home_second_slider .swiper-slide {
    opacity: 0;
    transform: translateX(100%);
}

.home_second_slider .swiper-slide-active {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.9s ease, opacity 0.6s ease;
    z-index: 2;
}


.home_second_slider .swiper-slide-prev {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.9s ease, opacity 0.6s ease;
    z-index: 1;
}

.home_second_slider .swiper-slide-next {
    opacity: 0;
    transform: translateX(100%);
}


.hero_section {
    background-color: #420000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero_pttx {
    /* color: var(--5, #FFF); */
    color: black;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero_main_txt {
    margin-top: 10px;
    /* color: var(--5, #FFF); */
    color: black;
    font-family: Outfit;
    font-size: 79px;
    font-style: normal;
    font-weight: 700;
    line-height: 100px;
}

.buttons1 {
    width: fit-content;
    margin-top: 80px !important;
}

.hero_paint {
    z-index: 10;
    bottom: -93px;
    right: 0px;
    transform-origin: center bottom;
    animation: bucketTilt 5s ease-in-out infinite;
}

@keyframes bucketTilt {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(-3deg);
    }

    50% {
        transform: translateY(0) rotate(2deg);
    }

    75% {
        transform: translateY(-6px) rotate(-2deg);
    }
}

.myslid {
    padding: 110px 0px;
}

.mySwiper {
    height: fit-content !important;
}

.border_txt {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-top: 20px;
}

.hero_pttx1 {
    /* color: var(--5, #FFF); */
    color: black;
    font-family: Outfit, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
}

.border_hero {
    position: relative;
    width: 30px;
    background-color: #FF2424;
    display: flex;
    align-items: center;
}

#paint-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #400000;
    z-index: 0;
}

.hero_section {
    position: relative;
    z-index: 1;
}

.slide1 {
    /* background-image: url(../image/home/hero1.jpg); */
    background-image: url(../image/home/hero2.png);
    height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide2 {
    /* background-image: url(../image/home/hero2.jpg); */
    background-image: url(../image/home/hero1.png);
    height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide3 {
    /* background-image: url(../image/home/hro3.jpg); */
    background-image: url(../image/home/hero3.png);
    height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider_content {
    max-width: 630px;
    position: absolute;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* position: relative;
    z-index: 2; */
}

.home_video_section {
    position: relative;
    height: 835px;
    overflow: hidden;
}

.hero_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home_video_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.video_conent {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 700px;
    width: 100%;
}

.slider_content_video {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 665px;
    width: 100%;
    margin: 0 auto;
    padding: 0 12px;
}

.home_video_slider1 {
    width: 100%;
    height: 835px;
    position: relative;
    overflow: hidden;
}

.main-swiper-video-bg1 {
    position: relative;
}

.main-swiper-video-bg1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.60) 100%);
    z-index: 2;
}

.background-media-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.background-media-wrapper img,
.background-media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider_content_video1 {
    position: absolute;
    z-index: 3;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 665px;
    width: 100%;
    padding: 0 12px;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.swiper-slide-active .slider_content_video1 {
    opacity: 1;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px !important;
    height: 20px !important;
    background-size: 20px 20px !important;
}

/* ============================ 4.Offer CSS ======================= */
.offer_p {
    color: var(--10, #FF2424);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.offer_h2 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
}

.offer_paragraph {
    max-width: 630px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.offer_section {
    padding: 100px 0px;
}

.offer_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.offer_box {
    overflow: hidden;
}

.offer_box .read_more {
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 10px;
    width: fit-content;
    margin-top: 30px;
    margin-left: -100px;
    transition: all 0.3s ease;
}

.offer_box .read_more_text {
    opacity: 1;
    display: inline;
    white-space: nowrap;
    color: var(--10, #FF2424);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    transition: all 0.3s ease;
}

.offer_box:hover .read_more {
    margin-left: 1px;
}

.offer_box:hover .read_more img {
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(21%) sepia(97%) saturate(3253%) hue-rotate(348deg) brightness(103%) contrast(101%);
}

.offer_head {
    gap: 20px;
    margin-top: 10px;
}

.offer_h3 {
    max-width: 260px;
    margin-top: 20px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.offer_ptxt {
    margin-top: 20px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}


/* Category css */




.main-category {
    margin-top: 70px;
}

.new_row.d-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 20px;
    /* justify-content: center;  */
}

@media (max-width: 991px) {
    .new_row.d-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .new_row.d-grid {
        grid-template-columns: 1fr;
    }
}

.simple_card {
    position: relative;
    border-radius: 20px;
    border: 2px solid #F5F6F7;
    background: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.simple_card .new_img {
    width: 105%;
    height: 238px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: all 0.6s ease;
    /* filter: blur(4px) brightness(0.7); */
}

.simple_card:hover .new_img {
    filter: blur(0) brightness(1);
    transform: scale(1.05);
}

.simple_card:hover {
    border-color: #FF2424;
}

.simple_card .new_containt {
    padding: 20px;
}

.offer_section .container {
    padding-left: 10px;
    padding-right: -10px;
}

.simple_card .new_h3 {
    font-size: 21px;
    font-weight: 400;
    line-height: 30px;
    color: #000;
    margin: 0;
    transition: color 0.3s ease;
}

.simple_card:hover .new_h3 {
    color: #FF2424;
}

.new_h3,
.news_p,
.new_containt * {
    font-family: inherit !important;
}



/* ============================ 5.Conter CSS ======================= */
.counter-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.counter-item {
    max-width: 300px;
    width: 100%;
    text-align: center;
}

.counter-label {
    max-width: 300px;
    width: 100%;
    color: var(--3, #000);
    text-align: center;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.counter {
    max-width: 300px;
    width: 100%;
    color: var(--3, #000);
    text-align: center;
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    gap: 0px;
    display: flex;
    height: 1em;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.digit-container {
    display: flex;
    flex-direction: column;
    transition: transform 1s ease-in-out;
}

.plus-sign {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    margin-left: 5px;
}

.plus-show {
    opacity: 1;
}

/* ============================ 6.Choose CSS ======================= */
.chhose_section {
    background-color: #F5F6F7;
    margin: 100px 100px 0px 100px;
    border-radius: 100px;
    padding: 100px;
}

.choose_p {
    margin-top: 100px;
    max-width: 550px;
    margin-left: 70px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.choose_img {
    border-radius: 50px;
}

.choose_row {
    gap: 100px;
    z-index: 1;
}

.choose_p2 {
    max-width: 630px;
    margin-top: 20px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.choose_boxes {
    margin-top: 30px;
    gap: 30px;
}

.choose_h3 {
    margin: 10px 0px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
}

.choose_box {
    max-width: 300px;
}

.choose_box_ptxtx {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.choose2 {
    border-radius: 50px;
    margin-top: 100px;
}

.choose_img1 {
    top: -107px;
    right: 0px;
    z-index: 0;
    animation: brushFloat2 4s ease-in-out infinite;
}

.choose_img2 {
    bottom: -55px;
    left: -100px;
    animation: brushFloat2 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes brushFloat2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

/* ============================ 7.Who CSS ======================= */
.border_hero1 {
    position: relative;
    width: 6px;
    background-color: #FF2424;
    display: flex;
    align-items: center;
}

.who_ptxt {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.border_txt1 {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-top: 30px;
}

.who_ptxt1 {
    max-width: 630px;
    margin-top: 20px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.who_ptxt2 {
    margin-top: 5px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.who_right {
    margin-top: 30px;
    gap: 20px;
}

.who_h3 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.who_help_h3 {
    color: var(--5, #FFF);
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.who_help_p {
    margin-top: 2px;
    color: var(--5, #FFF);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.who_help {
    gap: 10px;
    width: 100%;
    border-radius: 50px;
    padding: 6px 30px 6px 6px;
    background-color: #000;
}

.whohelp {
    width: 24px;
    height: 24px;
}

.who_help_img {
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
}

.who_imgs {
    margin: 30px 0px;
    gap: 20px;
}

.who4 {
    border-radius: 50px;
}

.whor_row {
    gap: 30px;
}

.who_help_p:hover {
    color: #FF2424;
}

.who1_img {
    border-radius: 0 0 30px 30px;
}

.who2_img {
    border-radius: 30px 30px 0px 0px;
}

.who_img_section {
    max-width: 630px;
    width: 100%;
}

/* ============================ 8.Meet CSS ======================= */
/* .meet_section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6)),
        url(../image/home/meet.jpg);
    background-repeat: no-repeat;
    border-radius: 100px;
    margin: 0px 100px;
    background-size: cover;
}

.meet_button {
    gap: 30px;
}

.meet_h2 {
    max-width: 740px;
    color: var(--5, #FFF);
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
} */

/* ================================= ART HIGHLIGHT SECTION ================================= */
.art-highlight-section {
    /* padding: 0px 52px; */
    padding: 0px 0px;
    background: #fff;
}

.art-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto;
}

.art-highlight-card {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    opacity: 0;
}

.art-highlight-card:first-child {
    border-radius: 40px 140px 40px 140px;
    animation: smoothFromRight 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.art-highlight-card:last-child {
    border-radius: 140px 40px 140px 40px;
    animation: smoothFromLeft 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.25s;
}


.art-highlight-card::before {
    content: "";
    position: absolute;
    top: 32px;
    width: 5px;
    height: 130px;
    background: #d11c1c;
    border-radius: 10px;
    z-index: 6;
}

.art-highlight-card:first-child::before {
    left: 0;
}

.art-highlight-card:last-child::before {
    right: 0;
}

.art-highlight-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.art-highlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.22));
    z-index: 1;
}

.art-highlight-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: #f9f6f3;
    padding: 36px 38px;
    border-radius: 32px;
    max-width: 420px;
    z-index: 7;
}

.art-highlight-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    letter-spacing: 1.5px;
    color: #777;
    /* margin-bottom: 14px; */
}

.art-highlight-tag::before {
    content: "•";
    color: #d11c1c;
    font-size: 18px;
}

.art-highlight-content h3 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.25;
    color: #111;
    margin-bottom: 14px;
    font-family: 'Dancing Script', cursive;
    font-weight: bolder;
}

.art-highlight-content p {
    font-size: 19px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 26px;
}

.art-highlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 5px;
    font-size: 19px;
    text-decoration: none;
    background: #f8100d;
    color: white;
    transition: all 0.3s ease;
}


@keyframes smoothFromRight {
    from {
        transform: translateX(140px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes smoothFromLeft {
    from {
        transform: translateX(-140px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}



@media (max-width: 1200px) {
    .art-highlight-grid {
        margin: 0 40px;
    }
}

@media (max-width: 991px) {
    .art-highlight-grid {
        grid-template-columns: 1fr;
        margin: 0 20px;
    }

    .art-highlight-card {
        min-height: 480px;
        opacity: 1;
        animation: none;
        transform: none;
    }

    .art-highlight-card:first-child,
    .art-highlight-card:last-child {
        border-radius: 80px 80px 40px 40px;
    }

    .art-highlight-card::before {
        left: 0;
        right: auto;
    }

    .art-highlight-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}




/* ============================ 9.Work CSS ======================= */
.work_section {
    margin: 100px 100px 0px 100px;
}

.work_img {
    border-radius: 40px;
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;
}

.work_box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1 / 1;
}

.work_box .work_img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.work_box:hover .work_img {
    transform: scale(1.05);
}

.work_overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 40px);
    border-radius: 20px;
    background: var(--5, #FFF);
    padding: 15px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.work_box:hover .work_overlay {
    opacity: 1;
    transform: translateY(0);
}

.work_h3 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.work_ptxt {
    margin-top: 4px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* ICON CONTAINER */
.work_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    z-index: 3;
    transition: all 0.3s ease;
}

/* ICON SIZE */
.work_icon img {
    width: 48px;
    height: 48px;
}

/* SHOW ICON ON HOVER */
.work_box:hover .work_icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}



/* ============================ 10.Testimonial CSS ======================= */
.testimonial_back {
    margin-top: 60px;
    max-width: 630px;
    border-radius: 30px;
    background: var(--5, #FFF);
}

.testimonial_section {
    /* background-image: url(../image/home/roll_img.png); */
    background-image: url(../image/home/roll_img1.png);
    background-position: right;
    background-repeat: no-repeat;
    margin: 100px;
    padding: 100px 0px;
    border-radius: 100px;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

/* Black light overlay */
.testimonial_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 100px;
    z-index: 1;
}

/* Bring content above overlay */
.testimonial_section .container {
    position: relative;
    z-index: 2;
}

.testi_star {
    gap: 5px;
}

.testi_slide_box {
    padding: 40px;
}

.testimonial_h3 {
    margin-top: 20px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.testimonial_ptxt {
    margin-top: 15px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.testimonial_h4 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.testi_per p {
    margin-top: 5px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.testimonial_img {
    width: 80px;
    height: 80px;
}

.testimonia_detail {
    margin-top: 30px;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    position: absolute;
    width: 64px;
    height: 64px;
    border: 2px solid #222;
    margin-top: 20px;
    cursor: pointer;
}

.testimonial-next {
    left: 84px;
}

.testimonial-next:hover {
    background-color: #FF2424;
    border: 2px solid #FFF;
}

.testimonial-next:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(15deg) brightness(98%) contrast(104%);
}

.testimonial-prev:hover {
    background-color: #FF2424;
    border: 2px solid #FFF;
}

.testimonial-prev:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(15deg) brightness(98%) contrast(104%);
}

.testimonial-prev:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(15deg) brightness(98%) contrast(104%);
}

.testimonial_slider {
    transition-timing-function: linear !important;
}

.testimonial_slider_image {
    /* filter: brightness(0) saturate(100%) invert(43%) sepia(8%) saturate(1%) hue-rotate(352deg) brightness(96%) contrast(94%); */
    filter: brightness(0) invert(1);
    /* pure white */
    opacity: 0.7;
}


.mySwiper1 {
    margin-top: 144px;
}

/* ============================ 11.Dream CSS ======================= */
.dream2 {
    max-width: 550px;
    width: 100%;
    margin-left: -265px;
}

.dream_row {
    max-width: 630px;
}

.dream_pxtx {
    margin-top: 30px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.dream_input::placeholder {
    color: var(--8, #A8A9AD);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.deream_inp {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #8080804a;
    background: var(--5, #FFF);
}

.deream_inp input[type="number"]::-webkit-outer-spin-button,
.deream_inp input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.deream_inp input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.dream_input {
    outline: none;
    color: var(--8, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.dream_form {
    margin-top: 30px;
    gap: 30px;
}

.dream_input1 {
    outline: none;
    color: var(--8, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}

.dream_input1::placeholder {
    color: var(--8, #A8A9AD);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.dropdown_icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.dream_inp.open .dropdown_icon {
    transform: translateY(-50%) rotate(180deg);
}

.custom_dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 5px;
    display: none;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.custom_dropdown li {
    padding: 10px 15px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    transition: background 0.2s;
}

.custom_dropdown li:hover {
    background-color: #FF2424;
    color: #fff;
}

.dream_txtarea {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: 1px solid #8080804a;
    background: var(--5, #FFF);
    padding: 12px 15px;
    outline: none;
    color: var(--8, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    resize: none;
}

.dream_txtarea::placeholder {
    color: var(--8, #A8A9AD);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.dream_button {
    margin-top: 30px;
}

.dream_section_row {
    gap: 30px !important;
}

.dream1 {
    border-radius: 40px;
}

.drop:hover a {
    color: #FF2424;
}

.ui-datepicker {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

.ui-datepicker-header {
    background: #ff2424;
    color: #fff;
    border-radius: 8px 8px 0 0;
    padding: 8px 0;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
    background: #ff2424;
    color: #fff !important;
    border-radius: 50%;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top: 3px;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #FF2424;
    background: #FF2424;
    color: #FFF;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
    background: #ff2424;
    color: #fff !important;
    border-radius: 45%;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid transparent;
    background: #A8A9AD;
}

/* ============================ 12.Itwork CSS ======================= */
/* .it_work {
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: color-burn;
    height: 700px;
    object-fit: cover;
}

.offer_h21 {
    margin: auto;
    max-width: 630px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}

.it_work_ptxt {
    padding-top: 30px;
    margin: auto;
    max-width: 850px;
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.itwork_h3 {
    margin-top: 20px;
    color: var(--3, #000);
    text-align: center;
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.itwork_p {
    margin-top: 10px;
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.itwork_row {
    gap: 40px;
}

.itwork_box {
    position: relative;
    cursor: pointer;
    perspective: 1000px;
}

.itwork_img {
    position: relative;
    background-color: #fff;
    width: 140px;
    height: 140px;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.9s ease;
    transform-style: preserve-3d;
}

.itwork_box:hover .itwork_img {
    transform: rotateY(180deg);
}

.itwork_img img {
    position: relative;
    z-index: 2;
    transition: filter 0.3s ease;
}

.itwork_img::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FF2424;
    z-index: 1;
    transition: bottom 0.5s ease;
}

.itwork_box:hover .itwork_img::before {
    bottom: 0;
}

.itwork_box:hover .itwork_img img {
    transition: unset;
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(6%) hue-rotate(262deg) brightness(102%) contrast(104%);
}

.itwork_choose {
    right: 0px;
    bottom: -160px;
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
} */







/* =========================WHY SECTION========================= */
/* ================= WHY US ================= */

.new-whyus {
    background: #f8f9fb;
    padding: 70px 0;
}

.whyus_title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
}

.orbit-wrap {
    position: relative;
    width: 700px;
    height: 700px;
    margin: auto;
}

/* Orbit ring */
.orbit {
    position: absolute;
    inset: 90px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 50, 50, 0.35);
    animation: spin 40s linear infinite;
}

/* Center */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 26px 36px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.orbit-center img {
    width: 160px;
}

/* Item */
.orbit-item {
    position: absolute;
    width: 210px;
    padding: 20px 18px;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.orbit-item img {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
}

.orbit-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: black;
}

.orbit-item:hover {

    box-shadow: 0 18px 40px rgba(255, 50, 50, 0.25);
}

.orbit-item:hover h4 {
    color: #f8100d;
}

/* Positions */
.pos1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.pos2 {
    top: 22%;
    right: 0;
}

.pos3 {
    bottom: 22%;
    right: 0;
}

.pos4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.pos5 {
    bottom: 22%;
    left: 0;
}

.pos6 {
    top: 22%;
    left: 0;
}



/* Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .orbit-wrap {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .orbit,
    .orbit-center {
        position: static;
        transform: none;
        margin: auto;
    }

    .orbit-item {
        position: static;
        width: 100%;
    }
}

















.hex-whyus {
    padding: 80px 0;
    background: #fff;
    font-family: 'Outfit', sans-serif;
    display: flex;
    justify-content: center;
}

.hex-container {
    width: 100%;
    max-width: 1000px;
}

.hex-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 60px;
}

.hex-wrapper {
    position: relative;
    height: 500px;
    /* Fixed height for symmetry */
    width: 90%;
    margin: 0 auto;
}

/* Logo Center Positioning */
.hex-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.hex-center img {
    width: 180px;
    /* Adjust logo size */
}

/* Individual Node Styling */
.hex-node {
    position: absolute;
    width: 180px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.hex-icon {
    width: 95px;
    /* Big Icon Size */
    height: 95px;
    background: #ffffff;
    border: 1.5px solid #eee;
    border-radius: 24px;
    /* Professional rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.hex-icon img {
    width: 50px;
    height: 50px;
}

.hex-node h4 {
    font-size: 17px;
    font-weight: 600;
    color: black;
    margin: 0;
    line-height: 1.2;
}

/* Symmetrical Positions (Exactly like Image) */
.p1 {
    top: 0%;
    left: 20%;
}

/* Innovative Tech */
.p2 {
    top: 0%;
    right: 20%;
}

/* Quality Assurance */

.p3 {
    top: 40%;
    left: 5%;
}

/* Superior Quality */
.p4 {
    top: 40%;
    right: 5%;
}

/* Efficient Production */

.p5 {
    bottom: 0%;
    left: 20%;
}

/* Experienced Team */
.p6 {
    bottom: 0%;
    right: 20%;
}

/* Product Sampling */

/* Hover Interactions */
.hex-node:hover .hex-icon {
    border-color: #f8100d;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(248, 16, 13, 0.15);
}

.hex-node:hover h4 {
    color: #f8100d;
}

/* Responsive Logic */
@media (max-width: 850px) {
    .hex-wrapper {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .hex-center {
        grid-column: 1 / span 2;
        position: static;
        transform: none;
        margin: 0 auto 30px;
    }

    .hex-node {
        position: static;
        width: 100%;
    }
}

/* --- Base Node Style --- */
.hex-node {
    position: absolute;
    width: 180px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    /* Sabhi nodes par animation apply hoga */
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation-fill-mode: forwards;
}

/* --- Individual Animations for Each Position --- */

/* P1: Top Left */
@keyframes moveP1 {
    0% {
        opacity: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        opacity: 1;
        top: 0%;
        left: 20%;
        transform: translate(0, 0) scale(1);
    }
}

.p1 {
    animation-name: moveP1;
    animation-delay: 0.1s;
}

/* P2: Top Right */
@keyframes moveP2 {
    0% {
        opacity: 0;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%) scale(0);
    }

    100% {
        opacity: 1;
        top: 0%;
        right: 20%;
        transform: translate(0, 0) scale(1);
    }
}

.p2 {
    animation-name: moveP2;
    animation-delay: 0.2s;
}

/* P3: Middle Left */
@keyframes moveP3 {
    0% {
        opacity: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        opacity: 1;
        top: 40%;
        left: 5%;
        transform: translate(0, 0) scale(1);
    }
}

.p3 {
    animation-name: moveP3;
    animation-delay: 0.3s;
}

/* P4: Middle Right */
@keyframes moveP4 {
    0% {
        opacity: 0;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%) scale(0);
    }

    100% {
        opacity: 1;
        top: 40%;
        right: 5%;
        transform: translate(0, 0) scale(1);
    }
}

.p4 {
    animation-name: moveP4;
    animation-delay: 0.4s;
}

/* P5: Bottom Left */
@keyframes moveP5 {
    0% {
        opacity: 0;
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%) scale(0);
    }

    100% {
        opacity: 1;
        bottom: 0%;
        left: 20%;
        transform: translate(0, 0) scale(1);
    }
}

.p5 {
    animation-name: moveP5;
    animation-delay: 0.5s;
}

/* P6: Bottom Right */
@keyframes moveP6 {
    0% {
        opacity: 0;
        bottom: 50%;
        right: 50%;
        transform: translate(50%, 50%) scale(0);
    }

    100% {
        opacity: 1;
        bottom: 0%;
        right: 20%;
        transform: translate(0, 0) scale(1);
    }
}

.p6 {
    animation-name: moveP6;
    animation-delay: 0.6s;
}

/* Mobile par animation off rakhein taki layout kharab na ho */
@media (max-width: 850px) {
    .hex-node {
        animation: none !important;
        opacity: 1 !important;
        position: static;
        width: 100%;
    }
}























/* ============================ 13.News CSS ======================= */
/* .blog-date::before {
    bottom: 0px;
    left: -30px;
    height: 60px;
    width: 30px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.blog-date::after {
    content: "";
    bottom: 0px;
    right: -30px;
    height: 60px;
    width: 30px;
    border-bottom-left-radius: 20px;
    transition: all 0.4s ease;
}

.blog-date {
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 10px 20px;
    background: #FFFFFF;
    position: absolute;
    bottom: 0;
    left: 30px;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}

.blog-date::before,
.blog-date::after {
    content: "";
    position: absolute;
    background-color: transparent;
    height: 60px;
    width: 30px;
    box-shadow: 0 20px 0 0 #fff;
    transition: all 0.4s ease;
}

.new_containt {
    padding: 30px;
}

.new_h3 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_p {
    width: 100%;
    max-width: 350px;
    margin-top: 10px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_box {
    border-radius: 20px;
    border: 2px solid var(--12, #F5F6F7);
    background: var(--5, #FFF);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.new_row {
    gap: 30px;
    z-index: 1;
}

.new_img {
    height: 300px;
    width: 100%;
    border-radius: 20px 20px 20px 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news_box:hover .new_img {
    transform: scale(1.05);
    border-radius: 20px 20px 0 0;
}

.news_main_effect {
    position: relative;
    overflow: hidden;
}


.news_main_effect::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.18);
    transition: all 0.6s ease;
    z-index: 2;
}


.simple_card:hover .news_main_effect::before {
    transform: translateY(100%);
}


.simple_card .new_img {
    position: relative;
    z-index: 1;
    width: 105%;
    height: 238px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: all 0.5s ease;
}


.simple_card:hover .new_img {
    transform: scale(1.05);
}

.news_box:hover {
    border-color: #FF2424;
}

.news_box:hover .new_h3 {
    color: #FF2424;
}

.news1,
.news2 {
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.news2 {
    left: -280px;
}

.news1 {
    right: -278px;
} */


/* ===============================NEWS SECTION – VIEWPORT================================ */
.news_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    transition: all 0.3s ease;
}

.news_arrow i {
    font-size: 18px;
    color: #000;
}

.news_arrow:hover {
    background: #FF2424;
}

.news_arrow:hover i {
    color: #fff;
}

.news_arrow_left {
    left: 10px;
}

.news_arrow_right {
    right: 10px;
}

.offer_section {
    overflow: hidden;
}

.news_viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.newss {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 39px;
}


/* Tablet */
@media (max-width: 991px) {
    .newss {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .newss {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.new_row {
    display: flex;
    gap: 30px;
    width: max-content;
    z-index: 1;
    animation: newsScroll 40s linear infinite;
}



.news_viewport:hover .new_row {
    animation-play-state: paused;
}


.new_row>a {
    flex: 0 0 auto;
}


.blog-date {
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 10px 20px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 30px;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.blog-date::before,
.blog-date::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 60px;
    background-color: transparent;
    box-shadow: 0 20px 0 0 #fff;
    transition: all 0.4s ease;
}

.blog-date::before {
    left: -30px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.blog-date::after {
    right: -30px;
    border-bottom-left-radius: 20px;
}


.new_containt {
    padding: 30px;
}

.new_h3 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_p {
    max-width: 350px;
    margin-top: 10px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.news_box {
    border-radius: 20px;
    border: 1px solid #8080804a;
    background: var(--5, #FFF);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news_box:hover {
    border-color: #FF2424;
}

.news_box:hover .new_h3 {
    color: #FF2424;
}



.news_main_effect {
    position: relative;
    overflow: hidden;
}

.new_img {
    height: 300px;
    width: 100%;
    border-radius: 20px 20px 20px 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news_box:hover .new_img {
    transform: scale(1.05);
    border-radius: 20px 20px 0 0;
}

.news_main_effect::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    transition: all 0.6s ease;
    z-index: 2;
}

.news1,
.news2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.news2 {
    left: -280px;
}

.news1 {
    right: -278px;
}

@keyframes newsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .new_row {
        animation-duration: 60s;
    }

    .new_img {
        height: 240px;
    }
}



/* =======================
   SHIPPING SECTION
======================= */

.shipping-section {
    width: 100%;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    background: #f5f6f7;
}

.shipping-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.shipping-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shipping-item img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.shipping-item h4 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.shipping-item p {
    font-size: 14px;
    color: #777;
    margin: 4px 0 0;
}

/* =======================
   RESPONSIVE
======================= */

@media (max-width: 991px) {
    .shipping-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .shipping-row {
        grid-template-columns: 1fr;
    }
}





/* ============================ 14.Rolliamge CSS ======================= */
.rollimage_section {
    margin: 0px 100px;
    border-radius: 100px;
}

.expand-img-main {
    overflow: hidden;
}

.expand-img {
    width: 100%;
}

/* ============================ 15.Footer CSS ======================= */
.footer-unique-section {
    position: relative;
    width: 100%;
    padding: 100px 0 0;
    overflow: hidden;
    color: #fff;

    background-color: #000000de;
}

.footer-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2;
}

.footer-content-wrapper {
    position: relative;
    z-index: 2;
}

.footer-main-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.f-title {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.f-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background-color: #FF2424;
}

/* Social Icons Style (Column 1) */
.f-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.f-socials a {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.f-socials a:hover {
    background: #FF2424;
    border-color: #FF2424;
    transform: translateY(-3px);
}

.f-socials img {
    width: 23px;
    filter: brightness(0) invert(1);
}

/* h.png Big Styling (Column 4) */
.f-deco-container {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
}

.f-deco-img-big {
    width: 435px;
    height: 170px;
    /* opacity: 0.9; */
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.5));
    transition: 0.5s ease;
}

.f-deco-img-big:hover {
    opacity: 1;
    transform: scale(1.05);
}

.contact-text {
    color: white;
    font-size: 17px;
    line-height: 1.6;
    display: block;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px 0;
    text-align: center;
    font-size: 17px;
    color: white;
}

.footer-bottom span {
    color: #FF2424;
    font-weight: 500;
}

.f-logo {
    width: 280px;
    margin-bottom: 25px;
}
@media (max-width:768px) {
   .f-logo {
    width: 250px;
    margin-bottom: 25px;
} 
}
.f-desc {
    font-size: 17px;
    line-height: 1.8;
    color: white;
    max-width: 320px;
}

.f-links {
    list-style: none;
    padding: 0;
}

.f-links li {
    margin-bottom: 12px;
}

.f-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s;
}

.f-links a:hover {
    color: #FF2424;
    padding-left: 8px;
}

@media (max-width: 991px) {

    .footer-main-grid {
        flex-direction: column;
        align-items: flex-start;
        /* IMPORTANT */
        text-align: left;
        /* IMPORTANT */
        gap: 40px;
    }

    .footer-col {
        width: 100%;
        text-align: left;
    }

    .f-title::after {
        left: 0;
        /* move line to left */
        transform: none;
    }

    .f-socials {
        justify-content: flex-start;
    }

    .f-deco-container {
        justify-content: flex-start;
    }

    .f-desc {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .f-deco-img-big {
        max-width: 100%;
    }
}

/* ============================ Preloader CSS ======================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.logo-pre {
    width: 100px;
    height: auto;
    transform: rotate(0deg);
    animation: logoZoom 1.5s ease-in-out infinite;
}

@keyframes logoZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.graf {
    width: fit-content;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text_pre {
    font-family: Outfit;
    font-size: 5em;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    position: relative;
    color: #FF2424;
    transform: rotate(-5deg);
}

/* .droplets {
    position: relative;
    width: 200px;
}
.gota1 {
    width: 8px;
    height: 150px;
    background-color: #FF2424;
    border-radius: 0px 0px 10px 10px;
    position: absolute;
    left: calc(50% - 30px);
    top: 15px;
    -webkit-animation: gota1-move 15s infinite ease-out;
    animation: gota1-move 15s infinite ease-out;
}
.gota2 {
    width: 6px;
    height: 70px;
    background-color: #FF2424;
    border-radius: 0px 0px 10px 10px;
    position: absolute;
    left: calc(50% + -20px);
    top: 15px;
    -webkit-animation: gota2-move 15s infinite ease-out;
    animation: gota2-move 10s infinite ease-out;
}
.gota1 {
    -webkit-animation-timing-function: ease-out;
}
.gota1 {
    animation-timing-function: ease-out;
}
@-webkit-keyframes gota1-move {
    0% {
        height: 0px;
    }
    50% {
        height: 150px;
        background-color: #FF2424;
    }
    90% {
        background-color: #FF2424;
    }
    100% {
        background-color: transparent;
    }
}
@keyframes gota1-move {
    0% {
        height: 0px;
    }
    50% {
        height: 150px;
        background-color: #FF2424;
    }
    90% {
        background-color: #FF2424;
    }
    100% {
        background-color: transparent;
    }
}
.gota2 {
    -webkit-animation-timing-function: ease-out;
}
.gota2 {
    animation-timing-function: ease-out;
}
@-webkit-keyframes gota2-move {
    0% {
        height: 0px;
    }
    50% {
        height: 70px;
        background-color: #FF2424;
    }
    90% {
        background-color: #FF2424;
    }
    100% {
        background-color: transparent;
    }
}
@keyframes gota2-move {
    0% {
        height: 0px;
    }
    50% {
        height: 50px;
        background-color: #FF2424;
    }
    90% {
        background-color: #FF2424;
    }
    100% {
        background-color: transparent;
    }
} */
/* ============================ Bottom To Top CSS ======================= */
.scroll-top {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #f8100d;
    color: #FFF;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateY(6px);
}

.scroll-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* ============================ Custom-Cursor CSS ======================= */
.circle-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 10px;
    box-sizing: border-box;
    z-index: 99999;
    transform-origin: center center;
    will-change: transform;
}

.circle-cursor--outer {
    width: 40px;
    height: 40px;
    border: 2px solid #FF2424;
}

.circle-cursor--inner {
    width: 6px;
    height: 6px;
    background: #FF2424;
}

/* ============================ 16.About_page CSS ======================= */
.about_hero_section {
    background-image: url(../image/about/about.jpg);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.about_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.about_heading {
    padding: 0px 0px;
    color: var(--5, #FFF);
    font-family: Outfit;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
}

.about_content {
    position: relative;
    z-index: 2;
    padding: 100px 0px;
}

.breadcrumb-item a {
    color: var(--8, #A8A9AD);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.breadcrumb-item a:hover {
    color: var(--10, #FF2424);
}

.breadcrumb-item.active {
    color: var(--5, #FFF);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(../image/svg/about_arrow.svg);
    margin: 7px 10px 0px 10px;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0px;
}

.about_border {
    gap: 20px;
}

.border_hero2 {
    border-left: 4px solid #FF2424;
}

.about_who_p {
    margin-top: 30px;
    margin-bottom: 40px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.about_border1 {
    border-top: 2px solid #F5F6F7;
    margin: 30px 0px;
}

.about_flex_img {
    gap: 30px;
}

.about_flex_img1 {
    margin-top: 60px;
    gap: 40px;
}

.about_flex {
    gap: 30px;
}

.about_img {
    border-radius: 30px;
    width: 100%;
}

.about_img1 {
    margin-right: 60px;
}

.about_brush {
    top: 138px;
    z-index: 1;
    right: 0px;
    animation: brushFloat2 4s ease-in-out infinite;
}

.about_help_img {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.1);
}

.about_p_txt {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.about_p_txt1 {
    color: var(--10, #FF2424);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.about_call {
    gap: 10px;
}

.about_p_txt1:hover {
    color: #000;
}

.about_call_row {
    gap: 100px;
}

.about_call_row1 {
    max-width: 550px;
}

.about_balty {
    top: -370px;
    left: -100px;
    z-index: 1;
    animation: floatUpDown 4s ease-in-out infinite;
}

.counter_section {
    position: relative;
    z-index: 2;
}

.wedo_row {
    gap: 100px;
}

.wedo_h3 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
}

.wedo_p_txt {
    margin-top: 10px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.baby_row {
    gap: 30px;
}

.wedo_img {
    border-radius: 30px;
}

.wedo_h31 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}

.wedo_h32 {
    max-width: 90px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.years {
    gap: 20px;
    margin-left: 300px;
    padding-bottom: 30px;
}

.dream3 {
    max-width: 700px;
    width: 100%;
    margin-left: -265px;
}

.accordion-button:not(.collapsed) {
    color: var(--10, #FF2424);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    background-color: rgba(255, 36, 36, 0.1);
    box-shadow: none;
}

.accordion-item {
    border: none;
    outline: none;
}

.accordion-body {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 15px 0px;
}

.accordion-button {
    margin-top: 15px;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    background-color: #F5F6F7;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../image/svg/acc.svg);
    width: 30px;
    height: 30px;
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(21%) sepia(100%) saturate(2288%) hue-rotate(345deg) brightness(104%) contrast(108%);
}

.accordion-button::after {
    width: 30px;
    height: 30px;
    content: "";
    background-image: url(../image/svg/acc.svg);
    background-size: cover;
}

.wedo_row1 {
    width: 630px;
}

.wedo_row2 {
    max-width: 550px;
}

/* ============================ 17.Process_page CSS ======================= */
.process_hero_section {
    background-image: url(../image/process/process.jpg);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.process_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.buiding_section {
    background-color: #F5F6F7;
}

.offer_h22 {
    margin: auto;
    max-width: 850px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}

.building_box {
    gap: 40px;
}

.building_slider {
    margin-right: -300px;
}

.work_section1 {
    margin: 100px;
}

/* ============================ 18.Team_page CSS ======================= */
.team_hero_section {
    background-image: url(../image/team/team_hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.team_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.team_member {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.blog-date1::before {
    bottom: 0px;
    left: -40px;
    height: 60px;
    width: 40px;
    border-bottom-right-radius: 20px;
}

.blog-date1::after {
    content: "";
    bottom: 0px;
    right: -40px;
    height: 60px;
    width: 40px;
    border-bottom-left-radius: 20px;
    transition: all 0.4s ease;
}

.blog-date1 {
    padding: 10px 15px;
    background: #FFF;
    position: absolute;
    bottom: 0;
    right: 40px;
    border-radius: 25px 25px 0 0;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 10px 15px;
    height: auto;
    overflow: visible;
}

.blog-date1::before,
.blog-date1::after {
    content: "";
    position: absolute;
    background-color: transparent;
    height: 60px;
    width: 40px;
    box-shadow: 0 20px 0 0 #fff;
    transition: all 0.4s ease;
}

.new_img1 {
    height: 300px;
    width: 100%;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.new_h4 {
    margin-top: 10px;
    color: var(--4, #222);
    text-align: center;
    text-overflow: ellipsis;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.team_box {
    border-radius: 20px;
    border: 2px solid var(--12, #F5F6F7);
    background: var(--5, #FFF);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team_box:hover .new_img1 {
    transform: scale(1.05);
    border-radius: 20px 20px 0 0;
}

.team_box:hover {
    border-color: #FF2424;
}

.team_box:hover .new_h3 {
    color: #FF2424;
}

.blog-date1 .main-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.social-icons {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.social-icons .icon {
    background: #191919;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.team_box:hover .social-icons {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.team_box:hover .social-icons .icon {
    opacity: 1;
    transform: translateY(0);
}

.team_box:hover .social-icons .icon:nth-child(1) {
    transition-delay: 0.1s;
}

.team_box:hover .social-icons .icon:nth-child(2) {
    transition-delay: 0.2s;
}

.team_box:hover .social-icons .icon:nth-child(3) {
    transition-delay: 0.3s;
}

.team_box:hover .social-icons .icon:nth-child(4) {
    transition-delay: 0.4s;
}

.team_icon {
    width: 40px;
    height: 40px;
    background-color: #191919;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.team_icon img {
    width: 22px;
    height: 22px;
    z-index: 2;
    position: relative;
}

.team_icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #FF2424;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 1;
}

.team_icon:hover::before {
    width: 120%;
    height: 120%;
}

.extra-team {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.extra-team.show {
    opacity: 1;
    transform: translateY(0);
}

.team_buttom {
    margin-top: 60px !important;
}

.team_detail {
    gap: 140px;
}

.team_detail_ptxt {
    margin-top: 30px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.progress_bar {
    padding: 30px;
    border-radius: 20px;
    background: var(--12, #F5F6F7);
    margin-top: 30px;
}

.progress-bar {
    overflow: hidden;
    text-align: start;
    background-color: transparent;
}

.progress-title-holder {
    position: relative;
}

.progress-title-holder1 {
    margin-top: 30px;
}

.progress-title {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.progress-number-wrapper,
.progress-number-mark {
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.progress-number-mark {
    margin-bottom: 4px;
    position: absolute;
    bottom: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.progress-content-outter {
    margin-top: 15px;
    height: 4px;
    background-color: #FFF;
}

.progress-content {
    height: 4px;
    background-color: #FF2424;
    width: 0%;
}

.team_detail_h3 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.right_img {
    max-width: 36px;
    width: 100%;
    height: 36px;
    background-color: #FF2424;
    filter: drop-shadow(0 3px 10px rgba(248, 56, 57, 0.80));
}

.rigth_line {
    margin-top: 20px;
    gap: 15px;
}

.right_ptxt {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.tema_detail1 {
    position: sticky;
    top: 120px;
}

.parent-section {
    overflow: visible;
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    border-radius: inherit;
}

.detail_icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background-color: #FFF;
    top: 10px;
    right: 10px;
    z-index: 20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail_icon img {
    width: 60%;
    height: 60%;
}

.social-media-icons {
    position: absolute;
    top: 70px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 15;
}

.social-media-icons .team_icon {
    width: 40px;
    height: 40px;
    background-color: #191919;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-media-icons .team_icon img {
    width: 50%;
    filter: brightness(0) invert(1);
}

.tema_detail1:hover .team-image-wrapper::after {
    opacity: 1;
}

.tema_detail1:hover .social-media-icons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.team_detail_h3txt {
    color: var(--3, #000);
    text-align: center;
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}

/* ============================ 19.Faq_page CSS ======================= */
.faq_hero_section {
    background-image: url(../image/faq/faq_hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.faq_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 100%);
}

/* ============================ 20.Pricing_plan CSS ======================= */
.pricing_hero_section {
    background-image: url(../image/pricing/pricing1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.pricing_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.pricing_ptxt {
    margin: auto;
    max-width: 630px;
    margin-top: 20px;
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #FF2424;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.toggle-label1 {
    color: var(--10, #FF2424);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.toggle-label2 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.toggle-label3 {
    background-color: rgba(255, 36, 36, 0.2);
    padding: 5px;
    color: var(--10, #FF2424);
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.plan_boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

.show-animate {
    animation: fadeInUp 0.6s ease forwards;
}

.hide-animate {
    animation: fadeOutDown 0.4s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
}

.plan_box {
    max-width: 410px;
    border: 1px solid var(--3, #000);
}

.plan_containt {
    background-color: #000;
    padding: 30px;
}

.plan_h3 {
    color: var(--10, #FF2424);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.plan_ptxt {
    margin-top: 15px;
    color: var(--5, #FFF);
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.plan_ptxt_span {
    color: var(--12, #F5F6F7);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.plan_containt2 {
    padding: 30px;
}

.plan_containt1 li {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
}

.plan_containt1 {
    padding: 0px 30px;
}

.plan_button {
    margin-top: 30px;
}

/* ============================ 21.Appointment CSS ======================= */
.appointment_hero_section {
    /* background-image: url(../image/appointment/appointment.jpg); */
    background-image: url(../image/project/project_back.png);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.appointment_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.chhose_section2 {
    background-color: #F5F6F7;
    margin: 100px;
    border-radius: 100px;
    padding: 100px;
}

/* ============================ 22.Testimonial CSS ======================= */
.testimonial_hero_section {
    background-image: url(../image/testimonial/testimonial.jpg);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.testimonial_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.testimonial_back1 {
    margin-top: 60px;
    max-width: 600px;
    border-radius: 30px;
    background: var(--5, #F5F6F7);
}

.testi_mySwiper1 {
    padding-top: 60px;
}

.who1_img_test {
    border-radius: 30px;
}

.who2_img_test {
    border-radius: 30px;
}

.testi_slide_box1 {
    padding: 30px;
}

.whor_row1 {
    gap: 30px;
}

/* ============================ 23.Error CSS ======================= */
.error_hero_section {
    background-image: url(../image/error/error.jpg);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.error_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.error-main-image {
    max-width: 415px;
    animation: brushRotate 10s linear infinite;
}

@keyframes brushRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error-number {
    animation: float404 3s ease-in-out infinite, glow404 3s ease-in-out infinite;
}

@keyframes float404 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.error-image-area {
    margin-top: 25px;
}

.error_txt {
    margin-top: 45px;
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.error_button {
    margin-top: 40px !important;
}

.error-number {
    min-height: 360px;
    max-width: 274px;
}

/* ============================ 24.Service_page CSS ======================= */
.service_hero_section {
    background-image: url(../image/project/project_back.png);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.service_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.redirect_box {
    border: 2px solid var(--12, #F5F6F7);
    padding: 30px;
}

.redirect_link {
    border: 2px solid var(--12, #F5F6F7);
    padding: 12px 20px;
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow: hidden;
    position: relative;
}

.redirect_txt {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    transition: color 0.5s ease;
}

.redirect_link1 {
    margin-top: 10px;
}

.redirect_link img {
    transition: transform 0.6s ease, filter 0.5s ease;
}

.redirect_link:hover {
    background-color: #000;
}

.redirect_link:hover .redirect_txt {
    color: #fff;
}

.redirect_link:hover img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(100%) saturate(0%) hue-rotate(360deg) brightness(105%) contrast(101%);
    transform: rotate(-30deg);
}

.redirect_link.active {
    background-color: #000;
}

.redirect_link.active .redirect_txt {
    color: #fff;
}

.redirect_link.active img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(100%) saturate(0%) hue-rotate(360deg) brightness(105%) contrast(101%);
    transform: rotate(-30deg);
}

.redirect_link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: left 0.6s ease;
    z-index: 0;
}

.redirect_link:hover::before,
.redirect_link.active::before {
    left: 0;
}

.redirect_txt,
.redirect_link img {
    position: relative;
    z-index: 1;
}

.pdf_box {
    margin: 40px 0px;
    padding: 10px;
    border: 2px solid var(--12, #F5F6F7);
}

.pdf {
    width: 60px;
    height: 60px;
    background-color: #F5F6F7;
}

.pdf_icon_box {
    gap: 15px;
}

.pdf_icon_box_ptxt {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.pdf_arrow_box {
    width: 100%;
    margin-left: 10px;
    max-width: 48px;
    height: 48px;
    border: 2px solid var(--3, #000);
}

.service_back_image {
    width: 100%;
    max-width: 410px;
    min-height: 485px;
    background-image: url('../image/service/service1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: darken;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-box {
    max-width: 210px;
}

.service_pimage {
    color: var(--5, #FFF);
    text-align: center;
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.service_pimage1 {
    margin-top: 15px;
    color: var(--5, #FFF);
    text-align: center;
    font-family: Outfit;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.service_h2 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}

.service_title {
    gap: 30px;
}

.servive_p {
    margin-top: 20px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.service_image {
    margin: 40px 0px;
    border-radius: 30px;
}

.service_h3 {
    margin-top: 40px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.serivce_two_iamge {
    margin-top: 40px;
}

.serivce_two_img {
    border-radius: 30px;
}

.service_play {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin-top: 40px;
}

.service_paly_img {
    width: 100%;
    border-radius: 30px;
    display: block;
    object-fit: cover;
}

.service_play1 {
    display: flex;
    width: 100px;
    height: 100px;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
    justify-content: center;
    align-items: center;
}

.service_play1:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service_sticky {
    position: sticky;
    top: 120px;
}



/* ===== PAGE INTRO SECTION ===== */
.page_intro {
    background: #fff;
    text-align: center;
    margin-top: 50px;
}

.page_title {
    font-family: "Outfit", sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: #3b2f1f;
    /* classy brown tone like image */
    margin-bottom: 18px;
}

.page_desc {
    max-width: 820px;
    margin: 0 auto;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #555;
}

.page_desc strong {
    color: #000;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page_title {
        font-size: 32px;
    }

    .page_desc {
        font-size: 16px;
        line-height: 26px;
        padding: 0 10px;
    }
}


/* ============================ 25.Project_page CSS ======================= */
.heart_icon.active i {
    color: #e32026;
}

.heart_icon i {
    color: #fff;
    font-size: 16px;
    transition: .25s ease;
}

/* flying hearts */
.flying-heart {
    position: absolute;
    color: #e32026;
    font-size: 14px;
    pointer-events: none;
    animation: flyHeart 1.2s ease-out forwards;
}

@keyframes flyHeart {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(var(--x), var(--y)) scale(0.2);
    }
}

.heart_icon {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.heart_icon i {
    color: #fff;
    font-size: 16px;
    transition: 0.3s ease;
}

.heart_icon:hover i {
    color: #e32026;
}

.project_hero_section {
    /* background-image: url(../image/project/project_back.jpg); */
    background-image: url(../image/project/project_back.png);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.project_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.quick-view-content {
    display: none;
}

.project {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.project_img {
    border-radius: 30px;
}

.filters {
    gap: 40px;
}

.filters a {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.filter_link.active {
    color: #FF2424;
    border-bottom: 2px solid #FF2424;
}

.project_h2 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 39px;
    font-style: normal;
    font-weight: 700;
    line-height: 53px;
}

.project_ptxt {
    margin-top: 30px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
}

.project_ptxt2 {
    max-width: 150px;
    color: var(--8, #A8A9AD);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.project_box {
    border: 2px solid var(--12, #F5F6F7);
    padding: 12px 20px;
}

.project_ptxt1 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.project_box1 {
    margin-top: 30px;
}

.project_box2 {
    margin-top: 10px;
}

.project_two_image {
    margin-top: 30px;
    gap: 30px;
}

.project3_img {
    margin-top: 30px;
    border-radius: 30px;
}

.project_masonry {
    column-count: 3;
    --webkit-column-count: 3;
    --moz-column-count: 3;
    gap: 30px;
}

.masonry_product {
    margin-bottom: 30px;
}

/* ============================ 26.Blog_page CSS ======================= */
.blog_hero_section {
    background-image: url(../image/project/project_back.png);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.blog_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.new_row1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.custom-pagination {
    margin-top: 40px;
    gap: 20px;
}

.page-item {
    width: 60px;
    height: 60px;
    border: 2px solid #F5F6F7;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-item.active {
    background: #000;
    color: #fff;
    border-color: #000;
    opacity: 1;
}

.page-item.arrow {
    cursor: pointer;
    background-color: #F5F6F7;
}

.page-item.arrow:hover {
    background-color: #000;
}

.page-item.arrow:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(273deg) brightness(103%) contrast(103%);
}

.page-item:hover {
    color: #FFF;
    background-color: #000
}

.searchbar {
    max-width: 60px;
    width: 100%;
    height: 60px;
    background: var(--12, #F5F6F7);
}

.blogsearch {
    padding: 10px 15px;
    width: 100%;
    color: var(--8, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    outline: none;
}

.blogsearch::placeholder {
    color: var(--8, #A8A9AD);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.search_box {
    padding: 10px;
    border: 2px solid var(--12, #F5F6F7);
    background: var(--5, #FFF);
}

.blog_ptxt {
    margin-top: 40px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.blog_p_color {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.blog_color {
    gap: 10px;
}

.blog_read {
    gap: 20px;
}

.blog_tag {
    gap: 20px;
}

.blog_tab {
    margin-top: 20px;
}

.blog_ptxt1 {
    margin-top: 20px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.blog_p_cote {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
}

.nav-link {
    padding: 0px;
}

.cote_box {
    margin-top: 40px;
    gap: 30px;
}

.blog_line {
    max-width: 100px;
    width: 100%;
    height: 2px;
    background-color: #222;
}

.blog_line_part {
    margin-top: 20px;
    gap: 12px;
}

.blog_line_txt {
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.youtub_btn {
    width: 80px;
    height: 80px;
    background-color: #FFF;
}

.youtub_btn {
    transform: translate(-50%, -50%);
}

.blog_play {
    margin-top: 40px;
    overflow: hidden;
    border-radius: 30px;
}

.blog_play img.video_thumb {
    width: 100%;
    display: block;
}

.youtub_btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.3s ease;
}

.video-loaded iframe {
    max-width: 850px;
    width: 100%;
    height: 500px;
    border-radius: 30px;
}

.blog_border1 {
    margin: 40px 0px;
    border-top: 2px solid #F5F6F7;
}

.blog_tag_color {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 18px 20px;
    background: var(--12, #F5F6F7);
    display: inline-block;
    transition: transform 0.3s ease;
}

.blog_tag_color:hover {
    color: #FFF;
    transform: translateY(-5px);
    background-color: #FF2424;
}

.blog_color_tag {
    gap: 10px;
}

.blog_heart {
    width: 60px;
    height: 60px;
    border: 2px solid #F5F6F7;
}

.blog_heart_tag {
    gap: 30px;
    position: relative;
}

.blog_heart {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #fff;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.blog_heart img {
    position: relative;
    z-index: 5;
}

.blog_heart:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(273deg) brightness(103%) contrast(103%) !important;
}

.blog_heart::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #FF2424;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
    z-index: 1;
    opacity: 0;
}

.blog_heart:hover::before {
    width: 120%;
    height: 120%;
    opacity: 1;
}

.arrow-text {
    color: var(--8, #A8A9AD);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.9px;
    gap: 10px;
}

.link-title {
    max-width: 350px;
    width: 100%;
    margin-top: 10px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.prev a {
    text-align: left;
}

.prev .arrow-text {
    justify-content: flex-start;
}

.next {
    text-align: right;
}

.next .arrow-text {
    justify-content: flex-end;
}

.blog_h3 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.comment_inp {
    border-bottom: 2px solid #F5F6F7 !important;
    color: var(--8, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    outline: none;
    padding: 0px 10px 10px 0px;
}

.comments {
    margin-top: 30px;
    gap: 30px;
}

.comment_inp::placeholder {
    color: var(--8, #A8A9AD);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.comment_textare::placeholder {
    color: var(--8, #A8A9AD);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.comment_textare {
    border-bottom: 2px solid #F5F6F7 !important;
    color: var(--8, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    outline: none;
    resize: none;
    height: 100px;
}

.consent-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    margin-top: 30px;
}

.custom-checkbox {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid #888;
    border-radius: 9px;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visually-hidden:checked+.custom-checkbox {
    border-color: #FF2424;
    background-color: #FF2424;
}

.visually-hidden:checked+.custom-checkbox::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 15px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.agree_ptxt {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.blog_button {
    margin-top: 30px;
}

.blod_resend {
    padding: 30px;
    margin-top: 40px;
    border: 2px solid var(--12, #F5F6F7);
}

.blog_h4 {
    color: var(--8, #A8A9AD);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.blog_ptxt2 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.resent_blog {
    gap: 15px;
}

.resent_blog_border {
    border-top: 2px solid #F5F6F7;
    margin: 20px 0px;
}

.service_back_image1 {
    margin-top: 40px;
}

.new_row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ============================ 27.Contect CSS ======================= */
.contact_ptxt {
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.contact_call {
    width: 30px;
    height: 30px;
    /* background-color: rgba(0, 0, 0, 0.1); */
}

.contact_pcall {
    color: var(--8, #A8A9AD);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.contact_pcall1 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.contact_pcall1:hover {
    color: #FF2424;
}

.contact_con {
    gap: 10px;
    padding-top: 20px;
    max-width: 300px;
    width: 100%;
}

.contact_pcall2 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.contact_icon {
    gap: 20px;
    margin-top: 40px;
}

.contact_icon a img {
    transition: transform 0.3s ease;
}

.contact_icon a:hover img {
    transform: scale(1.2);
    filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(4143%) hue-rotate(348deg) brightness(101%) contrast(101%);
}

.contact_form {
    padding: 30px;
    background: rgba(168, 169, 173, 0.1);
}

.contact_inp {
    padding: 15px 20px;
    color: var(--4, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    outline: none;
}

.contact_inp[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact_inp::placeholder {
    color: var(--4, #222);
}

.contact_inp1 {
    margin-top: 20px;
}

.contact_txtarea {
    padding: 15px 20px;
    color: var(--4, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    outline: none;
    resize: none;
    height: 120px;
}

.contact_txtarea::placeholder {
    color: var(--4, #222);
}

.contact_button {
    margin-top: 30px;
}

.map-iframe {
    width: 100%;
    height: 750px;
}

.deream_inp {
    position: relative;
    align-items: center;
    gap: 8px;
}

.dream_input {
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}

.calendar_icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.hidden_date {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse:hover {
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ============================ 28.Setting CSS ======================= */
/* modal card */
.scanner-modal {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    position: relative;
}

/* inner spacing */
.scanner-body {
    padding: 24px;
    background: #f7f7f7;
    border-radius: 14px;
}

/* image */
.scanner-preview {
    width: 100%;
    max-width: 280px;
    display: block;
    margin: auto;
}

/* close button */
.scanner-close {
    position: absolute;
    top: 14px;
    right: 14px;
    /* background-color: #fff; */
    /* border-radius: 50%; */
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal.fade .modal-dialog {
    transform: scale(0.9);
    transition: transform 0.35s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
}


.setting-main {
    position: fixed;
    left: 0;
    top: 70%;
    z-index: 100;
    gap: 18px;
    display: flex;
    flex-direction: column;
}

.box-fix-setting {
    width: 50px;
    height: 60px;
    background-color: #f8100d;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transform: scaleX(-1);
}

.setting {
    /* animation: rotation 3s infinite linear; */
    width: 39px;
    transform: scaleX(-1);
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.demo-box {
    display: block;
    background: #FFF;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 15px;
}

.demo-box img {
    border-radius: 15px;
}

.demo-box p {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    padding-top: 15px;
    text-align: center;
}

.offcanvas {
    background: #F5F6F7;
    z-index: 9999;
}

.offcanvas-title img {
    max-width: 80%;
}

.btn-close {
    --bs-btn-close-focus-shadow: none;
}


@media (max-width: 575px) {
    .pos1 {
        transform: none;
        left: auto;
    }
}

@media (max-width: 575px) {
    .pos4 {
        transform: none;
        left: auto;
    }
}













.offer_section {
    overflow: hidden;
}

.news_viewport {
    position: relative;
}

/* swiper smooth infinite */
.newsSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* arrows */
.news_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
    cursor: pointer;
}

.news_arrow_left {
    left: 10px;
}

.news_arrow_right {
    right: 10px;
}

.news_arrow:hover {
    background: #FF2424;
}

.news_arrow:hover i {
    color: #fff;
}

/* equal height cards */
.newsSwiper .swiper-slide {
    display: flex;
    height: auto;
}

.news_box {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: #fff;
    overflow: hidden;
}

.news_main_effect {
    position: relative;
}

.new_img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    bottom: 0;
    left: 20px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px 20px 0 0;
}

.new_containt {
    padding: 20px;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .new_img {
        height: 240px;
    }
}

.bubbles {
    width: fit-content;
    padding: 5px 11px;
    background-color: #f8100d;
    border: 1px solid #f8100d;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 53px;

}

.text {
    color: #FFF;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    position: relative;
    z-index: 1;
    transition-delay: 0.5s;
}

.bubbles::before {
    top: 0;
    left: 0;
}

.bubbles::after {
    top: 100%;
    left: 100%;
}

.bubbles::before,
.bubbles::after {
    content: "";
    width: 150%;
    aspect-ratio: 1 / 1;
    scale: 0;
    transition: 1000ms cubic-bezier(0.76, 0, 0.24, 1);
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    translate: -50% -50%;
}

.button_img {
    position: relative;
    z-index: 1;
    transition-delay: 0.5s;
    padding-left: 10px;
}

.bubbles:hover .text {
    color: #f8100d;
}

.bubbles:hover .button_img {
    filter: brightness(0) saturate(100%) invert(21%) sepia(91%) saturate(3856%) hue-rotate(349deg) brightness(108%) contrast(101%);
}

.bubbles:hover::before,
.bubbles:hover::after {
    scale: 1;
}

.bubbles:active {
    scale: 0.98;
    filter: brightness(0.9);
}

.bubbles1 {
    width: fit-content;
    padding: 20px 30px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
    gap: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bubbles1:hover>.text {
    color: #FF2424;
}

.bubbles1:hover .button_img {
    filter: brightness(0) saturate(100%) invert(21%) sepia(91%) saturate(3856%) hue-rotate(349deg) brightness(108%) contrast(101%);
}

.bubbles1:hover::before,
.bubbles1:hover::after {
    scale: 1;
}

.bubbles1:active {
    scale: 0.98;
    filter: brightness(0.9);
}

.bubbles1::before {
    top: 0;
    left: 0;
}

.bubbles1::after {
    top: 100%;
    left: 100%;
}

.bubbles1::before,
.bubbles1::after {
    content: "";
    width: 150%;
    aspect-ratio: 1 / 1;
    scale: 0;
    transition: 1000ms cubic-bezier(0.76, 0, 0.24, 1);
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    translate: -50% -50%;
}

.redirect_button {
    width: fit-content;
}











/* ============================= PRODUCT DETAIL PAGE ============================= */

@media (min-width: 992px) {
    .product_gallery_container {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}

.product_wrap {
    background: #fff;
    position: relative;
}

.wishlist_link {
    color: #3f3f3f;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.wishlist_link:hover {
    color: #f8100d;
}

.wishlist_link i {
    margin-right: 5px;
}

.price_box {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #fff3f3;
    padding: 14px 18px;
    border-left: 4px solid #f8100d;
    border-radius: 12px;
}

.price_left h2 {
    color: #f8100d;
    font-size: 28px;
    margin: 0;
}

.old_price {
    margin-left: 8px;
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
}

.save_tag {
    background: #e7f7ec;
    color: #2e7d32;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 6px;
}

.customize_title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    letter-spacing: 1px;
    margin: 30px 0;
    color: #3f3f3f;
    font-weight: 600;
}

.customize_title::before,
.customize_title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right,
            rgba(248, 16, 13, 0.9),
            rgba(248, 16, 13, 0.55),
            rgba(248, 16, 13, 0.2),
            rgba(248, 16, 13, 0.05));
}

.option_block {
    padding-bottom: 11px;
    margin-bottom: 30px;
}

.option_head {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #f8100d;
    margin-bottom: 14px;
}

.option_line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right,
            rgba(248, 16, 13, 0.9),
            rgba(248, 16, 13, 0.55),
            rgba(248, 16, 13, 0.2),
            rgba(248, 16, 13, 0.05));
}

.option_head small {
    white-space: nowrap;
    color: #3f3f3f;
    font-weight: 500;
    font-size: 14px;
}

.option_items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option_items button {
    padding: 10px 16px;
    border-radius: 7px;
    border: 1px solid gray;
    background: #f4f4f4;
    font-size: 14px;
    cursor: pointer;
    color: black;
}

.option_items button.active {
    background: #f8100d;
    color: white;
    font-size: 15px;
    border: 1px solid #f8100d;
    font-weight: 500;
}

.qty_box {
    display: flex;
    align-items: center;
    border: 1px solid gray;
    border-radius: 7px;
    width: fit-content;
    margin-top: 8px;
}

.qty_box button {
    width: 42px;
    height: 42px;
    border: none;
    background: none;
    font-size: 18px;
}

.qty_box strong {
    width: 40px;
    text-align: center;
}

.action_btns {
    display: flex;
    gap: 14px;
    margin: 25px 0;
}

.cart_btn {
    flex: 1;
    font-size: 20px;
    padding: 14px;
    border-radius: 7px;
    border: 1px solid gray;
    background: #fff;
}

.buy_btn {
    flex: 1;
    padding: 14px 25px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: #1f8d23;
    color: #fff;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1;
}

.buy_btn::before,
.buy_btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    box-shadow: 0 0 0 0 rgba(31, 141, 35, 0.6);
    animation: whatsappRippleSoft 2.5s infinite cubic-bezier(0.25, 0, 0.3, 1);
}

.buy_btn::after {
    animation-delay: 1.25s;
}

@keyframes whatsappRippleSoft {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        opacity: 1;
    }

    100% {
        box-shadow: 0 0 15px 30px rgba(37, 211, 102, 0);
        opacity: 0;
    }
}

.main_image_view {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
}

.main_image_view img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-out;
}

.main_image_view:hover img {
    transform: scale(2);
}

.thumb_item {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    background: #fff;
    padding: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.thumb_item.active {
    border-color: #f8100d;
}

@media (max-width: 768px) {
    .main_image_view {
        height: 350px;
    }

    .thumb_item {
        width: 65px;
        height: 65px;
    }

    .action_btns {
        flex-direction: column;
    }
}
































































/* ================= Media Showcase ================= */
.media_showcase {
    padding: 80px 0;
}

.media_grid {
    column-count: 3;
    column-gap: 20px;
}

.media_grid img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 16px;
    cursor: pointer;
    display: block;
    break-inside: avoid;
}


/* Responsive */
@media (max-width: 768px) {
    .media_grid {
        column-count: 2;
    }

    .viewer_image {
        max-width: 92%;
        max-height: 75%;
    }
}

@media (max-width: 480px) {
    .media_grid {
        column-count: 1;
    }
}



/* Full Screen Overlay */
.media_viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.viewer_container {
    position: relative;
    background: #ffffff;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close_btn,
.nav_btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 0 !important;
}

.close_btn {
    position: absolute;
    top: -4px;
    right: 2px;
    background: #ff0000;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    cursor: pointer;
    font-size: 18px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.close_btn:hover {
    background: #000;
    transform: scale(1.1) rotate(90deg);
}

.nav_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #111;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: none;
    transition: 0.3s;
    z-index: 10;
}

.nav_btn:hover {
    background: #ff0000;
    color: #fff;
}

.prev_btn {
    left: -25px;
}

.next_btn {
    right: -25px;
}

.viewer_image {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 15px;
    display: block;
    object-fit: contain;
    background: #f9f9f9;
}

.image_counter {
    margin-top: 20px;
    padding: 6px 18px;
    background: #f1f1f1;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #555;
    border: 1px solid #ddd;
}






















/* ================= Privacy Policy ================= */
.privacy-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.privacy-content p,
.privacy-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.privacy-content ul {
    padding-left: 20px;
    list-style-type: disc;
}

.privacy-policy-section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .privacy-content h3 {
        font-size: 20px;
    }
}





















































/* ================= Serach Pop up ================= */
.search_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.search_overlay.active {
    opacity: 1;
    visibility: visible;
}

.search_popup {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: #fff;
    padding: 30px;
    transition: 0.4s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.search_popup.active {
    right: 0;
}

/* ================= HEADER ================= */
.search_popup_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* CLOSE BUTTON */
.search_close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.search_close i {
    font-size: 14px;
}

.search_close:hover {
    background: #f8100d;
    border-color: #f8100d;
}

.search_close:hover i {
    color: #fff;
}

/* ================= SEARCH INPUT ================= */
.search_popup_body {
    position: relative;
}

.search_popup_body input {
    width: 100%;
    padding: 16px 45px 16px 10px;
    font-size: 18px;
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
}

.search_popup_body i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

/* ================= RESULTS ================= */
.search_results {
    margin-top: 25px;
    display: none;
    flex-direction: column;
    gap: 14px;
    max-height: 320px;
    /* FIXED HEIGHT */
    overflow-y: auto;
    padding-right: 5px;
}

/* scrollbar */
.search_results::-webkit-scrollbar {
    width: 4px;
}

.search_results::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* PRODUCT CARD */
.search_result_item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
}

.search_result_item:hover {
    background: #fff;
    border-color: #f8100d;
    transform: translateX(4px);
}

.search_result_item img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
}

.search_result_info h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
}

.search_result_info span {
    font-size: 14px;
    color: #f8100d;
    font-weight: 600;
}

/* ================= SEARCH MORE ================= */
.search_more {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    display: none;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.search_more i {
    font-size: 18px;
    transition: 0.3s;
}

.search_more:hover {
    color: #f8100d;
}

.search_more:hover i {
    transform: translateX(6px);
}





































































/* ================= TERMS & CONDITIONS ================= */

.terms-section {
    background: #ffffff;
}

.terms-title h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.terms-title p {
    font-size: 16px;
    color: #777;
}

.terms-content {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.terms-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 12px;
    color: #111;
}

.terms-content p {
    margin-bottom: 14px;
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.terms-content ul li {
    margin-bottom: 10px;
    list-style: disc;
}

@media (max-width: 768px) {
    .terms-title h2 {
        font-size: 32px;
    }

    .terms-content {
        font-size: 16px;
    }

    .terms-content h3 {
        font-size: 22px;
    }
}
























/* PRODUCT DETAIL RIGHT SIDE CAITAIN */

.product_wrap {
    padding: 20px;
}

.project_h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #111;
}

.product_no_box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.product_label {
    font-size: 16px;
    font-weight: 600;
    color: #555;
}

.product_number {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.customize_title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #111;
}

.action_btns {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.download_btn,
.buy_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.download_btn {
    background: #111;
    color: #fff;
    border: 1px solid #111;
}

.buy_btn {
    background: #25D366;
    color: #fff;
    border: 1px solid #25D366;
}

.download_btn i,
.buy_btn i {
    font-size: 18px;
}

/* =========================
   Responsive CSS
========================= */

@media (max-width: 991px) {

    .product_wrap {
        padding: 15px 0;
    }

    .project_h2 {
        font-size: 28px;
    }

    .action_btns {
        gap: 12px;
    }

    .download_btn,
    .buy_btn {
        padding: 13px 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {

    .project_h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .product_no_box {
        margin-bottom: 20px;
    }

    .action_btns {
        flex-direction: column;
        align-items: stretch;
    }

    .download_btn,
    .buy_btn {
        width: 100%;
        padding: 14px 18px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .project_h2 {
        font-size: 21px;
    }

    .product_label,
    .product_number {
        font-size: 14px;
    }

    .customize_title {
        font-size: 14px;
    }

    .download_btn,
    .buy_btn {
        font-size: 14px;
        padding: 13px 16px;
    }
}














/* blog detail css Add */
.blog_details_row {
    margin-top: 50px;
}

.blog_details_img {
    border-radius: 20px;
}

.service_swiper_row {
    margin-top: 50px;
}

.service_swiper_img {
    border-radius: 20px;
}