@font-face {
    font-family: "ArialCE";
    src: url(assets/font/arial/ArialCE.ttf);
}

.hero-section {
    border-radius: 0 0 50px 50px;
}


.about-section {

    z-index: -1;
    position: relative;
    margin-top: -30px;
    background: #2d2d2d;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.product-section {
    border-radius: 50px;
    margin-top: 0px;
    background: #000000;
    z-index: 1;
    position: relative;
}


.team-card {
    background: #343333;
    border-radius: 15px;
    text-align: center;
    /* padding: 30px 20px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

/* .team-card:hover {
    transform: translateY(-10px);
} */

.team-paragraph {
    color: #000000;
}

.team-card img {
    width: 100%;
    transform: translateY(20px);
    height: 100%;
    /* border-radius: 50%; */
    object-fit: cover;
    /* margin-bottom: 15px; */
    filter: grayscale(1);
    margin-top: 40px;
    transition: all 0.8s linear;
}

.team-card:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
    transition: all 0.8s linear;
}

.team-card .team-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
    z-index: 4;

}

.team-card .team-info p {
    margin-bottom: 0;
    color: #fff;
}

.team-card .team-info h3 {
    margin-bottom: 0px;
    color: #fff;
    font-size: 22px;
    font-family: 'Raleway';
}

.team-card p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
}

.team-card:after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    background: linear-gradient(0deg, #5e6c03 40%, transparent 100%);
    z-index: 3;
    width: 100%;
    height: 40%;
    transition: all 0.5s linear;
}

.team-card:hover:after {
    bottom: 0%;
}

.team-section {
    background: #fff;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.text-black {
    color: #000;
}

.disease1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 70%;
    width: 20%;
    display: flex;
    justify-content: left;
    opacity: .2;
}

.disease1 img {
    object-fit: contain;
    animation: scalePulse 10s ease-in-out infinite;
    position: relative;
}

