/* ===========================
   01. COMMON / RESET
=========================== */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Poppins:300,400,500,600,700&display=swap");

body {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #747e88;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #38424d;
    margin: 0;
}

h1 {
    font-size: 48px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 22px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #747e88;
    margin: 0;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/* Buttons */
.main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 2px solid #14294a;
    padding: 0 25px;
    font-size: 16px;
    height: 55px;
    line-height: 51px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    text-decoration: none;
    transition: all 0.4s ease-out 0s;
    background-color: #1a335c;
}
.main-btn:hover {
    background: #14294a;
    color: #fff;
    border-color: transparent;
}
.main-btn.main-btn-2 {
    background-color: transparent;
    color: #525a63;
    border-color: #525a63;
}
.main-btn.main-btn-2:hover {
    background-color: rgba(26, 51, 92, 0.5);
    color: #525a63;
}

.btn-outline {
    background: transparent;
    border: 2px solid #1a335c;
    color: #1a335c;
}
.btn-outline:hover {
    background: #1a335c;
    color: #fff;
}

/* Section Title */
.section-title .title {
    font-size: 35px;
    font-weight: 600;
}
@media (max-width: 767px) {
    .section-title .title {
        font-size: 22px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-title .title {
        font-size: 26px;
    }
}
.section-title .text {
    margin-top: 20px;
}

.slick-slide {
    outline: 0;
}

/* Shared animations */
@keyframes animation1 {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
@keyframes video {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
}
.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}
.pre-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.orbit-wrap {
    position: relative;
    width: 130px;
    height: 130px;
}
.ring1 {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2.5px solid transparent;
    border-top-color: #14294a;
    border-right-color: #14294a;
    animation: preSpinCW 1.4s linear infinite;
}
.ring2 {
    position: absolute;
    inset: 13px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: #3a5f9e;
    border-left-color: #3a5f9e;
    animation: preSpinCCW 1.8s linear infinite;
}
.ring3 {
    position: absolute;
    inset: 26px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: #8fadd4;
    animation: preSpinCW 2.2s linear infinite;
}
.dot-orbit {
    position: absolute;
    inset: 0;
    animation: preSpinCW 2.6s linear infinite;
}
.dot-orbit::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #14294a;
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}
.dot-orbit2 {
    position: absolute;
    inset: 11px;
    animation: preSpinCCW 3s linear infinite;
}
.dot-orbit2::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #3a5f9e;
    border-radius: 50%;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
}
.logo-center {
    position: absolute;
    inset: 38px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.logo-center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}
.pre-brand {
    font-size: 20px;
    font-weight: 700;
    color: #14294a;
    letter-spacing: 0.5px;
}
.pre-dots {
    display: flex;
    gap: 7px;
    margin-top: 4px;
    justify-content: center;
}
.pre-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #14294a;
    animation: dotPop 1.4s ease-in-out infinite;
}
.pre-dots span:nth-child(2) {
    animation-delay: 0.2s;
}
.pre-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes preSpinCW {
    to {
        transform: rotate(360deg);
    }
}
@keyframes preSpinCCW {
    to {
        transform: rotate(-360deg);
    }
}
@keyframes dotPop {
    0%,
    80%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========================
   02. HEADER / NAVBAR
=========================== */
.navbar-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease-out 0s;
}

.sticky {
    position: fixed;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-out 0s;
}
.sticky .navbar {
    padding: 10px 0;
}

.navbar {
    padding: 15px 0;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease-out 0s;
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.navbar-brand img {
    max-width: 200px;
    height: auto;
    display: block;
}

.brand-text {
    font-weight: 600;
    font-size: 15px;
    color: black;
}
.brand-subtext {
    font-size: 11px;
    color: #936596;
}

.navbar-toggler {
    padding: 0;
}
.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #222;
    display: block;
    margin: 5px 0;
    position: relative;
    transition: all 0.3s ease-out 0s;
}
.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    transform: rotate(45deg);
    top: 7px;
}
.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}
.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: rotate(135deg);
    top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 5px 12px;
    }
}
@media (max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0px 15px 20px 0px rgba(56, 66, 77, 0.1);
        padding: 5px 12px;
    }
}

.navbar-nav .nav-item {
    margin-left: 45px;
    position: relative;
}
.navbar-nav .nav-item:first-child {
    margin-left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-item {
        margin-left: 30px;
    }
    .navbar-brand img {
        max-width: 200px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item {
        margin: 0;
    }
}
@media (max-width: 767px) {
    .navbar-nav .nav-item {
        margin: 0;
    }
    .navbar-brand img {
        max-width: 140px;
    }
}

.navbar-nav .nav-item a {
    font-size: 16px;
    font-weight: 600;
    color: #38424d;
    transition: all 0.3s ease-out 0s;
    position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
    }
}
@media (max-width: 767px) {
    .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
    }
}

.navbar-nav .nav-item.active > a,
.navbar-nav .nav-item:hover > a {
    color: #14294a;
}

.navbar-nav .nav-item:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0;
    }
}
@media (max-width: 767px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0;
    }
}

.navbar-nav .nav-item .sub-menu {
    width: 200px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}
@media (max-width: 767px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}
.navbar-nav .nav-item .sub-menu li {
    display: block;
}
.navbar-nav .nav-item .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #222;
}
.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
    padding-left: 25px;
    color: #14294a;
}

.navbar-nav .sub-nav-toggler {
    display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 767px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px;
    }
}
.navbar-nav .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    transform: rotate(-45deg);
    position: relative;
    top: -5px;
}

