/* Global Box Sizing */
* {
    box-sizing: border-box;
}

/* Hexagon Image Styles (Section 3) */
.hexagon-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hexagon-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d47a1;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.hexagon-image-mask {
    position: relative;
    width: 380px;
    height: 380px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: white;
    z-index: 2;
    overflow: hidden;
}

.hexagon-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.deco-badge {
    position: absolute;
    top: 20px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00C853, #69F0AE);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.deco-badge-small {
    position: absolute;
    bottom: -20px;
    right: 50px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00C853, #69F0AE);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.expo-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 20px;
}

.expo-content-logo {
    max-width: 280px;
    margin-bottom: 20px;
}

.expo-title {
    color: #002A75;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 56px;
    /* Increased size */
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    /* Tighter for better headline look */
}

.expo-description {
    color: #333;
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    /* Increased size */
    line-height: 1.6;
    max-width: 600px;
    /* Slightly wider to accommodate larger text */
    font-weight: 400;
}

/* HERO SECTION CUSTOM STYLES */

.hero-title-main {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 56px;
    /* Increased from 42px */
    color: #111;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 38px;
    /* Increased from 28px */
    color: #002A75;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 40px;
}

.hero-logo-img {
    max-width: 320px;
    margin-bottom: 30px;
    display: block;
}

.hero-date-time {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    /* Darker Blue */
}

/* SVG Icon styles */
.hero-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    fill: #002A75;
}

/* Hero Double Hexagon Layout */
.hero-hex-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 500px;
    margin: 0 auto;
}

