
    .banner-area-video{
    position: relative;
    width: 100%;
    height: 78vh;
    min-height: 560px;
    max-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #07130f;
}

.background-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    transform: scale(1.03);
}

.banner-overlay{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(69, 182, 73, 0.20), transparent 32%),
        radial-gradient(circle at top right, rgba(55, 125, 206, 0.18), transparent 30%),
        linear-gradient(
            135deg,
            rgba(5, 18, 14, 0.84) 0%,
            rgba(7, 24, 18, 0.72) 45%,
            rgba(3, 10, 8, 0.82) 100%
        );
    z-index: 1;
}

.d-table{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: table;
}

.d-table-cell{
    display: table-cell;
    vertical-align: middle;
}

.banner-content{
    text-align: center;
    padding: 55px 15px 35px;
    max-width: 980px;
    margin: 0 auto;
}

.banner-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(69, 182, 73, 0.28);
    background: rgba(255,255,255,0.06);
    color: #dff7e5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.badge-dot{
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #45b649, #377dce);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot{
    0%{ box-shadow: 0 0 0 0 rgba(69,182,73,0.45); }
    70%{ box-shadow: 0 0 0 10px rgba(69,182,73,0); }
    100%{ box-shadow: 0 0 0 0 rgba(69,182,73,0); }
}