/* ===========================
   03. HERO SECTION
=========================== */
.header-hero {
    position: relative;
    z-index: 5;
    background-position: bottom center;
    height: 800px;
}
@media only screen and (min-width: 1400px) {
    .header-hero {
        height: 900px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-hero {
        height: auto;
    }
}
@media (max-width: 767px) {
    .header-hero {
        height: auto;
    }
}

.header-hero .shape {
    position: absolute;
}
.header-hero .shape.shape-1 {
    width: 75px;
    height: 75px;
    background: linear-gradient(
        rgba(254, 132, 100, 0.5) 0%,
        rgba(254, 110, 154, 0.5) 100%
    );
    border-radius: 50%;
    left: 130px;
    top: 25%;
    animation: animation1 2s linear infinite;
}
.header-hero .shape.shape-2 {
    width: 39px;
    height: 39px;
    background: linear-gradient(
        rgba(51, 200, 193, 0.5) 0%,
        rgba(17, 155, 210, 0.5) 100%
    );
    left: 150px;
    bottom: 40px;
    border-radius: 50%;
    animation: animation1 2s linear infinite;
}
.header-hero .shape.shape-3 {
    width: 19px;
    height: 19px;
    background: linear-gradient(
        rgba(54, 28, 193, 0.5) 0%,
        rgba(46, 130, 239, 0.5) 100%
    );
    bottom: 25%;
    left: 26%;
    border-radius: 50%;
    animation: animation1 2s linear infinite;
}
.header-hero .shape.shape-4 {
    background-color: rgba(226, 158, 25, 0.55);
    width: 39px;
    height: 39px;
    border-radius: 50%;
    top: 175px;
    left: 40%;
    animation: animation1 2s linear infinite;
}
.header-hero .shape.shape-5 {
    width: 19px;
    height: 19px;
    background-color: rgba(108, 99, 255, 0.55);
    left: 50%;
    transform: translateX(-50%);
    bottom: 20%;
    border-radius: 50%;
    animation: animation1 2s linear infinite;
}
.header-hero .shape.shape-6 {
    width: 14px;
    height: 14px;
    background-color: rgba(235, 163, 26, 0.55);
    border-radius: 50%;
    left: 45%;
    bottom: 70px;
    animation: animation1 2s linear infinite;
}

.header-shape-1 {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    right: 0;
    z-index: -1;
    background-image: url(../images/header-shape-1.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-shape-1 {
        width: 100%;
    }
}

.header-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-shape-2 img {
        width: 295px;
    }
}

.header-hero-content {
    position: relative;
    z-index: 9;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-hero-content {
        padding-top: 150px;
    }
}
@media (max-width: 767px) {
    .header-hero-content {
        padding-top: 120px;
    }
}

.header-hero-content .header-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a335c;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-hero-content .header-title {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .header-hero-content .header-title {
        font-size: 22px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-hero-content .header-title {
        font-size: 38px;
    }
}
.header-hero-content .header-title span {
    display: contents;
    color: #9cc03a;
}
.header-hero-content .text {
    margin-top: 30px;
    font-size: 16px;
    color: #5a6e8a;
}
.header-hero-content ul {
    margin-top: 30px;
}
.header-hero-content ul li {
    margin-left: 50px;
}
.header-hero-content ul li:first-child {
    margin-left: 0;
}
.header-hero-content .main-btn {
    margin-top: 10px;
}

.header-hero-content .header-video {
    margin-top: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    background-color: #14294a;
    position: relative;
    z-index: 5;
}
.header-hero-content .header-video::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(20, 41, 74, 0.8);
    top: 0;
    left: 0;
    animation: video 2s linear infinite;
    z-index: -1;
}

/* Hero image */
.header-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
}
.product-img {
    position: absolute;
    width: 100%;
    max-width: 480px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;

    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.2));
}

.main-img {
    z-index: 2;
    transform: translate(-50%, -50%);
    opacity: 1;
    border-radius: 14px;
    height: auto;
    width: auto;
}

.header-image::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(156, 192, 58, 0.08);
    border-radius: 50%;
    z-index: 1;
}
.header-image::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px dashed rgba(26, 51, 92, 0.2);
    border-radius: 50%;
    z-index: 1;
}

@media (max-width: 767px) {
    .image-wrapper {
        height: 300px;
    }

    .product-img {
        max-width: 280px;
    }

    .badge-top-left,
    .badge-mid-left,
    .badge-bottom-right {
        position: static;
        margin: 10px auto;
    }
}

/* Floating Badges */
.badge-float {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 10;
    min-width: 170px;
    backdrop-filter: blur(4px);
}
.badge-top-left {
    top: 12px;
    left: 80px;
    animation: floatBadge 3s ease-in-out infinite;
}
.badge-mid-left {
    top: 50%;
    left: -250px;
    animation: floatBadgeMid 3s ease-in-out infinite 1s;
}
.badge-bottom-right {
    bottom: 75px;
    right: -180px;
    animation: floatBadge 3s ease-in-out infinite 2s;
}

@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}
@keyframes floatBadgeMid {
    0%,
    100% {
        transform: translateY(calc(-50% + 0px));
    }
    50% {
        transform: translateY(calc(-50% - 8px));
    }
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.eco-icon {
    background: #e8f5e9;
}
.food-icon {
    background: #e8f5e9;
    font-weight: bold;
    color: #2e7d32;
}
.bulk-icon {
    background: #fff3e0;
}
.badge-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}
.badge-sub {
    font-size: 11px;
    color: #999;
    margin: 2px 0 0 0;
}
/* ===========================
   CN LABEL FIX
=========================== */
.cn-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(156, 192, 58, 0.12);
    border: 1px solid rgba(156, 192, 58, 0.4);
    color: #9cc03a;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cn-label .dot {
    width: 8px;
    height: 8px;
    background-color: #9cc03a;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

/* ── Mobile Fix ── */
@media (max-width: 767px) {
    .cn-label {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
        margin-top: 10px; /* navbar ke neeche space */
    }

    .cn-label .dot {
        width: 6px;
        height: 6px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cn-label {
        font-size: 12px;
        padding: 5px 13px;
        margin-top: 8px;
    }
}

/* ===========================
   04. SERVICES
=========================== */
.services-area .row > div {
    display: flex;
}

.single-services {
    background: #fff;
    border-radius: 14px;
    padding: 45px 25px 35px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.single-services:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
}
.single-services::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #9cc03a;
    transition: 0.4s;
}
.single-services:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .single-services {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 35px 20px;
    }
}

.single-services .services-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    text-align: center;
    transition: 0.3s;
    display: inline-block;
    background: #1a335c;
}
.single-services .services-icon i {
    font-size: 40px;
    line-height: 80px;
    color: #fff;
}
.single-services .services-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(1.3);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.25;
}
.single-services:hover .services-icon {
    transform: scale(1.1) rotate(5deg);
}

