: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: #36b864;
    --map-w: 598px;
    --map-h: 335px;
}
body {
    font-family: "Be Vietnam Pro", sans-serif;
    color: var(--dark);
    overflow-x: hidden !important;
}

section {
    padding: 75px 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;
    z-index: 2;
}

.hero::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    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;
}

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

.btn-outline-dark-custom1 {
    animation: pulse 2s infinite;
}

@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 {
    text-align: center;
}
.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;
}
.blog-card-featured {
    border: 1px solid var(--light-border);
    border-radius: 30px;
    overflow: hidden;
}

.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: 231px;
    bottom: 0;
    left: 20%;
    transform: translate(-10%, 10%);
}
.imagesSec-2 {
    max-width: 231px;
    bottom: 0;
    right: 20%;
    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;
    height: 735px;
    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 {
    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; }
    .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;
}

.section-heading {
    color: var(--green);
    font-size: 40px;
    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;
    text-align: justify;
}

.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;
}
.timeline-row::after {
    content: "";
    position: absolute;
    top: calc(122px + -10px);
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--dark);
    z-index: 0;
}
.timeline-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}
.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;
}

/* حاوية الخريطة - نظيفة بدون ظلال */
.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: 10;
    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;
}

@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);
}

/* البطاقة الزجاجية بوضوح عالٍ */
.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: 21.5%;
    left: 45.8%;
}
.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: 40.8%;
    left: 63.8%;
}
.accra {
    top: 51.5%;
    left: 46.8%;
}
.kuala-lumpur {
    top: 53.5%;
    left: 78.5%;
}

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

@media screen and (max-width: 990px) {
    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;
    }
}
@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;
    }
}
@media screen and (max-width: 600px) {
    .imagetwin {
        max-width: 300px !important;
    }
    .imagesSec-1 {
        max-width: 150px !important;
        left: 20%;
    }
    .imagesSec-2 {
        max-width: 150px !important;
        right: 20%;
    }
    .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::after {
        display: none;
    }
    .philosophy-accent {
        position: static;
        transform: none;
        margin-bottom: 30px;
    }
    .step-label > br {
        display: none;
    }
    .section-text {
        text-align: center !important;
    }
    .section-heading {
        text-align: center;
    }
    .philosophy-bullets {
        text-align: center;
    }
}
@media screen and (max-width: 450px) {
    .imagesSec-2 {
        right: 5%;
    }
}

@media screen and (max-width: 400px) {
    .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;
    }
}
@media screen and (max-width: 400px) {
    .header-logo {
        height: 30px !important;
    }
}
