@import url('https://fonts.cdnfonts.com/css/br-firma');
@import url(https://db.onlinewebfonts.com/c/cec88e5a4cf367c4620cd23c5a184439?family=PolySans+Median);
/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bilbo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

:root {

    --brandcolor-yellow: #fdc73e;
    --brandcolor-purple: #431972;
    --brandcolor-light-purple: #431972d8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
    color: white;

}

body {
    color: #000000;
    overflow-x: hidden;
    /* background-image: url('https://img.freepik.com/free-photo/funny-dark-skinned-female-feels-great-dances-rhythm-shakes-raised-hands-sings-along-with-music-wears-headphones_273609-25469.jpg?t=st=1735580999~exp=1735584599~hmac=69b0a68fc23d6cc3749f494a500843970af5f2b2cffac769f56211be35d94120&w=1480');
                background-position: center;
                background-size: cover;
                backdrop-filter: blur(15px);
                background-color: rgba(0, 0, 0, 0.305);
                background-blend-mode: overlay; */
    height: 100vh;
    width: 100%;
}

/* ==============NAVBAR===================== */

.navbar {
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;


}

.hamburger-lines {
    display: none;
    z-index: 9999;
}

.hamburger-lines .btn {
    display: grid;
    gap: .4rem;
    height: 10px;
    cursor: pointer;
}

.hamburger-lines .btn .line {
    display: block;
    background-color: #f3f3f3;
    height: 2px;
    transition: width 0.3s ease-in-out;
}

.hamburger-lines .btn .line.line1 {
    width: 35px;
}

.hamburger-lines .btn .line.line2 {
    width: 20px;
    transform-origin: left;
    margin-left: auto;
}

.hamburger-lines .btn:hover .line {
    width: 35px;
}



.nav-links {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: white;
    font-weight: 400;
    font-size: .9rem;
    font-family: PolySans Median;
}

.nav-links a:hover {
    color: #666;
}


/* ========X======NAVBAR============X========= */


/* ================================HERO SECTION=================================== */
.hero {
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
    position: relative;
    width: 100%;
    animation: backgroundFade 30s infinite ease-in-out;
    background-image: url(./Assests/pexels-lara-jameson-9363215.jpg);
}

@keyframes backgroundFade {


    10% {
        background-image: url(./Assests/pexels-lara-jameson-9363215.jpg);

    }

    50% {
        background-image: url(./Assests/freepik__adjust__88856.png);

    }


    100% {
        background-image: url(./Assests/side-view-woman-posing-with-confetti_23-2149445866.jpg);

    }
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.556);
    /* Adds a subtle dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Ensures content appears above the background */
    padding: 7rem 3rem 2rem;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
}

.hero-text {
    grid-column: 2 / span 10;
    grid-row: 1;
    text-align: center;
    align-self: center;
    z-index: 1;
}



.creative-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #ffffff;
    border-radius: 100px;
    margin-bottom: 1rem;
    letter-spacing: .4rem;
    font-family: PolySans Median;
    font-size: .8rem;
}

.hero-heading {
    font-size: 5rem;
    /* Increased from 5rem */
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -.3rem;
    margin: 0 6rem;

}

.hero-text p {
    margin: 0rem 15rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-weight: 300;
}

.hero-heading .serif {
    font-family: 'Times New Roman', serif;
}

/* .sponsors-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

.sponsors {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 120px;
    height: auto;
}

.sponsor-logo img {
    max-height: 40px;
    object-fit: contain;
}

.sponsors-title {
    margin-right: 20px;
    font-size: 14px;
    color: #333;
    font-weight: bold;
}
.line {
    flex-grow: 1;
    height: 1px;
    background-color: #ddd;
} */

button {
    padding: 1rem 3rem;
    background-color: #4d208c;
    border: none;
    border-radius: 1rem;
    border-bottom: 5px solid #6831b4;
    font-size: 1rem;
    font-weight: 500;
    transition: .3s all ease-in-out;
    cursor: pointer;
}


.social-icons {
    position: absolute;
    display: grid;
    gap: 2rem;
    cursor: pointer;
    top: 52%;
    margin-left: 1rem;
}


.branding-serivces {
    display: flex;
    justify-content: end;
}

/* ============x====================HERO SECTION========================x=========== */

.about-section {
    padding: 1rem 1rem;
    background-color: rgb(255, 255, 255);
}

.about-header {
    margin: 0rem 3rem;
    padding: 1.5rem 0;

}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #000000;
    border-radius: 100px;
    margin-bottom: 1rem;
    letter-spacing: .5rem;
    font-family: PolySans Median;
    color: black;
    font-size: .6rem;
}

.about-header-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brandcolor-purple);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.subtitle {
    font-size: .8rem;
    color: #666666e7;
    width: 27%;
}

.content-grid {
    margin: 0rem 3rem;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
        "dark light"
        "dark pink"
        "team team";
    gap: 1.25rem;
}

.feature-card {
    padding: 2rem 1rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
}

.feature-card.dark {
    background-color: rgba(0, 0, 0, 0.811);
    color: white;
    grid-area: dark;
    /* background-image: url(https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2); */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    /* font-family: PolySans Median; */
    transition: .3s all ease-in-out;
}

.feature-card.dark a {
    padding: 0;
}