.single-services .services-content {
    margin-top: 30px;
    flex-grow: 1;
}
.single-services .services-content .services-title a {
    min-height: 60px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    display: inline-block;
    transition: 0.3s;
}
@media (max-width: 767px) {
    .single-services .services-content .services-title a {
        font-size: 18px;
    }
}
.single-services .services-content .text {
    margin-top: 15px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* .single-services.services-color-1 .services-icon {
    background: linear-gradient(135deg, #f7b733, #fc4a1a);
}
.single-services.services-color-1 .services-icon::before {
    background: #fc4a1a;
}
.single-services.services-color-2 .services-icon {
    background: linear-gradient(135deg, #ff6a6a, #ff3d3d);
}
.single-services.services-color-2 .services-icon::before {
    background: #ff3d3d;
}
.single-services.services-color-3 .services-icon {
    background: linear-gradient(135deg, #a18cd1, #6a11cb);
}
.single-services.services-color-3 .services-icon::before {
    background: #6a11cb;
}
.single-services.services-color-4 .services-icon {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}
.single-services.services-color-4 .services-icon::before {
    background: #1a335c;
}

.single-services.services-color-1:hover .services-title a {
    color: #fc4a1a;
}
.single-services.services-color-2:hover .services-title a {
    color: #ff3d3d;
}
.single-services.services-color-3:hover .services-title a {
    color: #6a11cb;
}
.single-services.services-color-4:hover .services-title a {
    color: #1a335c;
} */

/* ===========================
   05. ABOUT (Landing)
=========================== */
.about-area {
    background-color: #f3fdff;
}

.about-image {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto;
}

/* ✅ Sirf ek responsive breakpoint — web jaisa hi dikhega */
@media (max-width: 575px) {
    .about-image {
        width: calc(100vw - 80px); /* screen width se 80px kam */
        height: calc(100vw - 80px);
        margin: 0 auto 30px auto;
    }
}

.about-border-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #1a335c;
    border-top-color: transparent;
    border-right-color: transparent;
    transform: rotate(25deg);
    z-index: 0;
    top: 0;
    left: 0;
}

.about-image .about-shape {
    position: absolute;
    width: 92%;
    height: 92%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image .app {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none;
    box-shadow: none;
    border-radius: 0;
}

.about-content .main-btn {
    margin-top: 40px;
}
/* ===========================
   06. DOWNLOAD
=========================== */
.download-area .download-image {
    padding-top: 65px;
    padding-left: 60px;
    padding-bottom: 60px;
    position: relative;
}
@media (max-width: 767px) {
    .download-area .download-image {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.download-area .download-image .image {
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: transparent;
    height: 400px;
}
@media (max-width: 767px) {
    .download-area .download-image .image {
        max-width: 100%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .download-area .download-image .image {
        max-width: 295px;
    }
}
.download-area .download-image .download-shape-1 {
    width: 225px;
    height: 225px;
    background-color: #feb21c;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 30px;
    z-index: -1;
}
.download-area .download-image .download-shape-2 {
    position: absolute;
    bottom: -80px;
    right: -35px;
    z-index: -1;
}

.download-content .download-title {
    font-size: 34px;
    font-weight: 600;
}
@media (max-width: 767px) {
    .download-content .download-title {
        font-size: 22px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .download-content .download-title {
        font-size: 28px;
    }
}
.download-content .text {
    margin-top: 35px;
}
.download-content ul {
    padding-top: 35px;
}
.download-content ul li {
    display: inline-block;
    margin-top: 15px;
}
.download-content ul li a {
    width: 210px;
    height: 65px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out 0s;
}
.download-content ul li a.app-store {
    background-color: #14294a;
    box-shadow: 0px 4px 10px 0px rgba(20, 41, 74, 0.4);
    margin-right: 28px;
}
.download-content ul li a.app-store:hover {
    box-shadow: 0px 4px 25px 0px rgba(20, 41, 74, 0.4);
}
.download-content ul li a.play-store {
    background-color: #525a63;
    box-shadow: 0px 4px 10px 0px rgba(82, 90, 99, 0.4);
}
.download-content ul li a.play-store:hover {
    box-shadow: 0px 4px 25px 0px rgba(20, 41, 74, 0.4);
}

/* ===========================
   07. BULK ORDER
=========================== */
/* Shared label */
.cn-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--cn-green-light, #f0f8e2);
    color: #4a7a1e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid #c8e68a;
    margin-bottom: 14px;
}
.cn-label .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cn-green, #9cc03a);
    display: inline-block;
}

#bulk-order.bulk-order-area {
    background: var(--cn-navy, #1a335c) !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
#bulk-order.bulk-order-area::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(156, 192, 58, 0.07);
    pointer-events: none;
}
#bulk-order.bulk-order-area::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}
#bulk-order .bulk-order-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}
#bulk-order .bulk-order-left {
    flex: 1;
    min-width: 280px;
}
#bulk-order .bulk-order-left .cn-label {
    background: rgba(156, 192, 58, 0.15);
    color: #c6e86a;
    border-color: rgba(156, 192, 58, 0.25);
}
#bulk-order .bulk-order-left .cn-label .dot {
    background: #9cc03a;
}
#bulk-order .bulk-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}
#bulk-order .bulk-title em {
    color: var(--cn-green, #9cc03a);
    font-style: normal;
}
#bulk-order .bulk-desc {
    font-size: 15px;
    color: #bcd2ea;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

#bulk-order .bulk-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
#bulk-order .stat-pill {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 22px;
    text-align: center;
    min-width: 110px;
    transition:
        background 0.2s,
        border-color 0.2s;
}
#bulk-order .stat-pill:hover {
    background: rgba(156, 192, 58, 0.15);
    border-color: rgba(156, 192, 58, 0.3);
}
#bulk-order .stat-pill .snum {
    font-size: 24px;
    font-weight: 800;
    color: #9cc03a;
    display: block;
}
#bulk-order .stat-pill .slbl {
    font-size: 11px;
    color: #8aadc8;
    margin-top: 2px;
    display: block;
}

#bulk-order .bulk-process-steps {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    flex-wrap: wrap;
    margin-top: 8px;
}
#bulk-order .step-item {
    flex: 1;
    min-width: 120px;
    padding: 18px 14px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}
#bulk-order .step-item:last-child {
    border-right: none;
}
#bulk-order .step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #9cc03a;
    color: #1a3a00;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}
#bulk-order .step-lbl {
    font-size: 12px;
    color: #9fb8d8;
    line-height: 1.3;
}
#bulk-order .step-lbl strong {
    color: #fff;
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

#bulk-order .bulk-order-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 220px;
    padding-top: 10px;
}
#bulk-order .btn-bulk-green {
    display: block;
    background: #9cc03a;
    color: #1a3a00;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    transition:
        background 0.2s,
        transform 0.15s;
    border: none;
}
#bulk-order .btn-bulk-green:hover {
    background: #aed145;
    transform: translateY(-2px);
    color: #1a3a00;
}
#bulk-order .btn-bulk-outline {
    display: block;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition:
        border-color 0.2s,
        background 0.2s;
}
#bulk-order .btn-bulk-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}
#bulk-order .bulk-info-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(156, 192, 58, 0.08);
    border: 1px solid rgba(156, 192, 58, 0.2);
    border-radius: 10px;
    padding: 12px 14px;
}
#bulk-order .bib-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(156, 192, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
#bulk-order .bib-text {
    font-size: 12px;
    color: #9fb8d8;
    line-height: 1.4;
}
#bulk-order .bib-text strong {
    color: #d4ecb0;
    font-weight: 700;
    display: block;
    font-size: 13px;
}

