:root {
    --bs-font-sans-serif: "Be Vietnam Pro", sans-serif;
    --green: #36b864;
    --dark: #111d15;
    --muted: #666666;
    --light-border: #83a790;
    --card-radius: 20px;
    --primary-color: #3bab5a;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
    --gold: #e1b932;
    --neon-red: #ff3b30;
    --map-w: 598px;
    --map-h: 335px;
}
body {
    font-family: "Be Vietnam Pro", sans-serif;
    color: var(--dark);
    overflow-x: hidden !important;
}

section {
    padding: 60px 0;
}

.text-green {
    color: var(--green) !important;
}
.bg-green {
    background-color: var(--green) !important;
}
.bg-brand-dark {
    background-color: var(--dark) !important;
}
.text-muted-custom {
    color: var(--muted) !important;
}
.border-green {
    border-color: var(--green) !important;
}
.text-gold {
    color: var(--gold) !important;
}

.navbar {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.navbar .nav-link {
    font-size: 16px;
    color: var(--dark);
    font-weight: 400;
}
.navbar .nav-link.active {
    color: var(--green);
    font-weight: 600;
}
.btn-gradient {
    background: linear-gradient(43deg, #3c9b71 0%, #27adc3 50%, #3c9b71 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 0 0.2px rgba(17, 29, 21, 0.4);
}
.btn-gradient:hover {
    opacity: 0.9;
    color: #fff;
}

.hero {
    position: relative;
    min-height: 424px;
    background: url("../images/Hero.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
}
.hero .hero-content {
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
    );
    animation: float 20s linear infinite;
    top: -50%;
    left: -50%;
}
@keyframes float {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(1.05);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

.btn-green {
    background-color: var(--green);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-green:hover {
    background-color: #2ea356;
    color: #fff;
}
.btn-outline-dark-custom {
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: 1px solid #666;
    border-radius: 6px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-outline-dark-custom:hover {
    background: #2ea356;
    color: #fff !important;
}
.btn-outline-custom {
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    border: 1px solid #666;
    border-radius: 6px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-outline-custom:hover {
    background: #2ea356;
    color: #fff;
    text-decoration: none;
}

.bi-arrow-right::before {
    transform: rotateZ(320deg);
}

/* .btn-outline-dark-custom1 {
    
    background-color: #2ea356;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease-in-out;

}
.btn-outline-dark-custom1:hover {
    background: #2ea356;
    color: #fff !important;
    filter:  blur(0.6px);
    transition: 0.3s ease-in-out;
} */
.btn-outline-dark-custom1 {
    background: rgba(46, 163, 86, 0.85); /* instead of solid color */
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;

    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.btn-outline-dark-custom1:hover {
    background: rgba(46, 163, 86, 0.61);/* more transparent */
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(46,163,86,0.4); /* optional glow */
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.section-heading {
    color: var(--green);
    font-size: 30px;
    font-weight: 600;
    line-height: 48px;
}
.section-subheading {
    color: var(--green);
    font-size: 20px;
    font-weight: 600;
}
.section-text {
    color: var(--muted);
    font-size: 16px;
    line-height: 24px;
}

.img-bordered-tr {
    border-radius: var(--card-radius);
    border-top: 10px solid var(--green);
    border-right: 10px solid var(--green);
}
.img-bordered-tl {
    border-radius: var(--card-radius);
    border-left: 10px solid var(--green);
    border-top: 10px solid var(--green);
}
.img-overlap {
    border-radius: var(--card-radius);
    outline: 10px solid #fff;
}

.feature-card {
    border-radius: var(--card-radius);
    border: 1px solid var(--light-border);
    overflow: hidden;
    text-align: center;
}
.feature-card img {
    border-top-left-radius: var(--card-radius);
    border-top-right-radius: var(--card-radius);
    width: 100%;
    height: 216px;
    object-fit: cover;
}
.feature-card h5 {
    color: var(--green);
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}
.feature-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 22px;
}

.service-card img {
    border-radius: 30px;
    width: 100%;
    height: 268px;
    object-fit: cover;
}
.service-card h4 {
    color: var(--green);
    font-weight: 600;
    font-size: 24px;
}
.service-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 24px;
}

.blog-card img {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    width: 100%;
    height: 270px;
    object-fit: cover;
}
.blog-card .card-body h5 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}
.blog-card .card-body p {
    color: var(--muted);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--card-radius);
    border-top: 10px solid var(--green);
    border-right: 10px solid var(--green);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
}
.testimonial-card .quote-icon {
    width: 58px;
    height: 47px;
    background: var(--green);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-item {
    background: #fbfbfb;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.check-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.check-dot i {
    font-size: 18px;
    color: #fff;
}
.check-item span {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
}

.brand-slider-wrapper {
    overflow: hidden;
}
.brand-slider-track {
    display: flex;
}
.brand-logo-slide {
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity 0.3s;
}
.brand-logo-slide:hover {
    opacity: 1;
}
.brand-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.25rem;
}
.brand-dot,
.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d9d9d9;
    display: inline-block;
    transition: background-color 0.3s;
}
.brand-dot.active,
.testimonials-dot.active {
    background-color: var(--green);
}

.footer-section {
    background: var(--dark);
    padding: 100px 0 20px;
}
.footer-section h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.footer-section p,
.footer-section a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}
.footer-section a:hover {
    text-decoration: underline;
}
.footer-divider {
    border-color: #d9d9d9;
}

.contact-input {
    border: 1px solid #f3f3f3;
    border-radius: 4px;
    padding: 18px 20px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.03);
    font-size: 16px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d9d9d9;
    display: inline-block;
}
.dot.active {
    background: var(--green);
}

.hr-green {
    border-color: var(--light-border);
    opacity: 1;
}
.imagesSec-1 {
    max-width: 220px;
    height: 220px;

    bottom: 0;
    left: 20%;
    transform: translate(-10%, 10%);
}
.imagesSec-2 {
    max-width: 231px;
    height: 235px;
    bottom: 0;
    right: 6%;
    transform: translate(-10%, 10%);
}
.imagesSec-about-1 {
    max-width: 200px;
    bottom: -10%;
    left: 0%;
    transform: translate(-10%, 10%);
}
.norotet::before {
    transform: rotateZ(0deg) !important;
}
.btn-hover-green:hover {
    background-color: #36b864;
}
.btn-hover-green:hover > i {
    color: white !important;
}

.placeholder-white::placeholder {
    color: gray !important;
}
.fs-6 {
    font-size: 0.8rem !important;
}

/* ── HERO ── */
.about-hero-section {
    position: relative;
    overflow: hidden;
}
.about-hero-section .about-hero-bg {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* filter: brightness(0.55); */
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hero-title {
    margin-top: -100px;
    color: #fff;
    font-size: 96px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 120px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 48px;
        line-height: 60px;
        margin-top: -50px;
    }
    .about-hero-section .about-hero-bg {
        object-fit: cover;
    }
}
.diamond-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.diamond {
    position: absolute;
    width: 180px;
    height: 180px;
    transform: rotate(45deg);
    border-radius: 4px;
}
.diamond-filled {
    background:
        linear-gradient(
            273deg,
            rgba(54, 184, 100, 0.5) 0%,
            rgba(17, 29, 21, 0.1) 100%
        ),
        var(--green);
    border: 1px solid var(--green);
}
.diamond-outline {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-green {
    background-color: var(--green);
    color: #fff;
    font-weight: 600;
    border-radius: 6.15px;
    border: none;
    box-shadow: 0 4.1px 4.1px rgba(0, 0, 0, 0.25);
}
.btn-green:hover {
    background-color: #2ea356;
    color: #fff;
}
.btn-green-keep{
    font-weight: 400 !important;
    font-size: 16px !important;

}
.section-heading {
    color: var(--green);
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    word-wrap: break-word;
}

.section-subheading {
    color: var(--green);
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
    word-wrap: break-word;
}

.section-text {
    color: var(--muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    word-wrap: break-word;
}

.btn-read-more {
    color: gray;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}
a {
    text-decoration: none;
}
.support-number {
    color: rgba(54, 184, 100, 0.5);
    font-size: 120px;
    font-weight: 600;
    line-height: 204.03px;
    word-wrap: break-word;
    filter: blur(0.5px);
    opacity: 0.7;
    margin-bottom: -60px;
}

.support-label {
    color: var(--muted);
    font-size: 24px;
    font-weight: 600;
    line-height: 40.81px;
    word-wrap: break-word;
}

.location-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}
.pin-dot {
    color: #e1b932;
}
.location-pin .pin-label {
    color: var(--dark);
    font-size: 19.9px;
    font-weight: 500;
    line-height: 27.86px;
    word-wrap: break-word;
}

.principles-section {
    position: relative;
    background: url("../images/curv\ photo.svg") center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: normal, multiply;
    padding: 80px 0;
    min-height: 870px;
}
.principle-card {
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(54, 184, 100, 0.2) 100%
        );
    backdrop-filter: blur(18.55px);
    -webkit-backdrop-filter: blur(18.55px);
    border-radius: 16px;
    border-left: 2px solid #d9d9d9;
    border-top: 2px solid #d9d9d9;
    padding: 24px;
    height: 100%;
}

.principle-card .icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-card h5 {
    color: white;
    font-size: 24px;
    font-weight: 500;
    line-height: 33.6px;
    word-wrap: break-word;
}

.principle-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    word-wrap: break-word;
}
.principle-card-top {
    position: relative;
    top: -50px;
}
.principle-card-bottom {
    position: relative;
    bottom: -50px;
}
.vm-card {
    border: 1.62px solid var(--light-border);
    border-radius: 32.36px;
    overflow: hidden;
    padding-bottom: 32px;
}
.vm-card img {
    width: 100%;
    height: 312px;
    object-fit: cover;
    border-top-left-radius: 32.36px;
    border-top-right-radius: 32.36px;
}

