:root {
    --green: #8cc63f;
    --deep: #0f172a;
    --soft-white: #f8fafc;
    --glass: rgba(255, 255, 255, 0.9);
    --deepskyblue: deepskyblue;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

b,
strong {
    font-weight: bold;
}

h1,
h2,
h3,
.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

body,
p,
.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

a {
    text-decoration: none !important;
}

.text-green {
    color: var(--green);
}

.text-deep {
    color: var(--deep);
}

/* --- 1. THE ARCHITECTURAL HEADER --- */
.header-wrapper {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    z-index: 10000;
}

.glass-capsule {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-radius: 100px;
    padding: 10px 30px;
    border: 1px solid rgba(118, 186, 27, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* --- Layered Logo Placement --- */
.brand-container {
    padding-left: 15px;
}

/* --- Stylish Menu --- */
.nav-menu {
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-link {
    color: var(--deep);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    transition: 0.3s;
}

.menu-link:hover {
    color: var(--green);
}

.menu-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--green);
    transition: width 0.3s ease;
}

.menu-link:hover::after,
.menu-link.active::after {
    width: 100%;
}

/* --- Dropdown Aesthetics --- */
.dropdown-box {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    border-radius: 20px;
    padding: 15px 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.nav-dropdown:hover .dropdown-box {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.drop-item {
    display: block;
    padding: 10px 15px;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 10px;
    transition: 0.2s;
}

.drop-item:hover {
    background: rgba(118, 186, 27, 0.1);
    color: var(--green);
}

.mega-menu-box {
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 4px solid var(--green);
    /* Your green color */
}

/* Show on Hover */
.nav-dropdown:hover .mega-menu-box {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Individual Item Styling */
.mega-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.2s;
}

.mega-item i {
    width: 25px;
    font-size: 1.1rem;
    margin-right: 12px;
}

.mega-item:hover {
    background-color: rgba(118, 186, 27, 0.08);
    /* Light green tint */
    color: var(--deep);
    /* Your navy color */
    padding-left: 20px;
    /* Subtle slide effect */
}

.mobile-toggle {
    border: none;
    background-color: transparent;
    font-size: 22px;
    color: var(--deep);
}

/* --- 3. THE CINEMATIC BANNER --- */
.stqc-trust-anchor {
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    /* border: 1px solid #e2e8f0; */
    width: 85px;
    height: 85px;
    overflow: hidden;
    animation: floatVertical 4s ease-in-out infinite;
    transition: border-color 0.5s;
    border: 2px solid transparent;
}

.stqc-trust-anchor img {
    object-fit: contain;
    z-index: 2;
}

/* --- The "Shine" Animation --- */
.shine-effect {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 3;
    animation: shineSweep 3s infinite;
}

/* Smooth up and down levitation */
@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    50% {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(118, 186, 27, 0.2);
        /* Glow matches brand green */
    }
}

@keyframes shineSweep {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

/* Triggered by the same float cycle */
@keyframes borderPulse {

    0%,
    100% {
        border-color: #e2e8f0;
    }

    50% {
        border-color: var(--green);
    }
}

/* --- 2. THE CINEMATIC BANNER --- */
.hero-viewport {
    height: 90vh;
    overflow: hidden;
    z-index: 1;
    border-radius: 0 0 60px 60px;
}

.hero-video-bg {
    object-fit: cover;
    background-image: url("../../../assets/img/banner1.png");
    background-size: cover;
    background-position: 0% 50%;
}

.play-blob {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: rgba(118, 186, 27, 0.2);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    animation: blobAnimate 8s linear infinite;
}

@keyframes blobAnimate {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    33% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    66% {
        border-radius: 30% 70% 70% 30% / 50% 40% 30% 60%;
    }
}

.play-blob:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--green);
}

.custom-video-dialog {
    max-width: 50% !important;
    margin-top: 80px !important;
}

.video-bottom-shield {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 5;
    pointer-events: none;
    border-radius: 0 0 24px 24px;
}

.custom-top-modal {
    margin-top: 140px !important;
}

.modal.fade .custom-top-modal {
    transform: translateY(-50px);
    opacity: 0;
}

.modal.show .custom-top-modal {
    transform: translateY(0);
    opacity: 1;
}

.video-modal-content {
    background: transparent !important;
    border: none !important;
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000 url('https://images.unsplash.com/photo-1545147418-4034430e0487?q=80&w=1920') center/cover no-repeat;
}

#mainVideo {
    width: 100%;
    display: block;
    outline: none;
    border-radius: 30px;
}

.video-close-btn {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    z-index: 100;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.video-close-btn:hover {
    background: var(--green);
    transform: rotate(90deg);
}

.modal.fade .video-modal-content {
    transform: scale(0.9);
    transition: transform 0.3s ease-out;
}

.modal.show .video-modal-content {
    transform: scale(1);
}

/* --- 3. FLOATING STATS --- */
.custom-carousel {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.custom-carousel img {
    transition: transform 0.8s ease;
}


/* Stats Styling */
.stat-card {
    border-radius: 20px;
    border-left: 5px solid var(--green);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(118, 186, 27, 0.1);
    color: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Innovative 8 */
.products-ecosystem {
    background: radial-gradient(circle at top right, #e3edd7, #ffffff);
    overflow: hidden;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 20px;
}

.eco-node {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.node-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(118, 186, 27, 0.1);
    border-radius: 50% 50% 50% 5px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node-image {
    width: 120px;
    height: 120px;
    background: #f0f9e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px dashed var(--green);
    padding: 15px;
    transition: 0.5s;
}

.node-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.node-text h5 {
    color: var(--deep);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.node-text p {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.6;
}

.eco-node:hover {
    transform: translateY(-15px) scale(1.05);
}

.eco-node:hover .node-content {
    background: #ffffff;
    border-color: var(--green);
    ;
    box-shadow: 0 30px 60px rgba(118, 186, 27, 0.15);
}

.eco-node:hover .node-image {
    background: var(--green);
    border-style: solid;
    transform: rotate(10deg);
}

/* --- 4. PRODUCT CARDS --- */
.limit-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modern-card {
    background: white;
    border-radius: 35px;
    padding: 10px;
    border: 1px solid #f1f5f9;
    transition: 0.4s;
    overflow: hidden;
    height: 100%;
}

.card-img-wrap {
    height: 220px;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.modern-card:hover img {
    transform: scale(1.1);
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.offcanvas-end {
    width: 320px;
    border-radius: 30px 0 0 30px;
    z-index: 10002;
}

.offcanvas-body {
    padding: 0.5rem !important;
}

.offcanvas-body .nav-link {
    padding: 5px 10px !important;
    color: var(--deep);
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--green) !important;
}

.dropdown-toggle-custom i {
    transition: transform 0.35s ease;
    font-size: 0.8rem;
}

.dropdown-toggle-custom:not(.collapsed) i {
    transform: rotate(180deg);
}

.collapse {
    transition: height 0.35s ease;
}

.nav-item:has(.show) {
    background-color: #f8f9fa;
    border-radius: 8px;
    /* padding-left: 5px;
    padding-right: 5px; */
}

/* Owl Caraousel */
#services-slider {
    position: relative;
    display: block;
    width: 100%;
}

.owl-nav.disabled {
    display: block !important;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--green) !important;
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    z-index: 99;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--green) !important;
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    z-index: 1000;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
}

.owl-nav .owl-prev {
    left: -60px;
}

.owl-nav .owl-next {
    right: -60px;
}

.owl-dots {
    display: none;
}

.owl-nav button:hover {
    background: var(--deepskyblue) !important;
    transform: translateY(-50%) scale(1.1);
}

.owl-carousel {
    position: relative;
    /* padding: 0 50px; */
}

/* Certifications */
.certifications-stage {
    background: var(--deep);
    color: white;
}

.stage-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 25px;
    text-align: center;
    transition: all 0.5s ease;
    opacity: 0.5;
    transform: scale(0.8);
}

.stage-card a {
    display: block;
    position: relative;
    cursor: zoom-in;
}

.zoom-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    background: var(--green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

/* The "Center" effect */
.owl-item.center .stage-card {
    opacity: 1;
    transform: scale(1);
    background: white;
    color: var(--deep);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.owl-item.center .stage-card:hover .zoom-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.stage-img {
    transition: transform 0.5s ease;
    height: 260px;
    width: auto !important;
    margin: 0 auto 20px;
    object-fit: contain;
}

.stage-icon {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 15px;
}

.certifications-stage .owl-dots {
    margin-top: 40px !important;
}

.certifications-stage .owl-dot span {
    background: rgba(255, 255, 255, 0.3) !important;
}

.certifications-stage .owl-dot.active span {
    background: var(--green) !important;
}

#cert-stage-slider .owl-nav.disabled {
    display: none !important;
}

.owl-item.center .stage-card:hover .stage-img {
    transform: scale(1.05);
}

/* Footer */
.main-footer {
    background-color: #f8fafc;
    overflow: hidden;
}

.bg-green {
    background: linear-gradient(135deg, var(--green) 0%, #5a8f14 100%);
}

.footer-logo {
    max-height: 50px;
    filter: grayscale(1);
    transition: 0.3s;
}

.footer-logo:hover {
    filter: grayscale(0);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #64748b;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--green);
    padding-left: 8px;
}

.main-footer .cta-action a {
    background-color: white;
    color: var(--green);
    font-size: 15px;
}

.main-footer .cta-action a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px #274e3c;
}

/* Social Icons */
.social-icon {
    width: 38px;
    height: 38px;
    background: white;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--green);
    color: white;
    transform: translateY(-5px);
}

.icon-wrap {
    width: 20px;
    text-align: center;
}


/* About US */
.ls-2 {
    letter-spacing: 2px;
}

.bg-deep {
    background-color: var(--deep);
}

.bg-light-soft {
    background-color: #f8fafc;
}

.page-header {
    background: linear-gradient(rgba(31, 43, 72, 0.88), rgba(31, 43, 72, 0.88)),
        url('../../img/dd1.png') center/cover;
    background-size: cover;
    background-position: 50% center;
    background-attachment: fixed;
    padding: 200px 0 100px 0;
}

/* Floating Elements */
.experience-card-floating {
    position: absolute;
    bottom: 20px;
    left: -30px;
    width: 220px;
    border-left: 5px solid var(--green);
    ;
    z-index: 10;
}

/* Icons & Cards */
.icon-box-small {
    width: 35px;
    height: 35px;
    background: rgba(118, 186, 27, 0.1);
    color: var(--green);
    ;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.tech-card {
    border-radius: 25px;
    transition: 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    background: var(--green);
    ;
    color: white;
}

.tech-card:hover i,
.tech-card:hover p {
    color: white !important;
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--green);
    margin-top: 10px;
}

.glass-breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 30px;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.glass-breadcrumb .breadcrumb-item a {
    display: inline-flex;
    align-items: center;
}

.glass-breadcrumb .breadcrumb-item a i,
.newsletter-box p {
    font-size: 12px;
}

/* Custom Separator Dot */
.glass-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    /* margin: 10px 15px; */
    display: inline-block;
    vertical-align: middle;
}

.glass-breadcrumb .breadcrumb-item.active {
    color: var(--green);
    font-weight: 600;
}

.expertise-img {
    border-radius: 40px 83px 131px 0px;
}

.glass-card p,
.glass-card ul li {
    color: #bdbdbd;
}

/*  */
.section-eyebrow {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

#progress-value {
    color: var(--green);
}

#progress {
    z-index: 1111;
    position: fixed;
    bottom: 20px;
    right: 10px;
    height: 60px;
    width: 60px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

#progress-value {
    display: block;
    height: calc(105% - 10px);
    width: calc(105% - 10px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 35px;
    color: #001a2e;
}

span#progress-value i {
    font-size: 18px;
}


.control-center-frame {
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.frame-label {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
}

/* Strength Cards */
.strength-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 15px;
    transition: 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.strength-card .icon-box {
    width: 65px;
    height: 65px;
}

.strength-card .icon-box i {
    font-size: 30px;
}

/* Checkboxes */
.support-list-card {
    background: #fdfdfd;
    border-radius: 15px;
    border: 1px solid #eee;
}

.custom-checks li {
    padding: 8px 0;
    font-size: 16px;
    color: #555;
}

.custom-checks li i {
    margin-right: 12px;
}

/* Stats Bar */
.stats-bar {
    border-radius: 20px;
    box-shadow: 1rem 1rem 0.25rem rgb(0 0 0 / 8%);
}

.talk-button {
    line-height: 26px;
    background: var(--green);
    overflow: hidden;
    padding: 18px 50px;
    border-radius: 30px;
    z-index: 1;
    color: white;
    letter-spacing: 0.5px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.talk-button::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: white;
    color: var(--green);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    transform: scale(0.2, 1);
}

.talk-button:hover::before {
    opacity: 1;
    transform: scale(1, 1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}



/* Heading UI */
.heading-underline {
    width: 60px;
    height: 4px;
    background: var(--green);
    margin-top: 10px;
    border-radius: 2px;
}

.cta-banner a {
    background: transparent;
    color: rgba(255, 255, 255, .75);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .06em;
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: 6px;
    padding: .72rem 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
}

.cta-banner a:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

/* Hero Section */
.contact-hero {
    height: 350px;
    /* background: linear-gradient(rgba(31, 43, 72, 0.9), rgba(31, 43, 72, 0.9)),
        url('assets/images/highway-bg.jpg') center/cover; */
}

/* Contact Card Container */
.contact-card-main {
    margin-top: -100px;
    /* Overlaps with Hero */
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

/* Sidebar Styling */
.contact-info-sidebar {
    background-color: var(--navy);
    position: relative;
}

.icon-circle-contact {
    width: 45px;
    height: 45px;
    background: rgba(118, 186, 27, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.text-green {
    color: var(--green) !important;
}

/* Form Styling */
.custom-input {
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fdfdfd;
}

.custom-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(118, 186, 27, 0.1);
    background-color: #fff;
}

.btn-green-contact {
    background-color: var(--green);
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.btn-green-contact:hover {
    background-color: #5ea113;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(118, 186, 27, 0.2);
    color: white;
}

/* Social Icons */
.social-links-contact a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-links-contact a:hover {
    background: var(--green);
    transform: rotate(360deg);
}

/* Map grayscale effect for aesthetic */
.map-section iframe {
    border: 0;
    filter: grayscale(100%) invert(90%);
}

@media (max-width: 991px) {
    .contact-card-main {
        margin-top: 0;
    }

    .contact-hero {
        height: 250px;
    }
}

.input-group .form-control {
    flex: 1 1 auto;
}

#newsletterBtn {
    white-space: nowrap;
}

.aos-init.aos-animate .progress>span.arrow {
    animation: rotate 2.6s linear forwards;
    visibility: visible;
}

.aos-init.aos-animate .progress .progress-right .progress-bar {
    animation: loading-1 1.4s linear forwards;
}

.aos-init.aos-animate .progress .progress-left .progress-bar {
    animation: loading-2 1.2s linear forwards 1.4s;
}

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
}

.progress {
    width: 120px;
    height: 120px;
    line-height: 120px;
    background: none;
    margin: 0 auto;
    overflow: inherit;
    box-shadow: none;
    position: relative;
    transform: rotate3d(25, 15, 1, 180deg);
}

.progress.circle__image4 {
    position: absolute;
    top: -22px;
    left: -12px;
}

.progress.blue.circle__image4.GrEen {
    transform: rotate3d(-20, 25, 1, 180deg);
}

.progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.progress>span.arrow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: auto;
    height: auto;
    visibility: hidden;
    overflow: inherit;
}


.progress>span.arrow:after {
    content: "";
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--green);
    position: absolute;
    left: 43px;
    top: -4px;
    -webkit-transform: rotate(0deg);
    transform: rotate(345deg);
}

@keyframes rotate {
    0% {
        transform: rotate(-30deg)
    }

    20% {
        transform: rotate(80deg)
    }

    40% {
        transform: rotate(150deg)
    }

    60% {
        transform: rotate(210deg)
    }

    80% {
        transform: rotate(270deg)
    }

    100% {
        transform: rotate(324deg)
    }
}


.progress>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress .progress-left {
    left: 0;
}

.progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 2px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress .progress-right {
    right: 0;
}

.progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.progress.blue .progress-bar {
    border-color: #5db8b5;
}

.progress.pWhite .progress-bar {
    border-color: #fff;
}

.progress.GrEen .progress-bar {
    border-color: var(--green);
}

.progress.pWhite>span.arrow:after {
    border-color: transparent transparent transparent #fff;
}


/* Career Hero */
.career-hero {
    padding: 140px 0 100px;
    background: radial-gradient(circle at top right, #e3edd7, #ffffff);
}

.bg-navy {
    background-color: var(--navy);
}

.text-green {
    color: var(--green);
}

.bg-green {
    background-color: var(--green);
    color: white;
}

.btn-green {
    background-color: var(--green);
    color: white;
    border: none;
}

.btn-green:hover {
    background-color: #5ea113;
    color: white;
}

.btn-outline-navy {
    border-color: var(--navy);
    color: var(--navy);
}

.btn-outline-navy:hover {
    background-color: var(--navy);
    color: white;
}

.heading-line {
    width: 60px;
    height: 4px;
    background: var(--green);
    margin-top: 15px;
    border-radius: 2px;
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 20px;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

/* Job List Styling */
.job-item {
    background: #fff;
    transition: all 0.3s ease;
}

.job-item:hover {
    border-color: var(--green) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #fdfdfd;
}

.border-green {
    border-color: var(--green);
}

.border-green:focus {
    box-shadow: 0 0 0 0.25rem rgba(118, 186, 27, 0.25);
    border-color: var(--green);
}

/* Responsive Image */
.hero-image-stack img {
    border: 10px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}
#applyModal{
    z-index: 10555555555;
}
