html, body {
    overflow-x: hidden !important;
}
/*
Theme Name: ZST
Theme URI: http://zenithglobal.io/zst
Author: Auther Name
Author URI: http://zenithglobal.io
Description: Working model of a wordpress theme
Version: 1.0
Text Domain: ZST Theme
*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

/* CSS */
:root {
    --primary-blue: #337afb;
    --light-grey: #f4f4f4;
    --text-color-dark: #333;
    --text-color-light: #555;
    --border-color: #ddd;
    --font-family: 'Inter', sans-serif;
}

/* Blog - Start */
.blog-category-btn:hover {
    background: black;
    color: white;
}

/* Blog - Done */

/* header - Start */


html {
    margin: 0 !important;
}

body {
    margin: 0;
    font-family: 'Crimson Text', serif;
}

.subheadings-text {
    background: #F6F6F6;
    color: #6D6D6D;
    padding: 8px;
    display: block;
    width: fit-content;
    margin-bottom: 30px;
    margin: 0 auto;
}

/* HEADER – BASE */
.header {
    width: 100%;
    background: #ffffff;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
}

.header-container {
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* DESKTOP NAV */



/* CTA BUTTON */
.cta-btn {
    background: black;
    color: white;
    padding: 12px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    gap: 6px;
    font-size: 15px;
    /* width: 190px; */
    margin: 10px auto;
}

.cta-btn:hover {
    background: #222;
}

/* MOBILE MENU – HIDDEN BY DEFAULT */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-top: 1px solid #eee;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu .nav-menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.mobile-menu .nav-menu-item li {
    width: 100%;
}

.mobile-menu .nav-menu-item a {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 8px 0;
}

/* SHOW MOBILE WHEN ACTIVE */
.mobile-menu.active {
    display: flex;
    animation: fadeDown 0.3s ease;
}

/* ANIMATION */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Repsonsive under 900px */
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .menu-icon {
        display: block;
    }
}

/* header - Done */



/* tools - Start */
.hidden {
    display: none;
}

.noise-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='5'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    width: 100%;
    height: 100%;
    padding: 0px 20px;
}

.container {
    width: 100%;
    /* margin: 0 auto; */
    box-sizing: border-box;
}

/* Extra Small (xs) - Width: 100% */
@media (max-width: 575.98px) {
    .container {
        max-width: 100%;
        /* Full width for small screens */
    }
}

/* Small (sm) - ≥ 576px */
@media (min-width: 576px) {
    .container {
        max-width: 768px;
        /* Max width for small devices */
    }
}

/* Medium (md) - ≥ 768px */
@media (min-width: 768px) {
    .container {
        max-width: 992px;
        /* Max width for medium devices */
    }
}

/* Large (lg) - ≥ 992px */
@media (min-width: 992px) {
    .container {
        max-width: 1200px;
        /* Max width for larger devices */
    }
}

/* Extra Large (xl) - ≥ 1200px */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        /* Max width for extra large screens */
    }
}

/* Extra Extra Large (xxl) - ≥ 1400px */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
        /* Max width for very large screens */
    }
}


.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

.scale:hover {
    scale: 102%;
    transition: all 1s ease-out;
}

/* tools - Done */



/* FAQ - Start */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    border: 1px solid black;
}

.faq-answer {
    display: none;
    padding: 10px 12px;
}

.faq-question {
    border: 1px solid black;
    padding: 12px;
    cursor: pointer;
    color: #081315;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* FAQ - Done */






/* On Hover Image Show In Blog */
.about-profile-card {
    position: relative;
}

.about-profile-card img.linkedin-hover {
    position: absolute;
    bottom: 70px;
    right: 15px;
    width: 30px;
    height: 30px;
    display: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.about-profile-card:hover img.linkedin-hover {
    display: block;
    opacity: 1;
}

/* Section 2 */
.Ab_description {
    color: #787878;
    width: 75%;
    text-align: center
}

.Cards_Container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 42px;
    margin-top: 48px;
}

@media (max-width:900px) {
    .Ab_description {
        max-width: 90%;
    }

    .Cards_Container {
        flex-direction: column;
        min-width: 90%;
    }
}

/* Section3 -> Our Story */
.StoryCardsContainer {
    display: flex;
    flex-direction: row;
    width: 80%;
    align-items: center;

}

.ImageContainer {
    background-color: #f7f7f7;
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    font-family: "DM Sans", sans-serif;
}

.ImageContainer::-webkit-scrollbar {
    display: none;
}

.subImageContainer {
    min-width: 500px;
    max-width: 500px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
}

/* small line + dot */
.subImageLine {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
}

.subImageLine .dot {
    width: 8px;
    height: 8px;
    background: black;
    border-radius: 50%;
}

.subImageLine .line {
    flex-grow: 1;
    height: 1px;
    background: black;
}

/* text */
.subImageTitle {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.subImageDesc {
    margin: 8px 0 16px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* image */
.subImage {
    width: 100%;
    border-radius: 6px;
}

/* MOBILE */
@media (max-width: 900px) {
    .ImageContainer {
        max-width: 90%;
        gap: 24px;
    }

    .subImageContainer {
        min-width: 250px;
    }

    .StoryCardsContainer {
        flex-direction: column;
        width: 90%;

    }

    .MobileTextCenter {
        text-align: center;
        max-width: 100%;
        min-width: 100%;
        display: inline;
    }
}

.storyTag {
    color: #6d6d6d;
    font-size: 16px;
    background-color: #f6f6f6;
    padding: 6px;
    width: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
}

@media (max-width:768px) {
    .storyTag {
        margin: 0 auto;
        margin-bottom: 10px;

    }
}

/* -----------------------Contacts--------------------------- */
.ContactContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 0 0;
}

.ConnectText {
    font-size: 22px;
    max-width: 500px;
    margin-top: 56px
}

.SubContactContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    top: 30px;

}

.WhyContactUs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 40px 0;
}

@media (max-width:900px) {
    .ContactContainer {
        flex-direction: column;
        align-items: center;
    }

    .SubContactContainer {
        align-items: center;
    }

    .ConnectText {
        width: 90%;
    }

    .WhyContactUs {
        flex-direction: column;
    }
}

/* -------------------------------Get Started----------------------------------------- */
/* Calender */
.CalenderOuter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin:0 20px;
}

@media (max-width:900px) {
    .CalenderOuter {
        flex-direction: column;
    }

    .Calender {
        display: flex;
        justify-content: center;
        scale: 100%;
    }
}