.vm-card h4 {
    color: var(--green);
    font-size: 29.52px;
    font-weight: 600;
    line-height: 29.52px;
    word-wrap: break-word;
}

.vm-card p {
    color: var(--muted);
    font-size: 16px;
    font-weight: 400;
    word-wrap: break-word;
    
}

.philosophy-wrapper {
    position: relative;
}
.philosophy-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
}
.philosophy-bullets li {
    color: var(--muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    padding-left: 16px;
    position: relative;
    margin-bottom: 8px;
}
.philosophy-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--dark);
    font-weight: 600;
}

.philosophy-accent {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 3px;
    align-items: flex-end;
    transform: skewX(-15deg);
}
.philosophy-accent .bar {
    height: 50px;
    border-radius: 2px;
}
.philosophy-accent .bar-dark {
    background: var(--dark);
    width: 50px;
}
.philosophy-accent .bar-green {
    background: var(--green);
    width: 55px;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 0 40px;
    background-image: url('../images/Container(2).svg');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
}
/* .timeline-row::after {
    content: "";
    position: absolute;
    top: calc(122px + -10px);
    left: 40px;
    right: 40px;
    background-image: url('../images/Container(2).svg');
    z-index: -10;
} */
.timeline-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 0;
}
.timeline-step .step-number {
    color: var(--dark);
    font-size: 72px;
    font-weight: 400;
    line-height: 1.2;
    opacity: 0.8;
    filter: blur(0.62px);
    text-shadow: 0px 0px 4px rgba(54, 184, 100, 1);
    margin-bottom: 0;
}
.timeline-dot-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}
.timeline-dot-glow {
    width: 44px;
    height: 44px;
    background: var(--green);
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.5;
    position: absolute;
}
.timeline-dot {
    width: 28px;
    height: 28px;
    background: var(--green);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}