@media (max-width: 767px) {
    #bulk-order .bulk-order-inner {
        flex-direction: column;
    }
    #bulk-order .bulk-order-right {
        min-width: 100%;
    }
    #bulk-order .bulk-title {
        font-size: 24px;
    }
}

/* ===========================
   08. CONTACT
=========================== */
#contact.contact-area {
    background: #f5f7fa;
    padding: 90px 0;
}
#contact .section-title .sub-title {
    color: #4a7a1e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f8e2;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid #c8e68a;
    margin-bottom: 14px;
}
#contact .section-title .title {
    color: #1a335c;
    font-size: 32px;
    font-weight: 800;
}
#contact .section-title .title span {
    color: #9cc03a;
}

#contact .contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    transition:
        transform 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
}
#contact .contact-info-card:hover {
    transform: translateY(-5px);
    border-color: #c8e68a;
    box-shadow: 0 8px 24px rgba(26, 51, 92, 0.1);
}
#contact .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #edf1f8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    color: #1a335c;
    transition: background 0.2s;
}
#contact .contact-info-card:hover .contact-icon {
    background: #f0f8e2;
    color: #7da82e;
}
#contact .contact-info-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1a335c;
    margin-bottom: 6px;
}
#contact .contact-info-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 8px;
}
#contact .contact-info-card a {
    color: #9cc03a;
    font-weight: 700;
    text-decoration: none;
}
#contact .contact-info-card a:hover {
    color: #7da82e;
}
#contact .contact-info-card small {
    display: inline-block;
    background: #f0f8e2;
    color: #3d6e10;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #c8e68a;
    margin-top: 4px;
}

#contact .contact-form-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
}
#contact .contact-form-box .form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #2d2d2d;
    background: #ffffff;
    height: auto;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    font-family: "Open Sans", sans-serif;
}
#contact .contact-form-box .form-control:focus {
    border-color: #1a335c;
    box-shadow: 0 0 0 3px rgba(26, 51, 92, 0.08);
    outline: none;
}
#contact .contact-form-box textarea.form-control {
    resize: vertical;
    min-height: 130px;
}
#contact .contact-form-box select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%231a335c'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}
#contact .contact-form-box .btn-submit-form {
    background: #1a335c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.15s;
    font-family: "Open Sans", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
#contact .contact-form-box .btn-submit-form:hover {
    background: #142847;
    transform: translateY(-2px);
}
#contact .form-note {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin-top: 12px;
}
#contact .form-note strong {
    color: #9cc03a;
}

/* ===========================
   09. BLOG
=========================== */
#blog.blog-area {
    background: #ffffff;
    padding: 90px 0;
}
#blog .section-title .sub-title {
    color: #4a7a1e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f8e2;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid #c8e68a;
    margin-bottom: 14px;
}
#blog .section-title .title {
    color: #1a335c;
    font-size: 32px;
    font-weight: 800;
}

#blog .single-blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border-color 0.25s;
}
#blog .single-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 51, 92, 0.1);
    border-color: #c8e68a;
}
#blog .blog-thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    line-height: 1;
}
#blog .blog-thumb-green {
    background: #edf8d6;
}
#blog .blog-thumb-navy {
    background: #edf1f8;
}
#blog .blog-thumb-warm {
    background: #fef4e6;
}
#blog .blog-thumb span {
    font-size: 52px;
}

#blog .blog-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    color: #fff;
    background: #7da82e;
    margin-bottom: 10px;
}
#blog .blog-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
#blog .blog-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a335c;
    line-height: 1.45;
    margin-bottom: 10px;
}
#blog .blog-content h4 a {
    color: #1a335c;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}
#blog .blog-content h4 a:hover {
    color: #9cc03a;
}
#blog .blog-content p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}
#blog .blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}
#blog .blog-footer small {
    font-size: 12px;
    color: #9ca3af;
}
#blog .read-more {
    font-size: 12px;
    font-weight: 700;
    color: #9cc03a;
    text-decoration: none;
    transition: color 0.15s;
}
#blog .read-more:hover {
    color: #7da82e;
}

/* ===========================
   10. ABOUT PAGE (ab-*)
=========================== */
.ab-hero-section {
    width: 100%;
    padding-top: 80px;
}
.ab-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
}

.ab-left {
    background: #0d1f3c;
    padding: 70px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ab-right {
    position: relative;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
}
.ab-right::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(156, 192, 58, 0.1);
}
.ab-right::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(26, 51, 92, 0.06);
}
.ab-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.ab-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9cc03a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ab-eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #9cc03a;
}
.ab-title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}
.ab-title em {
    font-style: normal;
    color: #9cc03a;
}
.ab-desc {
    font-size: 14px;
    color: #9bb5d4;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 400px;
}

.ab-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.abt {
    font-size: 11px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #9bb5d4;
    display: inline-block;
}
.abt.hi {
    background: rgba(156, 192, 58, 0.15);
    color: #c8e880;
    border-color: rgba(156, 192, 58, 0.3);
}

.ab-cta {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-green-solid {
    background: #9cc03a;
    color: #1a3a00;
    padding: 13px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}
.btn-green-solid:hover {
    background: #aed145;
    color: #1a3a00;
}
.btn-white-text {
    font-size: 14px;
    color: #9bb5d4;
    text-decoration: none;
}
.btn-white-text:hover {
    color: #fff;
}

.ab-badge-1 {
    position: absolute;
    bottom: 24px;
    left: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 5;
}
.ab-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #9cc03a;
    flex-shrink: 0;
}
.ab-badge-1 strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #1a335c;
}
.ab-badge-1 span {
    font-size: 11px;
    color: #888;
    display: block;
}
.ab-badge-2 {
    position: absolute;
    top: 24px;
    right: 16px;
    background: #1a335c;
    border-radius: 12px;
    padding: 10px 16px;
    z-index: 5;
}
.ab-badge-2 strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #9cc03a;
}
.ab-badge-2 span {
    font-size: 11px;
    color: #9bb5d4;
    display: block;
}

.ab-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f8faf4;
}
.ab-cnt-item {
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid #e4ecd0;
    position: relative;
}
.ab-cnt-item:last-child {
    border-right: none;
}
.ab-cnt-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #9cc03a;
    border-radius: 0 0 4px 4px;
}
.ab-cnt-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #1a335c;
    font-family: "Poppins", sans-serif;
}
.ab-cnt-num small {
    font-size: 18px;
    color: #9cc03a;
    font-weight: 700;
}
.ab-cnt-lbl {
    font-size: 12px;
    color: #7a9060;
    margin-top: 4px;
    font-weight: 500;
    display: block;
}

