@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

/* header  */
header {
    background-color: #2F4D7E;
    padding: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    color: #fff;
    position: relative;
}

.logo {
    font-size: 1.5rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    background-color: #fff;
    height: 3px;
    width: 25px;
    margin: 3px 0;
    border-radius: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: larger;
    display: flex;
    align-items: center;
}

.dropdown-arrow {
    width: 22px;
    height: auto;
    margin-left: 8px;
    transition: transform 0.3s;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2F4D7E;
    border: 1px solid #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown-menu li {
    border-bottom: 1px solid #fff;
    transition: .3s;
}

.dropdown-menu li:hover {
    background: #243C61;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 0.5rem 1rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

@media (max-width: 768px) {

    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #2a4570;
        position: absolute;
        z-index: 999;
        left: 0;
        top: 100px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 20px;
    }
}

/* header  */

/* hero  */
section.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2F4D7E;
    background-image: url('./images/hero-img-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    gap: 80px;

}

.hero-left {
    flex: 1;
    max-width: 50%;
    color: #fff;
}

.hero-right {
    flex: 1;
    padding: 1rem;
    max-width: 50%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2F4D7E;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1d3a6d;
}

.form-title {
    font-size: 1.8rem;
    color: #2F4D7E;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input,
.form-textarea {
    font-family: "Inter", sans-serif;
    padding: 0.75rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.form-textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-button {
    padding: 0.75rem 1rem;
    background-color: #2F4D7E;
    color: #fff;
    border: none;

    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
}

.submit-button:hover {
    background-color: #1d3a6d;
}

.status-message {
    font-size: 0.875rem;
    color: #333;
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 40px;
    }

    section.hero {
        padding: 0px 20px;
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-description {
        font-size: 1em;
    }

    .hero-left {
        max-width: 100%;
        padding: 0;
    }

    .hero-right {
        max-width: 100%;
        margin-bottom: 40px;
    }
}

/* hero  */

/* strategy  */
.strategy-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: #f9f9f9;
}

.strategy-text {
    flex: 1;
}

.strategy-text h2 {
    font-size: 2em;
    color: #2F4D7E;
}

.strategy-text p {
    font-size: 1em;
}

.strategy-image {
    flex: 1;

}

.strategy-image img {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 768px) {

    .strategy-text {
        width: 100%;
        padding-right: 0;
    }

    .strategy-image {
        width: 100%;
    }
}

/* strategy  */

/* learn */
.learn-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.learn-video {
    flex: 1;
    margin-bottom: 16px;
    padding: 10px;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.learn-text {
    flex: 1;
    padding: 10px;
}

.learn-text h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #2F4D7E;
    margin-bottom: 16px;
}

.learn-text p {
    font-size: 1em;

}

.learn-button {
    display: inline-block;
    background-color: #EBC22E;
    color: black;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
}

@media (min-width: 768px) {
    .learn-section {
        flex-direction: row;
        padding: 16px 32px;
    }

    .learn-video {
        margin-bottom: 0;
    }
}

/* learn  */

/* profitable  */

.profitable-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.profitable-text {
    flex: 1;
    padding: 10px;
}

.profitable-text h2 {
    font-size: 2rem;
    /* Default size */
    font-weight: bold;
    color: #2F4D7E;
    /* Custom blue color */
    margin-bottom: 16px;
}

.profitable-text p {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.profitable-text ul {
    list-style-type: disc;
    margin-bottom: 16px;
    padding-left: 20px;
}

.profitable-text ul li {
    font-size: 1.125rem;
}

.learn-more-button {
    display: inline-block;
    background-color: #EBC22E;
    color: black;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
}

.profitable-image {
    flex: 1;
}

.profitable-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 768px) {
    .profitable-section {
        flex-direction: row;
    }

    .profitable-text {
        margin-bottom: 0;
    }
}

/* profitable  */

/* services  */

.services-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}


.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2F4D7E;
    text-align: center;
    margin-bottom: 48px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2F4D7E;
    margin-bottom: 8px;
}

.service-text {
    font-size: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-grid--large {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* services  */

/* cta  */

.cta-section {
    background: rgb(47, 77, 126);
    background: linear-gradient(rgba(47, 77, 126, 1) 0%, rgba(35, 58, 94, 1) 30%, rgba(47, 77, 126, 1) 100%);
    padding: 4rem 1.5rem;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: #EBC22E;
    color: black;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
}

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

/* cta  */

/* project section  */
.project-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.text-content {
    margin-bottom: 2rem;
    flex: 1;
}

.title {
    font-size: 2rem;
    color: #2F4D7E;
}

.description {
    font-size: 1em;
    margin-bottom: 2rem;
}

.image-content {
    display: flex;
    justify-content: center;
    flex: 1;
}

.image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 768px) {}

/* project section  */



/* pricing */
.pricing-section {
    padding: 2rem;
    background-color: white;
    color: black;
}


.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #2F4D7E;
}

.plans-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.plan-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 600px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plan-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    margin: auto;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: #2F4D7E;
}

.plan-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.plan-items {
    list-style: disc inside;
    margin-bottom: 1.5rem;
}

.plan-button {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 300;
    transition: background-color 0.3s;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    outline: none;
    border: none;
}

.standard-card {
    background-color: whitesmoke;
    border: 1px solid #DFDFDF;
}

.professional-card {
    background: rgb(47, 77, 126);
    background: linear-gradient(rgba(47, 77, 126, 1) 0%, rgba(35, 58, 94, 1) 30%, rgba(47, 77, 126, 1) 100%);
    color: #FDFDFD;
}

.professional-card .plan-title {
    color: #fff;
}

.enterprise-card {
    background-color: whitesmoke;
    border: 1px solid #DFDFDF;
}

.professional-card .plan-button {
    background-color: #EBC22E;
    color: black;
}

.standard-card .plan-button,
.enterprise-card .plan-button {
    background-color: #2F4D7E;
    color: white;
}

@media (min-width: 768px) {
    .plans-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .plan-card {
        height: 100%;
    }
}

/* pricing */

/* testimonials */
.testimonials-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 1.5rem;
    background-color: white;
    color: black;
    position: relative;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #2F4D7E;
    margin-bottom: 3rem;
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-wrapper {
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    text-align: center;
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2F4D7E;
    margin-bottom: 0.5rem;
}

.testimonial-role {
    color: #6B7280;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-size: 2rem;
    color: #2F4D7E;
    cursor: pointer;
    z-index: 10;
    padding: 0.5rem;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

.carousel-button:hover {
    color: #1a2a40;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .testimonials-container {
        padding: 0;
        width: 100%;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .carousel-button {
        font-size: 1.5rem;
        padding: 0.25rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.875rem;
    }

    .carousel-button {
        font-size: 1.25rem;
        padding: 0.25rem;
    }
}


/* footer  */
.footer {
    background-color: #0A0A0A;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer .address {
    margin: 0;
    font-size: 1rem;
}

.footer .logos img {
    margin: 0px 10px;
}

.footer .logo {
    width: 100px;

}

.footer .copyright {
    margin: 1rem 0;
    font-size: 0.875rem;
}

.footer .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer .social-icon {
    display: inline-block;
}

.footer .icon {
    width: 40px;
    height: auto;
}


@media (max-width: 768px) {
    .footer .logos {
        flex-direction: column;
        gap: 1rem;
    }

    .footer .logo {
        width: 120px;
    }

    .footer .social-icons {
        gap: 0.5rem;
    }
}

/* footer  */