.timeline-step .step-label {
    color: var(--dark);
    font-size: 24px;
    font-weight: 600;
    line-height: 40.81px;
    margin-top: 12px;
}

.accent-bars {
    display: flex;
    gap: 4px;
    margin-bottom: 40px;
}
.accent-bar {
    height: 49.43px;
}
.accent-bar-dark {
    background: black;
    width: 183px;
}
.accent-bar-green {
    background: #3bab5a;
    width: 187px;
}
.accent-bar-sm-dark {
    background: black;
    width: 46px;
}
.accent-bar-sm-green {
    background: #3bab5a;
    width: 51px;
}

.contact-input {
    border: 1px solid #f3f3f3;
    border-radius: 4px;
    padding: 18px 20px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.03);
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
}
.btn-contact {
    background: var(--green);
    color: white;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
    border: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 12px 24px;
}
.btn-contact:hover {
    background: #2ea356;
    color: #fff;
}

.footer-section {
    background: var(--dark);
    padding: 100px 0 20px;
}
.footer-section h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.footer-section p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 25.6px;
}
.footer-section a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}
.footer-section a:hover {
    text-decoration: underline;
}
.footer-divider {
    border-color: #d9d9d9;
}

.heading-contact {
    line-height: 48px;
}

.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-fade-in.visible {
    animation: fadeInUp 1s ease-out forwards;
}
.space-rotat {
    transform: rotateY(180deg);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-fade-in.delay-1.visible {
    animation-delay: 0.2s;
}
.scroll-fade-in.delay-2.visible {
    animation-delay: 0.4s;
}
.scroll-fade-in.delay-3.visible {
    animation-delay: 0.6s;
}
.scroll-fade-in.delay-4.visible {
    animation-delay: 0.8s;
}
.scroll-fade-in.delay-5.visible {
    animation-delay: 1s;
}
.scroll-fade-in.delay-6.visible {
    animation-delay: 1.2s;
}
.scroll-fade-in.delay-7.visible {
    animation-delay: 1.4s;
}
.scroll-fade-in2 {
    opacity: 0;
    transition: all 1.2s ease;
}

/* when visible (you trigger this with JS or on load) */
.scroll-fade-in2.active {
    opacity: 1;
    transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
/* حاوية الخريطة - نظيفة بدون ظلال */
.map-wrapper {
    position: relative;
    width: var(--map-w);
    height: var(--map-h);
    line-height: 0;
    overflow: visible;
}
.map-wrapper2 {
    position: relative;
    width: 100%;
    height: 100%;
    line-height: 0;
    overflow: visible;
}

.world-map-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    -webkit-user-drag: none;
}

/* حاوية النقطة مع أنميشن الدخول المتسلسل */
.hotspot {
    position: absolute;
    z-index: 0;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    cursor: pointer;
    opacity: 0;
    animation: fadeInScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* توقيت ظهور النقاط */
.manchester {
    animation-delay: 0.2s;
}
.frankfurt {
    animation-delay: 0.4s;
}
.istanbul {
    animation-delay: 0.6s;
}
.tangier {
    animation-delay: 0.8s;
}
.cairo {
    animation-delay: 1s;
}
.dubai {
    animation-delay: 1.2s;
}
.accra {
    animation-delay: 1.4s;
}
.kuala-lumpur {
    animation-delay: 1.6s;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--neon-red);
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dot::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1.5px solid var(--neon-red);
    border-radius: 50%;
    animation: pulse-ring 2.5s infinite;
}
.dot-map {
    width: 15px;
    height: 15px;
    background-color: var(--neon-red);
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dot-map::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1.5px solid var(--neon-red);
    border-radius: 50%;
    animation: pulse-ring 2.5s infinite;
}
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.hotspot:hover {
    z-index: 100;
}
.hotspot:hover .dot {
    transform: scale(1.5);
    background-color: #ffffff;
    box-shadow:
        0 0 15px var(--neon-red),
        0 0 35px var(--neon-red);
}
.hotspot:hover .dot-map {
    transform: scale(1.5);
    background-color: #ffffff;
    box-shadow:
        0 0 15px var(--neon-red),
        0 0 35px var(--neon-red);
}

/* البطاقة الزجاجية بوضوح عالٍ */
.address-card {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 1);
    color: #1a1a1a;
    padding: 12px 15px;
    border-radius: 12px;
    width: 170px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    pointer-events: none;
    line-height: 1.4;
    text-align: left;
}

