/* General Body and Font Styles */
body {
    background-color: #f8f9fa;
    font-family: "Poppins", sans-serif;
}

/* Hero Section Styles */
.hero-section {
    background-color: #bacbe9;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 600;
    color: #2c3e50;
}

.hero-section h1 .highlight {
    color: #0066ff;
}

.hero-section .subtitle {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 20px auto 40px;
}

.hero-section .cta-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.hero-section .email-input {
    width: 100%;
    padding: 15px;
    border: none;
    font-size: 16px;
    outline: none;
}

.hero-section .start-button {
    background-color: #0066ff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.hero-section .start-button:hover {
    background-color: #0052cc;
}

.hero-section .features {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: #666;
}

.hero-section .feature-item .fa-check-circle {
    color: #213aeb;
    margin-right: 8px;
}

/* --- New Search Bar Styles --- */
.search-section-container {
    max-width: 1200px; /* Controls overall width and provides side spacing */
    margin: -50px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.search-form {
    align-items: flex-end; /* Aligns items to the bottom */
    gap: 15px; /* Adds space between items */
    background-color: #fff;
    padding: 20px;
    overflow-x: auto; /* Adds horizontal scroll on small screens if needed */
}

.search-form .form-group {
    flex: 1; /* Allows fields to grow and fill space */
    min-width: 150px; /* Sets a minimum width for fields */
}

.search-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.search-form select,
.search-form input {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    width: 100%;
}

.search-form .search-button {
    background-color: #0066ff;
    border: none;
    color: white;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0; /* Prevents the button from shrinking */
    transition: background-color 0.3s ease;
}

.search-form .search-button:hover {
    background-color: #0052cc;
}

.date-section {
    display: none; /* Hidden by default */
}

.date-section.show {
    display: block; /* Shown via JS */
}

/* Latest Events Section */
.events-section {
    padding: 80px 20px;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.events-header h2 {
    font-size: 36px;
    font-weight: 600;
}

.events-header .see-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #0066ff;
    font-weight: 500;
    border: 1px solid #0066ff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s;
}
.events-header .see-all-btn:hover {
    background-color: #0066ff;
    color: #fff;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* Event Card Styles */
.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: auto;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* .event-card .card-media {
    width: 100%;
    height: 200px;
    object-fit: fill; 
    background-color: #f0f0f0; 
} */
.card-media {
    height: 250px; /* Adjust this value to your preferred height */
    width: 100%;
    object-fit: cover; /* This ensures the image covers the area while maintaining aspect ratio */
    border-radius: 8px 8px 0 0; /* Optional: maintains rounded corners if you had them */
}

.event-card .card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-card .card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.event-card .card-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.event-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.event-card .view-details-btn {
    text-decoration: none;
    color: #0066ff;
    font-weight: 500;
}

.event-card .like-btn {
    background: none;
    border: none;
    cursor: pointer;
}
.event-card .like-btn img {
    width: 24px;
    height: 24px;
}

.events-section {
    max-width: 1200px;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 20px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

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

.cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Gap कम की गई */
    margin: 30px 0;
}

.cta-form {
    display: flex;
    flex-direction: row; /* Column से row में बदला गया */
    align-items: center;
    gap: 0; /* Gap हटाई गई */
    min-width: 300px;
}

.side-image {
    flex: 1;
    max-width: 250px; /* Size कम की गई */
}

.side-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.email-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px; /* सिर्फ left side rounded */
    width: 250px;
    font-size: 16px;
    border-right: none; /* Right border हटाई */
}

.start-button {
    padding: 12px 20px;
    background-color: #0066ff;
    color: white;
    border: 1px solid #0066ff;
    border-radius: 0 4px 4px 0; /* सिर्फ right side rounded */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.start-button:hover {
    background-color: #0055dd;
    border-color: #0055dd;
}

/* Features styling */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0c0c0c;
}

.feature-item i {
    color: #28a745;
}

/* Responsive design */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        gap: 15px;
    }

    .side-image {
        max-width: 120px;
    }

    .cta-form {
        flex-direction: column;
        gap: 10px;
    }

    .email-input {
        border-radius: 4px;
        border-right: 1px solid #ddd;
        width: 100%;
    }

    .start-button {
        border-radius: 4px;
        width: 100%;
    }

    .features {
        flex-direction: column;
        gap: 10px;
    }
}

.cta.o-ice {
    background: #bacbe9;
    padding: 50px 0;
    text-align: center;
}

