/*---------------- image slide top  --------------*/

/* Slider */
#slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #06192b;
}

/* Slides */
#slides {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

/* Slide */
.slide {
    min-width: 100%;
    text-align: center;
}

/* Image FULL visible (no crop) */
.slide img {
    width: 100%;
    max-height: 550px;
    object-position: center;
    filter: saturate(1.06) contrast(1.03);
}

/* Text */
.text {
    width: min(92%, 1100px);
    margin: -58px auto 0;
    position: relative;
    z-index: 2;
    background: rgb(6 19 34 / 0%);
    color: #ffffff;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Arrows */
#leftArrow,
#rightArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 20px;
    display: none;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    z-index: 3;
}

/* Left / Right position */
#leftArrow {
    left: 14px;
}

#rightArrow {
    right: 14px;
}

/* Show arrows on hover */
#slider:hover #leftArrow,
#slider:hover #rightArrow {
    display: block;
}

@media (max-width: 768px) {
    #slider .slide img {
        height: 300px;
    }

    .text {
        width: calc(100% - 24px);
        margin: -42px auto 0;
        padding: 8px 12px;
        font-size: 12px;
    }

    #leftArrow,
    #rightArrow {
        padding: 8px 11px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    #slider .slide img {
        height: 230px;
    }

    .text {
        margin: -36px auto 0;
        font-size: 11px;
    }
}

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

/* <!--------------- leadership sliding  ------------------> */
/* ===== SECTION WRAPPER ===== */
#hurlCarouselSection {
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    text-align: center;
    perspective: 1000px;
    max-width: 1240px;
    margin: 20px auto 14px;
}


/* ===== CAROUSEL ===== */
#hurlCarousel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    height: 280px;
}

/* ===== CARD BASE ===== */
#hurlCarousel .card1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform-style: preserve-3d;
    transition: all 0.7s ease;
    opacity: 0;
}

#hurlCarousel .card1.active {
    transform: translateX(-50%) scale(1.1);
    z-index: 5;
    opacity: 1;
}

#hurlCarousel .card1.left {
    transform: translateX(-150%) rotateY(30deg) scale(0.85);
    opacity: 0.5;
    z-index: 3;
}

#hurlCarousel .card1.right {
    transform: translateX(50%) rotateY(-30deg) scale(0.85);
    opacity: 0.5;
    z-index: 3;
}

#hurlCarousel .card1.hidden {
    opacity: 0;
    z-index: 1;
}

/* CARD DESIGN */
#hurlCarousel .card-inner {
    width: 255px;
    padding: 28px 26px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #0d7d45 0%, #075a31 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 42px rgba(11, 45, 79, 0.2);
    overflow: hidden;
    position: relative;
    text-align: center;
    backdrop-filter: blur(12px);
}

#hurlCarousel .card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(45deg, #f4d37d, #00d9ff, #f4d37d);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.42;
}

#hurlCarousel .card-inner::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 6px;
    background: linear-gradient(90deg, #f4d37d, #ffffff, #0b753e);
    opacity: 0.95;
}

#hurlCarousel img {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    margin-bottom: 14px;
    border: 4px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

#hurlCarousel h3 {
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.35;
    margin-top: 2px;
}

#hurlCarousel p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.45;
}

#hurlCarousel .card1.active .card-inner {
    background: linear-gradient(180deg, #ffffff 0%, #eef4fa 100%);
    border-color: rgba(200, 155, 60, 0.6);
    box-shadow: 0 22px 48px rgba(11, 45, 79, 0.18);
    transform: translateY(-8px);
}

#hurlCarousel .card1.active h3 {
    color: #0b2d4f;
}

#hurlCarousel .card1.active p {
    color: var(--gov-muted);
}

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