.address-card::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.9) transparent transparent transparent;
}

.address-card b {
    display: block;
    color: var(--neon-red);
    font-size: 13px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.address-card p {
    margin: 0;
    font-size: 11px;
    color: #333;
    font-weight: 500;
}

.hotspot:hover .address-card {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* الإحداثيات الدقيقة */
.manchester {
    top: 22.5%;
    left: 45%;
}
.frankfurt {
    top: 24.5%;
    left: 49.8%;
}
.istanbul {
    top: 30.5%;
    left: 56.5%;
}
.tangier {
    top: 33.8%;
    left: 43.6%;
}
.cairo {
    top: 38.5%;
    left: 54.2%;
}
.dubai {
    top: 41.8%;
    left: 61.8%;
}
.accra {
    top: 51.5%;
    left: 46.8%;
}
.kuala-lumpur {
    top: 50.5%;
    left: 78.5%;
}
.form-control:focus {
    border-color: #36b86463;
    box-shadow: 0 0 0 0.25rem #36b86463;
}
/* الخلفية */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    justify-content: center;
    align-items: center;
}

/* الصندوق */
.popup {
    background: #f5f5f5;
    width: 70%;
    max-width: 900px;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* زر الإغلاق */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
    color: var(--green);
}

/* العنوان */
.popup h2 {
    text-align: center;
    color: var(--green);
    margin-bottom: 25px;
}

/* المحتوى */
.popup-content {
    display: flex;
    justify-content: space-between;
}

/* القوائم */
.popup ul {
    list-style: disc;
    color: var(--green);
    line-height: 2;
    width: 45%;
}

.popup ul li a {
    color: var(--green);
}

.popup ul li a:hover {
    color: darkgreen;
}

/* ── INTRO SECTION ── */
.intro-section {
    padding: 50px 120px 60px;
}
.intro-heading {
    background: linear-gradient(90deg, #556b2f, #2ecc71); /* زيتي → أخضر */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--green);
    font-size: 26px;
    font-weight: 600;
    line-height: 39px;
}
.intro-text {
    color: var(--muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    max-width: 792px;
}
.btn-green {
    background: rgba(54, 184, 100, 0.9);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-green-solid {
    background: #36b864;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* ── SERVICE SECTIONS ── */
.service-section {
    position: relative;
    min-height: 800px;
    overflow: hidden;
    background: #ffffff;
}
.bac {
    padding-top: 10px;
    background: #f6fcf6;
}
.service-section .service-content {
    padding: 0px 120px;
}
.service-title {
    color: var(--green);
    font-size: 38px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 24px;
}
.service-desc {
    color: var(--muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    
    margin-bottom: 16px;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}
.service-list li {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 40.81px;
    color: var(--muted);
}
.service-list li::before {
    content: "•";
    color: var(--green);
    margin-right: 8px;
}
.service-number {
    position: absolute;
    font-size: 221px;
    font-weight: 400;
    line-height: 376px;
  
    z-index: 2;
        /* 👇 نص شبه شفاف */
        color: rgba(255, 255, 255, 0.623);

        /* 👇 حدود زجاجية */
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.623);
    
        /* 👇 إحساس الزجاج */
        text-shadow:
            0 4px 10px rgba(0,0,0,0.25),
            0 0 20px rgba(255,255,255,0.25);
    
        letter-spacing: 2px;
}
.service-number::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.8),
        transparent
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    opacity: 0.4;
}
.service-number2 {
    position: absolute;
    font-size: 221px;
    font-weight: 400;
    line-height: 376px;
     /* 👇 نص شبه شفاف */
     color: rgba(255, 255, 255, 0.623);

     /* 👇 حدود زجاجية */
     -webkit-text-stroke: 1px rgba(255, 255, 255, 0.623);
 
     /* 👇 إحساس الزجاج */
     text-shadow:
         0 4px 10px rgba(0,0,0,0.25),
         0 0 20px rgba(255,255,255,0.25);
 
     letter-spacing: 2px;
    z-index: 2;
}
.service-number2::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.8),
        transparent
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    opacity: 0.4;
}
.service-img-wrapper {
    position: relative;
    overflow: hidden;
}
.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-sidebar {
    position: absolute;
    left: -62px;
    top: -10px;
    width: 63px;
    height: 70%;
    background: rgba(159, 223, 143, 0.2);
    border-bottom-left-radius: 30px;
    border: 0.2px solid #4d835f66;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 140px;
    z-index: 3;
}
.service-sidebar2 {
    background: rgba(159, 223, 143, 0.2);
    border-top-left-radius: 30px;
    border: 0.2px solid #4d835f66;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15%;
    z-index: 3;
    width: 50%;
    height: 50px;
}
.service-sidebar2-m {
    background: rgba(159, 223, 143, 0.2);
    border-bottom-left-radius: 30px;
    border: 0.2px solid #4d835f66;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15%;
    z-index: 3;
    width: 70%;
    height: 50px;
    position: absolute;
    right: 0;
}
.sidebar-label2 {
    color: var(--green);
    font-size: 16px;
    font-weight: 600;
    line-height: 27.2px;
    letter-spacing: 0.32px;
}
.sidebar-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--green);
    font-size: 16px;
    font-weight: 600;
    line-height: 27.2px;
    letter-spacing: 0.32px;
}
.box-shadow2 {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    margin-bottom: 15px;
}
.card-box {
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    color: #1f3d2b;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-box2 {
    border-radius: 15px;
    height: 100%;
}