.disease2 {
    position: absolute;
    bottom: 0;
    left: 50%;
    /* height: 90%; */
    width: 40%;
    display: flex;
    justify-content: left;
    opacity: .15;
    transform: translate(-50%, 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(1);
    /* animation: rotateCircle 10s linear infinite; */
}

.nav-item.active,
.link-item.active {
    color: #b3cb1c;
}

:is(.fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands, .fa-classic, .fa)::before {
    font-family: "Font Awesome 6 Free";
}

.disease2 img {
    object-fit: contain;
    animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes scalePulse {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
        /* maximum size */
    }

    50% {
        transform: scale(1.2);
        /* maximum size */
    }

    75% {
        transform: scale(1.1);
        /* maximum size */
    }

    100% {
        transform: scale(1);
    }
}

.blog-swip {
    position: relative;
}

.blog-swip .blog-swip-nav {
    width: 120px;
    position: relative;
}

.team-swiper .swiper-button-next,
.team-swiper .swiper-rtl .swiper-button-prev,
.blog-swip .swiper-button-next,
.blog-swip .swiper-rtl .swiper-button-prev {
    border-radius: 50%;
    /* border: 1px solid #ffffff; */
    background: #ffffff17;
    backdrop-filter: blur(1px);
    padding: 1rem 1.3rem;
    color: #ffffff;
}


.team-swiper .swiper-button-prev,
.team-swiper .swiper-rtl .swiper-button-next,
.blog-swip .swiper-button-prev,
.blog-swip .swiper-rtl .swiper-button-next {
    border-radius: 50%;
    /* border: 1px solid #ffffff; */
    background: #ffffff17;
    backdrop-filter: blur(1px);
    padding: 1rem 1.3rem;
    color: #ffffff;
}

.team-swiper .swiper-button-next:hover,
.team-swiper .swiper-rtl .swiper-button-prev:hover,
.blog-swip .swiper-button-next:hover,
.blog-swip .swiper-rtl .swiper-button-prev:hover,
.team-swiper .swiper-button-prev:hover,
.team-swiper .swiper-rtl .swiper-button-next:hover,
.blog-swip .swiper-button-prev:hover,
.blog-swip .swiper-rtl .swiper-button-next:hover {
    background: #b3cb1c;
    color: #000;
}

.mySwiper-blog .swiper-button-next,
.mySwiper-blog .swiper-rtl .swiper-button-prev,
.mySwiper-blog .swiper-button-prev,
.mySwiper-blog .swiper-rtl .swiper-button-next {
    background: #b3cb1c;
    color: #000;
}

.contact-section {
    background: #111111;
    width: 100%;
    margin: auto;
    border-radius: 50px;
    display: flex;
    /* overflow: hidden; */
    padding: 80px 0;
    margin-top: -90px;
    /* z-index: 5;
    position: relative; */
}

/* .cont-form {
    padding: 0px 70px;
    width: 50%;
} */

/* .map-sec {
    width: 40%;
} */

.mb-0 {
    margin-bottom: 0;
}

.con-box {
    /* background: #ffffff1c; */
    padding: 40px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    /* background-color: #ffffff1c; */
    backdrop-filter: blur(18px);
    /* border: 1px solid #ffffff1c; */
    box-shadow: inset 1px 2px 12px 12px #45454533;
    position: relative;
    z-index: 6;
}


/* .map-sec {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
} */

.map-bg {
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 6;
}

.map-sec {
    background: #45454526;
    margin: 0.5rem;
    padding: 1.5rem 2rem;
    border-radius: 30px;
    overflow: hidden;
    color: #fff;
    box-shadow: inset 1px 2px 12px 12px #45454533;
}

.map-sec:hover {
    box-shadow: inset 0px -4px 11px 0px #80920f;
    transition: all 0.5s linear;
}

.map-sec .inf-icon {
    padding: 10px;
    background: #595959;
    margin-right: 30px;
    border-radius: 6px;
    transform: rotate(45deg);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-sec .inf-icon i {
    transform: rotate(315deg);
}

.map-sec .call-icn i {
    transform: rotate(280deg);
}

.map-sec a {
    color: var(--primary-green);
}

.mb-20 {
    margin-bottom: 20px;
}

/* 
.row .col-lg-6 {
    width: 49%;
} */

input,
select {
    border: none;
    background: #333333;
    padding: 0.5rem 1rem;
    width: 100%;
    border-radius: 16px;
    height: 46px;
    color: #fff;
    box-shadow: 0 0 0px 1px #ffffff4d;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    color: #6b6a6a;
    opacity: 1;
    /* Firefox */
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
    /* Edge 12-18 */
    color: #fff;
}

.col-12 {
    width: 100%;
}

textarea {
    width: 100%;
    height: 150px;
    background: #333333;
    border-radius: 10px;
    border: none;
    padding: 0.5rem 1rem;
    box-shadow: 0 0 0px 1px #ffffff4d;
    color: #fff;
}

.card:hover img {
    transform: scale(1.1);
    transition: all 0.5s linear;
}

.cardimg {
    transition: all 0.5s linear;
}

.imgcover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-page-banner {
    border-radius: 0 0 50px 50px;
    z-index: 9;
    position: relative;
    overflow: hidden;
}

.inner-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #0000003d;
}

.inner-banner-content ul {
    display: flex;
    gap: 10px;
    padding: 0;
}

.inner-banner-content ul li:hover span a {
    color: #b3cb1c;
}

.inner-banner-content ul li {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    list-style: none;
}

.inner-banner-content h2 {
    font-size: 4rem;
    margin: 0;
    margin-bottom: 5px;
    line-height: 140%;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    transition: all .3s linear;
}

.inner-banner-content h2:hover {
    color: #b3cb1c;
}

.inner-page-radius {
    z-index: 9;
    position: relative;
    border-radius: 50px 50px 0 0;
}

.inner-page-bg {
    background-color: #ffffff;
    z-index: 999;
    position: relative;
    margin-top: -80px;
    border-radius: 50px 50px 0 0;
}

.tm-bg {
    background-image: url(../images/tm-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 150px;
}

/* Main Card */

.disease1-2 {
    top: unset !important;
    left: unset !important;
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

/* Title Styling */
.section-header {
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 3px solid #a3c644;
    display: inline-block;
}

/* List Items */
.spec-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}

.spec-item:hover {
    transform: translateX(10px);
}

.icon-box {
    min-width: 32px;
    color: #a3c644;
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Modern Accordion */
.accordion {
    --bs-accordion-border-color: rgba(0, 0, 0, 0.05);
    --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.accordion-button {
    border-radius: 4px !important;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    font-weight: 600;
    color: #2d3436;
    padding: 20px;
    border: 1px solid #b3cb1c;
}

.arrow-right {
    color: #b3cb1c !important;
}

.accordion-button:not(.collapsed) {
    background-color: #b3cb1c;
    color: white;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: #fff;
    border-radius: 0 0 12px 12px;
    margin-top: -5px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Tags for Materials */
.badge-material {
    background: #eef2f7;
    color: #555;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 5px;
    display: inline-block;
    margin-top: 5px;
}

@media (max-width: 991px) {
    .glass-card {
        border-radius: 0;
    }
}


.bg-clr2 {
    z-index: 999;
    position: relative;
}

.bg-clr {
    background-color: #000000;
    border-radius: 65px 50px 0 0;
    overflow: hidden;
    z-index: 99999999;
    position: relative;
    margin-top: -60px;
}

@media (max-width: 991px) {
    .glass-card {
        border-radius: 0;
    }
}

/* .con-sec1{

} */
.con-text {
    position: absolute;
    top: 5%;
    font-size: 200px;
    font-family: 'Montaga';
    /* left: 50%; */
    width: 100%;
    display: flex;
    justify-content: center;
    color: #94959830;
    line-height: 0.7;
    z-index: 5;
    font-weight: bold;
}

.graphy-footer-main>div {
    width: 20%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    /* transform: translateY(-50%); */
    font-size: 25px;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 15px 18px;
    border-radius: 100%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    height: auto;
    line-height: 0.49;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.carousel-btn.prev {
    left: 50px;
}

.carousel-btn.next {
    right: 50px;
}

.carousel-btn:hover {
    background: var(--primary-green);
}

.fs-40 {
    font-size: 40px;
}



.grf-img {
    background: #b3cb1c;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.svg-line {
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: bottom;
}

.grf-img .graphy-footer-links {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 0;
    margin: 0;
}

/* Slideshow container (underneath overlay) */
.video-w-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    display: none;
    /* hover pe show hoga */
}

.video-w-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    /* JS control karega */
}


/* Overlay (mask image) stays always on top */
.overlay-mask {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* on top */
    pointer-events: none;
    /* let hover pass through */
}

.overlay-mask img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Hover behavior */
.graphy-footer-links:hover .video-w-container {
    display: block;
}





/* .gradient-text {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff6a88 0%, #ff9a6a 50%, #ffd36a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
.animated-gradient {
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(270deg, #6b8cff, #b66bff, #ff6b9e, #ffd36a);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
} */


.stage {
    position: relative;
    width: 100%;
    height: 95vh;
    perspective: 2000px;
    /* 3D perspective */
    overflow: hidden;
    /* prevent scrollbars from rotated boxes */
}

.my-3d-carousel {
    position: relative;
    /* static or relative is fine */
    width: 100%;
    height: 70%;
    transform-style: preserve-3d;
}

.carousel-box {
    position: absolute;
    width: 340px;
    height: 500px;
    left: 50%;
    bottom: 40%;
    transform-style: preserve-3d;
    transform: translate(-50%, 50%);
    /* centers vertically and horizontally */
    cursor: pointer;
    transition: transform 0.5s ease;
}

.carousel-box span {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    text-shadow: 0 0 5px rgb(0 0 0 / 41%);
    width: 90%;
    z-index: 1;
    /* font-family: "Playfair Display", serif; */
    font-family: 'Aileron';
    line-height: normal;
}

.carousel-box img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
    /* border: 2px solid #fff; */
    background: red;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.job-content {
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.left-col {
    position: relative;
    z-index: 10;
}

.text-gry {
    color: #505050 !important;
}

.abt-card {
    padding: 1rem;
    /* border: 1px solid #fff; */
    border-radius: 20px;
    box-shadow: inset 1px 2px 12px 12px #65646433;
    height: 180px;
    background: #2e2e2e;
    text-align: center;
    transition: all .8s linear;
    box-shadow: 10px 10px 10px #c4c4c4;
}

.abt-card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 10px #c4c4c4;
    transition: all .8s linear;
}

/* Hover state */
a {
    user-select: none;
    /* Prevents text selection */
    -webkit-user-select: none;
    /* For Safari */
    -moz-user-select: none;
    /* For Firefox */
    -ms-user-select: none;
    /* For IE/Edge */
    cursor: pointer;
    /* Optional, keeps pointer cursor */
}

.abt-img {
    width: 60px;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-bottom: 1rem;

}

.abt-card h3 {
    font-size: 1.6rem;
    font-family: 'Aileron';
    margin-bottom: 0;
}

/* .crd-lay>div:nth-child(2),
.crd-lay>div:nth-child(4) {
    margin-top: 2.4rem;
} */

.abut-ul li {
    color: #505050 !important;
    list-style: none;
    margin-bottom: 0.2rem;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

.abut-ul li i {
    font-size: 14px;
    margin-right: 1rem !important;
    color: #879b07;
}

.abut-ul li svg {
    width: 20px;
    height: auto;
    margin-right: 0.5rem;
    fill: #879b07;
}

.abt-card:hover {
    background: #000;
    /* outline: 2px dotted #b3cb1c; */
    /* outline-offset: -5px; */
    box-shadow: inset 0px -4px 11px 0px #80920f;
    transition: all 0.5s linear;
}

.abut-ul {
    padding: 1rem;
    background: #fbecdb57;
    border-radius: 20px;
    width: fit-content;
}

.tp-about-area {
    z-index: 0;
    background: #fff;
}

.tp-about-area .disease2 {
    bottom: 50%;
    z-index: -1;
}

.link-item:after {
    content: '';
    position: absolute;
    bottom: 22%;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px 2px 0 0;
    transition: all 0.3s linear;
}

.link-item:hover:after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px 2px 0 0;
}

.blg1 {
    width: 100%;
    background: #fff;
    /* padding: 1rem; */
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.blg1:hover .blg-img img {
    transform: scale(1.2);
}

.blg1:hover .newbtn {
    background-color: #fff;
}

.blg-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.blg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s linear;
}

.blg1:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    color: #000000;
}

.blg1:hover:after {
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    transition: all 1s linear;
    z-index: 0;
}

.blg-cnt {
    position: relative;
    z-index: 1;
}

.newbtn svg {
    width: 20px;
    z-index: 1;
    transform: rotate(180deg) translateX(0px);
    /* margin-left: 10px; */
}

.newbtn:hover svg {
    width: 20px;
    z-index: 1;
    transform: rotate(180deg) translateX(-5px);
    /* margin-left: 20px; */
    transition: all 0.5s linear;
}

.mySwiper-blog .swiper-wrapper {
    align-items: stretch;
}

.mySwiper-blog .swiper-wrapper .swiper-slide {
    height: auto;
}

.mySwiper-logos img {
    filter: grayscale(1);
    padding: 1rem;
    /* background: #ffffff;
    padding: 1rem;
    border-radius: 10px; */
}

.bgsec {
    background: #e9e6e6;
    border-radius: 50px 50px 0px 0px;
    margin-bottom: -80px;
}

.mySwiper-logos .swiper-slide>div {
    height: 170px;
    /* background: #fff; */
    /* border-radius: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.mySwiper-logos img:hover {
    filter: grayscale(0);
}

.mySwiper-logos .swiper-wrapper {
    transition-timing-function: linear !important;
}

.hv-img {
    border-radius: 30px;
    border-right: 10px solid #b3cb1c;
    border-bottom: 10px solid #b3cb1c;

}

.nw-sec:hover {
    color: #879b07;
    font-weight: 600;
}

.graphy-legal-links ul {
    display: flex;
    padding: 0;
}

html.is-refreshing {
    overflow: hidden;
}

.reveal-wrapper h1 {
    font-size: 3rem;
    margin: 0;
    margin-bottom: 20px;
    /* padding: 1rem 0; */
    font-weight: 500;
    line-height: 1.2;
    /* letter-spacing: -0.02em; */
    /* text-align: left; */
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    /* font-family: "Playfair Display", serif; */
    ;
}

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

/* Style 1: Smooth Individual Letters */
.style-1 .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
}

/* .row {
    margin: 0 !important;
} */

.sz2 {
    font-size: 2.5rem;
}


.gallery-item:not(.active) .content-overlay {
    opacity: 1 !important;
    width: 50vh;
    top: -21%;
    left: 0;
    bottom: unset;
    height: 100%;
}

.gallery-item:not(.active) .tag,
.gallery-item:not(.active) .content-overlay p {
    display: none;
}

.gallery-item:not(.active)::before {
    background: #00000080;
}

.gallery-item:not(.active) .content-overlay h2 {
    position: absolute;
    right: 10%;
    bottom: 0%;
    width: 74vh;
    transform: rotate(270deg) translate(50%, -50%);
    /* transform: translate(10px, 10px); */
    line-height: normal;
    font-size: 1.8vw;
    text-shadow: 1px 1px 1px #000000;
    font-weight: 500;
    animation: opacity1 0.8s linear alternate;
    text-align: left;
    justify-content: start;
    display: flex;
}

/* ===== NEWS & ARTICLES SECTION ===== */
.latest-portfolio {
    position: relative;
    background: #000;
}

.mySwiper-blog2 .swiper-slide {
    height: auto;
}

/* Card */
.blg1 {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blg1:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Inner content */
.blg-cnt {
    padding: 20px 22px 26px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image */
.blg-img {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
}

.blg-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Tags */
.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.tags span {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 50px;
    background: #f4f4f4;
    color: #555;
    font-weight: 500;
}

/* Title */
.blg-cnt h3 {
    /* font-size: 20px; */
    line-height: 1.35;
    margin-bottom: 10px;
}

.blg-cnt h3 a {
    color: #111;
    text-decoration: none;
}

/* Excerpt */
.blg-cnt p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: auto;
}

/* Read more button */
.newbtn {
    /* margin-top: 18px; */
    align-self: flex-start;
    background: #b6d61d;
    color: #000;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.newbtn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.newbtn:hover {
    background: #a3c514;
    transform: translateX(4px);
}

/* Swiper arrows */
.blog-swip-nav .swiper-button-next,
.blog-swip-nav .swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-swip-nav i {
    font-size: 14px;
}


@keyframes opacity1 {

    /* 0% is the start of the animation */
    0% {
        opacity: 0;
        /* Very transparent */
    }

    /* 50% is the midpoint */
    50% {
        opacity: 0.5;
        /* Fully visible */
    }

    /* 100% is the end of the animation */
    100% {
        opacity: 1;
        /* Fades back to very transparent */
    }
}

.pos-stick {
    position: sticky !important;
    top: 0;
}

.tab-pane .mySwiper .swiper-button-prev,
.atv-slider .swiper-button-prev,
.tab-pane .mySwiper .swiper-button-next,
.atv-slider .swiper-button-next {
    background-color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #b3cb1c;
}

.wel-bg {
    background-color: #fff;
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* background-size: 35%; */
}

.pharmacy-icon {
    width: 600px;
    position: absolute;
    opacity: 0.7;
    top: 4%;
    left: 35%;
    transform: translate(-50%, -50%);
    z-index: -17;
    animation: scalePulse 10s ease-in-out infinite;
}

.table-responsive {
    /* overflow-x: auto; */
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 10px;
    overflow: visible;
}

.custom-card:hover .organic-image2::before {
    rotate: 12deg;
    scale: 1.15 1;
}

/* Main Card Styling */
.custom-card {
    background: #45454526;
    /* width: 100%; */
    /* max-width: 420px; */
    border-radius: 60px;
    box-shadow: inset 1px 2px 12px 12px #45454533;
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
    padding: 0 0 20px;
    height: 100%;
}


.custom-card:hover {
    box-shadow: inset 0px -4px 11px 0px #80920f;
    transition: all 0.5s linear;
}

.card-header-text {
    padding: 40px 30px 10px;
    text-align: center;
}

.card-header-text span {
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 700;
}

.card-header-text h2 {
    font-weight: 800;
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-top: 10px;
}

/* Price Section */
.price-container {
    background-color: var(--bg-pill);
    margin: 0 20px 30px;
    padding: 15px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.price-container .dollar {
    font-size: 1.8rem;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 10px;
}

.price-container .amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.price-container .period {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-left: 5px;
}

/* Image Mask Section */
.image-wrapper {
    position: relative;
    padding: 0 30px;
    margin-bottom: 30px;
}

.organic-image {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover;
    border: 4px solid var(--primary-red);
    border-radius: 80px;
    position: relative;
}

.organic-image2 {
    padding: 0;
    margin: 0;
    position: relative;
    width: 90% !important;
    margin: 0px auto 12px !important;
    overflow: visible;
    background: transparent;
}

.organic-image2::before {
    content: "";
    position: absolute;
    inset: 8%;
    rotate: 0deg;
    /* background-color: #b3cb1c; */
    border-radius: 43px;
    scale: 1 1;
    transition: all .3s linear;
}

/* Icons Section */
.icon-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.5rem;
    border: 1px solid #f0f0f0;
}

/* Features List */
.features-list {
    padding: 0 45px;
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    margin-bottom: 6px;
    display: flex;
    align-items: start;
    font-size: 1.1rem;
    color: #a8a8a8;
    line-height: 140%;
}

.features-list li i {
    padding-top: 3px;
    color: #ffffff;
    margin-right: 12px;
    font-size: 1rem;
}

/* Footer Section */
.card-footer-info {
    border-top: 1px solid #eee;
    padding: 20px 45px 80px;
}

.vat-text {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 1.1rem;
}

.vat-text span {
    color: #000;
}

.installation-text {
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 5px;
}

/* Get Started Button */
.btn-get-started {
    bottom: 30px;
    left: 0;
    font-family: 'Raleway', sans-serif;
    border: none;
    padding: 15px 50px 15px 40px;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 0 50px 50px 0;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 30%);
    cursor: pointer;
    padding-left: 60px;
    background-color: #b3cb1c;
    color: #000;
}



/* Responsive adjustments */
@media (max-width: 480px) {
    .custom-card {
        border-radius: 40px;
    }

    .price-container .amount {
        font-size: 3rem;
    }
}

/* Table */
.spec-table {
    width: 100%;
    /* border-collapse: separate; */
    border-spacing: 0 10px;
    border-radius: 23px;
    overflow: hidden;
}

/* Table Head */
.spec-table thead th {
    font-family: 'Aileron', sans-serif;
    background: #b3cb1c;
    color: #000000;
    font-weight: 600;
    padding: 14px 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-table thead th {
    border: 1px solid #b2ca1c;
    /* border-right: 2px solid #cccccc24; */
}

/* Category Column */
.spec-table tbody th {
    font-family: 'Raleway', sans-serif;
    background: #ffffff0a;
    color: #ffffff;
    font-weight: 600;
    width: 30%;
    padding: 14px 18px;
    /* border-radius: 10px 0 0 10px; */
    border-right: 1px dashed #cccccc4d;
}

/* Details Column */
.spec-table tbody td {
    background: #000000;
    color: #ffffff;
    padding: 14px 18px;
}

/* Row Effect */
.spec-table tbody tr {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    border: 1px dashed #cccccc4d;
}

.spec-table tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.scrl-sec {
    margin-bottom: -50px;
}

.skrollr-parallax {
    border-radius: 50px 50px 0 0;
}

.hdg-cnt {
    font-family: Raleway, sans-serif;
    text-align: left;
    padding-top: 100px;
    line-height: normal;
}

/* Responsive */
@media(max-width:768px) {
    .main-heading {
        font-size: 26px;
    }

    .spec-table tbody th {
        width: 40%;
        font-size: 14px;
    }

    .spec-table tbody td {
        font-size: 14px;
    }

    .hdg-cnt {
        padding-top: 0px;
        line-height: normal;
    }

}

@media (max-width:767px) {

    .swiper {
        width: 100%;
        height: 228px;
        border-radius: 20px;
    }

    .mySwiper-logos {
        height: 130px;
    }

    .pos-stick {
        position: relative !important;
    }

    .nav-pills-custom {
        border-radius: 8px !important;
    }

    .inner-page-banner {
        height: 400px;
    }

    .inner-page-banner img {
        height: 100%;
        object-fit: cover;
    }

    .nav-pills-custom li,
    .nav-pills-custom li button {
        width: 100%;
    }


    .content-overlay {
        left: 40px;
    }

    .gallery-item:not(.active) .content-overlay {
        top: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .gallery-item:not(.active) .content-overlay h2 {
        right: unset;
        left: 0;
        top: 0%;
        width: 100%;
        transform: rotate(0deg) !important;
        font-size: 5vw;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .gallery-item:not(.active) .tag {
        display: none;
    }

    .team-swiper{
        height: 400px;
    }
    .questbg{
        padding: 50px 20px !important;
    }
}

@media (max-height:600px) {
    .carousel-box {
        height: 400px;
    }
}

.f-a {
    font-family: 'Aileron', sans-serif;
}