/* Row Layout */
.row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.row--padding {
    padding: 0 20px;
}

.row--center {
    justify-content: center;
    align-items: center;
}

/* Cell Grid */
.cell-start-0.cell-end-12 {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Heading Styles */
.heading-1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    font-family: "Arial", sans-serif;
}

/* Button Base Styles */
.btn {
    display: inline-block;
    padding: 0;
    margin: 0 10px;
    border-radius: 80px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: "Arial", sans-serif;
}

.btn--big {
    font-size: 1.1rem;
}

.btn a {
    display: block;
    padding: 15px 30px;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Blue Button */
.btn--blue {
    background-color: #007bff;
    color: white;
}

.btn--blue:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn--blue a {
    color: white;
}

/* Light Button */
.btn--light {
    background-color: white;
    color: #333;
    border: 2px solid #e9ecef;
}

.btn--light:hover,
.btn--hover--dark:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn--light a {
    color: #333;
}

/* Animation Classes */
.js-animated--fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.js-animated--fade.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.js-animated--fade__desc.is-animated {
    transition-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta.o-ice {
        padding: 60px 0;
    }

    .heading-1 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .btn {
        margin: 5px;
        display: block;
        width: 100%;
        max-width: 250px;
    }

    .cell-start-0.cell-end-12 {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .heading-1 {
        font-size: 1.8rem;
    }

    .btn a {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .row--padding {
        padding: 0 15px;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.features_homepage {
    background: linear-gradient(135deg, #f5f5f7 0%, #fdfcff 100%);
    padding: 50px 0; /* Reduced from 80px */
    min-height: 80vh; /* Reduced from 100vh */
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; /* Reduced from 80px */
    align-items: center;
    min-height: 60vh; /* Reduced from 70vh */
}

/* Content Column Styling */
.content-column {
    padding-right: 30px;
}

.main-heading {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px; /* Reduced from 24px */
    background: linear-gradient(135deg, #e7e7e9 0%, #0e0d0e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-text {
    margin-bottom: 30px; /* Reduced from 40px */
}

.intro-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    font-weight: 400;
}

/* Accordion Styling */
.accordion-container {
    margin-bottom: 17px; /* Reduced from 40px */
}

.accordion-item {
    border-radius: 16px;
    margin-bottom: 12px; /* Reduced from 16px */
    background: #ffffff;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
}

.accordion-item.active {
    border-color: #a7b4ed;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 15px; /* Reduced from 24px 28px */
    cursor: pointer;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.accordion-item.active .accordion-header {
    background: #ecf0f3;
}

.accordion-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-title {
    color: #090909;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 300;
    color: #667eea;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-inner {
    padding: 0 24px 20px; /* Reduced from 0 28px 24px */
    background: #ffffff;
}

.accordion-inner p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* CTA Button */
.cta-section {
    text-align: left;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 5px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Visual Column */
.visual-column {
    position: relative;
    height: 500px;
}

.device-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.device-stack {
    position: relative;
    width: 100%;
    height: 63%;
}

.device-mockup {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.device-mockup.phone {
    width: 280px;
    height: 560px;

    top: 20px;
    right: 60px;
    z-index: 3;
    border-radius: 30px;
}

.device-mockup.tablet {
    width: 400px;
    height: 300px;

    top: 150px;
    left: 40px;
    z-index: 2;
    border-radius: 25px;
}

.device-mockup.desktop {
    width: 500px;
    height: 320px;
    bottom: 0;
    right: 0;
    z-index: 1;
    border-radius: 20px;
}

.device-screen {
    width: 100%;
    height: 100%;

    background: #ffffff;
}

.device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* Hover Animations */
.device-mockup:hover {
    transform: translateY(-10px) scale(1.02);
}

.device-mockup.phone:hover {
    z-index: 4;
}

.device-mockup.tablet:hover {
    z-index: 4;
}

.device-mockup.desktop:hover {
    z-index: 4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        gap: 40px; /* Reduced from 60px */
    }

    .content-wrapper {
        padding: 30px; /* Reduced from 40px */
    }

    .main-heading {
        font-size: 2rem; /* Reduced from 2.8rem */
    }
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px; /* Reduced from 60px */
    }

    .content-column {
        padding-right: 0;
    }

    .visual-column {
        height: 400px; /* Reduced from 500px */
    }

    .device-mockup.phone {
        width: 240px;
        height: 480px;
    }

    .device-mockup.tablet {
        width: 350px;
        height: 260px;
    }

    .device-mockup.desktop {
        width: 420px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .features_homepage {
        padding: 30px 0; /* Reduced from 40px */
    }

    .content-wrapper {
        padding: 25px; /* Reduced from 30px */
    }

    .main-heading {
        font-size: 2rem; /* Reduced from 2.2rem */
    }

    .accordion-header {
        padding: 18px; /* Reduced from 20px */
    }

    .accordion-inner {
        padding: 0 18px 18px; /* Reduced from 0 20px 20px */
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
}

.speakers-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.speakers-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>')
        repeat;
    background-size: 50px 50px;
}

.speakers-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.speakers-content {
    padding-right: 40px;
}

.featured-label {
    color: #465feb;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.description {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.view-link {
    display: inline-flex;
    align-items: center;
    color: #272ef1;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.view-link:hover {
    color: #333cea;
    transform: translateX(5px);
}

.view-link i {
    margin-left: 10px;
    font-size: 12px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.speaker-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.speaker-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.speaker-card:hover .speaker-image {
    transform: scale(1.05);
}

.speaker-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 25px 25px;
    color: white;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.speaker-card:hover .speaker-info {
    transform: translateY(0);
}

.speaker-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.speaker-title {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.speaker-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #117fdf;
    transform: scale(1.1);
}

.expand-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.speaker-card:hover .expand-icon {
    opacity: 1;
    transform: scale(1.1);
}

.expand-icon:hover {
    background: #1e2fe9;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .speakers-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .speakers-content {
        padding-right: 0;
        text-align: center;
    }

    .main-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .speakers-section {
        padding: 80px 0;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 28px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .speakers-section {
        padding: 60px 0;
    }

    .main-title {
        font-size: 24px;
    }

    .speaker-image {
        height: 200px;
    }
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Dark section background */
.o-dark {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 20px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

/* Container and grid system */
.row {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.row--padding {
    padding: 0 40px;
}

.row--center {
    text-align: center;
}

.cell-start-1.cell-end-11 {
    margin-bottom: 60px;
}

/* Typography */
.heading-2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: rgb(11, 11, 11);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.o-rtf.heading--sub {
    font-size: 1.2rem;
    color: #fffcfc;
    font-weight: 500;
    line-height: 1.5;
}

.o-rtf.heading--sub p {
    margin: 0;
    color: #b1afaf;
    font-size: smaller;
}

/* Event categories grid */
.uses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual category cards */
.uses__item {
    display: flex;
    align-items: center;
    padding: 5px 25px;
    background-color: #c3caed;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 40px;
}

.uses__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #f8f9fa;
}

/* SVG icons styling */
.uses__item svg {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Category text */
.uses__item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

/* Animation classes */
.js-animated--fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.js-animated--fade.is-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Add staggered animation delay */
.js-animated--fade:nth-child(1) {
    transition-delay: 0.1s;
}
.js-animated--fade:nth-child(2) {
    transition-delay: 0.2s;
}
.js-animated--fade:nth-child(3) {
    transition-delay: 0.3s;
}
.js-animated--fade:nth-child(4) {
    transition-delay: 0.4s;
}
.js-animated--fade:nth-child(5) {
    transition-delay: 0.5s;
}
.js-animated--fade:nth-child(6) {
    transition-delay: 0.6s;
}
.js-animated--fade:nth-child(7) {
    transition-delay: 0.7s;
}
.js-animated--fade:nth-child(8) {
    transition-delay: 0.8s;
}
.js-animated--fade:nth-child(9) {
    transition-delay: 0.9s;
}
.js-animated--fade:nth-child(10) {
    transition-delay: 1s;
}
.js-animated--fade:nth-child(11) {
    transition-delay: 1.1s;
}
.js-animated--fade:nth-child(12) {
    transition-delay: 1.2s;
}

/* Responsive design */
@media (max-width: 1024px) {
    .heading-2 {
        font-size: 2.5rem;
    }

    .uses {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }

    .row--padding {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .o-dark {
        padding: 60px 0;
    }

    .heading-2 {
        font-size: 2.2rem;
    }

    .o-rtf.heading--sub {
        font-size: 1.1rem;
    }

    .uses {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .row--padding {
        padding: 0 20px;
    }

    .uses__item {
        padding: 18px 20px;
    }

    .uses__item svg {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .uses__item span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .heading-2 {
        font-size: 1.8rem;
    }

    .o-rtf.heading--sub {
        font-size: 1rem;
    }

    .row--padding {
        padding: 0 15px;
    }

    .uses__item {
        padding: 15px;
        min-height: 70px;
    }

    .uses__item svg {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .uses__item span {
        font-size: 0.95rem;
    }
}

/* Solutions Section Styling */
.solutions-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 25% 25%,
            rgba(59, 130, 246, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 75% 75%,
            rgba(168, 85, 247, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Base Card Styling */
.solution-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Individual Card Accent Colors */
.ticket-selling::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.fabrication-supports::before {
    background: linear-gradient(90deg, #10b981, #047857);
}

.venue-booking::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.sponsorship::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

/* Card Header */
.card-header {
    margin-bottom: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Individual Logo Colors */
.ticket-selling .logo {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
    border: 1px solid #93c5fd;
}

.fabrication-supports .logo {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #047857;
    border: 1px solid #6ee7b7;
}

.venue-booking .logo {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
    border: 1px solid #fcd34d;
}

.sponsorship .logo {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
    border: 1px solid #c4b5fd;
}

.logo i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Card Content */
.solution-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.solution-card > p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 1.05rem;
    font-weight: 400;
}

/* Features List */
.features {
    margin-bottom: 36px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.feature:hover {
    transform: translateX(8px);
    background: rgba(248, 250, 252, 0.8);
    padding-left: 16px;
}

.feature i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 16px;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Individual Feature Icon Colors */
.ticket-selling .feature i {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
}

.fabrication-supports .feature i {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #047857;
}

.venue-booking .feature i {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

.sponsorship .feature i {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
}

.feature span {
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

/* Learn More Button */
.learn-more-btn {
    width: 100%;
    padding: 18px 32px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8fafc;
    color: #374151;
}

/* Individual Button Colors */
.ticket-selling .learn-more-btn {
    background: linear-gradient(135deg, #f9f9f9, #c5c7cc);
    color: #0b0a0a;
}

.fabrication-supports .learn-more-btn {
    background: linear-gradient(135deg, #f9f9f9, #c5c7cc);
    color: #0b0a0a;
}

.venue-booking .learn-more-btn {
    background: linear-gradient(135deg, #f9f9f9, #c5c7cc);
    color: #0b0a0a;
}

.sponsorship .learn-more-btn {
    background: linear-gradient(135deg, #f9f9f9, #c5c7cc);
    color: #0b0a0a;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.learn-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s;
}

.learn-more-btn:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solutions-section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solution-card {
        padding: 32px;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .solution-card {
        padding: 24px;
    }

    .solution-card h3 {
        font-size: 1.5rem;
    }
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.solution-card:nth-child(1) {
    animation-delay: 0.1s;
}
.solution-card:nth-child(2) {
    animation-delay: 0.2s;
}
.solution-card:nth-child(3) {
    animation-delay: 0.3s;
}
.solution-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Hover effects for better interactivity */
.solution-card:hover .logo {
    transform: scale(1.05);
}

.solution-card:hover h3 {
    color: #059669;
    transition: color 0.3s ease;
}

/* top section */
.highlight {
    color: #ff6b6b;
}

#rotating-words {
    position: relative;
    min-width: 200px;
    height: 1.2em;
    vertical-align: bottom;
}

#rotating-words::after {
    content: "|";
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
    font-weight: bold;
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}
/* end */

.search-card-container {
    margin-top: -63px;
    display: flex;
    justify-content: center;
}

.search-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    max-width: 1200px;
    width: 100%;
}

.search-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.search-header h3 {
    margin: 0;
    font-weight: bold;
    color: #333;
    font-size: 24px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: end;
}

.form-group {
    flex: 1;
    min-width: 180px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.search-btn-group {
    flex: 0 0 auto;
}

.search-button {
    background: #ff6b6b;
    color: white;
    padding: 11px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.date-section {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-group {
        min-width: 100%;
    }

    .search-card {
        padding: 20px;
        margin: 10px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
        sans-serif;
    background-color: white;
}

.cvent-section {
    background-color: #bacbe9;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    height: 400px; /* Fixed height container */
}

/* Image Div - White/Normal Background */
.image-container {
    flex: 0 0 37%;
    position: relative;
    background-color: #bacbe9;
    display: flex;
    align-items: center;
}

.team-image {
    height: 500px;
    max-height: 300px; /* Maximum height */
    object-fit: cover;
}

/* Content Div - Blue Background */
.text-container {
    flex: 1;
    background: linear-gradient(135deg, #2f63a7 0%, #71a1ee 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cvent-logo {
    margin-bottom: 20px;
}

.cvent-text {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -1px;
    color: white;
    text-transform: lowercase;
}

.main-heading {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.description strong {
    font-weight: 700;
    color: white;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
}

.cta-link:hover {
    border-bottom-color: white;
    transform: translateX(5px);
}

.arrow {
    margin-left: 8px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-link:hover .arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 0;
        height: auto;
    }

    .image-container {
        flex: none;
        height: 200px;
        padding: 15px;
    }

    .team-image {
        width: 70%;
        max-height: 150px;
    }

    .text-container {
        padding: 30px 20px;
        text-align: center;
    }

    .main-heading {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
    }

    .cvent-section {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 24px;
    }

    .cvent-text {
        font-size: 28px;
    }

    .description {
        font-size: 15px;
    }

    .text-container {
        padding: 25px 15px;
    }

    .team-image {
        width: 90%;
        max-height: 120px;
    }
}
/* life cycle */

/* Event Lifecycle Dashboard */
.event-lifecycle-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
}

/* Header Styles */
.lifecycle-main-header {
    text-align: center;
    margin-bottom: 40px;
}

.lifecycle-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.lifecycle-header-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Main Content Layout */
.lifecycle-main-content-area {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sidebar Styles */
.lifecycle-tools-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 250px;
}

.lifecycle-dropdown-container {
    position: relative;
}

.lifecycle-tool-dropdown {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #3b5062 0%, #3182ce 100%);
    border: none;
    border-radius: 100px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    appearance: none;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.lifecycle-tool-dropdown:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
    background: linear-gradient(135deg, #0d75c0 0%, #d0dde8 100%);
}

/* Lifecycle Circle Visualization */
.event-lifecycle-visualization {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lifecycle-circle-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Outer Ring */
.lifecycle-outer-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(104, 211, 145, 0.9) 0deg 90deg,
        rgba(237, 137, 54, 0.9) 90deg 180deg,
        rgba(66, 153, 225, 0.9) 180deg 270deg,
        rgba(159, 122, 234, 0.9) 270deg 360deg
    );
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Lifecycle Segments */
.lifecycle-segment {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.lifecycle-segment.active {
    opacity: 1;
}

.segment-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.lifecycle-segment.active .segment-glow {
    opacity: 1;
}

.lifecycle-segment-label {
    position: absolute;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 5;
    transition: all 0.3s ease;
}

/* Planning Segment (Top-Right) */
.lifecycle-planning-segment {
    background: conic-gradient(from -45deg, #68d391 0deg, #48bb78 90deg);
    clip-path: polygon(50% 10%, 100% 0, 100% 50%);
}

.lifecycle-planning-segment .lifecycle-segment-label {
    top: 60px;
    right: 60px;
}

/* Promotion Segment (Bottom-Right) */
.lifecycle-promotion-segment {
    background: conic-gradient(from 45deg, #ed8936 0deg, #dd6b20 90deg);
    clip-path: polygon(29% 72%, 100% 50%, 100% 100%);
}

.lifecycle-promotion-segment .lifecycle-segment-label {
    bottom: 60px;
    right: 60px;
}

/* Day of Event Segment (Bottom-Left) */
.lifecycle-day-of-event-segment {
    background: conic-gradient(from 135deg, #4299e1 0deg, #3182ce 90deg);
    clip-path: polygon(50% 10%, 50% 100%, 0 100%);
}

.lifecycle-day-of-event-segment .lifecycle-segment-label {
    bottom: 60px;
    left: 60px;
}

/* Pre-Event Segment (Top-Left) */
.lifecycle-pre-event-segment {
    background: conic-gradient(from 225deg, #9f7aea 0deg, #805ad5 90deg);
    clip-path: polygon(50% 10%, 0 0, 0 50%);
}

.lifecycle-pre-event-segment .lifecycle-segment-label {
    top: 60px;
    left: 60px;
}

/* Center Hub */
.lifecycle-center-information-hub {
    position: absolute;
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2),
        0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.lifecycle-brand-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border-radius: 50%;
    margin-bottom: 15px;
    color: white;
}

.lifecycle-phase-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 10px 0;
    line-height: 1.2;
}

.lifecycle-phase-description {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lifecycle-main-content-area {
        flex-direction: column;
        gap: 40px;
    }

    .lifecycle-circle-wrapper {
        width: 320px;
        height: 320px;
    }

    .lifecycle-segment {
        width: 320px;
        height: 320px;
    }

    .lifecycle-center-information-hub {
        width: 160px;
        height: 160px;
    }

    .lifecycle-segment-label {
        font-size: 0.8rem;
    }

    /* Adjust label positions for mobile */
    .lifecycle-planning-segment .lifecycle-segment-label {
        top: 50px;
        right: 50px;
    }

    .lifecycle-promotion-segment .lifecycle-segment-label {
        bottom: 50px;
        right: 50px;
    }

    .lifecycle-day-of-event-segment .lifecycle-segment-label {
        bottom: 50px;
        left: 50px;
    }

    .lifecycle-pre-event-segment .lifecycle-segment-label {
        top: 50px;
        left: 50px;
    }
}

/* section 6 */
.platform_features_section {
    padding: 30px 0;
    background-color: #bacbe9;
    position: relative;
}

.main_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature_layout_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content Styles */
.text_content_area {
    padding-right: 40px;
}

.content_inner_wrapper {
    max-width: 500px;
}

.primary_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.subtitle_description {
    color: #fafafa;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.feature_accordion_item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
}

.accordion_item_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion_item_header:hover {
    color: #007bff;
}

.accordion_item_title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
}

.accordion_toggle_icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #6c757d;
    transition: transform 0.3s ease, color 0.3s ease;
    width: 20px;
    text-align: center;
}

.feature_active .accordion_toggle_icon {
    transform: rotate(45deg);
    color: #007bff;
}

.feature_active .accordion_item_title {
    color: #f4f6f9;
    font-weight: 600;
}

.accordion_item_body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.feature_active .accordion_item_body {
    max-height: 200px;
    padding-bottom: 25px;
}

.accordion_body_content {
    padding-right: 30px;
}

.accordion_body_content p {
    color: #030303;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* .action_button_section {
    margin-top: 30px;
} */
.action_button_section {
    width: 100%;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    box-shadow: rgba(66, 153, 225, 0.3) 0px 4px 15px;
    text-align: center;
    padding: 9px 15px;
    background: linear-gradient(
        135deg,
        rgb(59, 80, 98) 0%,
        rgb(49, 130, 206) 100%
    );
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 100px;
    outline: none;
    transition: 0.3s;
    margin-top: 20px;
}

/* .primary_action_btn {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.primary_action_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    text-decoration: none;
    color: white;
} */

/* Right Visual Styles with Enhanced Shadows */
.device_mockup_area {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.mockup_display_container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.device_stack_layout {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Enhanced Shadow Effects for Device Frames */
.mobile_device_frame,
.tablet_device_frame,
.desktop_device_frame,
.email_device_frame {
    position: absolute;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile_device_frame.device_active,
.tablet_device_frame.device_active,
.desktop_device_frame.device_active,
.email_device_frame.device_active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

/* Individual device positioning with enhanced shadows */
/* .mobile_device_frame {
    width: 360px;
    height: 500px;
    top: 50px;
    right: 100px;
    z-index: 4;
} */

.tablet_device_frame {
    width: 380px;
    height: 500px;
    top: 75px;
    right: 50px;
    z-index: 3;
}

.desktop_device_frame {
    width: 420px;
    height: 300px;
    top: 150px;
    right: 0;
    z-index: 2;
}

.email_device_frame {
    width: 300px;
    height: 400px;
    top: 100px;
    right: 120px;
    z-index: 3;

    /* Email-specific shadow */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08), 0 12px 24px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.18), -2px 6px 24px rgba(0, 0, 0, 0.08);
}

.email_device_frame.device_active {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.15),
        0 40px 80px rgba(0, 0, 0, 0.22), -3px 10px 40px rgba(0, 0, 0, 0.12);
}

/* .device_screen_content {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    position: relative;
} */

/* Add inner shadow to screen content for more depth */
.device_screen_content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;
}

/* .device_screen_content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */

/* Add floating animation for more dynamic effect */
@keyframes floatAnimation {
    0%,
    100% {
        transform: translateY(0px) translateZ(0);
    }
    50% {
        transform: translateY(-10px) translateZ(0);
    }
}

.mobile_device_frame.device_active {
    animation: floatAnimation 6s ease-in-out infinite;
    animation-delay: 0s;
}

.tablet_device_frame.device_active {
    animation: floatAnimation 8s ease-in-out infinite;
    animation-delay: 1s;
}

.desktop_device_frame.device_active {
    animation: floatAnimation 10s ease-in-out infinite;
    animation-delay: 2s;
}

.email_device_frame.device_active {
    animation: floatAnimation 7s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature_layout_grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .text_content_area {
        padding-right: 0;
        order: 2;
    }

    .device_mockup_area {
        order: 1;
        height: 400px;
    }

    .primary_title {
        font-size: 2rem;
    }

    /* Reduce shadows on smaller screens */
    .mobile_device_frame,
    .tablet_device_frame,
    .desktop_device_frame,
    .email_device_frame {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 768px) {
    .platform_features_section {
        padding: 60px 0;
    }

    .primary_title {
        font-size: 1.8rem;
    }

    .subtitle_description {
        font-size: 1rem;
    }

    .device_mockup_area {
        height: 300px;
    }

    .mobile_device_frame {
        width: 200px;
        height: 350px;
        right: 60px;
    }

    .tablet_device_frame {
        width: 250px;
        height: 320px;
        right: 30px;
    }

    .desktop_device_frame {
        width: 300px;
        height: 200px;
        right: 0;
    }

    /* Simplified shadows for mobile */
    .mobile_device_frame,
    .tablet_device_frame,
    .desktop_device_frame,
    .email_device_frame {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    /* Disable animations on mobile for better performance */
    .mobile_device_frame.device_active,
    .tablet_device_frame.device_active,
    .desktop_device_frame.device_active,
    .email_device_frame.device_active {
        animation: none;
    }
}

/* section 7  */

.qr-ticket-container {
    max-width: 1000px;
    margin: 50px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    position: relative;
}

.qr-ticket-wrapper {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;

    height: 260px;
}

.qr-ticket-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.qr-code-section {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    background: white;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code-svg {
    width: 100%;
    height: 100%;
    background: white;
}

.qr-ticket-info {
    flex: 1;
    color: white;
}

.qr-ticket-heading {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
    color: white;
}

.qr-ticket-description {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
    color: white;
}

.qr-ticket-perforation-top,
.qr-ticket-perforation-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    background: white;
    z-index: 1;
}

.qr-ticket-perforation-top {
    top: -10px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 8px,
        white 8px,
        white 16px
    );
    border-radius: 50px;
}

.qr-ticket-perforation-bottom {
    bottom: -10px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 8px,
        white 8px,
        white 16px
    );
    border-radius: 50px;
}

.qr-ticket-stat {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #060606;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    border: 2px dashed #d1d5db;
    margin-bottom: 23px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .qr-ticket-wrapper {
        padding: 24px;
    }

    .qr-ticket-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .qr-ticket-heading {
        font-size: 24px;
    }

    .qr-ticket-description {
        font-size: 14px;
    }

    .qr-code-section {
        width: 120px;
        height: 120px;
    }
}

/* section 8 */
.compact-solutions-section {
    background: #bacbe9;
    padding: 48px 0 36px 0;
}

.compact-solutions-header {
    text-align: center;
    margin-bottom: 38px;
}
.compact-section-title {
    font-size: 51px;
    font-weight: 700;
    color: #181819;
    margin-bottom: 8px;
}
.compact-section-desc {
    font-size: 1.15rem;
    color: #ffffff;
    max-width: 680px;
    margin: 0 auto;
}

.compact-solutions-container {
    display: flex;
    gap: 3px;
    justify-content: center;
    max-width: 1160px;
    margin: 0 auto;
}

.compact-card {
    flex: 1 1 420px;
    max-width: 480px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(80, 95, 125, 0.13);
    padding: 30px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    margin: 0 8px;
    min-width: 0;
}

.compact-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 7px;
    color: #26304b;
}

.compact-desc {
    font-size: 1.03rem;
    color: #494e5e;
    margin-bottom: 15px;
}

.compact-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.compact-features li {
    font-size: 0.97rem;
    color: #63677e;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

/* Unique card accent lines */
#ticket-selling-card {
    border-top: 5px solid #3182ce;
}
#fabrication-supports-card {
    border-top: 5px solid #3182ce;
}
#venue-booking-card {
    border-top: 5px solid #3182ce;
}
#sponsorship-card {
    border-top: 5px solid #3182ce;
}

/* Responsive: 2 columns on tablets, 1 on mobile */
@media (max-width: 1000px) {
    .compact-solutions-container {
        gap: 24px;
    }
    .compact-card {
        max-width: 90vw;
    }
}
@media (max-width: 700px) {
    .compact-solutions-container {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .compact-card {
        max-width: 98vw;
        width: 100%;
        margin: 0 0 15px 0;
        padding: 24px 13px 14px 13px;
    }
}

/* last section */
.article-showcase {
    padding: 60px 20px;
    background-color: #fdfeff;
    font-family: "Arial", sans-serif;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.advice-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.advice-btn:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .card-image img {
    transform: scale(1.05);
}

.weezevent-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.weezevent-content {
    text-align: center;
    padding: 20px;
}

.weezevent-logo {
    background: black;
    color: white;
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    border-radius: 8px;
}

.weezevent-text h4 {
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.weezevent-text p {
    margin: 0 0 20px 0;
    font-size: 1.1rem;
}

.month-display {
    background: #4169e1;
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-block;
}

.month {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.year {
    font-size: 1.1rem;
    opacity: 0.9;
}

.card-content {
    padding: 25px;
}

.card-heading {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #2c3e50;
    margin: 0 0 20px 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.publish-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-tag {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-tag {
    background-color: #e8f4fd;
    color: #2980b9;
}

.news-tag {
    background-color: #e3f2fd;
    color: #1976d2;
}

@media (max-width: 768px) {
    .article-showcase {
        padding: 40px 15px;
    }

    .showcase-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .showcase-title {
        font-size: 2rem;
    }

    .article-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-content {
        padding: 20px;
    }

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

/* Rise-up animation styles */
.animate-rise-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-rise-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for child elements */
.animate-rise-up-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-rise-up-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Add delays for staggered effect */
.animate-rise-up-stagger.is-visible > *:nth-child(1) {
    transition-delay: 0.1s;
}
.animate-rise-up-stagger.is-visible > *:nth-child(2) {
    transition-delay: 0.2s;
}
.animate-rise-up-stagger.is-visible > *:nth-child(3) {
    transition-delay: 0.3s;
}
.animate-rise-up-stagger.is-visible > *:nth-child(4) {
    transition-delay: 0.4s;
}
.animate-rise-up-stagger.is-visible > *:nth-child(5) {
    transition-delay: 0.5s;
}

/* Special animation for hero section */
.hero-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card animations */
.card-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-animate.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.compact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(60, 60, 60, 0.09);
    padding: 22px 26px 26px 26px;
    margin-bottom: 25px;
    max-width: 340px;
    display: inline-block;
    vertical-align: top;
    transition: box-shadow 0.2s;
}
.compact-card:hover {
    box-shadow: 0 6px 24px rgba(52, 112, 254, 0.15);
}
.compact-title {
    font-size: 1.25rem;
    color: #0d0d0e;
    margin-bottom: 10px;
}
.compact-desc {
    font-size: 0.97rem;
    color: #333;
    margin-bottom: 16px;
}
.compact-features {
    list-style: disc inside;
    color: #525252;
    margin-bottom: 20px;
}

.compact-btn {
    display: inline-block;
    padding: 10px 18px;
    background: linear-gradient(90deg, #457aa4 60%, #e0eeee 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 38px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1rem;
    border: none;
}
.launch-description {
    color: #ffffff; /* light gray */
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 18px;
}

.compact-btn:active {
    background: #2635c5;
    color: #d0e6ff;
}

@media (max-width: 720px) {
    .compact-card {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 18px;
    }
}

/* custom services */

.customer-service {
    max-width: 1100px;
    margin: 20px auto;
    padding: 40px 24px;
    background: #fff;
    border-radius: 24px;
    font-family: "Segoe UI", "Arial", sans-serif;
}

.customer-service h2 {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin: 0 0 12px;
}

.customer-service .subtitle {
    text-align: center;
    color: #444;
    font-size: 1rem;
    margin-bottom: 40px;
}

.service-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.service-info {
    flex: 1 1 430px;
    padding-right: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 36px;
}

.checkmark {
    color: #246cff;
    font-size: 1.8rem;
    margin-right: 16px;
    margin-top: 4px;
}

.service-item h3 {
    color: #246cff;
    margin: 0;
    font-size: 1.2rem;
}

.service-item p {
    margin: 4px 0 16px 0;
    color: #333;
    font-size: 1rem;
}

.black-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.25s;
}
.black-btn:hover {
    background: #246cff;
}

.service-image {
    flex: 1 1 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-image img {
    width: 500px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(40, 40, 90, 0.08);
    object-fit: cover;
    height: 382px;
}