.light {
    background: linear-gradient(135deg, #e8f5ec, #dff1e5);
}

.green {
    background: linear-gradient(135deg, #3bbf6b91, #2a9d5b);
    color: white;
}

.center-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
}

.big-text {
    font-size: 48px;
    font-weight: bold;
}

.small-text {
    font-size: 14px;
    opacity: 0.8;
}
/* Gray image placeholder */
.img-placeholder {
    background: #d9d9d9;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    min-height: 100%;
}

/* ── WHY SECTION ── */
.why-section {
    padding: 80px 120px;
}
.why-title {
    color: var(--green);
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 40px;
}
.why-card {
    border-radius: 12px;
    overflow: hidden;
    height: 258px;
    position: relative;
}
.why-card-light {
    background: #f6fbf8;
    outline: 2px solid #fff;
    outline-offset: -2px;
}
.why-card-green {
    background: radial-gradient(
        ellipse 116% 117% at 10% 9%,
        #36b864 0%,
        rgba(0, 197, 70, 0.27) 100%
    );
    border: 1.5px solid #fff;
}
.why-card-glow {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(241, 241, 241, 0.1) 100%
    );
    box-shadow: 0 3px 27px #36b864 inset;
    outline: 2px solid #fff;
    outline-offset: -2px;
}
.why-card-gradient {
    background: linear-gradient(
        178deg,
        rgba(54, 184, 100, 0.8) 0%,
        rgba(224, 185, 49, 0.8) 100%
    );
    outline: 2px solid #fff;
    outline-offset: -2px;
}
.why-card-title {
    font-size: 28.69px;
    font-weight: 600;
    line-height: 43px;
}
.why-card-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 20.5px;
}
.why-stat {
    color: var(--green);
    font-size: 69px;
    font-weight: 700;
    line-height: 104px;
}
.why-stat-label {
    color: var(--green);
    font-size: 25px;
    font-weight: 400;
    line-height: 42px;
}
.btn-quote {
    background: linear-gradient(43deg, #3c9b71 0%, #27adc3 50%, #3c9b71 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 0 0.2px rgba(17, 29, 21, 0.4);
    text-decoration: none;
}
.btn-quote:hover {
    color: #fff;
}

/* ── FILTER BAR ── */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filter-tabs {
    display: flex;
    align-items: baseline;
    gap: 16px;
}
.filter-label {
    color: var(--dark);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}
.filter-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.filter-links a {
    color: var(--gray);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;
}
.filter-links a.active {
    color: var(--green);
    font-size: 20px;
}
.filter-links a:hover {
    color: var(--green);
}

/* Search bar */
.search-bar {
    display: flex;
    align-items: center;
    border-radius: 7px;
    border: 1px solid var(--green);
    overflow: hidden;
    height: 43px;
}
.search-bar input {
    width: 420px;
    padding: 10px 16px;
    border: none;
    outline: none;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
}
.search-bar input::placeholder {
    color: var(--gray);
}
.search-bar button {
    width: 57px;
    height: 100%;
    background: var(--green);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.search-bar button svg {
    fill: #fff;
}

/* ── BLOG CARDS GRID ── */
.blog-grid {
    padding: 96px 120px 0;
}
.blog-card-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.blog-card-body {
    padding: 36px 0 0;
}
.blog-card-meta {
    color: var(--gray);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}
.blog-card-title {
    color: var(--dark);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin: 0 auto 16px;
}
.blog-card-excerpt {
    color: var(--gray);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    margin: 0 auto;
}
.blog-card-divider {
    width: 320px;
    height: 0;
    border: none;
    border-top: 1px solid #d8d8d8;
    margin: 24px auto;
}
.blog-card-readmore {
    color: var(--gray);
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    line-height: 33px;
}
.blog-card-readmore:hover {
    color: var(--green);
}

/* Featured card style (middle card with green border + button) */
.blog-card-featured {
    border-radius: 30px;
    padding-bottom: 20px;
    overflow: hidden;
}
.blog-card-featured .blog-card-body {
    padding: 36px 0 0;
    padding-left: 50px;
    padding-right: 50px;
}
.blog-card-featured:has(.blog-btn:hover) {
    border: 1px solid #83a790;
}
.blog-card-featured:has(.blog-btn-home:hover) {
    border: 1px solid #83a790;
}
.blog-card-featured:hover {
    border: 1px solid #83a790;
    
}

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

.img-wrapper img {
    width: 100%;
    display: block;
    transition: all 0.4s ease;
}

/* overlay */
.img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #36b8644d;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* 🔥 HOVER EFFECT */
.blog-card-featured:hover .img-wrapper img {
    transform: scale(1.05);
}

.blog-card-featured:hover .img-wrapper::after {
    opacity: 1;
}
.btn-read-more {
    display: inline-block;
    padding: 20px 40px;
    background: var(--green);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    text-decoration: none;
    border: none;
}
.btn-read-more:hover {
    color: #fff;
}

/* Card footer (tags + date + category) */
.blog-card-footer {
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 32px;
}
.tag-pill {
    padding: 7px 20px;
    border-radius: 15px;
    border: 1px solid var(--dark);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.blog-card-date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}
.blog-card-date {
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 33px;
}
.blog-card-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.blog-card-category .tag-icon {
    width: 12px;
    height: 10px;
    border: 2px solid #000;
}
.blog-card-category span {
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 33px;
}

/* ── PAGINATION ── */
.pagination-numbered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px 0 96px;
}
.page-btn {
    width: 56px;
    height: 56px;
    padding: 16px;
    border-radius: 9.5px;
    border: 1px solid var(--green);
    box-shadow: 0 0 1px rgba(54, 184, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--green);
    font-size: 32px;
    font-weight: 600;
    line-height: 38.4px;
    text-decoration: none;
    cursor: pointer;
}
.page-btn.active {
    background: var(--green);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}
.page-btn:hover {
    color: var(--green);
    text-decoration: none;
}
.page-btn.active:hover {
    color: #fff;
}
.max-height-990 {
    max-height: 800px;
}
.blog-btn {
    width: 100%;
  border:none !important;
  box-shadow: none !important;
  /* border-radius: 0px ; */
  text-decoration: underline;
  color: var(--muted);
}
/* ── HERO (Blog Detail) ── */
.hero-blog {
    position: relative;
    overflow: hidden;
}
.hero-blog .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.hero-blog-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.back-to-blog {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
}
.back-to-blog:hover {
    color: #fff;
    opacity: 0.85;
}
.back-to-blog svg {
    fill: #fff;
}
.hero-blog-date {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
}
.hero-blog-title {
    color: #fff;
    font-size: 59px;
    font-weight: 700;
    line-height: 68.8px;
    margin-bottom: 16px;
}
.hero-blog-tag {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 33px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-blog-tag svg {
    fill: #fff;
}
.hero-blog-social {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}
.hero-blog-social img {
    height: 40px;
    border-right: 2px solid white;
    padding-right: 20px;
}
.social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
}
.social-icons a {
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* ── ARTICLE BODY ── */
.article-heading {
    color: var(--dark);
    font-size: 38px;
    font-weight: 600;
    line-height: 45px;
    margin-bottom: 24px;
}
.article-text {
    color: var(--muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
}
.article-text a {
    color: var(--muted);
    text-decoration: underline;
}

/* ── SIDEBAR CTA ── */
.sidebar-cta {
    background: #f6fbf8;
    border-radius: 12px;
    border: 2px solid #fff;
    padding: 36px 40px;
}
.sidebar-cta-title {
    color: var(--dark);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 9px;
}
.sidebar-cta-text {
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 20.4px;
    margin-bottom: 32px;
}
.btn-cta {
    font-size: 14.56px;
}

/* ── CTA BANNER ── */
.cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}
.cta-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(70%) saturate(80.3%);
}
.cta-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    text-align: center;
    padding: 0 20px;
}
.cta-banner-title {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
.cta-banner-subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 34px;
}
.btn-contact {
    background: #36b864;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 14px 25px;
    border-radius: 13px;
    border: none;
    box-shadow: 0 3.6px 3.6px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    line-height: 21.6px;
}
.btn-contact:hover {
    color: #fff;
}