/*------------------ our products  -------------------*/
.products-section {
    background: linear-gradient(135deg, #0d5e33 0%, #0b3d2a 100%);
    padding: 18px 18px 28px;
    color: #fff;
    box-shadow: 0 18px 42px rgba(11, 45, 79, 0.18);
    margin-top: 0px;
    border-top-left-radius: 650px 200px;
}

.products-container {
    display: grid;
    grid-template-columns: 40% 40%;
    grid-template-areas: "text media";
    gap: 18px;
    align-items: center;
    align-content: stretch;
    justify-content: end;
}

.products-text {
    grid-area: text;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.products-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.products-text p {
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

/* scroll-in animation */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s ease;
}

.reveal-left.show {
    opacity: 1;
    transform: translateX(0);
}

#productWrapper {
    overflow: hidden;
    grid-area: media;
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

@media (max-width: 900px) {
    .products-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "media"
            "text";
    }
}

#productCarousel {
    position: relative;
    /* width: calc(var(--face-size) * 2.2); */
    height: calc(var(--face-size) * 1.8);
    transform-style: preserve-3d;
    animation: rotateCube 18s linear infinite;
}

@keyframes rotateCube {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

#productCarousel .face {
    position: absolute;
    width: var(--face-size);
    height: var(--face-size);
    left: 50%;
    top: 50%;
    margin-left: calc(var(--face-size) / -2);
    margin-top: calc(var(--face-size) / -2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    overflow: hidden;
    transform-style: preserve-3d;
}

#productCarousel .face img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}

#productCarousel .face span {
    margin-top: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* popup */
.popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.82);
    z-index: 999;
    padding: 20px;
}

.popup img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.popup span {
    position: absolute;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
    user-select: none;
}

#closePopup {
    top: 18px;
    right: 24px;
    font-size: 38px;
}

#prevPopup {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

#nextPopup {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 600px) {
    .popup span {
        font-size: 28px;
    }
}

@media (max-width: 1300px) {
    #productsSection {
        padding: 60px;
    }
}

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


/*-------------- achievements --------*/

/* SECTION */

.achievement-section {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* main section */

/* hidden state */

#achievementsection {
    position: relative;
    opacity: 0;
    transform: translateX(-160px);
    /* left side hidden */
    transition: all 1.2s ease;
    overflow: hidden;
    padding-top: 20px;
    margin-bottom: 4px;
}

/* visible state */

#achievementsection.show {
    margin-bottom: 10px;
    opacity: 1;
    transform: translateX(0);
}

/* background image */

#achievementsection::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("events_bg.png") center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
    animation: bgMove 18s linear infinite;
}

/* content above background */

#achievementsection * {
    position: relative;
    z-index: 1;
}

/* background animation */

@keyframes bgMove {

    0% {
        transform: scale(1) translateX(0);
    }

    50% {
        transform: scale(1.08) translateX(30px);
    }

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

}

@keyframes lineGrow {

    0% {
        width: 0
    }

    50% {
        width: 120px
    }

    100% {
        width: 0
    }

}

/* SLIDER */

.achievement-slider {

    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);


}

/* animated border */

.achievement-slider::before {

    content: "";

    position: absolute;

    inset: -3px;

    border-radius: 22px;

    /* background: linear-gradient(90deg, #1e3c72, #2a5298, #4facfe, #1e3c72); */

    background-size: 300%;

    animation: borderMove 6s linear infinite;

    z-index: -1;

}

@keyframes borderMove {

    0% {
        background-position: 0
    }

    100% {
        background-position: 300%
    }

}

/* TRACK */

.achievement-track {

    display: flex;

    gap: 25px;

    animation: achScroll 35s linear infinite;

}

/* pause */

.achievement-slider:hover .achievement-track {
    animation-play-state: paused;
}

/* IMAGES */

.achievement-track img {

    max-width: 250px;
    height: auto;
    width: 100%;

    object-fit: cover;

    border-radius: 12px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);

    cursor: pointer;

    transition: .4s;

}

/* hover animation */

.achievement-track img:hover {

    transform: scale(1.2) rotate(1deg);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);

    z-index: 10;

}

/* scroll animation */