.ab-mission {
    background: #1a335c;
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.ab-miss-left h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.4;
}
.ab-miss-left h2 span {
    color: #9cc03a;
}
.ab-miss-left p {
    font-size: 14px;
    color: #9bb5d4;
    line-height: 1.8;
}
.ab-miss-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.ab-mcard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 16px;
    transition: 0.2s;
}
.ab-mcard:hover {
    background: rgba(156, 192, 58, 0.12);
    border-color: rgba(156, 192, 58, 0.25);
}
.ab-mc-icon {
    font-size: 22px;
    color: #9cc03a;
    margin-bottom: 10px;
}
.ab-mc-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.ab-mc-sub {
    font-size: 12px;
    color: #8aadc8;
    line-height: 1.5;
}

.ab-body {
    padding: 70px 0;
    background: #fff;
}
.ab-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ab-eyebrow-green {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9cc03a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ab-eyebrow-green::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #9cc03a;
}
.ab-sh {
    font-size: 24px;
    font-weight: 800;
    color: #1a335c;
    margin-bottom: 8px;
}
.ab-sp {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
}

.ab-timeline {
    border-left: 2px solid #e4ecd0;
    padding-left: 28px;
}
.ab-tl-item {
    margin-bottom: 28px;
    position: relative;
}
.ab-tl-item:last-child {
    margin-bottom: 0;
}
.ab-tl-dot {
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid #9cc03a;
}
.ab-tl-yr {
    font-size: 10px;
    font-weight: 800;
    color: #9cc03a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}
.ab-tl-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a335c;
    margin-bottom: 5px;
}
.ab-tl-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.ab-promise-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ab-pcard {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #eef0f4;
    background: #fff;
    transition: 0.2s;
}
.ab-pcard:hover {
    border-color: #c8e68a;
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.ab-pcard h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1a335c;
    margin-bottom: 5px;
}
.ab-pcard p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.ab-pc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}
.ic-teal {
    background: #e1f5ee;
    color: #0f6e56;
}
.ic-amber {
    background: #faeeda;
    color: #854f0b;
}
.ic-blue {
    background: #e6f1fb;
    color: #185fa5;
}
.ic-coral {
    background: #faece7;
    color: #993c1d;
}

.ab-tband {
    background: #f5f9ee;
    padding: 60px 0;
}
.ab-tband-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.ab-tband-left {
    border-left: 4px solid #9cc03a;
    padding-left: 28px;
}
.ab-qmark {
    font-size: 56px;
    color: #c8e68a;
    font-family: Georgia, serif;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}
.ab-tband-left blockquote {
    font-size: 16px;
    color: #2d3a4a;
    line-height: 1.85;
    font-style: italic;
    margin: 0 0 24px;
    border: none;
    padding: 0;
}
.ab-tauth {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ab-tav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a335c;
    color: #9cc03a;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ab-tauth strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a335c;
}
.ab-tauth span {
    font-size: 12px;
    color: #888;
    display: block;
}
.ab-tband-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.ab-ts-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e4ecd0;
    padding: 22px 16px;
    text-align: center;
}
.ab-tsn {
    font-size: 28px;
    font-weight: 800;
    color: #1a335c;
    display: block;
}
.ab-tsn em {
    font-style: normal;
    color: #9cc03a;
}
.ab-ts-card div {
    font-size: 12px;
    color: #7a9060;
    margin-top: 4px;
    font-weight: 500;
}

.ab-certs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e4ecd0;
    border-bottom: 1px solid #e4ecd0;
    background: #fff;
}
.ab-cert-item {
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid #e4ecd0;
}
.ab-cert-item:last-child {
    border-right: none;
}
.ab-cert-ic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f5f9ee;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #9cc03a;
}
.ab-cert-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a335c;
    margin-bottom: 3px;
}
.ab-cert-item span {
    font-size: 11px;
    color: #7a9060;
    display: block;
}

@media (max-width: 991px) {
    .ab-hero-grid,
    .ab-mission,
    .ab-two-col,
    .ab-tband-grid {
        grid-template-columns: 1fr;
    }
    .ab-left {
        padding: 100px 32px 48px;
    }
    .ab-right {
        min-height: 280px;
    }
    .ab-main-img {
        height: 240px;
    }
    .ab-mission {
        padding: 48px 24px;
    }
    .ab-body {
        padding: 50px 0;
    }
}
@media (max-width: 767px) {
    .ab-title {
        font-size: 26px;
    }
    .ab-left {
        padding: 90px 20px 40px;
    }
    .ab-counters,
    .ab-miss-cards,
    .ab-tband-stats {
        grid-template-columns: 1fr 1fr;
    }
    .ab-certs {
        grid-template-columns: 1fr 1fr;
    }
    .ab-cert-item {
        border-bottom: 1px solid #e4ecd0;
    }
}

/* ===========================
   11. PRODUCTS PAGE (pr-*)
=========================== */
.pr-hero {
    background: #0d1f3c;
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
    margin-top: 80px;
}
.pr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.06) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
    pointer-events: none;
}
.pr-hero::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(76, 175, 80, 0.18) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.pr-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}
.pr-left {
    padding-bottom: 80px;
    animation: fadeUp 0.7s ease both;
}

.pr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9cc03a;
    margin-bottom: 20px;
}
.pr-eyebrow::before {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: #9cc03a;
    border-radius: 2px;
}

.pr-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}
.pr-title em {
    font-style: italic;
    color: #9cc03a;
    display: block;
}
.pr-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    max-width: 460px;
    margin-bottom: 32px;
}
.pr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prt {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    cursor: default;
    transition: all 0.2s;
}
.prt.active {
    background: rgba(156, 192, 58, 0.2);
    border-color: #9cc03a;
    color: #9cc03a;
}

.pr-right {
    position: relative;
    animation: fadeUp 0.7s 0.15s ease both;
    min-height: 300px;
}
.pr-right img {
    width: 100%;
    display: block;
    border-radius: 14px 14px 0 0;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
}