/* ── RELATED ARTICLES ── */
.related-section {
    padding: 80px 120px;
}
.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}
.related-title {
    color: var(--green);
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 40px;
}
.btn-see-all {
    background: #36b864;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}
.btn-see-all:hover {
    color: #fff;
}

/* Blog card */
.blog-card {
    text-align: center;
}
.blog-card-height {
    min-height: 750px;
}
.blog-card-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.blog-card-body {
    padding: 36px 0 0;
}
.blog-card-meta {
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}
.blog-card-title {
    color: var(--dark);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    max-width: 318px;
    margin: 0 auto 16px;
}
.blog-card-excerpt {
    color: var(--muted);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    max-width: 320px;
    margin: 0 auto;
}
.blog-card-divider {
    width: 320px;
    height: 0;
    border: none;
    border-top: 1px solid #d8d8d8;
    margin: 24px auto;
}
.blog-card-date {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 33px;
}
.swiper-pagination-bullet {
    width: 17px;
    height: 17px;
    background: rgba(54, 184, 100, 0.2);
    border-radius: 9999px;
   
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 49px;
    height: 17px;
    background: var(--green);
    border-radius: 8px;
    transition: 0.5s ease-in-out;
}
/* Pagination dots */
.pagination-single-bloge-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}
.swiper-wrapper{
    height: 800px;
}
.swiper{
    padding-bottom: 40px;
}
.sidebar-cta {
    position: -webkit-sticky;
    position: sticky;
    top: 103px; /* المسافة من أعلى الصفحة قبل أن يلتصق */
    background-image: url('../images/Benefit.svg');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
}