@keyframes achScroll {

    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }

}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 1024px) {


    .achievement-track {
        gap: 15px;
    }

    .achievement-track img {
        max-width: 200px;
    }

    .achievement-slider {
        padding: 20px;
    }
}

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

    #achievementsection {
        border-top-right-radius: 200px 80px;
        /* reduce curve */
    }

    .achievement-slider {
        padding: 15px;
    }

    .achievement-track {
        gap: 12px;
    }

    .achievement-track img {
        max-width: 150px;
        border-radius: 8px;
    }

    /* hover effect disable (mobile) */
    .achievement-track img:hover {
        transform: none;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .achievement-track img {
        max-width: 120px;
    }
}


/* ================= */
/* POPUP GALLERY */
/* ================= */

.gallery-modal {

    display: none;

    position: fixed;

    z-index: 99999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .9);

    justify-content: center;
    align-items: center;

    animation: fadeIn .4s ease;

}

/* popup animation */

@keyframes fadeIn {

    from {
        opacity: 0
    }

    to {
        opacity: 1
    }

}

/* IMAGE */

.gallery-image {

    width: 100%;
    max-width: 50%;
    max-height: 80vh;

    border-radius: 10px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .8);

    animation: zoomImage .4s ease;

}

@keyframes zoomImage {

    from {
        transform: scale(.6);
        opacity: .4;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }

}

/* CLOSE */

.close-gallery {

    position: absolute;

    top: 20px;
    right: 20px;

    font-size: 32px;

    color: white;

    cursor: pointer;

    transition: .3s;

}

.close-gallery:hover {
    transform: rotate(90deg);
}

/* ARROWS */

.gallery-prev,
.gallery-next {

    position: absolute;

    top: 50%;

    font-size: 50px;

    color: white;

    cursor: pointer;

    padding: 10px;

    transform: translateY(-50%);

    transition: .3s;

}

.gallery-prev {
    left: 40px;
}

.gallery-next {
    right: 40px;
}

/* arrow hover */

.gallery-prev:hover,
.gallery-next:hover {

    color: #ffd000;

    transform: translateY(-50%) scale(1.2);

}


/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 1024px) {

    .gallery-prev,
    .gallery-next {
        font-size: 40px;
    }
}

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

    .gallery-image {
        max-width: 90%;
        max-height: 70vh;
    }

    /* arrows side pe hi rahenge */
    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-prev,
    .gallery-next {
        font-size: 30px;
    }

    .close-gallery {
        font-size: 26px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .gallery-prev,
    .gallery-next {
        font-size: 24px;
    }

    .close-gallery {
        font-size: 22px;
    }
}

/* end  */

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


/*-------------- our promoters ---------------*/

#partners {
    text-align: center;
}

/* hidden state */

#promoters {

    opacity: 0;
    transform: translateX(-180px);
    transition: all 1.2s ease;

}

/* visible state */

#promoters.show {
    background: #ffffff;
    opacity: 1;
    transform: translateX(0);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* container */

.partners-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    perspective: 2500px;
}

/* card */

.partner-card {

    width: 200px;
    height: 230px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    overflow: hidden;

    /* floating animation */

    animation: float 4s ease-in-out infinite;

}

/* floating */

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* light reflection */

.partner-card::before {

    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.7),
            transparent);

    transition: 0.6s;

}

/* hover shine */

.partner-card:hover::before {

    left: 100%;

}

/* hover 3D effect */

.partner-card:hover {

    transform: rotateY(15deg) rotateX(10deg) scale(1.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);

}

/* image */

.partner-card img {
    width: 200px;
    height: 170px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: 0.4s;
}

/* image hover */

.partner-card:hover img {

    filter: grayscale(0%);
    transform: scale(1.15) rotate(3deg);

}

/* text */

.partner-card p {

    font-weight: 600;
    color: #333;
    font-size: 15px;

}

/* ================= RESPONSIVE FIX ================= */