.pr-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(13, 27, 53, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    gap: 0;
    justify-content: space-around;
}
.pr-stat {
    text-align: center;
    flex: 1;
}
.pr-stat + .pr-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.pr-stat-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: #9cc03a;
    line-height: 1;
    margin-bottom: 4px;
}
.pr-stat-lbl {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pr-filter {
    background: #f5f9ee;
    padding: 40px 0 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.pr-filter-inner {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 6px;
    display: inline-flex;
    gap: 4px;
    box-shadow: 0 4px 20px rgba(13, 27, 53, 0.08);
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.pr-filter-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #747e88;
    margin-bottom: 14px;
}
.pr-filter-btn {
    padding: 9px 22px;
    border-radius: 100px;
    border: none;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 600;
    color: #747e88;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.pr-filter-btn:hover {
    background: #f5f9ee;
    color: #38424d;
}
.pr-filter-btn.active {
    background: #1a335c;
    color: #fff;
    box-shadow: 0 4px 14px rgba(13, 27, 53, 0.25);
}

.pr-products {
    padding: 60px 0 80px;
}
.pr-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}
.pr-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #38424d;
}
.pr-section-title span {
    color: #9cc03a;
}
.pr-count {
    font-size: 0.8rem;
    color: #747e88;
    font-weight: 500;
}

.pr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pr-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eef0f4;
    box-shadow: 0 2px 12px rgba(13, 27, 53, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
    animation: fadeUp 0.5s ease both;
}
.pr-card:nth-child(1) {
    animation-delay: 0.05s;
}
.pr-card:nth-child(2) {
    animation-delay: 0.1s;
}
.pr-card:nth-child(3) {
    animation-delay: 0.15s;
}
.pr-card:nth-child(4) {
    animation-delay: 0.2s;
}
.pr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13, 27, 53, 0.12);
}

.pr-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f5f9ee;
}
.pr-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.pr-card:hover .pr-card-img img {
    transform: scale(1.06);
}

.pr-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #1a335c;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}
.pr-card-eco {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #9cc03a;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.pr-card-body {
    padding: 18px 18px 20px;
}
.pr-card-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #38424d;
    margin-bottom: 5px;
}
.pr-card-body p {
    font-size: 0.78rem;
    color: #747e88;
    line-height: 1.5;
    margin-bottom: 14px;
}
.pr-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pr-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    background: rgba(156, 192, 58, 0.15);
    color: #2d7a2e;
    border: 1px solid rgba(156, 192, 58, 0.2);
}

.pr-card-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f5f9ee;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #747e88;
    transition: all 0.2s;
    flex-shrink: 0;
}
.pr-card:hover .pr-card-arrow {
    background: #1a335c;
    color: #fff;
    border-color: #1a335c;
    transform: rotate(45deg);
}

.pr-features {
    background: #1a335c;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.pr-features::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.04) 1px,
        transparent 1px
    );
    background-size: 24px 24px;
}
.pr-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.pr-feat {
    background: #0d1f3c;
    padding: 32px 28px;
    text-align: center;
    transition: background 0.2s;
}
.pr-feat:hover {
    background: #1d2d55;
}
.pr-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(156, 192, 58, 0.15);
    border: 1px solid rgba(156, 192, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}
.pr-feat h5 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}
.pr-feat p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
}

.pr-cta {
    padding: 80px 0;
    background: #f5f9ee;
}
.pr-cta-box {
    background: linear-gradient(135deg, #1a335c, #1a3060);
    border-radius: 14px;
    padding: 56px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.pr-cta-box::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(156, 192, 58, 0.2) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.pr-cta-box::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 30%;
    width: 400px;
    height: 200px;
    background: radial-gradient(
        ellipse,
        rgba(156, 192, 58, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.pr-cta-text {
    position: relative;
    z-index: 1;
}
.pr-cta-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.pr-cta-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Also used on bulk/about page */
.bk-section {
    background: #0d1f3c;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}
.bk-section::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(156, 192, 58, 0.06);
    pointer-events: none;
}
.bk-section::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}
.bk-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 52px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.bk-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9cc03a;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bk-eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #9cc03a;
}
.bk-title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}
.bk-title em {
    font-style: normal;
    color: #9cc03a;
}
.bk-desc {
    font-size: 14px;
    color: #9bb5d4;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.bk-stats-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.bk-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 22px;
    text-align: center;
    min-width: 110px;
    transition: 0.2s;
}
.bk-stat:hover {
    background: rgba(156, 192, 58, 0.12);
    border-color: rgba(156, 192, 58, 0.25);
}
.bk-snum {
    font-size: 22px;
    font-weight: 800;
    color: #9cc03a;
    display: block;
}
.bk-slbl {
    font-size: 11px;
    color: #8aadc8;
    margin-top: 2px;
    display: block;
}

.bk-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 28px;
}
.bk-step {
    padding: 18px 12px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.bk-step:last-child {
    border-right: none;
}
.bk-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #9cc03a;
    color: #1a3a00;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}
.bk-step-t {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}
.bk-step-s {
    font-size: 11px;
    color: #8aadc8;
    line-height: 1.4;
}

.bk-prod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.bk-pcat {
    background: rgba(156, 192, 58, 0.08);
    border: 1px solid rgba(156, 192, 58, 0.15);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bk-pdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9cc03a;
    flex-shrink: 0;
}
.bk-pt {
    font-size: 12px;
    font-weight: 700;
    color: #c8e880;
}
.bk-ps {
    font-size: 11px;
    color: #8aadc8;
    display: block;
    margin-top: 2px;
}

.bk-form-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    width: 100%;
}
.bk-fh {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
}
.bk-fh span {
    color: #9cc03a;
}
.bk-fi {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
    outline: none;
    font-family: "Open Sans", sans-serif;
    transition: 0.2s;
    display: block;
    box-sizing: border-box;
}
.bk-fi:focus {
    border-color: #9cc03a;
    background: rgba(156, 192, 58, 0.07);
}
.bk-fi::placeholder {
    color: #6a85a0;
}
.bk-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239cc03a'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}
.bk-select option {
    background: #0d1f3c;
    color: #fff;
}
.bk-fi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.bk-fi-row .bk-fi {
    margin-bottom: 0;
}
.bk-submit-btn {
    width: 100%;
    background: #9cc03a;
    color: #1a3a00;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    transition: 0.2s;
    margin-top: 4px;
    display: block;
}
.bk-submit-btn:hover {
    background: #aed145;
    transform: translateY(-2px);
}
.bk-form-note {
    font-size: 11px;
    color: #6a85a0;
    text-align: center;
    margin-top: 10px;
}
.bk-form-note strong {
    color: #9cc03a;
}

@media (max-width: 991px) {
    .bk-grid {
        grid-template-columns: 1fr;
    }
    .bk-section {
        padding: 60px 0;
    }
}
@media (max-width: 767px) {
    .bk-title {
        font-size: 24px;
    }
    .bk-steps,
    .bk-prod-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bk-fi-row {
        grid-template-columns: 1fr;
    }
    .bk-fi-row .bk-fi {
        margin-bottom: 10px;
    }
}