/* ── INQUIRY SECTION ── */
.inquiry-heading {
    background: linear-gradient(90deg, #556b2f, #2ecc71); /* زيتي → أخضر */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--green);
    font-size: 56px;
    font-weight: 600;
    line-height: 1.15;
}
.inquiry-text {
    color: var(--muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.89px;
}

/* ── CONTACT FORM CARD ── */
.contact-form-card {
    background: #fff;
    box-shadow:
        0 0 3.9px rgba(54, 184, 100, 0.2),
        0 0 3.9px rgba(17, 29, 21, 0.16);
    border-radius: 11px;
    border-right: 2px solid rgba(54, 184, 100, 0.8);
    border-bottom: 2px solid rgba(54, 184, 100, 0.8);
    padding: 54px;
}
.form-field {
    width: 100%;
    padding: 13px 22px;
    background: #f9f9f9;
    border-radius: 11px;
    border: 0.87px solid rgba(54, 184, 100, 0.4);
    color: var(--dark);
    font-size: 16px;
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 400;
    line-height: 28.25px;
}
.form-field::placeholder {
    color: var(--muted);
}
.form-field:focus {
    outline: none;
    box-shadow: 0px 0px 3.9094526767730713px rgba(54, 184, 100, 0.80);
    border: 0.87px #36B864 solid"
}
.form-field-active {
    background: #fff;
    box-shadow: 0 0 3.9px rgba(54, 184, 100, 0.8);
    border: 0.87px solid var(--green);
}
.form-field-divider {
    display: inline-block;
    width: 1px;
    height: 27px;
    background: var(--dark);
    margin-left: 10px;
}
.form-textarea {
    min-height: 152px;
    resize: vertical;
}
.btn-send-message {
    background: var(--green);
    color: #fff;
    font-size: 15.69px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 16px 31px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 3.14px 3.14px rgba(0, 0, 0, 0.25);
    line-height: 18.83px;
}
.btn-send-message:hover {
    background: #2fa057;
    color: #fff;
}

/* ── FIND US SECTION ── */
.findus-heading {
    color: var(--green);
    font-size: 40px;
    font-weight: 600;
}
.findus-text {
    color: var(--muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    
}

@media screen and (max-width: 1200px) {
    .last-card-about {
        top: 40px;
    }
    .imagesSec-2 {
        right: -6%;

    }
}

@media screen and (max-width: 990px) {
    .max-height-990 {
        padding-bottom: 15px;
        padding-top: 25px;
    }
    .imagesSec-2 {
        right: 20%;

    }
    section {
        padding: 20px 0;
    }
    .footer-logo {
        height: 40px !important;
    }
    .top-mobile {
        margin-top: 50px;
    }
    .principle-card-top {
        position: relative;
        top: 0px;
    }
    .principle-card-bottom {
        position: relative;
        bottom: 0px;
    }
    .vm-card p {
        text-align: center;
    }
    /* .bac > div{
        min-height: 850px !important;
    } */
    .height-mobile {
        min-height: 600px !important;
        margin-top: 50px;
    }
    .service-number {
        left: -30% !important;
    }
    .mobile-dis-img {
        display: flex !important;
        justify-content: end;
    }
}
@media screen and (max-width: 768px) {
    .imagesSec-1 {
        left: 10%;
    }
    .imagesSec-2 {
        right: 0%;
    }
    .footer-logo {
        height: 50px !important;
    }
    .timeline-step .step-label {
        font-size: 20px;
    }
    .timeline-row {
        padding: 0px;
    }
    .principle-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .map-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        line-height: 0;
        overflow: visible;
    }
    .testi-img {
        width: auto !important;
        height: 300px !important;
    }
    .bac > div {
        min-height: auto !important;
    }
    .mobile-dis-img {
        display: flex !important;
        justify-content: end;
    }
    .service-sidebar {
        gap: 60px;
    }

    .service-number {
        left: -20% !important;
        font-size: 150px;
        bottom: -10%;
    }
    .service-number2 {
        font-size: 150px;
        top: 0% !important;
    }
    .hero-blog-title {
        font-size: 34px;
    line-height: 40.8px;

    }
    .popup ul {
        font-size: 14px;
    }
    .vm-card {
        min-height: max-content;
    }
    .search-bar{
        width: 100%;
        justify-content: space-between;
    }
}
@media screen and (max-width: 600px) {
 
    .blog-card-featured .blog-card-body {
        padding-left: 10px;
        padding-right: 10px;
    }
    .blog-card-footer {
        padding-left: 10px;
        padding-right: 10px;
    }
    .search-bar input {
        width: 200px;
    }
    .about-hero-title {
        font-size: 40px;
    }
    .service-sidebar2-m {
        width: 80%;
        gap: 9%;
    }
    .mobile-img {
        width: 70% !important;
    }
    .r-160px {
        right: -135px;
    }
    .service-number {
        bottom: -20% !important;
        font-size: 150px;
    }
    .service-number2 {
        font-size: 150px;
        top: -10% !important;
    }
    .mobile-dis-img {
        overflow: hidden;
        padding-bottom: 30px;
    }
    .bac {
        padding-top: 0px !important;
    }
    .imagetwin {
        max-width: 300px !important;
        height: auto !important;
    }
    .service-list li {
        font-size: 20px !important;
        padding-left: 15px;
        padding-right: 10px;
    }
    .imagesSec-1 {
        max-width: 150px !important;
        left: 20%;
        height: auto !important;
    }
    .imagesSec-2 {
        max-width: 150px !important;
        right: 20%;
        height: auto !important;

    }
    .check-item {
        justify-content: center;
    }
    .footer-send-btn {
        width: 100%;
    }
    .container {
        --bs-gutter-x: 3.5rem;
    }
    .imagesSec-about-1 {
        left: 5%;
    }
    .timeline-row {
        flex-direction: column;
        gap: 40px;
        padding: 0;
        align-items: center;
    }
    .timeline-row {
        background-image:none;
    }
    .philosophy-accent {
        position: static;
        transform: none;
        margin-bottom: 30px;
    }
    .step-label > br {
        display: none;
    }
   
    .philosophy-bullets {
        text-align: center;
    }
 
    .popup-content {
        display: block;
    }
    .popup ul {
        width: 100%;
        font-size: 14px;
    }
    .intro-heading{
        font-size: 20px;
    }
    .filter-links{
        gap: 16px;
    }
    .filter-links a{
        font-size: 16px;
    }
}
@media screen and (max-width: 575px) {
    .left-sm-10{
        position: absolute;
        left: 10px;
    }
}
@media screen and (max-width: 500px) {
    .left-sm-10{
        position: absolute;
        left: 10px;
    }
    .inquiry-heading {
        font-size: 35px;
    }
    .hero-blog-title {
        font-size: 24px;
    }
    .hero-blog-social {
        display: block;
    }
    .social-icons {
        margin-top: 20px;
    }
    .hero-blog-social img {
        border: none;
    }
    .related-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .cta-banner-title {
        font-size: 34px;
    }
    .cta-banner-subtitle {
        font-size: 18px;
    }
    .contact-form-card {
        padding: 20px;
    }
    .blog-card > div > small{
        font-size: 14px;
    }
    .blog-card > div > h5{
        font-size: 18px;
    }
    .blog-card > div > p{
        font-size: 16px;
    }
    .blog-card > div > a{
        padding: 14px !important;
    }
    .service-list li{
        font-size: 16px !important;
    }
}

@media screen and (max-width: 450px) {
    .imagesSec-2 {
        right: 5%;
    }
    .section-heading {
        font-size: 25px;
    }
    .btn {
        font-size: 16px !important;
    }
    .sidebar-label2 {
        font-size: 12px;
    }
    .service-number2 {
        font-size: 100px;
        top: -15% !important;
    }
}

@media screen and (max-width: 400px) {
    .article-heading {
        font-size: 21px;
    }
    .cta-banner-title {
        font-size: 30px;
    }

    .service-number {
        bottom: -25% !important;
        font-size: 100px;
    }
    .service-number2 {
        font-size: 100px;
        top: -15% !important;
    }
    .service-sidebar {
        gap: 35px;
    }
    .sidebar-label {
        font-size: 12px;
    }
    .sidebar-label2 {
        font-size: 12px;
    }
    .imagesSec-1 {
        left: 10%;
    }
    .twinimage {
        display: flex;
        justify-content: center;
        text-align: center !important;
    }
    .header-logo {
        height: 40px !important;
    }
    .imagesSec-about-1 {
        max-width: 150px;
    }
    .header-logo {
        height: 30px !important;
    }
    .hero-blog-title {
        font-size: 21px;
    }
    .check-item span{
        font-size: 14px;
    }
    .myBlogSlider{
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 576px) {
    .service-list {
        list-style: none;
        padding: 0;
        margin: 0px 10px 32px 10px;
        position: relative;
    }
    .service-list li::before {
        position: absolute;
        left: 0px;
    }
    .related-header {
        display: flex;
        justify-content:center;
        align-items: center;
        margin-bottom: 80px;
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .last-card-about {
        top: 40px;
    }
    /* new */
    .vm-card {
        min-height: 710px;
    }
}

/* ── COOKIE CONSENT ── */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cookie-modal {
    background: #ffffff;
    width: 90%;
    max-width: 520px;
    border-radius: 16px;
    padding: 40px 36px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
    animation: cookieFadeIn 0.35s ease;
}

@keyframes cookieFadeIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 14px;
    display: block;
}

.cookie-modal h4 {
    color: var(--green);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 14px;
}

.cookie-text {
    color: #555;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.cookie-policy-link {
    color: var(--green);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: darkgreen;
}

.cookie-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 11px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--green);
    transition: all 0.25s ease;
    min-width: 140px;
}

.btn-cookie-accept {
    background: var(--green);
    color: #fff;
}

.btn-cookie-accept:hover {
    background: darkgreen;
    border-color: darkgreen;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--green);
}

.btn-cookie-reject:hover {
    background: var(--green);
    color: #fff;
}

.cookie-manage-text {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 13px;
    color: #888;
}

.cookie-fade-out {
    animation: cookieFadeOut 0.35s ease forwards;
}

@keyframes cookieFadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@media screen and (max-width: 576px) {
    .cookie-modal {
        padding: 30px 20px 24px;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
        min-width: unset;
    }
}