/* TABLET */
@media (max-width: 1024px) {

    .title {
        font-size: 32px;
        margin-bottom: 10px;
        margin-top: 15px;
    }

    .partners-wrapper {
        gap: 25px;
    }

    .partner-card {
        width: 180px;
        height: 230px;
    }

    .partner-card img {
        width: 150px;
    }
}


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

    #promoters {
        border-top-right-radius: 200px 80px;
    }

    #partners {
        padding: 20px;
    }

    .title {
        font-size: 26px;
        margin-bottom: 10px;
        margin-top: 15px;
    }

    .partners-wrapper {
        gap: 20px;
    }

    .partner-card {
        width: 160px;
        height: 200px;
    }

    .partner-card img {
        width: 130px;
    }

    .partner-card p {
        font-size: 13px;
    }
}


/* SMALL MOBILE */
@media (max-width: 480px) {

    .title {
        font-size: 22px;
        margin-bottom: 10px;
        margin-top: 15px;
    }

    .partners-wrapper {
        gap: 15px;
    }

    .partner-card {
        width: 140px;
        height: 180px;
    }

    .partner-card img {
        width: 110px;
    }

    .partner-card p {
        font-size: 12px;
    }
}

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

/*--------------- policy ---------------*/

.policy-section {
    padding: 34px 5% 42px;
    background: linear-gradient(135deg, #0b2d4f 0%, #0f6a3a 100%);
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateX(200px);
    transition: all 1s ease;
    border-top-left-radius: 650px 200px;
    border-radius: 22px;
    position: relative;
    box-shadow: 0 24px 60px rgba(10, 42, 58, 0.16);
}

.policy-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 211, 125, 0.18), transparent 32%),
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.12), transparent 28%),
        radial-gradient(circle at 82% 86%, rgba(11, 117, 62, 0.22), transparent 30%);
    pointer-events: none;
}

.policy-section::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

/* when visible */

.policy-section.show {
    opacity: 1;
    transform: translateX(0);
}

/* slider initially stop */

.policy-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollPolicy 25s linear infinite;
    animation-play-state: paused;
}

.policy-track-group {
    display: flex;
    gap: 30px;
    flex: 0 0 auto;
}

/* start scroll when visible */

.policy-section.show .policy-track {
    animation-play-state: running;
}