/* Large Hexagon (Top Right) */
.hero-hex-large {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    height: 380px;
    z-index: 1;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.hex-shape-large {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: #00C853;
    /* Green Border */
    padding: 15px;
}

.hex-content-large {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: white;
}

.hex-content-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Small Hexagon (Bottom Left) */
.hero-hex-small {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 260px;
    height: 260px;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.hex-shape-small {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: #0d47a1;
    /* Blue Border */
    padding: 12px;
}

.hex-content-small {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: white;
}

.hex-content-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-hex-wrapper {
        height: 400px;
        margin-top: 40px;
    }

    .hero-hex-large {
        width: 300px;
        height: 300px;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-hex-small {
        width: 180px;
        height: 180px;
        left: 50%;
        transform: translateX(-80%);
        bottom: 0;
    }

    .hexagon-container {
        width: 300px;
        height: 300px;
    }

    .hexagon-image-mask {
        width: 285px;
        height: 285px;
    }

    .expo-title,
    .hero-title-main {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 22px;
    }
}

/* WHAT YOU WILL GET SECTION STYLES */

.section-pill-heading {
    display: inline-block;
    background: linear-gradient(90deg, #42a5f5, #1976d2);
    /* Light blue to dark blue gradient */
    color: white;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 32px;
    padding: 10px 40px;
    border-radius: 50px;
    /* Pill shape */
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section-subtext {
    font-family: 'Sora', sans-serif;
    color: #111;
    font-size: 18px;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
    line-height: 1.5;
}

/* Green Card Design */
.green-card-col {
    padding: 15px;
    margin-bottom: 30px;
}

.green-card-container {
    position: relative;
    padding-top: 50px;
    /* Space for the floating hexagon */
}

/* Green Header Shape */
.green-card-header {
    background-color: #00C853;
    /* Green */
    height: 120px;
    width: 100%;
    /* Pointed Top Shape */
    clip-path: polygon(0% 40%, 50% 0%, 100% 40%, 100% 100%, 0% 100%);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

/* Floating Hexagon Icon on Top */
.hex-icon-wrapper {
    position: absolute;
    top: 5px;
    /* Adjust based on pointed top */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 90px;
    z-index: 10;
    /* drop-shadow doesn't work well on clipped children, applied to wrapper? 
        Actually for clipped element, filter: drop-shadow works on parent or the element itself. */
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

.hex-icon-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #42a5f5, #1565c0);
    /* Blue gradient */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hex-icon-shape img {
    width: 40px;
    height: 40px;
}

/* Card Body */
.green-card-body {
    background: white;
    border-radius: 0 0 20px 20px;
    padding: 40px 20px 30px;
    margin-top: -10px;
    /* Connect with header */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    text-align: center;
    min-height: 300px;
}

.card-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #111;
    margin-bottom: 25px;
    margin-top: 10px;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
    width: 100%;
    /* Ensure text aligns left but container is centered if needed */
}

.card-list li {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.card-list li::before {
    content: "•";
    color: #111;
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 18px;
    line-height: 18px;
}

/* WHY JOIN SECTION STYLES */

.why-join-container {
    position: relative;
    padding: 0;
    /* Remove vertical padding too if we want full touch, or keep for spacing but content touches sides */
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
    background: #ffffff;
    /* Explicitly White */
    width: 100vw;
    /* Viewport Width */
    margin-left: calc(-50vw + 50%);
    /* Break out of parent container */
    margin-right: calc(-50vw + 50%);
}

.why-join-inner-full {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Green Background Shape (Left Side) */
.green-bg-shape {
    position: absolute;
    top: 0;
    /* Star from top edge */
    left: 0;
    width: 50%;
    height: 100%;
    /* Full height */
    background-color: #00C853;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    z-index: 1;
    border-radius: 0;
    /* Sharp edges */
}

/* Laptop Image Hexagon on Left */
.laptop-hex-container {
    position: relative;
    width: 450px;
    height: 450px;
    z-index: 2;
    /* Still below text overlay if any, but above green shape */
    margin-left: 50px;
    /* Offset from screen edge */
    margin-top: 50px;
}

.laptop-hex-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2979ff;
    /* Blue border */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

/* Pseudo element trick for border? No, using layered divs */
.laptop-hex-mask {
    position: relative;
    width: 420px;
    height: 420px;
    /* Inner */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: white;
    z-index: 2;
    top: 15px;
    left: 15px;
}

.laptop-hex-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Big Heading on Left (Overlapping Green) */
.why-join-title-block {
    position: relative;
    z-index: 3;
    padding-left: 80px;
    padding-top: 50px;
    margin-bottom: 30px;
}

.why-join-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 56px;
    line-height: 1.1;
    color: white;
}

/* Timeline/List on Right */
.why-join-list-col {
    position: relative;
    z-index: 2;
    padding-left: 50px;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    /* Increased from 30px */
    align-items: flex-start;
}

.timeline-icon-box {
    flex-shrink: 0;
    width: 70px;
    /* Increased from 60px */
    height: 80px;
    /* Increased from 70px */
    position: relative;
    margin-right: 25px;
}

.timeline-hex-bg {
    width: 100%;
    height: 100%;
    background-color: #448aff;
    /* Blue like design */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-hex-bg img {
    width: 36px;
    /* Increased from 30px */
    height: 36px;
}

/* Vertical line connecting hexes - simplified */
.timeline-item:not(:last-child) {
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 80px;
    /* Matches new icon box height */
    left: 35px;
    /* Center of new width 70px */
    width: 2px;
    height: 40px;
    /* Increased to bridge the larger gap */
    background-color: #448aff;
    z-index: 0;
}

.timeline-content h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 26px;
    /* Increased from 22px */
    color: #002A75;
    margin-bottom: 8px;
}

.timeline-content p {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    /* Increased from 16px */
    color: #555;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .green-bg-shape {
        width: 100%;
        height: 500px;
        clip-path: none;
        border-radius: 0 0 50px 50px;
    }

    .why-join-title-block,
    .laptop-hex-container {
        padding-left: 20px;
        margin-left: 0;
        text-align: center;
        margin-bottom: 0px;
    }

    .laptop-hex-container {
        width: 300px;
        height: 300px;
        margin: 20px auto;
    }

    .laptop-hex-mask {
        width: 280px;
        height: 280px;
        top: 10px;
        left: 10px;
    }

    .why-join-heading {
        font-size: 42px;
        color: white;
    }

    .why-join-list-col {
        padding-left: 20px;
        margin-top: 50px;
    }
}

/* FOOTER STYLES */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #ccc;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-icon-svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    fill: #00C853;
    /* Green accent to match theme */
    flex-shrink: 0;
}

.footer-location-box {
    display: flex;
    align-items: flex-start;
    color: #ccc;
    font-size: 1rem;
}

/* Stronger Footer Styles */
.zpsection.zpdefault-section.footer-bg,
.footer-bg {
    background: linear-gradient(to bottom, #87E5FF, #46B9FF) !important;
    background-image: linear-gradient(to bottom, #87E5FF, #46B9FF) !important;
    background-color: #46B9FF !important;
    padding: 70px 0 !important;
}

.zpsection.footer-bg h3,
.zpsection.footer-bg h2,
.zpsection.footer-bg p,
.zpsection.footer-bg li,
.zpsection.footer-bg span,
.zpsection.footer-bg a,
.zpsection.footer-bg div {
    color: #000000 !important;
}

.zpsection.footer-bg .footer-icon-svg {
    fill: #000000 !important;
}