/* ==================================================================menu============================================================ */

/* Hide mobile nav by default */
.mobile-nav {
    display: none;
}

/* Show mobile nav only on screens <= 767px */


@media (max-width: 767px) {
    .mobile-nav {
        display: block;
    }

    .menu-toggle {
        background-color: transparent;
        color: white;
        padding: 15px;
        font-size: 18px;
        cursor: pointer;
        text-align: left;
    }

    .side-menu {
        position: fixed;
        top: 0;
        left: -50%;
        width: 50%;
        height: 100%;

        display: flex;
        flex-direction: column;
        padding-top: 60px;
        transition: left 0.3s ease;

        background: linear-gradient(#0f0f2d, #010103);
    }

    .side-menu.show {
        left: 0;
    }

    .side-menu a {
        padding: 16px;
        font-size: 16px;

        text-decoration: none;
        /* border-bottom: 1px solid #ccc; */
        background: transparent;
        /* no background color */
    }

    .side-menu a:hover {
        background: transparent;
        text-decoration: underline;
        text-shadow: 10px 10px 25px rgba(0, 242, 254, 0.7);
    }

    .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
}




/* ==================================================================menu end============================================================ */









/* ========================================================= GLOBAL STYLES ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--e-global-typography-ed059bd-font-family), Sans-serif;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background: linear-gradient(#0f0f2d, #010103);
}

/* ========================================================= BANNER SECTION ========================================================= */
.banner-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)),
        url('./assets/Backgroundimage.jpg') no-repeat center center/cover;
    height: 800px;
    position: relative;
    color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
}


.playbook-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #9188d1;
    height: 60px;
    /* width: 400px; */
    padding: 0px 32%;
}

.playbook-section button {
    border-radius: 20px;
    padding: 8px;
    background-color: #9188d1;
    color: white;
    border: 1px solid white;
}

.playbook-section button:hover {
    cursor: pointer;
}

.playbook-section h1 {
    font-size: 1rem;
}


.banner-section {
    height: auto;

}

.container {
    position: relative;
    top: 119px;
}

.header-element {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* border-bottom: 0.1px solid rgb(119, 119, 119); */
    width: 100%;
    box-sizing: border-box;
    height: 144px;
    padding: 0px 150px;
}



.header-element {
    position: fixed;
    /* Make the header sticky */
    /* top: 47px; */
    background-color: transparent;
    /* Optional: Add a background color for better visibility */
    transition: background-color 0.3s;
    /* Smooth transition for background color */
    z-index: 1000;
    /* Ensure it stays above other content */
}

.header-element.scrolled {
    height: 80px;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    top: 0px;
}

.header-element.scrolled .header {
    height: 80px;
}

.header-element.scrolled .logo img {
    width: 200px;
}


.header {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 100%;
}

.header a {
    color: white;
    text-decoration: none;
}

.logo img {
    width: 250px;
    /* height: 50px; */
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu li {
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.menu li {
    position: relative;
    padding: 10px 15px;
    font-size: 1.3rem;
    font-weight: 500;
}

.menu li:hover {

    transform: scale(1.05);
    text-shadow: 10px 10px 25px rgba(0, 242, 254, 0.7);

}

.side-menu {
    font-size: 24px;
    cursor: pointer;
}

.banner-element {
    display: flex;
    padding: 0 150px;
    box-sizing: border-box;
    width: 100%;
    /* margin-top: auto;
    margin-bottom: auto; */
    height: 200px;
    align-items: center;
}

.banner-element {
    align-items: flex-end;
    /* padding-bottom: 40px; */
}

.banner-element1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    height: 90%;
    gap: 30px;
}

.banner-element1 h1 {
    font-size: 3rem;
    font-weight: 550;
    color: white;
    line-height: 4rem;
    margin: 0;

    white-space: normal;
    background: linear-gradient(to right, #e364e3, #64c2f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 60px;
}

.banner-element1 h4 {
    font-size: 1.7rem;
    font-weight: 200;
    margin: 0;
    line-height: 1.5;
}

.Book-a-discovery-cta {
    display: inline-block;
    padding: 12px 15px;
    background-color: #DBE4F9;
    color: #035d7a;
    font-size: 1.6rem;
    text-decoration: none;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 319.6px;
    height: 60.48px;
    font-weight: bold;
}

.Book-a-discovery-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.7);
}

.banner-element2 {
    top: auto;
    bottom: 0;
    margin-bottom: -50px;
}

.banner-element2 img {
    width: 600px;
    height: auto;
    position: relative;
    top: 10%;
    right: 20%;
}



.navbar {
    background-color: #ffffff !important;
}

.navbar-brand {
    font-size: 1.5rem;
}

h1 span.text-dark {
    color: #ffffff;
}

.bg-primary {
    background-color: #1e2a70 !important;
}

.text-primary {
    color: #ffffff !important;

}

