body {
    margin: 0;
    font-family: "Figtree", sans-serif;
    /* border: 3px solid blue; */
}

.section-container {
    /* border: 5px solid blue; */
    width: 100%;
}

.header-section-container {
    position: sticky;
    top: 0;
    z-index: 5;
    /* border: 5px solid blue; */
    background-color: #f8f8f8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 100px;
    background-color: #f8f8f8;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    position: sticky;
    top: 0;
    z-index: 5;
    /* border: 3px solid red; */
    max-width: 1600px;
    margin: auto;
}

.nav {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    /* border: 3px solid red; */
}

/* .logo img {
    max-height: 50px;
} */

.nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav li {
    margin: 0 15px;
    position: relative;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 5px 0;
    display: block;
    /* border: 2px solid red; */
}
.nav a span{
    border: 2px solid blue;
}

.nav a:hover {
    color: #007bff;
}

.gradient-text {
    font-weight: bold;
    background: linear-gradient(90deg, #f36929 0%, #1393df 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blue-text a{
    color: #4b38f2;
}

.cta button {
    background-color: #4b38f2;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 40px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.cta button:hover {
    background-color: #0056b3;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
    min-width: 200px;
}

.dropdown a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {
    background-color: #f8f8f8;
}

.nav li:hover .dropdown {
    display: block;
}

/* Responsive Header */
.responsive-header {
    display: none;
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 5;
    flex-direction: column;
    align-items: center;
}

.responsive-header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.responsive-header .header-top .logo img {
    height: 40px;
}

.responsive-header .header-top .cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.responsive-header .header-top .cta button {
    background-color: #4b38f2;
    color: white;
}

.responsive-header nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.responsive-header nav li>a, .dropdown-btn-content {
    color: white;
    font-size: 2.25em;
    font-weight: 700;
    padding: 10px 0;
}
.responsive-header nav ul li {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
}

.dropdown-content a {
    color: white;
    font-size: 1.75em;
    font-weight: 600;
    padding: 6px 0;
}

.responsive-header nav .cta {
    display: flex;
    gap: 25px;
}
.responsive-header nav .cta button {
    background-color: white;
    color: #4b38f2;
    border: none;
    padding: 10px 20px;
    font-size: 1.75em;
    font-weight: 500;
    cursor: pointer;
    border-radius: 40px;
    margin-top: 10px;
    width: 50%;
    /* max-width: 480px; */
}

.responsive-header .cta button:hover {
    background-color: #e0e0e0;
}

.responsive-header .dropdown-content {
    display: none;
    flex-direction: column;
    width: 100%;
}

.responsive-header .dropdown-content a {
    padding-left: 20px;
}

.responsive-header .dropdown-btn {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.responsive-header .dropdown-btn::after {
    content: '\25BC';
    font-size: 1.5em;
}

.responsive-header .dropdown-btn.active::after {
    content: '\25B2';
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px;
}

@media (max-width: 1024px) {
    header {
        display: none;
    }

    .responsive-header {
        display: flex;
    }

    .hamburger {
        display: block;
    }
    .responsive-header nav .cta {
      /* border: 3px solid red; */
      display: flex;
      justify-content: center;
      width: 100%;
    }
    .responsive-header nav .cta button {
      /* border: 3px solid red; */
      width: 550px;
      max-width: 100%;

    }
}

@media (min-width: 1024px) {
    .responsive-header {
        display: none;
    }
}

.responsive-menu {
    background-color: #4b38f2;
    color: white;
    position: fixed;
    top: 80px; /* Adjust this based on the height of .header-top */
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.dropdown-btn-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

@media (max-width: 576px) {
    .responsive-header nav .cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .responsive-header .header-top .logo img {
        height: 35px;
    }
}
@media (max-width: 480px) {
    .responsive-header .header-top .logo img {
        height: 28px;
    }
    .responsive-header .header-top .cta button {
        /* border: 3px solid red; */
        padding: 10px 20px;
    }
    .responsive-header .header-top .cta {
        gap: 5px;
    }
}
@media (max-width: 420px) {
    .responsive-header .header-top .logo img {
        height: 25px;
    }
    .responsive-header .header-top .cta button {
        /* border: 3px solid red; */
        padding: 7px 14px;
    }
}
@media (max-width: 350px) {
    .responsive-header .header-top .logo img {
        height: 20px;
    }
    .responsive-header .header-top .cta button {
        /* border: 3px solid red; */
        padding: 7px 14px;
        font-size: 1em;
    }
}