.banner-content h1{
    font-size: clamp(2.1rem, 4.5vw, 4.3rem);
    line-height: 1.06;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.highlight-orange{
    color: #45b649;
}

.highlight-green{
    color: #377dce;
}

.banner-content p{
    font-size: clamp(0.96rem, 1.6vw, 1.08rem);
    color: rgba(255,255,255,0.86);
    max-width: 760px;
    margin: 0 auto 26px;
    line-height: 1.8;
}

.banner-content p strong{
    color: #fff;
}

.banner-buttons{
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cmn-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary-custom{
    background: linear-gradient(135deg, #45b649, #377dce);
    color: #fff;
    box-shadow: 0 12px 28px rgba(55,125,206,0.22);
    border: 1px solid rgba(255,255,255,0.08);
}

.btn-primary-custom:hover{
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 16px 34px rgba(55,125,206,0.28);
}

.btn-outline-custom{
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(8px);
}

.btn-outline-custom:hover{
    border-color: #45b649;
    color: #dff7e5;
    transform: translateY(-2px);
    background: rgba(69,182,73,0.08);
}

@media (max-width: 768px){
    .banner-area-video{
        height: auto;
        min-height: 500px;
        max-height: none;
    }

    .banner-content{
        padding: 50px 15px 28px;
    }

    .banner-content h1{
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .banner-buttons{
        flex-direction: column;
        align-items: center;
    }

    .cmn-btn{
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.about-reference{
    background:
        radial-gradient(circle at top left, rgba(69, 182, 73, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(55, 125, 206, 0.06), transparent 26%),
        linear-gradient(180deg, #fbfffd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-reference::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(69, 182, 73, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.45;
    pointer-events: none;
}

.about-left{
    padding-right: 10px;
}

.about-image-box{
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
    background: #f7fbf8;
    border: 1px solid rgba(69, 182, 73, 0.08);
}

.about-main-image{
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.about-badge{
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.96);
    color: #25412f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(69, 182, 73, 0.10);
}

.about-badge span{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #45b649, #377dce);
    box-shadow: 0 0 0 4px rgba(69, 182, 73, 0.12);
}

.about-bottom-cards{
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    z-index: 2;
}

.about-mini-card{
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(69, 182, 73, 0.10);
    border-radius: 16px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f2937;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.about-mini-card i{
    font-size: 20px;
    color: #45b649;
    flex-shrink: 0;
}

.about-mini-card h4{
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px;
    color: #102033;
}

.about-mini-card p{
    font-size: 12px;
    margin: 0;
    color: #6b7280;
}

.about-right{
    padding-left: 20px;
}

.about-section-title .sub-title{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2f6f4e;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(69, 182, 73, 0.08);
    border: 1px solid rgba(55, 125, 206, 0.10);
}

.about-section-title .sub-title i{
    color: #377dce;
    font-size: 9px;
}

.about-section-title h2{
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    font-weight: 900;
    color: #101828;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
}

.title-orange{
    color: #45b649;
}

.title-green{
    color: #377dce;
}

.about-content p{
    font-size: 15px;
    line-height: 1.85;
    color: #5f6b7a;
    margin-bottom: 24px;
    max-width: 560px;
}

.about-feature-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 26px;
}

.about-feature-box{
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 16px;
    padding: 18px 18px 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: 0.28s ease;
}

.about-feature-box:hover{
    transform: translateY(-3px);
    border-color: rgba(69, 182, 73, 0.16);
    box-shadow: 0 16px 30px rgba(55, 125, 206, 0.08);
}

.about-feature-box h4{
    font-size: 15px;
    line-height: 1.4;
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-feature-box p{
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.about-read-more{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #45b649, #377dce);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(55, 125, 206, 0.18);
    transition: 0.3s ease;
}

.about-read-more:hover{
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 18px 34px rgba(55, 125, 206, 0.24);
}

@media (max-width: 991px){
    .about-left,
    .about-right{
        padding-left: 0;
        padding-right: 0;
    }

    .about-main-image{
        height: 440px;
    }

    .about-section-title h2{
        font-size: 2.2rem;
    }
}

@media (max-width: 768px){
    .about-main-image{
        height: 340px;
    }

    .about-bottom-cards{
        grid-template-columns: 1fr;
    }

    .about-feature-grid{
        grid-template-columns: 1fr;
    }

    .about-section-title h2{
        font-size: 1.8rem;
        line-height: 1.15;
    }

    .about-content p{
        font-size: 14px;
    }
}

.special-area {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(69, 182, 73, 0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(55, 125, 206, 0.08), transparent 28%),
        radial-gradient(circle at bottom center, rgba(69, 182, 73, 0.06), transparent 30%),
        linear-gradient(180deg, #fbfffd 0%, #ffffff 100%);
}

.special-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(69, 182, 73, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.special-content {
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2f6f4e;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(69, 182, 73, 0.08);
    border: 1px solid rgba(55, 125, 206, 0.14);
}

.section-tag::before {
    content: "";
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, #45b649, #377dce);
    border-radius: 999px;
}

.special-content h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
    line-height: 1.1;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.special-content h2 br {
    display: block;
}

.text-orange {
    color: #45b649;
}

.text-green {
    color: #377dce;
}

.special-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #5f6b7a;
    margin-bottom: 24px;
    max-width: 540px;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.special-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: 0.28s ease;
    backdrop-filter: blur(8px);
}

.special-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(55, 125, 206, 0.10);
    border-color: rgba(69, 182, 73, 0.18);
}

.icon-box {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #45b649, #377dce);
    box-shadow: 0 10px 20px rgba(55, 125, 206, 0.20);
}

.icon-box i {
    font-size: 19px;
    color: #fff;
}

.special-card h4 {
    font-size: 13.5px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 4px;
    line-height: 1.3;
}

.special-card p {
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
    color: #6b7280;
}

.special-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(69, 182, 73, 0.22);
    animation: spinRing 22s linear infinite;
}

.ring-1 { width: 85%; height: 85%; border-color: rgba(69, 182, 73, 0.22); }
.ring-2 { width: 68%; height: 68%; border-color: rgba(55, 125, 206, 0.18); animation-direction: reverse; animation-duration: 28s; }
.ring-3 { width: 51%; height: 51%; border-color: rgba(69, 182, 73, 0.12); animation-duration: 34s; }

.orbit-dot {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #45b649, #377dce);
    box-shadow: 0 0 12px rgba(55, 125, 206, 0.45);
    animation: floatDot 3s ease-in-out infinite;
}

.dot-a { width: 12px; height: 12px; top: 7%; left: 36%; animation-delay: 0s; }
.dot-b { width: 8px; height: 8px; top: 20%; right: 8%; animation-delay: 0.4s; opacity: 0.7; }
.dot-c { width: 14px; height: 14px; bottom: 14%; left: 10%; animation-delay: 0.8s; }
.dot-d { width: 9px; height: 9px; bottom: 22%; right: 12%; animation-delay: 1.1s; opacity: 0.6; }
.dot-e { width: 7px; height: 7px; top: 44%; left: 5%; animation-delay: 1.5s; opacity: 0.5; }
.dot-f { width: 10px; height: 10px; top: 38%; right: 5%; animation-delay: 0.6s; opacity: 0.75; }

.core-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(69, 182, 73, 0.22) 0%,
        rgba(55, 125, 206, 0.14) 38%,
        rgba(69, 182, 73, 0.05) 68%,
        transparent 76%);
    animation: pulseGlow 3.6s ease-in-out infinite;
    z-index: 1;
}

.center-core {
    position: relative;
    width: 212px;
    height: 212px;
    border-radius: 50%;
    background: linear-gradient(145deg, #45b649 0%, #377dce 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow:
        0 0 0 12px rgba(69, 182, 73, 0.10),
        0 0 0 24px rgba(55, 125, 206, 0.05),
        0 25px 55px rgba(55, 125, 206, 0.22);
    z-index: 3;
}

.core-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.30);
    margin-bottom: 8px;
    overflow: hidden;
}

.core-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.center-core h3 {
    font-size: 18px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.center-core p {
    font-size: 11px;
    color: rgba(255,255,255,0.88);
    margin: 3px 0 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.floating-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 9px 14px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    animation: floatBadge 3.4s ease-in-out infinite;
    z-index: 10;
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(69,182,73,0.12), rgba(55,125,206,0.12));
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 15px;
    color: #45b649;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    color: #253041;
}

.badge-stat strong {
    font-size: 18px;
    font-weight: 900;
    color: #377dce;
    line-height: 1;
}

.badge-stat span {
    font-size: 10.5px;
    color: #6b7280;
    font-weight: 500;
    margin-top: 2px;
    white-space: nowrap;
}

.badge-1 { top: 12%; left: 2%; }
.badge-2 { top: 4%; right: 4%; }
.badge-3 { top: 42%; right: -2%; }
.badge-4 { bottom: 14%; left: 0; }
.badge-5 { bottom: 4%; right: 8%; }

.sparkle {
    position: absolute;
    font-size: 18px;
    color: #45b649;
    opacity: 0.35;
    animation: sparklePop 2.8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.sparkle-1 { bottom: 12%; right: 2%; animation-delay: 0s; font-size: 14px; }
.sparkle-2 { top: 8%; left: 3%; animation-delay: 1.2s; font-size: 10px; opacity: 0.3; }

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes floatDot {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-7px) scale(1.15); }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.06); opacity: 1; }
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes sparklePop {
    0%, 100% { opacity: 0.35; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.3) rotate(15deg); }
}

@media (max-width: 991px) {
    .special-visual { min-height: 460px; }
    .center-core { width: 190px; height: 190px; }
    .core-glow { width: 220px; height: 220px; }
    .special-content h2 { font-size: clamp(1.45rem, 3vw, 2.15rem); }
}

@media (max-width: 768px) {
    .special-grid { grid-template-columns: 1fr; }
    .special-visual { min-height: 390px; }
    .orbit-wrap { max-width: 380px; }
    .center-core { width: 165px; height: 165px; }
    .core-glow { width: 185px; height: 185px; }
    .center-core h3 { font-size: 15px; }
    .core-icon { width: 48px; height: 48px; }
    .floating-badge { font-size: 11px; padding: 7px 11px; }
    .badge-stat strong { font-size: 15px; }
    .badge-1 { top: 5%; left: 0; }
    .badge-2 { top: 2%; right: 0; }
    .badge-3 { top: 36%; right: 0; }
    .badge-4 { bottom: 10%; left: 0; }
    .badge-5 { bottom: 2%; right: 4%; }
}

@media (max-width: 480px) {
    .special-content h2 {
        font-size: 1.55rem;
        line-height: 1.15;
    }

    .orbit-wrap { max-width: 320px; }
    .center-core { width: 140px; height: 140px; }
    .core-glow { width: 160px; height: 160px; }
    .center-core h3 { font-size: 13px; }
    .glow-ring.ring-1 { width: 92%; height: 92%; }
}
/* ========== Counter Section ========== */
.counter-area {
  position: relative;
  background: linear-gradient(135deg, #0d0d14 0%, #130e20 50%, #1a0d2e 100%);
  padding: 90px 0;
  overflow: hidden;
}

/* Background Orbs */
.counter-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.orb-1 { width: 400px; height: 400px; background: #7c3aed; top: -100px; left: -100px; }
.orb-2 { width: 300px; height: 300px; background: #ec4899; bottom: -80px; right: 10%; }
.orb-3 { width: 200px; height: 200px; background: #f97316; top: 40%; left: 40%; opacity: 0.15; }

/* Badge */
.counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.counter-badge svg { color: #f97316; flex-shrink: 0; }

/* Heading */
.counter-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}
.highlight-orange { color: #f97316; }
.highlight-gradient {
  background: linear-gradient(90deg, #f97316, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.counter-desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 440px;
}

/* Trusted Badge */
.trusted-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
}

/* Map Card */
.map-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px 24px 0 24px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Floating Stat Cards */
.stat-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 10;
  min-width: 130px;
}
.stat-top-right { top: 20px; right: 20px; }
.stat-bottom-left { bottom: 90px; left: 20px; }
.stat-number { font-size: 1.6rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: #666; font-weight: 500; }
.text-orange { color: #f97316; }
.text-gradient {
  background: linear-gradient(90deg, #f97316, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* World Map SVG */
.world-map-wrap { width: 100%; }
.world-svg { width: 100%; height: auto; display: block; }

/* Arc Animation */
.arc-path {
  stroke-dashoffset: 1000;
  animation: drawArc 2.5s ease forwards;
}
.arc-1 { animation-delay: 0.3s; }
.arc-2 { animation-delay: 0.8s; }
@keyframes drawArc {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}

/* Pulse Dot */
.pulse-dot {
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { r: 7; opacity: 1; }
  50%       { r: 11; opacity: 0.5; }
}

/* Counter Stats Row */
.counter-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px 10px;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cs-item { text-align: center; flex: 1; }
.cs-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
}
.cs-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  background: linear-gradient(90deg, #f97316, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin: 6px 0 8px;
}
.cs-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  width: 70%;
  margin: 0 auto;
}
.cs-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f97316, #ec4899);
  border-radius: 10px;
  transition: width 1.5s ease;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
  .stat-top-right { top: 12px; right: 12px; padding: 8px 12px; }
  .stat-bottom-left { bottom: 80px; left: 12px; padding: 8px 12px; }
  .stat-number { font-size: 1.3rem; }
}
@media (max-width: 767px) {
  .counter-area { padding: 60px 0; }
  .counter-stats-row { flex-direction: column; gap: 16px; }
  .cs-divider { width: 80%; height: 1px; }
  .stat-bottom-left { bottom: auto; top: auto; position: relative; display: inline-block; margin-top: 10px; }
}

.services-area{
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(69,182,73,0.05), transparent 24%),
        radial-gradient(circle at top right, rgba(55,125,206,0.05), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
}

.services-title-center{
    text-align: center;
    margin-bottom: 38px;
    position: relative;
    z-index: 2;
}

.services-title-center .sub-title{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a5a2b;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 4px 12px rgba(15,23,42,0.04);
}

.services-title-center .sub-title i{
    color: #377dce;
    font-size: 11px;
}

.services-title-center h2{
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
    font-weight: 900;
    color: #111827;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
}

.services-title-center h2 span{
    background: linear-gradient(90deg, #f7941d 0%, #45b649 52%, #377dce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-title-center p{
    max-width: 720px;
    margin: 0 auto;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.services-card{
    position: relative;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 18px;
    padding: 22px 22px 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    transition: 0.3s ease;
    min-height: 100%;
}

.services-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 36px rgba(0,0,0,0.08);
    border-color: rgba(69,182,73,0.18);
}

.services-strip{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, #f7941d 0%, #45b649 50%, #377dce 100%);
}

.services-head{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.services-icon{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(247,148,29,0.10), rgba(55,125,206,0.08));
    border: 1px solid rgba(247,148,29,0.15);
}

.services-icon i{
    font-size: 22px;
    color: #c95f17;
}

.services-head-text{
    flex: 1;
}

.services-head-text h3{
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 4px;
}

.services-head-text h3 a{
    color: #1f2937;
    text-decoration: none;
}

.services-head-text span{
    font-size: 11px;
    color: #8a8a8a;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.services-head-text span::before{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c95f17;
}

.services-arrow{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    text-decoration: none;
    flex-shrink: 0;
    transition: 0.25s ease;
}

.services-arrow:hover{
    color: #fff;
    background: linear-gradient(135deg, #45b649, #377dce);
    border-color: transparent;
}

.services-card p{
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 16px;
}

.services-list{
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.services-list li{
    position: relative;
    padding-left: 16px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.services-list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f7941d, #45b649, #377dce);
}

.services-foot{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.services-foot span{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #8a8a8a;
    font-weight: 600;
}

.services-foot span i{
    color: #45b649;
}

.services-foot a{
    font-size: 13px;
    font-weight: 700;
    color: #c95f17;
    text-decoration: none;
}

.services-foot a:hover{
    color: #377dce;
}

.services-cta{
    margin-top: 34px;
    background: linear-gradient(135deg, rgba(247,148,29,0.05), rgba(69,182,73,0.04), rgba(55,125,206,0.04));
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.services-cta h4{
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.services-cta p{
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.services-cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f7941d, #45b649, #377dce);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(55,125,206,0.16);
    transition: 0.3s ease;
}

.services-cta-btn:hover{
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 991px){
    .services-cta{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px){
    .services-title-center h2{
        font-size: 2rem;
    }

    .services-card{
        padding: 20px 18px 16px;
    }

    .services-head{
        gap: 10px;
    }

    .services-foot{
        flex-direction: column;
        align-items: flex-start;
    }

    .services-cta-btn{
        width: 100%;
    }
}


.dietary-area{
    position: relative;
    overflow: hidden;
    padding-bottom: 90px;
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(55,125,206,0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(15,23,42,0.72), transparent 34%),
        linear-gradient(135deg, #0a0f12 0%, #141018 48%, #241019 100%);
}

.dietary-area::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.04), transparent 30%),
        radial-gradient(circle at 20% 15%, rgba(255,255,255,0.08), transparent 3%);
    opacity: 0.9;
    pointer-events: none;
}

.dietary-content{
    position: relative;
    z-index: 2;
    color: #fff;
}

.dietary-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(69,182,73,0.22);
    color: #f1f5f9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.dietary-content h2{
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.02;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.dietary-orange{
    color: #45b649;
}

.dietary-gradient{
    background: linear-gradient(90deg, #377dce 0%, #45b649 55%, #f7941d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dietary-content p{
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.78);
    margin-bottom: 16px;
    max-width: 620px;
}

.dietary-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 28px;
}

.dietary-pills span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.86);
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.dietary-buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dietary-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.dietary-btn-primary{
    background: linear-gradient(135deg, #45b649, #377dce);
    color: #fff;
    box-shadow: 0 14px 28px rgba(55,125,206,0.22);
}

.dietary-btn-primary:hover{
    transform: translateY(-2px);
    color: #fff;
}

.dietary-btn-outline{
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.22);
}

.dietary-btn-outline:hover{
    background: rgba(69,182,73,0.10);
    border-color: rgba(69,182,73,0.30);
    color: #dff7e5;
    transform: translateY(-2px);
}

.dietary-visual{
    position: relative;
    z-index: 2;
}

.dietary-panel-main{
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 22px;
    padding: 24px 24px 20px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.20);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.dietary-panel-main::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #45b649, #377dce, #f7941d);
}

.dietary-panel-top{
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin-bottom: 12px;
}

.dietary-panel-main h3{
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.dietary-panel-main p{
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.dietary-stat-row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.dietary-stat-box{
    background: rgba(255,255,255,0.95);
    border-radius: 14px;
    padding: 12px 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.dietary-stat-box strong{
    display: block;
    font-size: 16px;
    font-weight: 900;
    color: #c95f17;
    line-height: 1;
    margin-bottom: 4px;
}

.dietary-stat-box span{
    font-size: 11px;
    color: #666;
    font-weight: 600;
}

.dietary-features{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.dietary-feature-card{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: 0.28s ease;
}

.dietary-feature-card:hover{
    transform: translateY(-3px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(69,182,73,0.22);
}

.dietary-feature-card i{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, #45b649, #377dce);
    box-shadow: 0 10px 20px rgba(55,125,206,0.18);
}

.dietary-feature-card h4{
    font-size: 13.5px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}

.dietary-feature-card p{
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255,255,255,0.74);
    margin: 0;
}

@media (max-width: 991px){
    .dietary-content h2{
        font-size: clamp(2rem, 5vw, 3.3rem);
    }

    .dietary-visual{
        margin-top: 10px;
    }
}

@media (max-width: 768px){
    .dietary-stat-row{
        grid-template-columns: 1fr;
    }

    .dietary-features{
        grid-template-columns: 1fr;
    }

    .dietary-buttons{
        flex-direction: column;
    }

    .dietary-btn{
        width: 100%;
    }
}

.certificates-area{
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(55,125,206,0.06), transparent 26%),
        linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.certificates-title{
    text-align: center;
    margin-bottom: 40px;
}

.certificates-title .sub-title{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a5a2b;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 4px 12px rgba(15,23,42,0.04);
}

.certificates-title .sub-title i{
    color: #377dce;
    font-size: 11px;
}

.certificates-title h2{
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    font-weight: 900;
    color: #111827;
    margin-bottom: 10px;
    letter-spacing: -0.8px;
}

.certificates-title h2 span{
    background: linear-gradient(90deg, #f7941d 0%, #45b649 52%, #377dce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certificates-title p{
    max-width: 720px;
    margin: 0 auto;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.certificates-slider-wrap{
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.certificates-slider{
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 8px 22px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    cursor: grab;
}

.certificates-slider::-webkit-scrollbar{
    display: none;
}

.certificate-card{
    flex: 0 0 280px;
    background: #fff;
    border-radius: 22px;
    padding: 14px;
    border: 1px solid #ececec;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
    overflow: hidden;
}

.certificate-card::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(247,148,29,0.08), rgba(69,182,73,0.06), rgba(55,125,206,0.06));
    opacity: 0;
    transition: 0.3s ease;
}

.certificate-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.certificate-card:hover::before{
    opacity: 1;
}

.certificate-card img{
    width: 100%;
    height: 360px;
    object-fit: contain;
    background: #fafafa;
    border-radius: 14px;
    display: block;
    position: relative;
    z-index: 1;
}

.certificate-card span{
    display: block;
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.cert-nav{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ececec;
    background: #fff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    flex-shrink: 0;
    transition: 0.25s ease;
    z-index: 2;
}

.cert-nav:hover{
    background: linear-gradient(135deg, #45b649, #377dce);
    color: #fff;
    border-color: transparent;
}

.cert-nav i{
    font-size: 24px;
}

@media (max-width: 768px){
    .certificates-slider-wrap{
        gap: 10px;
    }

    .certificate-card{
        flex-basis: 230px;
    }

    .certificate-card img{
        height: 290px;
    }

    .cert-nav{
        display: none;
    }
}

.licence-area{
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(55,125,206,0.06), transparent 26%),
        linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.licence-title{
    text-align: center;
    margin-bottom: 32px;
}

.licence-title .sub-title{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a5a2b;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 4px 12px rgba(15,23,42,0.04);
}

.licence-title .sub-title i{
    color: #377dce;
    font-size: 11px;
}

.licence-title h2{
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.05;
    font-weight: 900;
    color: #111827;
    margin-bottom: 10px;
    letter-spacing: -0.8px;
}

.licence-title h2 span{
    background: linear-gradient(90deg, #f7941d 0%, #45b649 52%, #377dce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.licence-title p{
    max-width: 760px;
    margin: 0 auto;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.licence-logos-wrap{
    position: relative;
    overflow: hidden;
}

.licence-logos{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: nowrap;
    padding: 18px 0 10px;
    overflow: hidden;
}

.licence-item{
    flex: 0 0 auto;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(15,23,42,0.08);
    transition: 0.3s ease;
    text-decoration: none;
}

.licence-item:hover{
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 34px rgba(0,0,0,0.10);
}

.licence-item img{
    width: 78px;
    height: 78px;
    object-fit: contain;
    display: block;
}

.licence-actions{
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.licence-toggle{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #c92f3f, #e23b56);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(201,47,63,0.22);
    cursor: pointer;
    transition: 0.25s ease;
}

.licence-toggle:hover{
    transform: translateY(-2px);
}

.licence-more{
    display: none;
    margin-top: 26px;
}

.licence-more.show{
    display: block;
}

.licence-more-grid{
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.cert-lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.cert-lightbox.show{
    display: flex;
}

.cert-lightbox-content{
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.cert-lightbox-content img{
    max-width: 100%;
    max-height: 75vh;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

.cert-lightbox-content p{
    margin: 12px 0 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.cert-lightbox-close{
    position: absolute;
    top: -14px;
    right: -14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #45b649, #377dce);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

@media (max-width: 991px){
    .licence-area{
        padding: 75px 0;
    }

    .licence-logos{
        gap: 24px;
    }

    .licence-item{
        width: 86px;
        height: 86px;
    }

    .licence-item img{
        width: 68px;
        height: 68px;
    }

    .licence-more-grid{
        gap: 18px;
    }
}

@media (max-width: 768px){
    .licence-area{
        padding: 65px 0;
    }

    .licence-title p{
        font-size: 14px;
        padding: 0 8px;
    }

    .licence-logos{
        gap: 18px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 14px 6px 18px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .licence-logos::-webkit-scrollbar{
        display: none;
    }

    .licence-item{
        width: 78px;
        height: 78px;
    }

    .licence-item img{
        width: 62px;
        height: 62px;
    }

    .licence-toggle{
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .licence-more-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .licence-more-grid .licence-item{
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
    }
}

@media (max-width: 480px){
    .licence-title h2{
        font-size: 1.8rem;
    }

    .licence-title p{
        font-size: 13.5px;
    }

    .licence-logos{
        gap: 14px;
    }

    .licence-item{
        width: 72px;
        height: 72px;
    }

    .licence-item img{
        width: 56px;
        height: 56px;
    }

    .licence-more-grid{
        grid-template-columns: 1fr;
    }

    .cert-lightbox-content{
        padding: 12px;
    }

    .cert-lightbox-close{
        width: 34px;
        height: 34px;
        top: -12px;
        right: -12px;
    }
}

.contact-page-title{
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.10), transparent 28%),
        radial-gradient(circle at top right, rgba(55,125,206,0.08), transparent 26%),
        linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.contact-page-title .title-item{
    text-align: center;
    padding: 40px 0;
}

.page-subtitle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a5a2b;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 4px 12px rgba(15,23,42,0.04);
    margin-bottom: 14px;
}

.contact-page-title h2{
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #111827;
    margin-bottom: 10px;
}

.contact-page-title p{
    max-width: 760px;
    margin: 0 auto 18px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.contact-section-brand .contact-info-card,
.contact-section-brand .contact-form-card{
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
    padding: 30px;
}

.contact-label{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(69,182,73,0.08);
    border: 1px solid rgba(55,125,206,0.10);
    color: #2f6f4e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.contact-info-list{
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.contact-info-list li{
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #f1f1f1;
}

.contact-info-list li:last-child{
    border-bottom: none;
}

.contact-info-list li i{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #45b649, #377dce);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-list h4{
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 4px;
}

.contact-info-list span,
.contact-info-list a{
    font-size: 14px;
    color: #5f6b7a;
    text-decoration: none;
    line-height: 1.7;
}

.contact-info-list a:hover{
    color: #377dce;
}

.contact-social{
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.contact-social a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ececec;
    color: #377dce;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    transition: 0.25s ease;
    text-decoration: none;
}

.contact-social a:hover{
    background: linear-gradient(135deg, #45b649, #377dce);
    color: #fff;
    transform: translateY(-2px);
}

.contact-form-card p{
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.contact-form-card .form-control{
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e7e7e7;
    background: #fff;
    padding: 12px 16px;
    box-shadow: none;
}

.contact-form-card textarea.form-control{
    height: auto;
    min-height: 150px;
}

.contact-form-card .form-control:focus{
    border-color: #45b649;
    box-shadow: 0 0 0 4px rgba(69,182,73,0.08);
}

.contact-btn{
    border: none;
    border-radius: 999px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #45b649, #377dce);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(55,125,206,0.18);
}

.contact-btn:hover{
    color: #fff;
    transform: translateY(-2px);
}

.contact-map-area iframe{
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 768px){
    .contact-section-brand .contact-info-card,
    .contact-section-brand .contact-form-card{
        padding: 22px;
    }

    .contact-map-area iframe{
        height: 300px;
    }
}

.about-hero-area{
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background:
        radial-gradient(circle at 85% 18%, rgba(247,148,29,0.16), transparent 12%),
        radial-gradient(circle at 70% 72%, rgba(69,182,73,0.10), transparent 18%),
        radial-gradient(circle at 100% 0%, rgba(55,125,206,0.08), transparent 22%),
        linear-gradient(135deg, #12090d 0%, #1b1213 42%, #0d0f12 100%);
}

.about-hero-area::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255,255,255,0.05), transparent 30%),
        radial-gradient(circle at 25% 18%, rgba(255,255,255,0.07), transparent 4%);
    pointer-events: none;
}

.about-hero-content{
    position: relative;
    z-index: 2;
    color: #fff;
}

.about-hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.88);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.about-hero-badge i{
    color: #f7941d;
    font-size: 14px;
}

.about-hero-content h1{
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -1.6px;
    margin-bottom: 20px;
}

.about-hero-content h1 span{
    color: #45b649;
}

.about-hero-content p{
    max-width: 690px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255,255,255,0.78);
    margin-bottom: 26px;
}

.about-hero-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.about-hero-pills span{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.88);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.about-hero-pills i{
    color: #f7941d;
}

.about-hero-actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.about-hero-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-hero-btn.primary{
    color: #fff;
    background: linear-gradient(135deg, #f7941d, #45b649, #377dce);
    box-shadow: 0 14px 30px rgba(55,125,206,0.18);
}

.about-hero-btn.primary:hover{
    transform: translateY(-2px);
    color: #fff;
}

.about-hero-btn.secondary{
    color: #fff;
    border: 1px solid rgba(255,255,255,0.20);
    background: rgba(255,255,255,0.05);
}

.about-hero-btn.secondary:hover{
    transform: translateY(-2px);
    border-color: rgba(69,182,73,0.28);
    background: rgba(69,182,73,0.08);
    color: #fff;
}

.about-hero-panel{
    position: relative;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 26px;
    padding: 28px 28px 24px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.22);
    backdrop-filter: blur(14px);
    color: #fff;
    overflow: hidden;
}

.about-hero-panel .panel-line{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f7941d, #45b649, #377dce);
}

.about-hero-panel h3{
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 14px;
}

.about-hero-panel p{
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.panel-stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.panel-stat{
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    text-align: center;
    padding: 14px 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.panel-stat strong{
    display: block;
    font-size: 16px;
    font-weight: 900;
    color: #c95f17;
    line-height: 1;
    margin-bottom: 4px;
}

.panel-stat span{
    font-size: 11px;
    color: #666;
    font-weight: 600;
}

@media (max-width: 991px){
    .about-hero-area{
        padding: 70px 0 80px;
    }

    .about-hero-content h1{
        font-size: clamp(2.0rem, 8vw, 3rem);
    }

    .panel-stats{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px){
    .about-hero-actions{
        flex-direction: column;
    }

    .about-hero-btn{
        width: 100%;
    }

    .about-hero-panel{
        padding: 22px;
    }

    .about-hero-pills{
        gap: 10px;
    }

    .about-hero-pills span{
        width: 100%;
        justify-content: center;
    }
}

.about-brand-section{
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(55,125,206,0.06), transparent 22%),
        linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.about-brand-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15,23,42,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.45;
    pointer-events: none;
}

.about-story-wrap{
    position: relative;
    z-index: 2;
}

.about-story-head{
    max-width: 800px;
    margin-bottom: 34px;
}

.about-story-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #2f6f4e;
    background: rgba(69,182,73,0.08);
    border: 1px solid rgba(55,125,206,0.10);
    margin-bottom: 14px;
}

.about-story-head h2{
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 900;
    color: #101828;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.about-story-head h2 span{
    background: linear-gradient(90deg, #f7941d 0%, #45b649 52%, #377dce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story-head p{
    font-size: 15px;
    line-height: 1.85;
    color: #5f6b7a;
    margin: 0;
    max-width: 720px;
}

.about-story-card{
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 12px 26px rgba(15,23,42,0.04);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-story-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(69,182,73,0.04), rgba(55,125,206,0.04));
    opacity: 0;
    transition: 0.3s ease;
}

.about-story-card:hover{
    transform: translateY(-5px);
    border-color: rgba(69,182,73,0.18);
    box-shadow: 0 18px 34px rgba(15,23,42,0.08);
}

.about-story-card:hover::before{
    opacity: 1;
}

.about-story-icon{
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(69,182,73,0.12), rgba(55,125,206,0.12));
    border: 1px solid rgba(69,182,73,0.10);
}

.about-story-icon i{
    font-size: 24px;
    color: #377dce;
}

.about-story-card h4{
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.about-story-card p{
    font-size: 14px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
}

.about-quote-box{
    margin-top: 22px;
    background: linear-gradient(135deg, rgba(247,148,29,0.05), rgba(69,182,73,0.04), rgba(55,125,206,0.04));
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 10px 24px rgba(15,23,42,0.04);
}

.about-quote-icon{
    width: 42px;
    height: 42px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 8px 18px rgba(15,23,42,0.04);
}

.about-quote-icon i{
    font-size: 22px;
    color: #c95f17;
}

.about-quote-box p{
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
}

@media (max-width: 768px){
    .about-story-head h2{
        font-size: 1.9rem;
    }

    .about-story-card{
        padding: 22px 18px;
    }

    .about-quote-box{
        padding: 18px;
        flex-direction: column;
    }
}

.mission-area{
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.08), transparent 26%),
        radial-gradient(circle at bottom right, rgba(55,125,206,0.08), transparent 24%),
        linear-gradient(135deg, #090b10 0%, #12151b 45%, #0a1216 100%);
    color: #fff;
}

.mission-area::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05), transparent 4%),
        linear-gradient(120deg, rgba(255,255,255,0.04), transparent 30%);
    pointer-events: none;
}

.mission-content{
    position: relative;
    z-index: 2;
}

.mission-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.80);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.mission-content h2{
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -1.4px;
    margin-bottom: 18px;
    color: #fff;
}

.mission-content h2 span{
    background: linear-gradient(90deg, #f7941d 0%, #45b649 55%, #377dce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-content p{
    max-width: 640px;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.76);
    margin-bottom: 28px;
}

.mission-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.mission-card{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.mission-card:hover{
    transform: translateY(-4px);
    border-color: rgba(69,182,73,0.24);
    background: rgba(255,255,255,0.06);
}

.mission-icon{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(247,148,29,0.15), rgba(69,182,73,0.12), rgba(55,125,206,0.10));
    border: 1px solid rgba(255,255,255,0.12);
}

.mission-icon i{
    font-size: 20px;
    color: #fff;
}

.mission-card h4{
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}

.mission-card p{
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
    color: rgba(255,255,255,0.72);
}

.mission-footer-text{
    margin-top: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.58);
    letter-spacing: 0.4px;
}

.mission-visual{
    position: relative;
    z-index: 2;
}

.mission-frame{
    position: relative;
    min-height: 420px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.18);
    background:
        radial-gradient(circle at 20% 20%, rgba(247,148,29,0.12), transparent 28%),
        radial-gradient(circle at 85% 35%, rgba(69,182,73,0.10), transparent 25%),
        rgba(255,255,255,0.05);
    box-shadow: 0 18px 44px rgba(0,0,0,0.22);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.mission-frame::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f7941d, #45b649, #377dce);
}

.mission-glow{
    position: absolute;
    inset: 20px;
    border-radius: 22px;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 30%),
        radial-gradient(circle at 40% 50%, rgba(247,148,29,0.18), transparent 20%),
        radial-gradient(circle at 70% 60%, rgba(69,182,73,0.12), transparent 18%);
    filter: blur(8px);
    animation: missionPulse 4s ease-in-out infinite;
}

.mission-placeholder{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    z-index: 2;
    text-align: center;
}

.mission-placeholder i{
    font-size: 64px;
    color: rgba(255,255,255,0.88);
}

.mission-placeholder span{
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.mission-visual-caption{
    position: absolute;
    left: 24px;
    bottom: 46px;
    z-index: 2;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.mission-visual-sub{
    position: absolute;
    left: 24px;
    bottom: 20px;
    z-index: 2;
    font-size: 12px;
    color: rgba(255,255,255,0.72);
}

@keyframes missionPulse{
    0%,100%{ opacity: 0.75; transform: scale(1); }
    50%{ opacity: 1; transform: scale(1.02); }
}

@media (max-width: 991px){
    .mission-area{
        padding: 75px 0;
    }

    .mission-content h2{
        font-size: clamp(2.1rem, 7vw, 4rem);
    }

    .mission-frame{
        min-height: 360px;
    }
}

@media (max-width: 768px){
    .mission-grid{
        grid-template-columns: 1fr;
    }

    .mission-card{
        padding: 16px 14px;
    }

    .mission-frame{
        min-height: 300px;
        border-radius: 22px;
    }

    .mission-placeholder i{
        font-size: 52px;
    }
}

.mv-area{
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.10), transparent 24%),
        radial-gradient(circle at top right, rgba(55,125,206,0.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.mv-area::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15,23,42,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}

.mv-head{
    text-align: center;
    max-width: 820px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 2;
}

.mv-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2f6f4e;
    background: rgba(69,182,73,0.08);
    border: 1px solid rgba(55,125,206,0.10);
    margin-bottom: 14px;
}

.mv-head h2{
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 900;
    color: #101828;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.mv-head p{
    font-size: 15px;
    line-height: 1.85;
    color: #5f6b7a;
    margin: 0;
}

.mv-card{
    height: 100%;
    position: relative;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 22px;
    padding: 28px 26px;
    box-shadow: 0 12px 28px rgba(15,23,42,0.05);
    transition: 0.3s ease;
    overflow: hidden;
}

.mv-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #f7941d, #45b649, #377dce);
}

.mv-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15,23,42,0.09);
    border-color: rgba(69,182,73,0.18);
}

.mv-icon{
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(69,182,73,0.12), rgba(55,125,206,0.12));
    border: 1px solid rgba(69,182,73,0.10);
    margin-bottom: 18px;
}

.mv-icon i{
    font-size: 28px;
    color: #377dce;
}

.mv-card h3{
    font-size: 22px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 12px;
}

.mv-card p{
    font-size: 14px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 18px;
}

.mv-card ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mv-card ul li{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #1f2937;
    padding: 12px 13px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(69,182,73,0.05), rgba(55,125,206,0.04));
    border: 1px solid rgba(15,23,42,0.06);
}

.mv-card ul li i{
    color: #45b649;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.mv-mission{
    animation: mvFadeUp 0.8s ease both;
}

.mv-vision{
    animation: mvFadeUp 0.8s ease 0.12s both;
}

@keyframes mvFadeUp{
    from{
        opacity: 0;
        transform: translateY(18px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px){
    .mv-area{
        padding: 75px 0;
    }

    .mv-card ul{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px){
    .mv-head h2{
        font-size: 1.9rem;
    }

    .mv-card{
        padding: 22px 18px;
        border-radius: 18px;
    }

    .mv-icon{
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .mv-icon i{
        font-size: 24px;
    }

    .mv-card h3{
        font-size: 20px;
    }
}

.offer-brand-area{
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(55,125,206,0.07), transparent 22%),
        linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.offer-brand-area::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15,23,42,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.35;
    pointer-events: none;
}

.offer-brand-title{
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.offer-brand-title .sub-title{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2f6f4e;
    background: rgba(69,182,73,0.08);
    border: 1px solid rgba(55,125,206,0.10);
    margin-bottom: 14px;
}

.offer-brand-title h2{
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 900;
    color: #101828;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.offer-brand-title p{
    max-width: 760px;
    margin: 0 auto;
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.8;
}

.offer-card{
    height: 100%;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 22px;
    padding: 28px 22px 24px;
    box-shadow: 0 12px 28px rgba(15,23,42,0.05);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(69,182,73,0.05), rgba(55,125,206,0.04));
    opacity: 0;
    transition: 0.3s ease;
}

.offer-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15,23,42,0.10);
    border-color: rgba(69,182,73,0.18);
}

.offer-card:hover::before{
    opacity: 1;
}

.offer-icon-box{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    min-height: 96px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(69,182,73,0.08), rgba(55,125,206,0.06));
    border: 1px solid rgba(15,23,42,0.06);
}

.offer-icon{
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #45b649, #377dce);
    box-shadow: 0 14px 28px rgba(55,125,206,0.15);
    transition: 0.3s ease;
}

.offer-card:hover .offer-icon{
    transform: rotate(-6deg) scale(1.05);
}

.offer-icon i{
    font-size: 34px;
    color: #fff;
}

.offer-bottom h3{
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.offer-bottom h3 a{
    color: #111827;
    text-decoration: none;
    transition: 0.25s ease;
}

.offer-bottom h3 a:hover{
    color: #377dce;
}

.offer-bottom p{
    font-size: 14px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 16px;
}

.offer-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c95f17;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.offer-link:hover{
    color: #377dce;
    transform: translateX(2px);
}

@media (max-width: 768px){
    .offer-brand-area{
        padding: 75px 0;
    }

    .offer-card{
        padding: 24px 18px 22px;
    }

    .offer-icon-box{
        min-height: 88px;
    }

    .offer-icon{
        width: 64px;
        height: 64px;
    }

    .offer-icon i{
        font-size: 30px;
    }
}

.cert-page-title{
    position: relative;
    overflow: hidden;
    padding: 95px 0 105px;
    background:
        radial-gradient(circle at 15% 20%, rgba(247,148,29,0.18), transparent 18%),
        radial-gradient(circle at 82% 24%, rgba(69,182,73,0.12), transparent 20%),
        radial-gradient(circle at 100% 0%, rgba(55,125,206,0.10), transparent 22%),
        linear-gradient(135deg, #12090d 0%, #1b1213 42%, #0d0f12 100%);
    color: #fff;
}

.cert-page-title::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255,255,255,0.06), transparent 30%);
    pointer-events: none;
}

.cert-page-title .title-item{
    text-align: center;
    position: relative;
    z-index: 2;
}

.cert-page-title .page-subtitle{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.86);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.cert-page-title h2{
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -1.4px;
    margin-bottom: 16px;
    color: #fff;
}

.cert-page-title h2{
    background: linear-gradient(90deg, #fff 0%, #fff 45%, #f7941d 65%, #45b649 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cert-page-title p{
    max-width: 760px;
    margin: 0 auto 18px;
    color: rgba(255,255,255,0.74);
    font-size: 15px;
    line-height: 1.8;
}

.cert-page-title ul{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cert-page-title ul li{
    font-size: 13px;
    color: rgba(255,255,255,0.72);
}

.cert-page-title ul li a{
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.certificate-area{
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(55,125,206,0.07), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.certificate-card{
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(15,23,42,0.05);
    overflow: hidden;
    transition: 0.3s ease;
    height: 100%;
}

.certificate-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15,23,42,0.10);
    border-color: rgba(69,182,73,0.18);
}

.certificate-card a{
    display: block;
}

.certificate-card img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.certificate-card:hover img{
    transform: scale(1.04);
}

.certificate-content{
    padding: 18px 18px 20px;
}

.certificate-content h3{
    font-size: 18px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 8px;
}

.certificate-content span{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}

.certificate-content span i{
    color: #f7941d;
}

.certificate-btn{
    width: 100%;
    border: none;
    outline: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #f7941d, #45b649, #377dce);
    box-shadow: 0 12px 24px rgba(55,125,206,0.14);
    transition: 0.3s ease;
}

.certificate-btn:hover{
    transform: translateY(-2px);
}

.cert-lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.86);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.cert-lightbox.show{
    display: flex;
}

.cert-lightbox-content{
    position: relative;
    max-width: 92vw;
    max-height: 92vh;
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.cert-lightbox-content img{
    max-width: 100%;
    max-height: 80vh;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

.cert-lightbox-content p{
    margin: 12px 0 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.cert-lightbox-close{
    position: absolute;
    top: -14px;
    right: -14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #45b649, #377dce);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

@media (max-width: 768px){
    .cert-page-title{
        padding: 75px 0 84px;
    }

    .certificate-area{
        padding: 70px 0;
    }

    .certificate-card img{
        height: 240px;
    }

    .certificate-content{
        padding: 16px;
    }
}

.service-hero-area{
    position: relative;
    overflow: hidden;
    padding: 95px 0 105px;
    background:
        radial-gradient(circle at 15% 20%, rgba(247,148,29,0.18), transparent 18%),
        radial-gradient(circle at 82% 24%, rgba(69,182,73,0.12), transparent 20%),
        radial-gradient(circle at 100% 0%, rgba(55,125,206,0.10), transparent 22%),
        linear-gradient(135deg, #12090d 0%, #1b1213 42%, #0d0f12 100%);
    color: #fff;
}

.service-hero-area::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255,255,255,0.06), transparent 30%);
    pointer-events: none;
}

.service-hero-content{
    position: relative;
    z-index: 2;
}

.service-hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.86);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.service-hero-badge i{
    color: #f7941d;
    font-size: 14px;
}

.service-hero-content h1{
    font-size: clamp(1.8rem, 3.8vw, 4rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -1.6px;
    margin-bottom: 18px;
    color: #fff;
}

.service-hero-content h1 span{
    color: #45b649;
}

.service-hero-content p{
    max-width: 640px;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.78);
    margin-bottom: 28px;
}

.service-hero-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.service-hero-pills span{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.88);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.service-hero-pills i{
    color: #f7941d;
}

.service-hero-actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.service-hero-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.service-hero-btn.primary{
    color: #fff;
    background: linear-gradient(135deg, #f7941d, #45b649, #377dce);
    box-shadow: 0 14px 30px rgba(55,125,206,0.18);
}

.service-hero-btn.secondary{
    color: #fff;
    border: 1px solid rgba(255,255,255,0.20);
    background: rgba(255,255,255,0.05);
}

.service-hero-btn:hover{
    transform: translateY(-2px);
}

.service-hero-panel{
    position: relative;
    min-height: 420px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.18);
    background:
        radial-gradient(circle at 50% 35%, rgba(247,148,29,0.10), transparent 24%),
        radial-gradient(circle at 70% 70%, rgba(69,182,73,0.10), transparent 22%),
        rgba(255,255,255,0.05);
    box-shadow: 0 18px 44px rgba(0,0,0,0.22);
    overflow: hidden;
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
}

.service-hero-panel .panel-line{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f7941d, #45b649, #377dce);
}

.panel-icon{
    width: 84px;
    height: 84px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    margin-bottom: 18px;
}

.panel-icon i{
    font-size: 38px;
    color: #f7941d;
}

.panel-kicker{
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin-bottom: 10px;
}

.service-hero-panel h3{
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    line-height: 1.18;
    font-weight: 900;
    color: #fff;
    margin-bottom: 18px;
}

.panel-orbits{
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 180px;
}

.orbit{
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    box-shadow: 0 12px 24px rgba(0,0,0,0.14);
    animation: floatOrbit 4s ease-in-out infinite;
}

.orbit i{
    font-size: 24px;
    color: #fff;
}

.orbit-1{ top: 10px; left: 8%; }
.orbit-2{ top: 18px; right: 10%; animation-delay: 0.5s; }
.orbit-3{ bottom: 20px; left: 10%; animation-delay: 1s; }
.orbit-4{ bottom: 10px; right: 8%; animation-delay: 1.5s; }

@keyframes floatOrbit{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-8px); }
}

@media (max-width: 991px){
    .service-hero-area{
        padding: 75px 0 85px;
    }

    .service-hero-content h1{
        font-size: clamp(2.2rem, 8vw, 4rem);
    }

    .service-hero-panel{
        min-height: 340px;
    }
}

@media (max-width: 768px){
    .service-hero-actions{
        flex-direction: column;
    }

    .service-hero-btn{
        width: 100%;
    }

    .service-hero-pills span{
        width: 100%;
        justify-content: center;
    }

    .service-hero-panel{
        padding: 22px;
        min-height: 300px;
    }

    .panel-orbits{
        height: 140px;
    }
}

.portfolio-area{
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(55,125,206,0.06), transparent 22%),
        linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.portfolio-area::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15,23,42,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.35;
    pointer-events: none;
}

.portfolio-head{
    text-align: center;
    max-width: 820px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 2;
}

.portfolio-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,0.08);
    background: rgba(255,255,255,0.95);
    color: #2f6f4e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(15,23,42,0.04);
}

.portfolio-head h2{
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 900;
    color: #101828;
    margin-bottom: 10px;
    letter-spacing: -0.8px;
}

.portfolio-head h2 span{
    background: linear-gradient(90deg, #f7941d 0%, #45b649 52%, #377dce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-head p{
    max-width: 760px;
    margin: 0 auto;
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.8;
}

.portfolio-card{
    height: 100%;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 22px;
    padding: 28px 24px 26px;
    box-shadow: 0 12px 28px rgba(15,23,42,0.05);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(69,182,73,0.05), rgba(55,125,206,0.04));
    opacity: 0;
    transition: 0.35s ease;
}

.portfolio-card:hover{
    transform: translateY(-6px);
    border-color: rgba(69,182,73,0.18);
    box-shadow: 0 18px 36px rgba(15,23,42,0.10);
}

.portfolio-card:hover::before{
    opacity: 1;
}

.portfolio-icon{
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(247,148,29,0.10), rgba(69,182,73,0.08), rgba(55,125,206,0.08));
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.portfolio-icon i{
    font-size: 28px;
    color: #377dce;
}

.portfolio-card h3{
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 10px;
}

.portfolio-card h3 a{
    color: #111827;
    text-decoration: none;
    transition: 0.25s ease;
}

.portfolio-card h3 a:hover{
    color: #f7941d;
}

.portfolio-card p{
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.portfolio-line{
    display: block;
    width: 58px;
    height: 2px;
    border-radius: 999px;
    margin-top: 18px;
    background: linear-gradient(90deg, #f7941d, #45b649, #377dce);
    opacity: 0.8;
    transition: 0.3s ease;
}

.portfolio-card:hover .portfolio-line{
    width: 84px;
    opacity: 1;
}

@media (max-width: 768px){
    .portfolio-area{
        padding: 75px 0;
    }

    .portfolio-card{
        padding: 24px 18px 22px;
    }

    .portfolio-icon{
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .portfolio-icon i{
        font-size: 24px;
    }
}

.process-area{
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.10), transparent 24%),
        radial-gradient(circle at top right, rgba(55,125,206,0.06), transparent 22%),
        linear-gradient(180deg, #fbfffc 0%, #f7fbf8 100%);
}

.process-area::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15,23,42,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
    pointer-events: none;
}

.process-head{
    text-align: center;
    max-width: 820px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 2;
}

.process-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,0.08);
    background: rgba(255,255,255,0.9);
    color: #2f6f4e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(15,23,42,0.04);
}

.process-head h2{
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 900;
    color: #101828;
    margin-bottom: 10px;
    letter-spacing: -0.8px;
}

.process-head h2 span{
    background: linear-gradient(90deg, #f7941d 0%, #45b649 52%, #377dce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-head p{
    max-width: 760px;
    margin: 0 auto;
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.8;
}

.process-card{
    position: relative;
    height: 100%;
    background: rgba(255,255,255,0.9);
    border: 1px solid #e8efea;
    border-radius: 22px;
    padding: 28px 24px 24px;
    box-shadow: 0 12px 26px rgba(15,23,42,0.05);
    transition: 0.35s ease;
    overflow: hidden;
}

.process-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(69,182,73,0.05), rgba(55,125,206,0.04));
    opacity: 0;
    transition: 0.35s ease;
}

.process-card:hover{
    transform: translateY(-6px);
    border-color: rgba(69,182,73,0.18);
    box-shadow: 0 18px 36px rgba(15,23,42,0.08);
}

.process-card:hover::before{
    opacity: 1;
}

.process-step{
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #f7941d, #45b649, #377dce);
    box-shadow: 0 12px 24px rgba(55,125,206,0.16);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.process-line{
    width: 72px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f7941d, #45b649, #377dce);
    margin-bottom: 18px;
    opacity: 0.85;
}

.process-card h3{
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.process-card p{
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px){
    .process-area{
        padding: 75px 0;
    }

    .process-card{
        padding: 24px 18px 20px;
    }

    .process-step{
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 17px;
    }
}

.page-title-career{
    position: relative;
    overflow: hidden;
    padding: 95px 0 105px;
    background:
        radial-gradient(circle at 15% 20%, rgba(247,148,29,0.18), transparent 18%),
        radial-gradient(circle at 82% 24%, rgba(69,182,73,0.12), transparent 20%),
        radial-gradient(circle at 100% 0%, rgba(55,125,206,0.10), transparent 22%),
        linear-gradient(135deg, #12090d 0%, #1b1213 42%, #0d0f12 100%);
    color: #fff;
}

.page-title-career::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255,255,255,0.06), transparent 30%);
    pointer-events: none;
}

.career-title-item{
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
}

.career-title-item .page-subtitle{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.86);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.career-title-item .page-subtitle i{
    color: #f7941d;
    font-size: 14px;
}

.career-title-item h2{
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -1.4px;
    margin-bottom: 14px;
    color: #fff;
}

.career-title-item h2 span{
    background: linear-gradient(90deg, #f7941d 0%, #45b649 52%, #377dce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.career-title-item p{
    max-width: 760px;
    margin: 0 auto 22px;
    color: rgba(255,255,255,0.76);
    font-size: 15px;
    line-height: 1.85;
}

.career-title-highlights{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 22px;
}

.career-title-highlights span{
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 8px 18px rgba(0,0,0,0.14);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.90);
    backdrop-filter: blur(10px);
}

.career-title-item ul{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-title-item ul li{
    font-size: 13px;
    color: rgba(255,255,255,0.72);
}

.career-title-item ul li a{
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 768px){
    .page-title-career{
        padding: 75px 0 85px;
    }

    .career-title-item h2{
        font-size: 2.25rem;
    }

    .career-title-highlights{
        gap: 8px;
    }

    .career-title-highlights span{
        padding: 9px 12px;
        font-size: 12px;
    }
}



.career-brand-section{
    position: relative;
    overflow: hidden;
    padding-bottom: 90px;
    background:
        radial-gradient(circle at bottom left, rgba(69,182,73,0.06), transparent 22%),
        radial-gradient(circle at top right, rgba(55,125,206,0.05), transparent 20%),
        #ffffff;
}

.career-info-card,
.career-form-card{
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 12px 28px rgba(15,23,42,0.05);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.career-info-card::before,
.career-form-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f7941d, #45b649, #377dce);
}

.career-info-card:hover,
.career-form-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(15,23,42,0.09);
    border-color: rgba(69,182,73,0.18);
}

.career-label{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(69,182,73,0.08);
    border: 1px solid rgba(55,125,206,0.10);
    color: #2f6f4e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.career-info-card h3,
.career-form-card h3{
    font-size: 28px;
    font-weight: 900;
    color: #101828;
    margin-bottom: 12px;
}

.career-info-card p,
.career-form-card p{
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.career-openings{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.career-openings li{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(69,182,73,0.05), rgba(55,125,206,0.04));
    border: 1px solid rgba(15,23,42,0.06);
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
}

.career-openings li i{
    color: #45b649;
    font-size: 18px;
}

.career-note{
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(247,148,29,0.06);
    border: 1px solid rgba(247,148,29,0.12);
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
}

.career-note i{
    color: #c95f17;
    margin-right: 6px;
    font-size: 18px;
    vertical-align: middle;
}

.career-note a{
    color: #377dce;
    text-decoration: none;
    font-weight: 700;
}

.career-form-card .form-control{
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e7e7e7;
    background: #fff;
    box-shadow: none;
    padding: 12px 16px;
    margin-bottom: 0;
}

.career-form-card textarea.form-control{
    height: auto;
    min-height: 150px;
}

.career-form-card .form-control:focus{
    border-color: #45b649;
    box-shadow: 0 0 0 4px rgba(69,182,73,0.08);
}

.file-label{
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
}

.career-btn{
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 13px 24px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #f7941d, #45b649, #377dce);
    box-shadow: 0 12px 24px rgba(55,125,206,0.14);
    transition: 0.3s ease;
}

.career-btn:hover{
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 991px){
    .career-page-title{
        padding: 75px 0 84px;
    }

    .career-openings{
        grid-template-columns: 1fr;
    }

    .career-info-card,
    .career-form-card{
        padding: 24px;
    }
}

@media (max-width: 768px){
    .career-page-title h2{
        font-size: 2.2rem;
    }

    .career-brand-section{
        padding-bottom: 70px;
    }
}

.page-title-product{
    position: relative;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(247,148,29,0.45), transparent 38%),
        radial-gradient(ellipse at 85% 50%, rgba(69,20,60,0.55), transparent 40%),
        radial-gradient(ellipse at 50% 0%, rgba(55,125,206,0.12), transparent 30%),
        linear-gradient(135deg, #1a0e00 0%, #130b12 48%, #0e0810 100%);
}

.page-title-product::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(247,148,29,0.18), transparent 18%),
        radial-gradient(circle at 78% 65%, rgba(69,182,73,0.08), transparent 16%);
    pointer-events: none;
}

.page-title-product::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(247,148,29,0.25) 25%,
        rgba(69,182,73,0.20) 50%,
        rgba(55,125,206,0.18) 75%,
        transparent 100%
    );
}

.product-title-item{
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.product-title-item h2{
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1.4px;
    margin-bottom: 14px;
    color: #fff;
}

.product-title-item h2 span{
    background: linear-gradient(90deg, #f7941d 0%, #45b649 55%, #377dce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-title-item p{
    max-width: 760px;
    margin: 0 auto 20px;
    color: rgba(255,255,255,0.76);
    font-size: 15px;
    line-height: 1.85;
}

.product-title-item ul{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-title-item ul li{
    font-size: 13px;
    color: rgba(255,255,255,0.68);
}

.product-title-item ul li a{
    color: rgba(255,255,255,0.90);
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.product-title-item ul li a:hover{
    color: #f7941d;
}

.product-title-item ul li span{
    color: rgba(255,255,255,0.40);
}

@media (max-width: 768px){
    .product-title-item{
        padding: 50px 0;
    }

    .product-title-item h2{
        font-size: 2.3rem;
    }

    .product-title-item p{
        font-size: 14px;
    }
}

.product-cat-area{
    position: relative;
    overflow: hidden;
    padding-bottom: 90px;
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.10), transparent 24%),
        radial-gradient(circle at bottom right, rgba(55,125,206,0.06), transparent 22%),
        linear-gradient(180deg, #f4fbf5 0%, #ffffff 100%);
}

.product-cat-area::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15,23,42,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.35;
    pointer-events: none;
}

.product-cat-header{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(15,23,42,0.08);
    position: relative;
    z-index: 2;
}

.product-cat-header h2{
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #101828;
    margin-bottom: 6px;
    letter-spacing: -0.6px;
    line-height: 1;
}

.product-cat-header p{
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.product-cat-viewall{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,0.10);
    background: #fff;
    color: #2f6f4e;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(15,23,42,0.04);
    transition: 0.3s ease;
}

.product-cat-viewall:hover{
    border-color: rgba(69,182,73,0.26);
    color: #45b649;
    background: rgba(69,182,73,0.06);
}

.product-cat-card{
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid #e8efea;
    border-radius: 18px;
    padding: 24px 22px 20px;
    box-shadow: 0 12px 26px rgba(15,23,42,0.05);
    transition: 0.3s ease;
    overflow: hidden;
}

.product-cat-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(69,182,73,0.05), rgba(55,125,206,0.04));
    opacity: 0;
    transition: 0.3s ease;
}

.product-cat-card:hover{
    transform: translateY(-5px);
    border-color: rgba(69,182,73,0.20);
    box-shadow: 0 18px 36px rgba(15,23,42,0.08);
}

.product-cat-card:hover::before{
    opacity: 1;
}

.product-cat-line{
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f7941d, #45b649, #377dce);
    margin-bottom: 16px;
    transition: 0.3s ease;
}

.product-cat-card:hover .product-cat-line{
    width: 62px;
}

.product-cat-card h3{
    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.product-cat-card h3 a{
    color: #111827;
    text-decoration: none;
    transition: 0.25s ease;
}

.product-cat-card h3 a:hover{
    color: #45b649;
}

.product-cat-link{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    text-decoration: none;
    transition: 0.25s ease;
    position: relative;
    z-index: 1;
}

.product-cat-link:hover{
    color: #f7941d;
    gap: 10px;
}

.product-cat-link i{
    font-size: 16px;
}

@media (max-width: 768px){
    .product-cat-area{
        padding-bottom: 70px;
    }

    .product-cat-card{
        padding: 20px 18px 18px;
    }

    .product-cat-header{
        flex-direction: column;
        align-items: flex-start;
    }
}

.bulk-order-area{
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(69,182,73,0.09), transparent 24%),
        radial-gradient(circle at top right, rgba(55,125,206,0.07), transparent 22%),
        linear-gradient(180deg, #f4fbf5 0%, #ffffff 100%);
}

.bulk-order-area::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15,23,42,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
    pointer-events: none;
}

.bulk-order-head{
    text-align: center;
    max-width: 820px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.bulk-order-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,0.08);
    background: rgba(255,255,255,0.95);
    color: #2f6f4e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(15,23,42,0.04);
}

.bulk-order-tag i{
    color: #f7941d;
    font-size: 14px;
}

.bulk-order-head h2{
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 900;
    color: #101828;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.bulk-order-head h2 span{
    background: linear-gradient(90deg, #f7941d 0%, #45b649 52%, #377dce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bulk-order-head p{
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.bulk-order-card{
    position: relative;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    padding: 36px 34px;
    box-shadow: 0 14px 34px rgba(15,23,42,0.06);
    overflow: hidden;
}

.bulk-card-line{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f7941d, #45b649, #377dce);
}

.bulk-section-label{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #2f6f4e;
    margin: 24px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef2ef;
}

.bulk-section-label i{
    font-size: 18px;
    color: #377dce;
}

.bulk-form-group{
    margin-bottom: 18px;
}

.bulk-form-group label{
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 7px;
}

.bulk-form-group label span{
    color: #e53e3e;
    margin-left: 2px;
}

.bulk-form-group .form-control{
    height: 50px;
    border-radius: 12px;
    border: 1px solid #e7e7e7;
    background: #fafafa;
    padding: 12px 16px;
    font-size: 14px;
    color: #374151;
    box-shadow: none;
    transition: 0.25s ease;
}

.bulk-form-group textarea.form-control{
    height: auto;
    min-height: 130px;
}

.bulk-form-group input[type="file"].form-control{
    height: auto;
    padding: 10px 16px;
}

.bulk-form-group .form-control:focus{
    border-color: #45b649;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(69,182,73,0.08);
}

.bulk-order-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #f7941d, #45b649, #377dce);
    box-shadow: 0 14px 30px rgba(55,125,206,0.15);
    transition: 0.3s ease;
    margin-top: 6px;
    cursor: pointer;
}

.bulk-order-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(55,125,206,0.20);
    color: #fff;
}

.bulk-order-btn i{
    font-size: 20px;
}

@media (max-width: 991px){
    .bulk-order-card{
        padding: 28px 22px;
    }
}

@media (max-width: 768px){
    .bulk-order-card{
        padding: 22px 16px;
        border-radius: 18px;
    }

    .bulk-order-head h2{
        font-size: 1.9rem;
    }

    .bulk-section-label{
        font-size: 11px;
    }
}