.feature-card.light {
    background-color: #7700ff12;


}

.feature-card.pink {
    background-color: rgba(255, 230, 8, 0.086);


}

.feature-card.pink p,
.feature-card.light p,
.team-card p {
    color: rgba(0, 0, 0, 0.704);
    font-size: .9rem;

}

.label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

h2 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: PolySans Median;
}

.cta-button {
    display: inline-block;
    border: none;
    border-radius: 1rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: auto;
    width: fit-content;
    color: white;
}

.link {
    color: rgba(0, 0, 0, 0.891);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;

}



.team-images {
    display: flex;
    margin-right: 1.5rem;
    margin-top: 1rem;
    gap: .5rem;
}

.team-images img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* @media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "dark"
            "light"
            "pink"
            "team";
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
} */

/* ====================================================================== */
/* .horizontal-section {
    background-color: black;
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-x: hidden;
    display: flex;
    align-items: center;
}

.cards-container {
    display: flex;
    position: absolute;
    gap: 1rem;
    margin-top: 3rem;
}

.card-services {
    margin-left: 4%;
    display: flex;
    flex-direction: column;
    gap: 2rem;

}

.card-services p {
    font-size: .9rem;
    font-weight: 300;

}

.card-services h1 {
    font-size: 3rem;
    font-family: PolySans Median;
}

.card-services h3 {
    font-size: 1rem;
    font-weight: 100;
    width: 70%;
}

.card {
    overflow: hidden;
    flex-shrink: 0;
    width: 50%;
}

.card img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

.card-content {
    margin-top: 1rem;


}

.card-tag {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
} */
.horizontal-section {
    background-color: black;
    position: relative;
    padding-top: 4rem;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cards-container {
    display: flex;
    gap: 2rem;
    padding: 0 4.5rem;
    position: relative;
}

.card {
    min-width: 400px;
    flex-shrink: 0;
    color: white;
}

.card-services {
    max-width: 900px;
}

.card-services h1 {
    font-size: 3rem;
    margin: 1rem 0;
    font-family: PolySans Median;
}

.card-services h3 {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
    font-size: 1rem;
    width: 80%;
}

.pix-ser {
    width: 300px;
}

.pix-ser img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.card-content {
    margin-top: 1rem;
}

.card-content h2 {
    margin-top: .7rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.904);
}

.spacer {
    height: calc(100vh + (250px * 4) + (3rem * 3));
}



.final-section h2 {
    font-size: 3rem;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.final-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: #888;
}

.supported-section {
    background-color: white;
    padding: 1rem 0;
}

.section-title {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin: 2rem 0;
}

.logo-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.logo-item {
    width: 90px;
    filter: grayscale(100%) brightness(0);
    opacity: .7;
    transition: opacity 0.2s;
}

.logo-item:hover {
    opacity: 1;
    filter: none;
}

.logo-item img {
    width: 100%;
    height: auto;
}

/* /-======================WHY CHOOSE US========================= */
.why_choose_us {
    padding: 1rem;


    background-color: black;

}

.stacking-container {
    max-width: 1280px;
    margin: 0 3rem;
    padding: 4rem 0rem;
}

.stacking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .stacking-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.stacking-left-column {
    position: sticky;
    top: 6rem;
    height: fit-content;

}

.stacking-subtitle {
    color: #fdc73e;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    font-family: Poppins;
}

.stacking-title {
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: PolySans Median;
}

.stacking-description {
    color: #ffffff8e;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.stacking-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
}

.stacking-card {
    position: sticky;
    background: white;
    border: 2px solid black;
    padding: 1.5rem;
    margin: 0 3rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.stacking-card:nth-child(1) {
    top: 6rem;
}

.stacking-card:nth-child(2) {
    top: 12rem;
}

.stacking-card:nth-child(3) {
    top: 18rem;
}

.stacking-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.stacking-icon-container {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}



.stacking-icon {
    width: 1.5rem;
    height: 1.5rem;
}


.stacking-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: black;
    font-family: PolySans Median;
}

.stacking-card-description {
    color: #00000084;
    line-height: 1.5;
    font-family: Poppins;
}

/* Custom scrollbar styles */
/* ::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
} */

/* /-=============================================== */
/* /-====================TESTIMONIALS=========================== */
.testimonials-section {
    padding: 1rem;
    background-color: black;
}

.testimonials-section .tes-sec-container {
    margin: 2rem 3rem;

}

.testimonials-section .tes-sec-container p {
    color: #fdc73e;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.people-thoughts {
    display: grid;

    justify-items: center;
    align-items: center;
    text-align: center;
    margin: 0 9rem;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    height: 200px;
}


.people-thoughts.fade-in {
    opacity: 1;
}

.people-thoughts.fade-out {
    opacity: 0;
}


.people-thoughts h1 {
    font-family: Shadows Into Light;
    font-weight: 400;
    font-size: 1.7rem;
}

