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

:root {
    --primary-purple: #8E3090;
    --primary-red: #EF4444;
    --dark-bg: #1a1a1a;
    --dark-text: #2d2d2d;
    --light-text: #666666;
    --white: #ffffff;
    --accent-red: #C41E3A;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

section {
    max-width: 100%;
}

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

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: block;
    justify-self: start;
    text-decoration: none;
    line-height: 0;
}

.logo-img {
    display: block;
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    transition: transform 0.3s;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform:uppercase; padding:10px 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    background: var(--primary-purple); color: #fff;
}

.btn-book {
    display: inline-block;
    background-color: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    justify-self: end;
    text-decoration: none;
    font-family: inherit;
}

.btn-book:hover {
    background-color: #7A2980;
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    max-height: 700px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide.active .hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    color: var(--white);
    font-size: 42px;
    font-weight: bold;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero-description {
    color: var(--white);
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    opacity: 0.95;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.hero-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-arrow:active {
    transform: scale(0.95);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(195, 148, 196, 0.9);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-purple);
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.dot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot:hover {
    background: rgba(142, 48, 144, 0.7);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

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

.about-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.about-image-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px dashed var(--primary-purple);
    opacity: 0.3;
}

.about-image-decoration.top-left {
    top: -20px;
    left: -20px;
    border-radius: 50%;
}

.about-image-decoration.bottom-right {
    bottom: -20px;
    right: -20px;
    border-radius: 50%;
    background: rgba(142, 48, 144, 0.1);
}

.about-content {
    padding-left: 20px;
}

.section-subtitle {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title {
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
}

.about-text {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.features-header {
    
    max-width: 700px;
    margin: 0 auto 60px;
}

.features-description {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--primary-purple);
    stroke-width: 1.5;
}

.feature-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-text {
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
}

/* Events Section */
.events {
    padding: 50px 0;
    overflow: hidden;
    max-width: 100%;
    
    background: -webkit-linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(91, 91, 91, 1) 100%);
    background: -moz-linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(91, 91, 91, 1) 100%);
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(91, 91, 91, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr="#000000",
    endColorstr="#5B5B5B",
    GradientType=1);
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    
}

.btn-view-all {
    background-color: #fff;
    color: var(--black);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn-view-all:hover {
    background-color: #d9d9d9;
}

.events-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.events .container-fluid {
    overflow: hidden;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.events-track {
    display: flex;
    gap: 0;
    padding: 50px;
    transition: transform 0.5s ease;
    width: max-content;
    max-width: none;
    will-change: transform;
}

.event-card {
    min-width: 350px;
    flex-shrink: 0;
    
}

.event-card:last-child {
    margin-right: 0;
}

.event-poster {
    position: relative;
    width: 78%;
    height: 400px;
    overflow: hidden;
	transition: transform 0.35s ease;
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card:hover .event-poster {
    transform: scale(1.12);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-content {
    color: var(--white);
}

.event-presenter {
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 5px;
    opacity: 0.9;
}

.event-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.event-name a{
    color:#fff; text-decoration:none;
}

.event-name a:hover{
    color: var(--primary-purple); text-decoration:none;
}



.event-venue,
.event-date {
    font-size: 14px;
    margin-bottom: 5px;
}

.event-sponsor {
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.event-contact {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 5px;
}

.event-phone,
.event-email {
    font-size: 14px;
}

.events-dots {
    display: none;
}

.events-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 2;
    pointer-events: none;
}

.events-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    background-color: #fff;
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    pointer-events: auto;
}

.events-arrow:hover {
    background-color: var(--primary-purple);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.events-arrow:active {
    transform: scale(0.94);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-section {
    
    padding: 50px;
    
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.form-input,
.form-textarea {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #7A2980;
}

.contact-info-section {
    position: relative;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details {
    color: var(--dark-text);
    font-size: 16px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #fff;
    color: var(--dark);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-description {
    color: var(--dark);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-purple);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 18px; 
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

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

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background-color: rgba(142, 48, 144, 0.2);
    color: #8E3090;
}

.footer-contact-icon svg {
    width: 18px;
    height: 18px;
}

.footer-contact-item p {
    color: var(--dark);
    font-size: 14px;
    margin: 0;
    line-height: 1.8;
}

.footer-bottom {
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-wrapper {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .btn-book {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 32px;
    }

    .hero {
        height: clamp(320px, 50vw, 520px);
        max-height: none;
    }
    
    .about-wrapper,
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .events-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .event-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .header {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }

    .header .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .nav-wrapper {
        grid-template-columns: 1fr auto auto;
        gap: 8px;
        width: 100%;
    }

    .btn-book {
        justify-self: end;
        max-width: 110px;
        padding: 8px 10px;
        font-size: 10px;
        line-height: 1.2;
        white-space: normal;
        text-align: center;
    }

    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .about-content {
        padding-left: 0;
    }

    .about {
        padding: 60px 0;
    }

    .whychoose {
        padding: 40px 16px;
    }

    .events .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .events .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .events-track {
        padding: 24px 0;
        width: 100%;
        max-width: 100%;
    }

    .events-carousel {
        overflow: hidden;
        min-height: 468px;
    }

    .event-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 56px;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .event-poster {
        width: 100%;
        max-width: 300px;
        height: 420px;
        margin: 0 auto;
        flex-shrink: 0;
    }

    .events-controls {
        padding: 0 8px;
    }

    .events-arrow {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .nav-toggle {
        display: flex;
        justify-self: end;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 0;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.is-open {
        transform: translateX(0);
    }
    
    .nav-menu .nav-link {
        color: var(--dark-text);
        padding: 14px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-size: 16px;
    }
    
    .nav-menu .nav-link:hover {
        color: #8E3090;
    }
    
    .hero-title {
        font-size: 24px;
    }

    .hero {
        margin-top: 70px;
        height: auto;
        min-height: clamp(300px, 56vw, 480px);
        max-height: none;
        aspect-ratio: 16 / 9;
    }

    .hero-slider,
    .hero-slide {
        height: 100%;
        min-height: inherit;
    }

    .hero-image {
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-color: #0a0a0a;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.55) 100%
        );
    }

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-controls {
        padding: 0 12px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .hero-dots {
        bottom: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-image {
        height: 400px;
    }
}

.getintouch{background-color: #F9F9F9;
    background-image: url(images/box-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;}
	
.contactinfo{padding: 30px;
    background-position: top left;
    background-size: cover;
	
}
.text-purple{color: var(--primary-purple);}
.bg-black{background-color: #000;}

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


.sponsors-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/slide2.png');
    background-size: cover;
    background-position: center;
}

.events-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/inr_2.jpg');
    background-size: cover;
    background-position: center;
}





.contact-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/contacttitle.jpg');
    background-size: cover;
    background-position: center;
}

.booknow-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/slide3.png');
    background-size: cover;
    background-position: center;
}


.page-about .nav-link.active {
    color: #8E3090;
}

/* About Hero */
.about-hero {
    position: relative;
    height: 500px;
    min-height: 350px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/slide4.jpg');
    background-size: cover;
    background-position: center;
}




.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero-title {
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.about-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.about-hero-cta:hover {
    opacity: 0.9;
}

.about-hero-cta svg {
    flex-shrink: 0;
}

/* About Section (two columns) */
.about-section {
    padding: 100px 0;
    background: #fff;
}

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

.about-section-image {
    position: relative;
}

.about-section-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.about-deco {
    position: absolute;
    z-index: 1;
}

.about-deco-circle {
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 60px;
    background: repeating-linear-gradient(
        90deg,
        #8E3090 0,
        #8E3090 10px,
        #fff 10px,
        #fff 20px
    );
    border-radius: 0 0 60px 60px;
    opacity: 0.9;
}

.about-deco-dots {
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, #8E3090 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.8;
}

.about-section-text .section-subtitle {
    color: #8E3090;
}

.about-section-para {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Accordion */
.about-accordion {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.about-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #fff;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
    font-weight: 600;
    color: #8E3090;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.about-accordion-btn:last-of-type {
    border-bottom: none;
}

.about-accordion-btn:hover {
    background: #f9f9f9;
}

.about-accordion-btn[aria-expanded="true"] .accordion-chevron {
    transform: rotate(90deg);
}

.accordion-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 10px;
    transition: transform 0.3s;
    color: #8E3090;
}

.about-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.about-accordion-panel p {
    padding: 16px 20px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--light-text);
    border-bottom: 1px solid #e5e5e5;
}

.about-accordion-btn:last-of-type + .about-accordion-panel p {
    border-bottom: none;
}

/* Why Choose Us */
.why-choose-section {
    padding: 100px 0;
    background: #fff;
}

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

.why-choose-intro {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.why-choose-list {
    margin: 0 0 32px 20px;
    padding: 0;
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.8;
}

.why-choose-list li {
    margin-bottom: 10px;
}

/* Progress bars */
.progress-bars {
    margin-top: 24px;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
}

.progress-pct {
    color: #8E3090;
}

.progress-track {
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #8E3090;
    border-radius: 4px;
    transition: width 1s ease;
}

/* Why Choose - Image with play button */
.why-choose-image {
    position: relative;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #8E3090;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(142, 48, 144, 0.4);
    transition: transform 0.2s, background 0.2s;
}

.play-btn:hover {
    background: #7A2980;
    transform: translate(-50%, -50%) scale(1.05);
}

.play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

/* YouTube video popup */
.video-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.video-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.video-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.video-popup-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
}

.video-popup-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-popup-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

/* Footer logo image on about page */
.footer-logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.footer-links-sep {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 4px;
}

/* Responsive */
@media (max-width: 968px) {
    .about-hero-title {
        font-size: 32px;
    }

    .about-section-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .about-section-image {
        order: 1;
    }

    .about-section-text {
        order: 2;
    }

    .why-choose-text {
        order: 1;
    }

    .why-choose-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 320px;
        min-height: 280px;
    }

    .about-hero-title {
        font-size: 28px;
    }
}



/* Custom classes*/
.btnrad{border-radius:50px;}




/* Gallery Grid */
.gallery {
    display: grid; margin-bottom:2%;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from { transform: scale(0.6); }
    to { transform: scale(1); }
}

/* Close Button */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.whychoose{
	background-image: url(images/whychoosebg.jpg);
    background-position: center center; padding:5%;
    background-repeat: no-repeat;
    background-size: cover;	
}

.whychoose-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.whyleft {
    width: 100%;
	background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), #18181B;
	box-shadow: 0px 7.77px 2.21px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843), 0px -8px 0px 0px #2E2E2E inset, 0px 4px 0px 0px rgba(255, 255, 255, 0.3019607843) inset;
	
    padding: 5%;
}

.whychoose-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.whyleft-subtitle {
    color: var(--accent-red);
    font-size: 14px;
    text-transform: uppercase;
    
    margin-bottom: 10px;
    font-weight: 700;
}

.whyleft-title {
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
}
.whyleft-description {
    color: var(--white);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
}

.whyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
    height: 100%;
	background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), #18181B;
    
    padding: 48px 40px 34px;
    box-shadow: 0px 7.77px 2.21px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843), 0px -8px 0px 0px rgba(0, 0, 0, 0.0509803922) inset, 0px 4px 0px 0px rgba(255, 255, 255, 0.6) inset;
}

.whyright .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.whyright .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.whyright .feature-title {
    margin-bottom: 15px;
}

.whyright .feature-text {
    flex-grow: 1;
}

@media (max-width: 968px) {
    .whychoose-cards {
        grid-template-columns: 1fr;
    }

    .whyright {
        min-height: auto;
    }
}
.events-breadcrumb, a{color:#fff;}
.text-center{text-align:center;}
.text-light{color: var(--white);}
.dark-light{color: #000;}
.mb-0{margin-bottom:0px;}
.bgdark{
	background: -webkit-linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(43, 43, 43, 1) 100%);
    background: -moz-linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(43, 43, 43, 1) 100%);
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(43, 43, 43, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr="#000000",
    endColorstr="#5B5B5B",
    GradientType=1);
	
}

.bglight{
	    background-image: url(images/whychoosebg.jpg);
		background-position: center center;
		
		background-repeat: no-repeat;
		background-size: cover;
}

/* Contact Us page */
.page-contact .nav-menu .nav-link[href="contact.html"] {
    color: var(--primary-purple, #8E3090);
}

.page-contact #contact.contact {
    padding: 120px 0 100px;
    margin-top: 70px;
    
}

.page-contact .contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.page-contact .contact-info-section {
    text-align: left;
    align-self: center;
    padding: 0;
}

.page-contact .contact-info-section .section-title {
    text-align: left;
    color: var(--white);
    margin-bottom: 30px;
}

.page-contact .contact-info-list {
    margin-top: 0;
}

.page-contact .contact-info-item {
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

.page-contact .contact-details {
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
}

.page-contact .contact-details p {
    margin: 0 0 4px;
}

.page-contact .contact-image-section {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-contact .contact-image-section img {
    width: 100%;
    height: auto;
    
    object-fit: cover;
    
    display: block;
}

@media (max-width: 968px) {
    .page-contact .contact-page-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-contact .contact-image-section img {
        max-height: 400px;
    }
}