.contact-us-heading {


    background: linear-gradient(to right, #e364e3, #64c2f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 60px;
}

.shadow-lg {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
}

.rounded-4 {
    border-radius: 2rem !important;
}

a.nav-link,
.dropdown-item {
    color: #0f0f2d !important;
}

.bg-dark-section {
    background-color: #0f0f2d;
}

.py-5 {
    background: linear-gradient(#010103, #0f0f2d);
    height: 650px;

}

/* ========================================================= FOOTER SECTION ========================================================= */
.footer {
    background-color: #000;
    color: white;
    padding: 50px 150px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer .logo {
    margin-bottom: 20px;

}

.logo a {
    color: white;
}

li a {
    color: #ccc;
}

.footer-column {
    min-width: 150px;
    flex: 1;
}

.logo-column {
    flex: 2;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    /* margin-bottom: 20px; */
    color: white;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 17px;
    /* cursor: pointer; */
    color: #ccc;
}

.footer a {
    text-decoration: none;
    color: none;
}

.subscribe-column {
    flex: 2;
}

.subscribe-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.subscribe-form input {
    padding: 12px 16px;
    border-radius: 30px;
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: #333;
}

.subscribe-form button {
    background-color: #7c83f5;
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}

.footer-divider {
    margin: 30px 0 20px;
    border: 0;
    height: 1px;
    background-color: white;
    opacity: 0.2;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
}

.social-icons-container {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 50%;
    padding: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon i {
    font-size: 18px;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


/* ========================================================= RESPONSIVENESS ========================================================= */

@media (max-width: 767px) {
    .menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .banner-section {
        /* padding-bottom: 40px; */
    }

    .playbook-section {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: #9188d1;
        height: 60px;
        /* width: 400px; */
        padding: 10px;

    }

    .story-section {
        padding: 0px 20px 60px;
    }

    .story-section h2 {
        padding-bottom: 0px;
    }

    .py-5 {

        height: 950px;

    }

    .playbook-section h1,
    .playbook-section button {
        font-size: 0.7rem;
    }

    .banner-section {
        height: auto;
    }

    .header-element {
        height: 106px;
        padding: 0 20px;
    }

    .header {
        width: 100%;
        height: 80px;
        padding: 0;
    }

    .logo {
        font-size: 20px;
    }

    .menu ul {
        display: none;
    }

    .banner-element {
        justify-content: center;
        padding: 0;
    }

    .banner-element1 {
        width: 100%;
        left: 0px;
        padding: 0 20px;
    }

    .banner-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-self: center;
    }

    .banner-element1 h1 {
        white-space: normal;
        font-size: 2rem;
        line-height: var(--e-global-typography-ed059bd-line-height);
        display: block;
        padding-bottom: 30px;
    }

    .about-section,
    .team,
    .Our-Leadership,
    .footer {
        padding: 60px 20px;
    }

    .story-section h2,
    .about-section h2,
    .team h2,
    .Our-Leadership h2 {
        white-space: pre-line;
        line-height: var(--e-global-typography-ed059bd-line-height);
        display: block;
        font-size: 1.4rem;
        letter-spacing: var(--e-global-typography-b63730e-letter-spacing);
        word-spacing: var(--e-global-typography-b63730e-word-spacing);
        line-height: 2rem;
    }

    .story-section h4,
    .about-section h4 {
        font-size: var(--e-global-typography-b63730e-font-size);
        letter-spacing: var(--e-global-typography-b63730e-letter-spacing);
        word-spacing: var(--e-global-typography-b63730e-word-spacing);
        line-height: 2rem;
        padding: 0;
    }

    .team-cards {
        display: flex;
        flex-direction: column;
    }

    .last-card .team-card {
        padding: 0;
        width: 106%;
        /* justify-content: center; */
        /* align-self: center; */
    }

    .team-card img,
    .last-card img {
        width: 100%;
        height: 310px;
        margin: 0 auto;
        object-fit: cover;
        max-width: 420px;
    }

    .team-card,
    .last-card {
        width: 106%;
    }


    .team-content {
        align-items: center;
        justify-content: center;
    }

    .team h2 {
        text-align: center;
    }

    .profile-card,
    .last-card {
        width: 100%;
    }

    /* footer */
    .footer-logo {
        text-align: center;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .subscribe-form {
        display: flex;
        flex-direction: column;
    }

    .subscribe-form input {
        width: 100%;
    }

    .footer-bottom {
        justify-content: center;
    }
}




/* ========================================================= ANIMATIONS SECTION ========================================================= */
@keyframes slideInFromTop {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInLogos {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Applying Animations */


/* Slide from top elements */
.display-5 {
    animation: slideInFromTop 1s ease-out forwards
}

/* Slide from left elements */
.text-white,
.col-md-8 {
    animation: slideInFromLeft .8s ease-out forwards;
    opacity: 0
}


/* Slide from right elements */
.rounded-4 {
    animation: slideInFromRight .8s ease-out forwards;
    opacity: 0
}


/* Fade in elements */
.gm-style {
    animation: fadeIn .8s ease-out forwards;
    opacity: 0
}