@media (max-width: 1024px) {
    .pr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pr-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .pr-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pr-left {
        padding-bottom: 0;
    }
    .pr-right img {
        border-radius: 14px;
    }
    .pr-stats {
        position: static;
        margin-top: 12px;
        border-radius: 12px;
    }
    .pr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .pr-cta-box {
        padding: 36px 28px;
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .pr-grid {
        grid-template-columns: 1fr;
    }
    .pr-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   12. FOOTER
=========================== */
.footer-area {
    position: relative;
    z-index: 5;
}
.footer-area .footer-shape {
    position: absolute;
}
.footer-area .footer-shape.shape-1 {
    background: linear-gradient(#fe8464 0%, #fe6e9a 100%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    left: 70px;
    opacity: 0.55;
    animation: animation1 2s linear infinite;
}
@media (max-width: 767px) {
    .footer-area .footer-shape.shape-1 {
        left: auto;
        right: 40px;
        top: 25%;
    }
}
.footer-area .footer-shape.shape-2 {
    background: linear-gradient(#33c8c1 0%, #119bd2 100%);
    width: 39px;
    height: 39px;
    border-radius: 50%;
    bottom: 40px;
    left: 15%;
    opacity: 0.55;
    animation: animation1 2s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-shape.shape-2 {
        bottom: 85px;
    }
}
@media (max-width: 767px) {
    .footer-area .footer-shape.shape-2 {
        bottom: 110px;
    }
}
.footer-area .footer-shape.shape-3 {
    background: linear-gradient(#361cc1 0%, #2e82ef 100%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 35%;
    top: 40px;
    opacity: 0.55;
    animation: animation1 2s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-shape.shape-3 {
        top: 40%;
    }
}
.footer-area .footer-shape.shape-4 {
    background-color: #eba31a;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
    opacity: 0.55;
    animation: animation1 2s linear infinite;
}
.footer-area .footer-shape.shape-5 {
    background-color: #e29e19;
    right: 37%;
    top: 0;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    opacity: 0.55;
    animation: animation1 2s linear infinite;
}
.footer-area .footer-shape.shape-6 {
    background-color: #b60d81;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    top: 125px;
    right: 15%;
    opacity: 0.55;
    animation: animation1 2s linear infinite;
}
.footer-area .footer-shape.shape-7 {
    background-color: #6c63ff;
    width: 64px;
    height: 64px;
    bottom: 25px;
    right: 8%;
    opacity: 0.55;
    border-radius: 50%;
    animation: animation1 2s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-shape.shape-7 {
        bottom: 20%;
    }
}
@media (max-width: 767px) {
    .footer-area .footer-shape.shape-7 {
        bottom: 38%;
    }
}
.footer-area .footer-shape.shape-8 {
    top: 30px;
    right: -45px;
}
.footer-area .logo {
    max-width: 200px;
}

.footer-about {
    max-width: 320px;
}
.footer-about .text {
    margin-top: 30px;
}
.footer-about .social {
    margin-top: 30px;
}
.footer-about .social li {
    display: inline-block;
    margin-right: 25px;
}
.footer-about .social li a {
    font-size: 20px;
    color: #747e88;
    transition: all 0.3s ease-out 0s;
}
.footer-about .social li a:hover {
    color: #14294a;
}

.footer-title .title {
    font-size: 20px;
    font-weight: 500;
}

.footer-link .link {
    padding-top: 10px;
}
.footer-link .link li {
    margin-top: 10px;
}
.footer-link .link li a {
    color: #747e88;
    font-size: 18px;
    transition: all 0.3s ease-out 0s;
}
.footer-link .link li a:hover {
    color: #14294a;
}
.footer-link-wrapper {
    width: 50%;
}

.footer-contact .contact-list li {
    margin-top: 20px;
}
.footer-contact .contact-list li .contact-info .info-info {
    width: 30px;
}
.footer-contact .contact-list li .contact-info .info-content .text {
    color: #747e88;
    font-size: 16px;
}
.footer-contact .contact-list li .contact-info .info-content .text a {
    color: #747e88;
    transition: all 0.3s ease-out 0s;
}
.footer-contact .contact-list li .contact-info .info-content .text a:hover {
    color: #14294a;
}

.footer-copyright .copyright {
    border-top: 2px solid #747e88;
    padding-top: 10px;
    padding-bottom: 25px;
}
.footer-copyright .copyright .copyright-text {
    padding-top: 15px;
}
.footer-copyright .copyright .copyright-text .text {
    color: #747e88;
}
.footer-copyright .copyright .copyright-privacy {
    padding-top: 15px;
}
.footer-copyright .copyright .copyright-privacy a {
    font-size: 16px;
    color: #747e88;
    transition: all 0.3s ease-out 0s;
}
.footer-copyright .copyright .copyright-privacy a:hover {
    color: #14294a;
}

.cred-link {
    position: relative;
}

.cred-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #1a335c;
    transition: 0.3s;
}

.cred-link:hover::after {
    width: 100%;
}

/* ===========================
   13. BACK TO TOP
=========================== */
.back-to-top {
    font-size: 20px;
    color: #fff;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    background: #14294a;
    text-align: center;
    z-index: 99;
    transition: all 0.3s ease-out 0s;
    display: none;
}
.back-to-top:hover {
    background-color: rgba(8, 152, 231, 0.5);
    color: #fff;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-page-area {
    padding-bottom: 80px;
    padding-top: 60px;
}

.contact-page-header {
    background: #0d1f3c;
    padding: 120px 0 60px;
    text-align: center;
    margin-bottom: 0;
}
.cp-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9cc03a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.cp-eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #9cc03a;
}
.cp-eyebrow::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #9cc03a;
}
.cp-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.cp-title em {
    font-style: normal;
    color: #9cc03a;
}
.cp-sub {
    font-size: 15px;
    color: #9bb5d4;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Info cards */
.cp-info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: -36px 0 48px;
}
.cp-info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    transition: 0.25s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cp-info-card:hover {
    transform: translateY(-5px);
    border-color: #c8e68a;
    box-shadow: 0 10px 28px rgba(26, 51, 92, 0.1);
}
.cp-ic-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f5f9ee;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1a335c;
    transition: 0.2s;
}
.cp-info-card:hover .cp-ic-icon {
    background: #1a335c;
    color: #9cc03a;
}
.cp-info-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1a335c;
    margin-bottom: 5px;
}
.cp-info-card p {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}
.cp-info-card a {
    display: block;
    color: #9cc03a;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 8px;
}
.cp-info-card a:hover {
    color: #7da82e;
}
.cp-info-card small {
    display: inline-block;
    background: #f5f9ee;
    color: #4a7a1e;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #c8e68a;
}