.people-thoughts h2 {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.ts-img {
    width: 50px;
    height: 50px;

}

.blog {
    padding: 4rem;
    background-color: white;
    /* display: flex; */
    color: black;

    gap: 0rem;
    align-items: center;
    justify-content: center;
}

.blog p {
    color: #431972;
    font-weight: 500;
}

.blog h1 {
    color: black;
    text-align: center;
    font-family: PolySans Median;
    font-size: 2.5rem;
    margin-bottom: 3rem;

}

/* .card-blog img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}
*/
.image-container {
    position: relative;

    overflow: hidden;
}

.cardblog img {
    height: 250px;
    position: relative;
    display: block;
    transition: .5s all ease-in-out;
}

/* .cardblog img:hover {

    transform: scale(1.1);
} */

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.1s ease-in-out;

    cursor: pointer;
    /* Prevent interaction */
    backdrop-filter: blur(15px);
}

.textt {

    color: #fff;
    font-size: .6rem;
    font-weight: bolder;
    opacity: 0;
    transition: opacity 0.1s all ease-in-out;
    font-family: Poppins;

}

.image-container:hover .circle {
    width: 120px;
    /* Adjust circle size */
    height: 120px;
    /* Adjust circle size */
    opacity: 1;
}

.image-container:hover .text {
    opacity: 1;
}


.blog-articles {
    display: flex;
    justify-content: space-evenly;


}

.news1207 {
    background-color: rgb(255, 255, 255);
}

.news1207-container {
    padding: 3rem 4rem;
    margin: 0 6rem;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    position: relative;
}

.news1207-content {
    flex: 1;
}

.news1207-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: PolySans Median;
    color: black;
}

.news1207-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.619);
    margin-bottom: 1rem;
}


.news1207-content button {
    padding: 1rem 4rem;
    border: none;
    border-radius: 2rem;
    background: #000;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s;
}

.news1207-content button:hover {
    transform: translateX(5px);
}

.news1207-cards-container {
    flex: 1;
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.news1207-card {
    margin-left: 5rem;
    position: absolute;
    width: 100%;
    max-width: 340px;
    background: #fff;
    border-radius: 1rem;
    padding: .7rem;
    color: #000;
    transform-origin: center left;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-100%) rotate(0deg);
}

.news1207-card.news1207-active {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

.news1207-card:nth-child(1).news1207-active {

    /*
* Created with https://www.css-gradient.com
* Gradient link: https://www.css-gradient.com/?c1=e2ca63&c2=f4e69f&gt=l&gd=dtl
*/
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.263);
}

