@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

.nunito-sans {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100, "YTLC" 500;
}

.roboto {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

@font-face {
    font-family: MYRIADPRO-REGULAR;
    src: url(../font/myriad-pro/MYRIADPRO-REGULAR.OTF);
}

@font-face {
    font-family: MyriadPro-Light;
    src: url(../font/myriad-pro/MyriadPro-Light.otf);
}

@font-face {
    font-family: MYRIADPRO-BOLD;
    src: url(../font/myriad-pro/MYRIADPRO-BOLD.OTF);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background-color: #ffffff;
}

/* navigation css started here */
.site-header {
    background-color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.nav-links li a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-family: "Nunito Sans", sans-serif;
}

.nav-links li a:hover {
    color: #000;
}

.nav-btn {
    background-color: #e3722c;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    font-family: "Nunito Sans", sans-serif;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        gap: 20px;
        background: #fff;
        padding: 20px;
        position: absolute;
        top: 60px;
        right: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
    }

    .navbar.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .logo img {
        height: 56px;
    }
    .nav-links {
        flex-direction: column;
    }
}

/* hero section css started here */
.hero {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    background-image: url("../images/page-items/banner-bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 2rem; */
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

.video-container video {
    width: 100%;
}

h1 {
    font-family: MyriadPro-Light;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    /* max-width: 700px; */
    line-height: 1;
    text-align: left;
    font-weight: 300;
    color: #000;
}

/* h1 span {
    font-weight: 500;
} */

.tagline {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    /* max-width: 700px; */
    line-height: 1.6;
    /* margin: auto; */
    text-align: left;
    font-family: MyriadPro-Light;
}

/* .divider {
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
    width: 100%;
} */

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: left !important;
}
.btn {
    padding: 14px 30px !important;
    border-radius: 30px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: 0.3s ease !important;
    font-family: "Nunito Sans", sans-serif !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: left !important;
}

/* Primary button (enabled) */
.btn-primary {
    background-color: #e3722c !important;
    color: #ffffff !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: #f3f4f6;
    color: #0f172a;
}

/* Secondary button (disabled/ghost) */
.btn-secondary {
    background-color: #ffffff;
    color: #cbd5e1;
    pointer-events: none;
    opacity: 0.6;
    border: none;
}

.btn span {
    margin-left: 8px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .btn {
        width: fit-content;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        display: block !important;
    }
}

.events {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.event {
    margin-bottom: 1rem;
    width: calc(33.33% - 2rem);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

.event-image {
    width: 100%;
    /* height: 180px; */
    object-fit: cover;
    display: block;
}

.event-content {
    /* background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);  */
    color: #000;
    padding: 1.5rem;
}

.event-city {
    font-size: 1.3rem;
    font-weight: bold;
    font-family: "Nunito Sans", sans-serif;
    margin-bottom: 0.5rem;
}

.event-date {
    font-size: 1rem;
    opacity: 0.9;
    font-family: "Nunito Sans", sans-serif;
}

.background-devider {
    width: 100%;
    /* position: absolute;
    bottom: 80px;
    z-index: -1000; */
}

@media (max-width: 900px) {
    .event {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .events {
        flex-direction: column;
        gap: 1.5rem;
    }

    .event {
        width: 100%;
    }

    .btn {
        /* padding: 10px 20px; */
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem !important;
    }

    .hero {
        padding: 1.5rem;
    }

    .event-image {
        height: 150px;
    }

    .event-content {
        padding: 1rem;
    }

    .event-city {
        font-size: 1.1rem;
    }
}

/* about us section started here */
.about-section {
    margin: 0 auto;
    padding: 80px 20px;
    background-color: oklch(98.463% 0.00181 249.248 / 0.123);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 10;
}

.about-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #00000042;
    z-index: -1;
}


.section-title {
    font-size: 3rem !important;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
    color: #101828;
    font-family: "Nunito Sans", sans-serif;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-icon-container {
    background-color: #309a8b;
    border-radius: 16px;
    width: 50px;
    height: 50px;
    display: flex;
    margin: auto;
    margin-bottom: 26px !important;
}

.benefit-icon-container svg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    color: #fff;
}

.benefit-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: "Nunito Sans", sans-serif;
    text-align: center;
}

.benefit-description {
    font-size: 1rem;
    text-align: center;
    line-height: 1.625;
    color: #ffffff;
    font-family: "Nunito Sans", sans-serif;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem !important;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .benefit-title {
        font-size: 1rem;
    }

    .benefit {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .benefit:last-child {
        margin-bottom: 0;
    }

    .benefits {
        gap: 4px;
    }
}

/* theme section css started here */
.themes-section {
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #ffffff;
}

.themes {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    align-items: stretch;
}

.theme {
    flex: 1 1 calc(33.333% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    background-color: #fbf9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
    min-height: 300px;
    box-sizing: border-box;
}

.theme-icon-container {
    border-radius: 16px;
    width: 50px;
    height: 50px;
    display: flex;
    margin-bottom: 26px !important;
}

.theme-icon-container svg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.theme {
    flex: 1;
    /* min-width: 300px; */
    padding: 30px;
    background-color: #fbf9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.theme:hover {
    transform: translateY(-5px);
}

.theme-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #101828;
    margin-bottom: 15px;
    text-align: left;
    font-family: "Nunito Sans", sans-serif;
}

.theme-description {
    font-size: 1rem;
    line-height: 1.625;
    color: #4a5565;
    text-align: left;
    font-family: "Nunito Sans", sans-serif;
}

@media (max-width: 768px) {
    .themes {
        gap: 10px;
    }

    .theme {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .theme:last-child {
        margin-bottom: 0;
    }

    .theme-heading {
        font-size: 1.1rem;
    }

    .theme-description {
        font-size: 0.95rem;
    }
}

/* three strategic market css started here */
/* Markets Section CSS */
.markets-section {
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #fbf9fa;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a5565;
    text-align: center;
    margin-bottom: 40px;
    font-family: "Nunito Sans", sans-serif;
}

.market-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.market-card {
    flex: 1 1 calc(33.333% - 20px);
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.city-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 20px;
    font-family: "Nunito Sans", sans-serif;
}

.market-stats {
    margin-bottom: 20px;
}

.stat-category {
    margin-bottom: 20px;
}

.stat-category:last-child {
    margin-bottom: 0;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #101828;
    margin-bottom: 15px;
    font-family: "Nunito Sans", sans-serif;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: "Nunito Sans", sans-serif;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-label {
    font-size: 0.95rem;
    color: #4a5565;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #101828;
    text-align: right;
}

.positive {
    color: #00c951;
}

.key-insight {
    padding: 16px;
    border-radius: 20px;
    width: 92%;
    margin: auto;
}

.key-insight p {
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 600;
    font-family: "Nunito Sans", sans-serif;
    margin-bottom: 0;
}

.key-insight strong {
    color: #101828;
}

@media (max-width: 992px) {
    .market-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .market-cards {
        gap: 20px;
    }

    .market-card {
        flex: 1 1 100%;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* attendees section css started here */
.attendees-section {
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

/* .attendees-section::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5); 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1; */
/* } */

.attendees-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 60px;
    color: #ffffff !important;
    font-family: "Nunito Sans", sans-serif;
}

.attendee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.attendee-card {
    flex: 1 1 calc(18.33% - 30px);
    min-width: 210px;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background: #85482c57;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
}

.attendee-card:hover {
    transform: translateY(-5px);
}

/* .attendee-icon {
    background-color: #e3722c;
    border-radius: 16px;
    width: 50px;
    height: 50px;
    display: flex;
    margin: auto;
    margin-bottom: 26px !important;
    transition: transform 0.3s ease;
}

.attendee-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #ffffff;
} */

.attendee-card:hover .attendee-icon {
    background-color: #ffffff;
}

.attendee-card:hover .attendee-icon i {
    color: #e3722c;
}

.attendee-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: "Nunito Sans", sans-serif;
}

.attendee-desc {
    font-size: .9rem;
    color: #ffffff;
    margin-bottom: 0;
    font-family: "Nunito Sans", sans-serif;
}

@media (max-width: 991px) {
    .attendee-card {
        flex: 1 1 100%;
    }

    .attendees-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

/* ct section css started here */
.cta-section {
    background-color: #0c1323;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 3rem !important;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: center;
    font-family: "Nunito Sans", sans-serif;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    font-family: "Nunito Sans", sans-serif;
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: center !important;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    font-family: "Nunito Sans", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-btn-primary {
    background-color: #e3722c;
    color: #ffffff;
}

.cta-btn-primary:hover {
    background-color: #f3f4f6;
    color: #0f172a;
}

.cta-btn-secondary {
    background-color: #ffffff;
    color: #cbd5e1;
    pointer-events: none;
    opacity: 0.6;
}

.cta-btn span {
    margin-left: 8px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem !important;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* footer css started here */
.summit-footer {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 15px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 300;
    color: #4a5565;
    margin-bottom: 5px;
    font-family: "Nunito Sans", sans-serif;
}

.footer-subtitle {
    font-size: 0.8rem;
    color: #99a1af;
    margin-bottom: 30px;
    font-family: "Nunito Sans", sans-serif;
}

.contact-details p {
    margin: 5px 0;
    font-size: 1rem;
    color: #475569;
    font-family: "Nunito Sans", sans-serif;
}

.contact-details a {
    color: #0f172a;
    text-decoration: none;
    font-family: "Nunito Sans", sans-serif;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-media-links {
    margin-top: 20px;
}

.social-media-links a {
    display: inline-block;
    margin: 0 8px;
    font-size: 1.2rem;
    color: #475569;
    transition: color 0.3s;
}

.social-media-links a:hover {
    color: #0f172a;
}

/* form code css started from here */

.contact-form-section {
    background-color: #f8fafc;
    padding: 80px 0;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #101828;
    font-family: "Nunito Sans", sans-serif;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-top: 10px;
    font-family: "Nunito Sans", sans-serif;
}

.wpcf7 form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    width: 100%;
    padding: 14px 18px !important;
    font-size: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(200, 200, 200, 0.3);
    backdrop-filter: blur(12px);
    color: #1e1e1e;
    transition: 0.3s ease;
    font-family: "Nunito Sans", sans-serif;
    height: 50px;
    border-radius: 8px !important;
}

#wpcf7-f7-o1 p {
    margin-bottom: 10px;
}

#wpcf7-f7-o1 p label {
    margin-bottom: 0px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #101828;
    margin-bottom: 15px;
    font-family: "Nunito Sans", sans-serif;
}
/* Placeholder style */
.form-control::placeholder {
    color: #999;
}

/* Responsive form layout */
/* .row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
} */

.col-md-6 {
    flex: 0 0 calc(50% - 15px);
}

.col-md-3 {
    flex: 0 0 calc(25% - 15px);
}

.col-12 {
    flex: 0 0 100%;
}

@media (max-width: 768px) {
    .col-md-6,
    .col-md-3 {
        flex: 0 0 100%;
    }
}

/* CTA button styling */
.cta-btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: "Nunito Sans", sans-serif;
    background-color: #ffffff;
    color: #0c1323;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #f3f4f6;
}

.fbsm-section {
    width: 100%;
}

.letter-spacing {
    letter-spacing: 0.3rem;
}

.fbsm-heading {
    font-size: 2rem;
    font-family: MyriadPro-Light;
    font-weight: 400;
    color: #dbae44;
    text-align: end;
}

.fbsm-subheading {
    font-family: MyriadPro-Light;
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

.lead-tagline {
    font-family: MyriadPro-Light;
    font-size: 18px;
    color: #dbae44;
    margin-bottom: 10px;
    text-align: center;
}

.fbsm-btn {
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 0;
    width: fit-content;
    color: #dbae44 !important;
    margin: auto;
    margin: auto;
    display: block !important;
    text-align: center;
}

@media (max-width: 767px) {
    .fbsm-section .col-md-3,
    .fbsm-section .col-md-9 {
        text-align: center !important;
        padding: 2rem;
    }
    .fbsm-club-img {
        width: 125px;
        margin-bottom: 35px;
    }
}

.fbsm-club-img {
    width: 200px;
}