/* Form row */
.cp-form-row {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

/* Form box */
.cp-form-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
}
.cp-form-header {
    margin-bottom: 28px;
}
.cp-form-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a335c;
    margin-bottom: 6px;
}
.cp-form-header p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.cp-fi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.cp-fi-group {
    margin-bottom: 16px;
}
.cp-fi-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a335c;
    margin-bottom: 6px;
}
.cp-fi-group label span {
    color: #e24b4a;
}
.cp-fi {
    width: 100%;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #2d2d2d;
    font-family: "Open Sans", sans-serif;
    transition: 0.2s;
    outline: none;
    display: block;
}
.cp-fi:focus {
    border-color: #1a335c;
    box-shadow: 0 0 0 3px rgba(26, 51, 92, 0.07);
}
.cp-fi.is-invalid {
    border-color: #e24b4a;
}
.cp-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%231a335c'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}
.cp-textarea {
    resize: vertical;
    min-height: 130px;
}
.cp-char-count {
    font-size: 11px;
    color: #aaa;
    display: block;
    text-align: right;
    margin-top: 4px;
}
.cp-err {
    font-size: 12px;
    color: #e24b4a;
    margin-top: 4px;
    display: block;
}
.cp-alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.cp-alert-danger {
    background: #fcebeb;
    border: 1px solid #f7c1c1;
    color: #a32d2d;
}
.cp-alert ul {
    margin: 0;
    padding-left: 16px;
    font-size: 13px;
}

.cp-submit-btn {
    width: 100%;
    background: #1a335c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    transition: 0.2s;
    margin-top: 4px;
}
.cp-submit-btn:hover {
    background: #0d1f3c;
    transform: translateY(-2px);
}
.cp-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cp-privacy-note {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    margin-top: 12px;
}
.cp-privacy-note i {
    color: #9cc03a;
}

/* Side info */
.cp-ref-explainer {
    background: #0d1f3c;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 16px;
}
.cp-ref-icon {
    font-size: 28px;
    color: #9cc03a;
    margin-bottom: 12px;
}
.cp-ref-explainer h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.cp-ref-explainer p {
    font-size: 13px;
    color: #9bb5d4;
    margin-bottom: 14px;
    line-height: 1.7;
}
.cp-ref-explainer p strong {
    color: #9cc03a;
    font-family: monospace;
    font-size: 14px;
}
.cp-ref-explainer ul {
    list-style: none;
    padding: 0;
}
.cp-ref-explainer ul li {
    font-size: 13px;
    color: #9bb5d4;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cp-ref-explainer ul li i {
    color: #9cc03a;
    font-size: 14px;
}

.cp-response-times {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
}
.cp-response-times h5 {
    font-size: 13px;
    font-weight: 700;
    color: #1a335c;
    margin-bottom: 14px;
}
.cp-rt-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.cp-rt-item:last-child {
    margin-bottom: 0;
}
.cp-rt-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.cp-rt-dot.green {
    background: #9cc03a;
}
.cp-rt-dot.blue {
    background: #378add;
}
.cp-rt-dot.amber {
    background: #ef9f27;
}
.cp-rt-dot.coral {
    background: #d85a30;
}
.cp-rt-item strong {
    display: block;
    font-size: 13px;
    color: #1a335c;
    font-weight: 700;
}
.cp-rt-item span {
    font-size: 11px;
    color: #888;
}

.cp-hours-box {
    background: #f8faf4;
    border: 1px solid #e4ecd0;
    border-radius: 14px;
    padding: 20px;
}
.cp-hours-box h5 {
    font-size: 13px;
    font-weight: 700;
    color: #1a335c;
    margin-bottom: 14px;
}
.cp-hours-box h5 i {
    color: #9cc03a;
    margin-right: 4px;
}
.cp-hr {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px solid #e4ecd0;
}
.cp-hr:last-child {
    border: none;
}
.cp-hr span:first-child {
    color: #555;
}
.cp-hr span:last-child {
    color: #1a335c;
    font-weight: 700;
}
.cp-hr.closed span:last-child {
    color: #e24b4a;
}

.cp-success-section {
    padding: 120px 0 80px;
    background: #f5f7fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.cp-success-card {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 52px 40px;
    text-align: center;
    border: 1px solid #e2e8f0;
}
.cp-success-icon {
    font-size: 56px;
    color: #9cc03a;
    margin-bottom: 16px;
}
.cp-success-ref {
    display: inline-block;
    background: #f5f9ee;
    color: #1a335c;
    font-family: monospace;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 10px 24px;
    border-radius: 10px;
    border: 2px dashed #9cc03a;
    margin-bottom: 20px;
}
.cp-success-card h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1a335c;
    margin-bottom: 14px;
}
.cp-success-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}
.cp-success-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline-dark {
    background: transparent;
    border: 2px solid #1a335c;
    color: #1a335c;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}
.btn-outline-dark:hover {
    background: #1a335c;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .cp-info-row {
        grid-template-columns: 1fr 1fr;
    }
    .cp-form-row {
        grid-template-columns: 1fr;
    }
    .cp-side-info {
        order: -1;
    }
}
@media (max-width: 767px) {
    .cp-title {
        font-size: 26px;
    }
    .cp-fi-row {
        grid-template-columns: 1fr;
    }
    .cp-info-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .cp-form-box {
        padding: 24px 18px;
    }
    .contact-page-header {
        padding: 100px 0 48px;
    }
}
/* ===== SUCCESS FLASH ===== */
.cp-success-flash {
    margin: 32px 0 8px;
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.csf-inner {
    background: #f5f9ee;
    border: 1.5px solid #9cc03a;
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.csf-icon {
    font-size: 36px;
    color: #9cc03a;
    flex-shrink: 0;
    line-height: 1;
}
.csf-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a335c;
    margin-bottom: 6px;
    font-family: "Poppins", sans-serif;
}
.csf-body p {
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.7;
}
.csf-ref {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px dashed #9cc03a;
    border-radius: 10px;
    padding: 10px 18px;
    margin-bottom: 10px;
}
.csf-ref-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a9060;
}
.csf-ref-code {
    font-size: 20px;
    font-weight: 900;
    color: #1a335c;
    font-family: monospace;
    letter-spacing: 0.08em;
}
.csf-hint {
    font-size: 12px !important;
    color: #888 !important;
    margin-bottom: 0 !important;
}