.policy-heading {
    font-size: 42px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.policy-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 12px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.policy-subtitle {
    max-width: 760px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.98rem;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

/* frame */

.policy-frame {
    overflow: hidden;
    padding: 8px 0 0;
    position: relative;
    z-index: 1;
}


/* cards */

.policy-card {
    min-width: 270px;
    background: linear-gradient(180deg, #ffffff 0%, #eef4fa 100%);
    padding: 22px 18px 18px;
    border-radius: 20px;
    box-shadow: 0 18px 38px rgba(11, 45, 79, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    border: 1px solid rgba(11, 45, 79, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 117, 62, 0.04), transparent 45%);
    pointer-events: none;
}

.policy-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 24px 52px rgba(11, 45, 79, 0.18);
    filter: saturate(1.03);
}

/* icons */

.icon {
    font-size: 50px;
    margin-bottom: 16px;
    display: inline-block;
    width: 78px;
    height: 78px;
    line-height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(11, 117, 62, 0.14), rgba(244, 211, 125, 0.16));
    box-shadow: inset 0 0 0 1px rgba(11, 45, 79, 0.06);
    position: relative;
    z-index: 1;
}

/* whistle animation */

.whistle .icon {
    animation: whistleShake 1.5s infinite;
}

@keyframes scrollPolicy {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes whistleShake {

    0%,
    100% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }
}



.policy-card {
    border-top: 4px solid #f4d37d;
}



/* slider animation */

@keyframes scrollPolicy {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* TABLET */
@media (max-width: 1024px) {

    .policy-heading {
        font-size: 32px;
    }

    .policy-pill {
        font-size: 0.72rem;
        padding: 7px 14px;
    }

    .policy-track,
    .policy-track-group {
        gap: 20px;
    }

    .policy-card {
        min-width: 240px;
        min-height: 210px;
    }

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

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

    .policy-section {
        padding: 24px 20px 28px;
        border-top-left-radius: 200px 80px;
    }

    .policy-heading {
        font-size: 26px;
    }

    .policy-subtitle {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .policy-track,
    .policy-track-group {
        gap: 15px;
    }

    .policy-card {
        min-width: 200px;
        padding: 18px 14px 16px;
        min-height: 190px;
    }

    .policy-card h3 {
        font-size: 14px;
    }

    .icon {
        font-size: 32px;
    }

    /* hover disable mobile */
    .policy-card:hover {
        transform: none;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .policy-heading {
        font-size: 22px;
    }

    .policy-subtitle {
        font-size: 0.8rem;
    }

    .policy-card {
        min-width: 160px;
        padding: 16px 12px 14px;
        min-height: 180px;
    }

    .policy-card h3 {
        font-size: 12px;
    }

    .icon {
        font-size: 28px;
    }
}

.img-icon {
    overflow: contain;
    height: 100%;
    width: 100%;
}

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

/* ---------------- update -------------- */

.hurl-frame {
    width: 100%;
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    background: linear-gradient(90deg, #0a2d4f 0%, #0b753e 50%, #0a2d4f 100%);
    color: white;
    overflow: hidden;
    position: relative;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* TITLE */

.hurl-title {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 24px 10px 30px;
    margin-left: 12px;
    min-width: 220px;
    border-radius: 0 999px 999px 0;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.12em;
    z-index: 5;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.hurl-badge {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #f4d37d;
}

.hurl-subtitle {
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.82);
    text-transform: none;
    line-height: 1.4;
    font-weight: 500;
}

/* SCROLL AREA */

.hurl-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0 10px;
}

/* TEXT */

.hurl-text {
    display: flex;
    white-space: nowrap;
    animation: scroll 35s linear infinite;
    align-items: center;
}

.hurl-scroll:hover .hurl-text {
    animation-play-state: paused;
}

.hurl-text span {
    margin-right: 18px;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

/* SCROLL */

@keyframes scroll {

    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }

}

/* FADE */

.hurl-scroll::before,
.hurl-scroll::after {

    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 3;

}

.hurl-scroll::before {
    left: 0;
    background: linear-gradient(to right, rgba(10, 45, 79, 1), transparent);
}

.hurl-scroll::after {
    right: 0;
    background: linear-gradient(to left, rgba(10, 45, 79, 1), transparent);
}

/* UREA PARTICLES */

.urea {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 8px;
    opacity: 0.6;
    animation: fall linear infinite;
}

@keyframes fall {

    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(80px);
        opacity: 0;
    }

}

/* PLANT STRIP */

.plant-strip {
    position: absolute;
    bottom: 2px;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    font-size: 22px;
    opacity: 0.75;
    pointer-events: none;
}

/* PLANT GROW ANIMATION */

.plant-strip span {
    animation: grow 3s ease-in-out infinite alternate;
}

@keyframes grow {

    0% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1.2);
    }

}

/* MOBILE */

@media(max-width:768px) {

    .hurl-frame {
        min-height: 120px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 0 18px;
    }

    .hurl-title {
        min-width: unset;
        margin: 0 12px;
        padding: 12px 16px;
        border-radius: 18px;
        align-items: center;
        text-align: center;
    }

    .hurl-subtitle {
        font-size: 0.68rem;
    }

    .hurl-text span {
        font-size: 12px;
        margin-right: 12px;
        padding: 8px 12px;
    }

    .hurl-footer {
        min-height: 220px;
        padding: 24px 16px;
    }

    .footer-content {
        gap: 6px;
        padding: 6px 12px;
    }

    .footer-copy {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .footer-meta {
        font-size: 0.76rem;
        line-height: 1.5;
    }

}

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