.news1207-card:nth-child(2).news1207-active {

    /*
* Created with https://www.css-gradient.com
* Gradient link: https://www.css-gradient.com/?c1=e2ca63&c2=f4e69f&gt=l&gd=dtl
*/
    background: #E2CA63;
    background: linear-gradient(135deg, #E2CA63, #fadc4a);
    transform: translateX(-25px) translateY(20px) rotate(-5deg);
    opacity: 1;
}

.news1207-card:nth-child(3).news1207-active {

    /*
* Created with https://www.css-gradient.com
* Gradient link: https://www.css-gradient.com/?c1=4716c5&c2=5e17ce&gt=l&gd=dtl
*/
    background: #e9e9e9;
    background: linear-gradient(135deg, #5322cd, #9659f9);
    transform: translateX(-50px) translateY(40px) rotate(-10deg);
    opacity: 1;
}

.news1207-card-image {
    width: 100%;
    height: 200px;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.news1207-card:nth-child(1) .news1207-card-image {
    background-image: url(https://www.bellanaija.com/wp-content/uploads/2025/01/363883047_2229947500546541_2836090930332657560_n-e1737549328200-1000x600.jpg);
    background-position: center;
    background-size: cover;
}

.news1207-card:nth-child(2) .news1207-card-image {
    background-image: url(https://www.bellanaija.com/wp-content/uploads/2025/01/474552956_18487027981008743_755969035259008296_n-e1737560243155-400x240.jpg);
    background-position: center;
    background-size: cover;
}

.news1207-card:nth-child(3) .news1207-card-image {
    background-image: url(https://www.bellanaija.com/wp-content/uploads/2025/01/IMG_0804-1000x600.png);
    background-position: center;
    background-size: cover;
}



.news1207-card h2 {
    font-size: 1.2rem;
    margin-bottom: .8rem;
    line-height: 1.4;
    color: black;
}

.news1207-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #000000;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.news1207-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(0, 0, 0, 0.835);
}

.news1207-card button {
    border: none;
    background: #000;
    font-size: 0.6rem;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .news1207-container {
        flex-direction: column;
        gap: 2rem;
    }

    .news1207-content h1 {
        font-size: 2.5rem;
    }

    .news1207-cards-container {
        width: 100%;
        height: auto;
        margin-top: 2rem;
    }

    .news1207-card {
        position: relative;
        transform: none !important;
        opacity: 1 !important;
        margin-bottom: 1rem;
    }

    .news1207-card.news1207-active {
        transform: none !important;
    }
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

footer {
    background-image: url(https://images.pexels.com/photos/9785590/pexels-photo-9785590.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);

    background-blend-mode: overlay;
    background-size: cover;

    color: #ffffffe8;
}

footer .mnm-footer-content {
    padding: 4rem;
    backdrop-filter: blur(10px);
    background-color: #00000087;
    backdrop-filter: blur(13px);
    color: #000000;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;

}

.mnm-footer-section {
    display: flex;
    flex-direction: column;


}

.mnm-logo {
    width: 60px;
    height: auto;
}

.mnm-description {
    font-size: .9rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #ffffffe8;
    max-width: 420px;
    margin-bottom: 1rem;
}

.footer-social-icons i {
    border-radius: 50%;
    padding: .7rem;
    background-color: #ffffffe8;
    color: black;
    margin-right: 1rem;
    font-size: 1rem;
}



.mnm-footer-section h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: PolySans Median;
    color: #ffffffe8;
}

.mnm-footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mnm-footer-section ul li {
    margin-bottom: 10px;
    font-size: .9rem;
}

.mnm-footer-section ul li:last-child {
    margin-bottom: 0;
}

.mnm-footer-section a {
    font-size: .9rem;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.mnm-footer-section ul li a:hover {
    opacity: .6;
}

@media (max-width: 700px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger-lines {
        display: flex;
        align-items: center;
        z-index: 9;
    }

                                                                                                                                                                                                                                                                .nav-links {
                                                                                                                                                                                                                                                                    position: fixed;
                                                                                                                                                                                                                                                                    top: 0;
                                                                                                                                                                                                                                                                    left: -100%;
                                                                                                                                                                                                                                                                    width: 80%;
                                                                                                                                                                                                                                                                    max-width: 300px;
                                                                                                                                                                                                                                                                    height: 100vh;
                                                                                                                                                                                                                                                                    background: linear-gradient(135deg, #141E30, #243B55);
                                                                                                                                                                                                                                                                    padding-top: 4rem;
                                                                                                                                                                                                                                                                    padding-left: 2rem;
                                                                                                                                                                                                                                                                    text-align: left;
                                                                                                                                                                                                                                                                    transition: left 0.5s ease-in-out, opacity 0.5s ease-in-out;
                                                                                                                                                                                                                                                                    z-index: 5;
                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                    flex-direction: column;
                                                                                                                                                                                                                                                                    gap: 1.5rem;
                                                                                                                                                                                                                                                                    align-items: flex-start;
                                                                                                                                                                                                                                                                    opacity: 0;
                                                                                                                                                                                                                                                                    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
                                                                                                                                                                                                                                                                }
                                                                                                                                
                                                                                                                                                                                                                                                                .nav-links.active {
                                                                                                                                                                                                                                                                    left: 0;
                                                                                                                                                                                                                                                                    opacity: 1;
                                                                                                                                                                                                                                                                }
                                                                                                                                
                                                                                                                                                                                                                                                                .nav-links a {
                                                                                                                                                                                                                                                                    color: #fff;
                                                                                                                                                                                                                                                                    font-size: 1.2rem;
                                                                                                                                                                                                                                                                    font-weight: 500;
                                                                                                                                                                                                                                                                    text-decoration: none;
                                                                                                                                                                                                                                                                    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
                                                                                                                                                                                                                                                                    position: relative;
                                                                                                                                                                                                                                                                }
                                                                                                                                
                                                                                                                                                                                                                                                                .nav-links a:hover {
                                                                                                                                                                                                                                                                    color: #00c3ff;
                                                                                                                                                                                                                                                                    transform: translateX(5px);
                                                                                                                                                                                                                                                                }
                                                                                                                                
                                                                                                                                                                                                                                                                .nav-links a::after {
                                                                                                                                                                                                                                                                    content: "";
                                                                                                                                                                                                                                                                    width: 0;
                                                                                                                                                                                                                                                                    height: 2px;
                                                                                                                                                                                                                                                                    background: #00c3ff;
                                                                                                                                                                                                                                                                    position: absolute;
                                                                                                                                                                                                                                                                    left: 0;
                                                                                                                                                                                                                                                                    bottom: -5px;
                                                                                                                                                                                                                                                                    transition: width 0.3s ease-in-out;
                                                                                                                                                                                                                                                                }
                                                                                                                                
                                                                                                                                                                                                                                                                .nav-links a:hover::after {
                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                }



    .hero {

        background-position: center;
        background-size: cover;
        background-blend-mode: overlay;
        position: relative;
    }

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.081);
        /* Adds a subtle dark overlay */
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        /* Ensures content appears above the background */
        padding: 6rem 4.5rem 3rem;
        background-color: rgba(0, 0, 0, 0.48);
        color: white;
    }


    .hero-text {
        grid-column: 2 / span 10;
        grid-row: 1;
        text-align: center;
        align-self: center;
        z-index: 1;
    }



    .creative-tag {
        letter-spacing: .3rem;
        font-size: .4rem;
    }

    .hero-heading {
        font-size: 1.8rem;
        letter-spacing: -.1rem;
        margin: 0rem;

    }

    .hero-text p {
        margin: 0rem 1rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
        font-size: .6rem;
    }

    .hero-heading .serif {
        font-family: 'Times New Roman', serif;
    }



    button {
        padding: .5rem 2rem;

        border-radius: .6rem;
        border-bottom: 3px solid #6831b4;

        font-size: .6rem;
    }



    .social-icons {
        display: none;
    }


    .branding-serivces {
        font-weight: 100;
        padding-top: 2rem;
        font-size: .7rem;
        display: flex;
        justify-content: center;
    }

    .about-section {
        display: grid;
        justify-content: center;
        padding: 2rem 0rem;
        background-color: rgb(255, 255, 255);
    }

    .about-header {
        margin: 0rem 3rem;
        padding: 0;

    }

    .badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        border: 1px solid #000000;
        border-radius: 100px;
        margin-bottom: 1rem;
        letter-spacing: .5rem;
        font-family: PolySans Median;
        color: black;
        font-size: .6rem;
    }

    .about-header-text {
        display: block;
    }

    .about-header h1 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brandcolor-purple);
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }

    .subtitle {
        font-size: .8rem;
        width: auto;
        color: #666666e7;
    }

    .content-grid {
        margin: 0rem 3rem;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "dark light"
            "dark pink"
            "team team";
        gap: 1.25rem;
    }

    .feature-card {
        padding: 2rem 1rem;
        border-radius: 0.75rem;
        display: flex;
        flex-direction: column;
    }

    .feature-card.dark {
        background-color: rgba(0, 0, 0, 0.811);
        color: white;
        grid-area: dark;
        /* background-image: url(https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2); */
        background-size: cover;
        background-position: center;
        background-blend-mode: overlay;
        /* font-family: PolySans Median; */
        transition: .3s all ease-in-out;
    }

    .feature-card.dark a {
        padding: 0;
    }

    .feature-card.light {
        background-color: #7700ff12;


    }

    .feature-card.pink {
        background-color: rgba(255, 230, 8, 0.086);


    }

    .feature-card.pink p,
    .feature-card.light p,
    .team-card p {
        color: rgba(0, 0, 0, 0.704);
        font-size: .9rem;

    }

    .label {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    h2 {
        font-size: 2.1rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        font-family: PolySans Median;
    }

    .cta-button {
        display: inline-block;
        border: none;
        border-radius: 1rem;
        padding: 1rem 2rem;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        margin-top: auto;
        width: fit-content;
        color: white;
    }

    .link {
        color: rgba(0, 0, 0, 0.891);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        margin-top: 1rem;
        display: inline-flex;
        align-items: center;

    }



    .team-images {
        display: flex;
        flex-wrap: wrap;
        margin-right: 1.5rem;
        margin-top: 1rem;
        gap: .5rem;
    }


    .team-images img {
        width: 40px;
        height: 40px;
    }


    .content-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "dark"
            "light"
            "pink"
            "team";
    }

    h1 {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .horizontal-section {
        max-width: 100%;
        background-color: black;
        position: static;
        padding: 2rem 2.6rem;
        height: auto;
    }

    .sticky-wrapper {
        position: static;
        top: 0;
        height: auto;
        overflow-x: hidden;
        display: block;
        align-items: center;
    }

    .cards-container {
        display: block;
        gap: 1rem;
        padding: 0 1rem;
        position: relative;
    }

    .card {
        width: 100%;
        min-width: unset;
        color: white;
    }

    .card-services {
        max-width: 100%;
    }

    .card-services h1 {
        font-size: 1.5rem;
        margin: 1.5rem 0rem 1rem;
        font-family: 'PolySans Median', sans-serif;
    }

    .card-services p {
        color: #fdc73e;
        font-size: 0.8rem;
        margin-bottom: 2rem;
        font-family: Poppins;
    }

    .card-services h3 {

        color: #ffffffb6;
        font-size: .8rem;
        margin-bottom: 2rem;
        width: auto;
        text-align: justify;
        word-spacing: -0.9px;
    }

    .pix-ser {
        width: 100%;
    }

    .pix-ser img {
        max-width: 100%;
        height: 230px;
        object-fit: cover;
        border-radius: 8px;
    }

    .card-content {
        margin-top: 1rem;
    }

    .card-content h2 {
        margin-top: 0.5rem;
        margin-bottom: 2rem;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.904);
    }

    .card-content .card-tag {
        opacity: 0.7;
        font-size: 0.9rem;
    }

    .spacer {
        height: 0;
    }

    .supported-section {
        background-color: white;
        padding: .5rem 0;
    }

    .section-title {
        text-align: center;
        font-size: 1rem;
        color: #666;
        margin: 2rem 0;
    }

    .logo-carousel {
        display: flex;
        overflow: hidden;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        width: 100%;
        margin: 2rem auto;
        white-space: nowrap;
    }

    .logo-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        margin: 0;
        padding: 0;
        animation: scroll 15s linear infinite;
    }

    .logo-item {
        width: 70px;
        flex-shrink: 0;
        filter: grayscale(100%) brightness(0);
        opacity: 0.7;
        transition: opacity 0.2s;
        margin: 0 2rem;
    }

    .logo-item:hover {
        opacity: 1;
        filter: none;
    }

    .logo-item img {
        width: 100%;
        height: auto;
    }

    /* Carousel Scroll Animation */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-90px * 7));
            /* Adjust based on the total number of logos */
        }
    }

    .why_choose_us {
        padding: 1rem 2.6rem;
    }

    .stacking-subtitle {
        color: #fdc73e;
        font-size: 0.8rem;
        margin-bottom: 2rem;
        font-family: Poppins;
    }

    .stacking-title {
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 2rem;
        font-family: PolySans Median;
    }



    .stacking-container {
        margin: 0 1rem;
        padding: 2rem 0;
    }

    .stacking-grid {
        display: block;
    }

    .stacking-left-column {
        position: static;
        top: 6rem;
        height: fit-content;

    }

    .stacking-card {
        padding: 1rem;
        margin: 0;
    }

    .stacking-card:nth-child(1) {
        top: 2rem;
    }

    .stacking-card:nth-child(2) {
        top: 8rem;
    }

    .stacking-card:nth-child(3) {
        top: 10rem;
    }

    .stacking-icon-container {
        width: 2.5rem;
        height: 2.5rem;
    }

    .stacking-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    .stacking-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .stacking-left-column {
        top: 6rem;

    }


    .stacking-description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }


    .stacking-card-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .stacking-card-description {
        font-size: 0.9rem;
    }

    .testimonials-section {
        padding: 1rem 2.6rem;
    }

    .testimonials-section .tes-sec-container {
        margin: 1rem;
    }

    .testimonials-section .tes-sec-container p {
        font-size: 0.875rem;
    }

    .people-thoughts {
        margin: 0 1rem;
        height: auto;
    }

    .people-thoughts h1 {
        font-size: 1.2rem;
        word-spacing: -.9px;
        text-align: justify;
    }

    .ts-img {
        width: 50px;
        height: 50px;

    }

    .people-thoughts h2 {
        font-size: .875rem;
        margin-top: 0.75rem;
    }

    .blog {
        padding: 1rem;
        background-color: white;
        color: black;
    }

    .blog h1 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .blog-articles {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cardblog {
        background: white;
        border: 1px solid #ddd;
        border-radius: 0.5rem;
        overflow: hidden;
        text-align: center;
    }

    .image-container {
        position: relative;
        overflow: hidden;
    }

    .cardblog img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .circle {
        width: 80px;
        height: 80px;
    }



    /* .card-content {
    padding: 1rem;
  } */

    /* .card-content span {
    display: inline-block;
    background-color: #fdc73e;
    color: black;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  } */

    /* .card-content h2 {
    font-size: 1.2rem;
    color: black;
  } */
    .news1207 {
        background-color: white;
        padding: 1rem;
    }

    .news1207-container {
        flex-direction: column;
        padding: 1rem;
        margin: 0;
    }

    .news1207-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .news1207-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .news1207-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        color: rgba(0, 0, 0, 0.7);
        margin-bottom: 1rem;
    }

    .news1207-content button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        border-radius: 1.5rem;
    }

    .news1207-cards-container {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news1207-card {
        margin: 0;
        position: relative;
        width: 100%;
        max-width: 100%;
        background: white;
        border-radius: 0.5rem;
        padding: 1rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.263);
        transform: none;
        opacity: 1;
    }

    .news1207-card-image {
        width: 100%;
        height: 180px;
        border-radius: 0.5rem;
        background-position: center;
        background-size: cover;
        margin-bottom: 1rem;
    }

    .news1207-card.news1207-active {
        opacity: 1;
        transform: none;
    }

    .news1207-card:nth-child(1).news1207-active {
        background: rgb(255, 255, 255);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
    }

    .news1207-card:nth-child(2).news1207-active {
        background: rgb(255, 255, 255);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.263);
    }

    .news1207-card:nth-child(3).news1207-active {
        background: rgb(255, 255, 255);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.263);
    }


    .news1207-card h2 {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    .news1207-meta {
        font-size: 0.8rem;
    }

    .news1207-card button {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    footer {
        background-image: url(https://images.pexels.com/photos/9785590/pexels-photo-9785590.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
        background-blend-mode: overlay;
        background-size: cover;
        color: #ffffffe8;
    }

    footer .mnm-footer-content {
        padding: 2rem;
        backdrop-filter: blur(10px);
        background-color: #00000087;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .mnm-footer-section {
        width: 100%;
    }

    .mnm-logo {
        width: 50px;
        height: auto;
        margin-bottom: 1rem;
    }

    .mnm-description {
        font-size: 0.9rem;
        line-height: 1.4;
        opacity: 0.9;
        color: #ffffffe8;
        max-width: 100%;
    }

    .footer-social-icons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .footer-social-icons i {
        border-radius: 50%;
        padding: 0.5rem;
        background-color: #ffffffe8;
        color: black;
        font-size: 1rem;
    }

    .mnm-footer-section h2 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #ffffffe8;
    }

    .mnm-footer-section ul {
        list-style: none;
        padding: 0;
    }

    .mnm-footer-section ul li {
        margin-bottom: 8px;
        font-size: 0.85rem;
    }

    .mnm-footer-section a {
        font-size: 0.85rem;
        text-decoration: none;
        opacity: 0.9;
    }

    .mnm-footer-section ul li a:hover {
        opacity: 0.6;
    }

}

@media (max-width: 440px) {
    .navbar {
        padding: 1rem .8rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger-lines {
        display: flex;
        align-items: center;
        z-index: 9;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        /* Start completely off the left edge */
        width: 100%;
        height: 100vh;
        padding-top: 2rem;
        text-align: center;
        background: #000000;
        transition: all 0.6s ease-in-out;
        z-index: 5;
        display: grid;
        gap: 0rem;
        margin: 0;
        align-items: center;
    }

    .nav-links.active {
        left: 0%;
        /* Slide in from the left */
    }

    .nav-links a {
        color: rgb(234, 234, 234);
        font-weight: 600;
        font-size: 2rem;
        font-family: Poppins;
        margin: 0;
        padding: 0;
    }





    .hero {

        background-position: center;
        background-size: cover;
        background-blend-mode: overlay;
        position: relative;
    }

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.081);
        /* Adds a subtle dark overlay */
        z-index: 1;
    }

    .hero-content {

        padding: 5rem 2rem 2rem;

    }




    .creative-tag {
        letter-spacing: .2rem;
        font-size: .4rem;
    }

    .hero-heading {
        font-size: 1.9rem;

    }

    .hero-text p {
        margin: 0rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
        font-size: .7rem;
    }


    .branding-serivces {
        font-size: .8rem;

    }

    .about-section {
        gap: 1rem;

        padding: 2rem 1.5rem;

    }

    .about-header {
        margin: 0rem;
        padding: 0;

    }


    .about-header-text {
        display: block;
    }

    .about-header h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: .8rem;
        width: auto;
        color: #666666e7;
    }

    .content-grid {
        margin: auto;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "dark light"
            "dark pink"
            "team team";
        gap: 1rem;
    }

    .feature-card {
        padding: 2rem 1rem;
        border-radius: 0.75rem;
        display: grid;
    }

    .feature-card.dark {
        background-color: rgba(0, 0, 0, 0.772);
        color: white;
        grid-area: dark;
        /* background-image: url(https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2); */
        background-size: cover;
        background-position: center;
        background-blend-mode: overlay;
        /* font-family: PolySans Median; */
        transition: .3s all ease-in-out;
    }

    .feature-card.dark a {
        padding: 0;
    }

    .feature-card.light {
        background-color: #7700ff1c;


    }

    .feature-card.pink {
        background-color: rgba(255, 230, 8, 0.159);


    }

    .feature-card.pink p,
    .feature-card.light p,
    .team-card p {
        color: rgba(0, 0, 0, 0.704);
        font-size: .9rem;

    }

    .label {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    h2 {
        font-size: 1rem;

    }

    .cta-button {
        font-size: .8rem;
    }

    .link {
        color: rgba(0, 0, 0, 0.891);
        text-decoration: none;
        font-weight: 600;
        font-size: .8rem;
        margin-top: 1rem;
        display: inline-flex;
        align-items: center;

    }



    .team-images {
        display: flex;
        flex-wrap: wrap;
        margin-right: 1rem;
        margin-top: 1rem;
        gap: .5rem;
    }


    .team-images img {
        width: 40px;
        height: 40px;
    }


    .content-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "dark"
            "light"
            "pink"
            "team";
    }

    h1 {
        font-size: 1rem;
    }

    h2 {
        font-size: 1rem;
    }

    .horizontal-section {
        padding: 2rem 1.7rem;

    }


    .cards-container {
        padding: 0rem;
    }



    .card-services h1 {
        font-size: 1.4rem;
        margin: 1.5rem 0rem;

    }

    .card-services p {
        color: #fdc73e;
        font-size: 0.8rem;
        margin-bottom: 2rem;
        font-family: Poppins;
    }

    .card-services h3 {

        color: #ffffffb6;
        font-size: .875rem;
        margin-bottom: 2rem;
        width: auto;
        text-align: justify;
        word-spacing: -0.9px;
    }


    .pix-ser img {
        height: 200px;
    }

    .card-content {
        margin-top: 0rem;
    }

    .card-content h2 {
        margin-top: 0.5rem;
        margin-bottom: 2rem;
        font-size: 1rem;
        font-weight: 500;
        font-family: Poppins;
        color: rgba(255, 255, 255, 0.904);
    }

    .card-content .card-tag {
        opacity: 0.7;
        font-size: 0.8rem;
    }



    .supported-section {
        background-color: white;
        padding: .5rem 0;
    }

    .section-title {
        text-align: center;
        font-size: 1rem;
        color: #666;
        margin: 2rem 0;
    }

    .logo-carousel {
        display: flex;
        overflow: hidden;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        width: 100%;
        margin: 2rem auto;
        white-space: nowrap;
    }

    .logo-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        margin: 0;
        padding: 0;
        animation: scroll 15s linear infinite;
    }

    .logo-item {
        width: 60px;
        flex-shrink: 0;
        filter: grayscale(100%) brightness(0);
        opacity: 0.7;
        transition: opacity 0.2s;
        margin: 0 2rem;
    }

    .logo-item:hover {
        opacity: 1;
        filter: none;
    }

    .logo-item img {
        width: 100%;
        height: auto;
    }

    /* Carousel Scroll Animation */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-90px * 7));
            /* Adjust based on the total number of logos */
        }
    }

    .why_choose_us {
        padding: 1rem 1.7rem;
    }



    .stacking-title {
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 1rem;
        font-family: PolySans Median;
    }



    .stacking-container {
        margin: 0rem;
        padding: 2rem 0;
    }



    .stacking-card {
        padding: 1rem;
        margin: 0;
    }

    .stacking-card:nth-child(1) {
        top: 4rem;
    }

    .stacking-card:nth-child(2) {
        top: 8rem;
    }

    .stacking-card:nth-child(3) {
        top: 10rem;
    }

    .stacking-icon-container {
        width: 2.5rem;
        height: 2.5rem;
    }

    .stacking-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    .stacking-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .stacking-left-column {
        top: 6rem;
        margin-bottom: 1rem;

    }


    .stacking-description {
        font-size: 0.87rem;
        font-weight: 300;
        text-align: justify;
        word-spacing: -.9px;
        margin-bottom: 1.5rem;
    }


    .stacking-card-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .stacking-card-description {
        font-size: 0.875rem;
    }

    .testimonials-section {
        padding: 1rem 1.7rem;
    }

    .testimonials-section .tes-sec-container {
        margin: 1rem 0;
    }

    .testimonials-section .tes-sec-container p {
        font-size: 0.875rem;
    }

    .people-thoughts {
        margin: 0rem;
        height: auto;
    }

    .people-thoughts h1 {
        font-size: 1rem;
        word-spacing: -.9px;
        text-align: justify;
        margin-bottom: 1rem;
    }

    .ts-img {
        width: 50px;
        height: 50px;

    }

    .people-thoughts h2 {
        font-size: .875rem;
        margin-top: 0.75rem;
    }

    .blog {
        padding: 2rem 1.7rem;
        background-color: white;
        color: black;
    }

    .blog h1 {
        font-size: 1.4rem;
        text-align: center;
        margin: 2rem 0;
    }

    .blog-articles {
        display: grid;
        grid-template-columns: none;
        gap: 1rem;
    }

    .cardblog {
        background: white;
        border: none;
        border-radius: 0.5rem;
        overflow: hidden;
        text-align: left;
    }

    .image-container {
        position: relative;
        overflow: hidden;
    }

    .cardblog img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .circle {
        width: 40px;
        height: 40px;
    }

    .news1207 {
        background-color: white;
        padding: 2rem 1.7rem;
    }

    .news1207-container {
        flex-direction: column;
        padding: 0rem;
        margin: 0;
    }

    .news1207-content {
        text-align: center;
        margin-bottom: 1rem;
    }

    .news1207-content h1 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .news1207-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        color: rgba(0, 0, 0, 0.7);
        margin-bottom: 1rem;
    }

    .news1207-content button {

        padding: 0.8rem 2rem;
        font-size: 0.875rem;
        border-radius: 1.5rem;
    }

    .news1207-cards-container {
        height: auto;
        display: grid;
        grid-template-columns: none;
        gap: 2rem;
    }

    .news1207-card {
        margin: 0;
        position: relative;
        width: 100%;
        max-width: 100%;
        background: white;
        border-radius: 0.8rem;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transform: none;
        opacity: 1;
    }

    .news1207-card-image {
        width: 100%;
        height: 180px;
        border-radius: 0.5rem;
        background-position: center;
        background-size: cover;
        margin-bottom: 1rem;
    }

    .news1207-card h2 {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }

    .news1207-meta {
        font-size: 0.7rem;
    }

    .news1207-card button {
        font-size: 0.6rem;
        padding: 0.4rem 1rem;
    }

    footer {
        background-image: url(https://images.pexels.com/photos/9785590/pexels-photo-9785590.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
        background-blend-mode: overlay;
        background-size: cover;
        color: #ffffffe8;

    }

    footer .mnm-footer-content {
        padding: 2rem 1.7rem;
        backdrop-filter: blur(10px);
        background-color: #00000087;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .mnm-footer-section {
        width: 100%;
    }

    .mnm-logo {
        width: 40px;
        height: auto;
        margin-bottom: 1rem;
    }

    .mnm-description {
        font-size: 0.8rem;
        line-height: 1.4;
        opacity: 0.9;
        color: #ffffffe8;
        max-width: 100%;
    }

    .footer-social-icons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .footer-social-icons i {
        border-radius: 50%;
        padding: 0.5rem;
        background-color: #ffffffe8;
        color: black;
        font-size: 1rem;
    }

    .mnm-footer-section h2 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #ffffffe8;
    }

    .mnm-footer-section ul {
        list-style: none;
        padding: 0;
    }

    .mnm-footer-section ul li {
        margin-bottom: 8px;
        font-size: 0.8rem;
    }

    .mnm-footer-section a {
        font-size: 0.85rem;
        text-decoration: none;
        opacity: 0.9;
    }

    .mnm-footer-section ul li a:hover {
        opacity: 0.6;
    }

}

@media (max-width: 380px) {


    .hero-heading {
        font-size: 1.8rem;

    }



}

/* @media (max-width: 1024px) {
    .mnm-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .mnm-footer-content {
        grid-template-columns: 1fr;
    }

    .mnm-footer-section {
        text-align: center;
        align-items: center;
    }

    .mnm-input-group {
        max-width: 300px;
        margin: 0 auto;
    }
}


@media (max-width: 640px) {
    .logo-grid {
        gap: 1rem;
    }

    .logo-item {
        width: 80px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 6rem 2rem 2rem;
        grid-template-columns: 1fr;
    }

    .hero-text {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-heading {
        font-size: 4rem;
    }
}

@media (max-width: 990px) {
    .nav-links {
        display: none;
    }

    .hero-heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "dark"
            "light"
            "pink";
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .card-services h1 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .logo-grid {
        gap: 1rem;
    }

    .logo-item {
        width: 80px;
    }
}

*/