/* GENERAL CSS STARTS HERE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Quicksand", sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 600;
}

              section {
            padding: 5rem 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1e3c72;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn{
            font-family: 'Quicksand', sans-serif;
        }

            .wev-btn {
            padding: 15px 35px;
            font-size: 1.1em;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
        }

        .wev-btn-primary {
            background: white;
            color: #667eea;
        }

        .wev-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .wev-btn-success {
            background: #38ef7d;
            color: white;
        }

        .wev-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        @keyframes wev-fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

                @media (max-width: 768px) {
            .wev-section-title {
                font-size: 2em;
            }

            .wev-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }



/* Header section css starts here */
header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1385DA;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    color: #1385DA;
}

.logo-img {
    width: 100px;
    height: 80px;
}

.nav-center {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    margin-left: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
}

.nav-links a {
    color: #363535;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
    font-size: .97rem;
}

.nav-links a:hover {
    color: #2a5298;
}

.nav-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-left: auto;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-btn-booking {
    background: #ffd700;
    color: #1e3c72;
    border: 2px solid #ffd700;
    }

.nav-btn-booking:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.nav-btn-loan {
    background: transparent;
    color: #1385DA;
    border: 2px solid #1385DA;
}

.nav-btn-loan:hover {
    background: #1385DA;
    color: white;
}

.nav-btn-loan {
    background-color: #1385DA;
    color: white;
    border: 2px solid #1385DA;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-btn-loan:hover {
    background-color: white;
    color: #1385DA;
    border: 2px solid #1385DA;
}

.nav-btn-loan i {
    font-size: 16px;
}

.nav-links a.active {
    color: #1385DA;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1e3c72;
    margin: 3px 0;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Styles */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        padding: 0 1rem;
    }

    .nav-center {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: #f8f9fa;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        padding: 4rem .5rem .5rem;
        transition: left 0.3s ease-in-out;
        gap: 0;
        margin-left: 0;
        justify-content: flex-start;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-center.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        margin-left: 0;
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 0.7rem 0.5rem;
        display: block;
        border-bottom: 1px solid rgba(30, 60, 114, 0.1);
        transition: background 0.3s;
    }

    .nav-links a:hover {
        background: rgba(30, 60, 114, 0.05);
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 0.5rem;
        margin-left: 0;
        gap: 0.6rem;
    }

    .nav-btn {
        width: 100%;
        padding: 0.7rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .uvp {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-img {
        width: 70px;
        height: 56px;
    }
}

@media (max-width: 1200px) and (min-width: 969px) {
    nav {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .nav-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .nav-center {
        margin-left: 1rem;
    }
}
/* Header section css ends here */

/* GENERAL CSS ENDS HERE */




/* INDEX PAGE CSS STARTS HERE */

/* Hero section css starts here */
.hero {
    position: relative;
    background: url(img/event8.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 60, 114, 0.6); 
    z-index: 1;
}

.hero * {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
    color: #ffd700;
}

.uvp {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ffd700;
    color: #1e3c72;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,215,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-3px);
}
/* Hero section css ends here */


/* About section css starts here */
        .about {
            background: white;
        }

        .about-intro {
            max-width: 1500px;
            margin: 0 auto 4rem auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-intro-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .about-intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-intro-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .about-intro {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .about-content {
            max-width: 1500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .about-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
/* About section css ends here */


/* Services section css starts here */
.wev-services-overview {
            padding: 80px 20px;
            background: white;
        }

        .wev-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .wev-section-title {
            font-size: 2.8em;
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }

        .wev-section-subtitle {
            text-align: center;
            font-size: 1.2em;
            color: #666;
            margin-bottom: 60px;
        }

        .wev-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .wev-service-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            border-top: 5px solid #667eea;
        }

        .wev-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .wev-service-icon {
            font-size: 4em;
            margin-bottom: 20px;
        }

        .wev-service-card h3 {
            font-size: 1.8em;
            margin-bottom: 15px;
            color: #667eea;
        }

        .wev-service-card p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .wev-service-card ul {
            list-style: none;
            text-align: center;
            padding-left: 0;
            margin-bottom: 20px;
        }

        .wev-service-card li {
            padding: 8px 0;
            position: relative;
            color: #555;
            text-align: center;
        }

        .wev-service-card li::before {
            content: '✓ ';
            color: #667eea;
            font-weight: bold;
        }

        .wev-btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .wev-btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .wev-btn-primary:hover {
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        @media (max-width: 768px) {
            .wev-section-title {
                font-size: 2em;
            }

            .wev-services-grid {
                grid-template-columns: 1fr;
            }
        }
/* Services section css ends here */


/* Packages section css starts here */
.wiryslia-packages-wrapper {
            background: #f5f5f5;
            min-height: 100vh;
            padding: 40px 20px;
        }

        .wiryslia-main-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .wiryslia-page-header {
            text-align: center;
            color: #333;
            margin-bottom: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 20px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .wiryslia-page-header h1 {
            font-size: 3em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            color: white;
        }

        .wiryslia-page-header p {
            font-size: 1.2em;
            opacity: 0.95;
            color: white;
        }

        .wiryslia-packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .wiryslia-package-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .wiryslia-package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .wiryslia-card-header {
            padding: 30px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .wiryslia-card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
        }

        .wiryslia-basic-pkg .wiryslia-card-header {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
        }

        .wiryslia-premium-pkg .wiryslia-card-header {
            background: linear-gradient(135deg, #4776e6 0%, #8e54e9 100%);
        }

        .wiryslia-corporate-pkg .wiryslia-card-header {
            background: linear-gradient(135deg, #000428 0%, #004e92 100%);
        }

        .wiryslia-wedding-pkg .wiryslia-card-header {
            background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
        }

        .wiryslia-card-header h2 {
            font-size: 1.8em;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .wiryslia-card-header .wiryslia-perfect-for {
            font-size: 0.95em;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        .wiryslia-card-body {
            padding: 30px;
            flex-grow: 1;
        }

        .wiryslia-content-section {
            margin-bottom: 25px;
        }

        .wiryslia-content-section h3 {
            color: #333;
            font-size: 1.2em;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .wiryslia-content-section h3::before {
            content: '✦';
            color: #667eea;
            font-size: 1.2em;
        }

        .wiryslia-content-section ul {
            list-style: none;
            padding-left: 0;
        }

        .wiryslia-content-section li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: #555;
            line-height: 1.6;
        }

        .wiryslia-content-section li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
        }

        .wiryslia-features-box li::before {
            content: '';
        }

        .wiryslia-features-box {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .wiryslia-features-box li {
            padding: 6px 0;
            font-size: 0.95em;
        }

        .wiryslia-addons-box {
            background: #fff3cd;
            padding: 15px;
            border-radius: 10px;
        }

        .wiryslia-addons-box h3::before {
            content: '⭐';
        }

        .wiryslia-price-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px 20px;
            text-align: center;
            margin-top: auto;
        }

        .wiryslia-price-amount {
            font-size: 2em;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .wiryslia-event-duration {
            font-size: 0.9em;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .wiryslia-book-btn {
            background: white;
            color: #667eea;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
            font-family: 'Quicksand', sans-serif;
        }

        .wiryslia-book-btn:hover {
            background: #38ef7d;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .wiryslia-pricing-table {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-top: 30px;
        }

        .wiryslia-pricing-table h2 {
            text-align: center;
            color: #333;
            margin-bottom: 30px;
            font-size: 2em;
        }

        .wiryslia-pricing-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .wiryslia-pricing-table th, 
        .wiryslia-pricing-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        .wiryslia-pricing-table th {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            font-weight: 600;
        }

        .wiryslia-pricing-table tr:hover {
            background: #f8f9fa;
        }

        .wiryslia-table-note {
            color: #666;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            .wiryslia-page-header h1 {
                font-size: 2em;
            }

            .wiryslia-packages-grid {
                grid-template-columns: 1fr;
            }

            .wiryslia-pricing-table {
                padding: 20px;
                overflow-x: auto;
            }

            .wiryslia-pricing-table table {
                font-size: 0.9em;
            }

            .wiryslia-pricing-table th, 
            .wiryslia-pricing-table td {
                padding: 10px;
            }
        }
/* Packages section css ends here */


/* Events section css starts here */
.event-services {
    background: #f8f9fa;
}

.services-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    color: #1e3c72;
    margin: 1.5rem 1rem 1rem;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1rem 1.5rem;
}
/* Events section css ends here */


/* Gallery section css starts here */
.gallery {
    background: #f8f9fa;
}

.gallery-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-overlay {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(102,126,234,0.9), rgba(118,75,162,0.7));
}
/* Gallery section cee ends here */


/* Testimonials section css starts here */
.testimonials {
    background: #f8f9fa;
}

.testimonials-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #ffd700;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.testimonial-content {
    margin-top: 2rem;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: bold;
    color: #1e3c72;
}
/* Testimonials section css ends here */


/* Blogs section css starts here */
.blog {
    background: white;
}

.blog-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Blogs section css ends here */


/* Faq section css starts here */
.faq {
    background: #f8f9fa;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    background: #1e3c72;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.faq-question:hover {
    background: #2a5298;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
/* Faq section css ends here */


/* Booking form section css starts here */
.booking {
    background: white;
}

.booking-form {
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3c72;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
}
/* Booking form section css ends here */

/* Contact section css starts here */
        .wev-contact {
            color: white;
            padding: 80px 20px;
        }

        .wev-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .wev-contact-card {
            background: rgba(0, 0, 0, 0.1);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .wev-contact-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .wev-contact-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }

        .wev-contact-card h4 {
            font-size: 1.3em;
            margin-bottom: 10px;
            color: #1385DA;
        }

        .wev-contact-card a {
            color: rgb(27, 27, 27);
            text-decoration: none;
            font-size: 1.1em;
        }

        .wev-contact-card a:hover {
            color: #1385DA;
        }

        .wev-location {
            background: white;
            padding: 60px 20px;
            text-align: center;
        }

        .wev-location h3 {
            font-size: 2em;
            color: #333;
            margin-bottom: 20px;
        }

        .wev-locations-list {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .wev-location-badge {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

/* Contact section css ends here */


/* Footer section css starts here */
      .wev-footer {
            background: #1a1a1a;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .wev-footer p {
            margin-bottom: 10px;
        }
/* Footer section css ends here */

/* INDEX PAGE CSS ENDS HERE */



/* EVENT BOOST FINANCING PAGE CSS STARTS HERE */
.ebf-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 100px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .ebf-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            animation: ebf-float 20s linear infinite;
        }

        @keyframes ebf-float {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100px); }
        }

        .ebf-hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .ebf-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .ebf-hero .ebf-tagline {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .ebf-hero .ebf-cta-button {
            display: inline-block;
            background: white;
            color: #667eea;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .ebf-hero .ebf-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .ebf-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .ebf-section {
            margin-bottom: 60px;
        }

        .ebf-section h2 {
            color: #667eea;
            font-size: 2.2rem;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .ebf-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .ebf-intro {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 60px 20px;
        }

        .ebf-intro-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .ebf-intro-image {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .ebf-intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ebf-intro-content {
            text-align: left;
        }

        .ebf-intro h2 {
            color: #764ba2;
            text-align: left;
        }

        .ebf-intro h2::after {
            left: 0;
            transform: none;
        }

        .ebf-intro p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #555;
        }

        .ebf-intro .ebf-highlight {
            font-weight: bold;
            color: #667eea;
        }

        .ebf-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .ebf-step {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .ebf-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .ebf-step-number {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .ebf-step h3 {
            color: #667eea;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .ebf-finance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .ebf-finance-item {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            font-weight: 500;
            transition: transform 0.3s;
        }

        .ebf-finance-item:hover {
            transform: scale(1.05);
        }

        .ebf-terms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .ebf-term-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #667eea;
        }

        .ebf-term-card h3 {
            color: #764ba2;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .ebf-term-card ul {
            list-style: none;
            padding-left: 0;
        }

        .ebf-term-card ul li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .ebf-term-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
        }

        .ebf-example-box {
            background: #f0f4ff;
            padding: 20px;
            border-radius: 10px;
            margin-top: 15px;
            border-left: 4px solid #667eea;
        }

        .ebf-faq-section {
            background: #f9fafb;
            padding: 60px 20px;
        }

        .ebf-faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .ebf-faq-question {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 20px;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .ebf-faq-answer {
            padding: 20px;
            color: #555;
        }

        .ebf-why-choose {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .ebf-benefit {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s;
        }

        .ebf-benefit:hover {
            transform: translateY(-5px);
        }

        .ebf-benefit::before {
            content: '★';
            display: block;
            font-size: 2.5rem;
            color: #667eea;
            margin-bottom: 15px;
        }

        .ebf-who-for {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }

        .ebf-who-for h2::after {
            background: white;
        }

        .ebf-who-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .ebf-who-item {
            background: rgba(255,255,255,0.2);
            padding: 15px 30px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            font-size: 1.1rem;
        }

        /* Floating Buttons */
        .ebf-floating-buttons {
            position: fixed;
            right: 30px;
            bottom: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

        .ebf-floating-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .ebf-floating-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
        }

        .ebf-floating-btn-apply {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .ebf-floating-btn-terms {
            background: linear-gradient(135deg, #764ba2, #667eea);
        }

        .ebf-btn-icon {
            font-size: 1.3rem;
        }

        .ebf-btn-text {
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .ebf-hero h1 {
                font-size: 2rem;
            }

            .ebf-hero .ebf-tagline {
                font-size: 1.2rem;
            }

            .ebf-section h2 {
                font-size: 1.8rem;
            }

            .ebf-steps {
                grid-template-columns: 1fr;
            }

            .ebf-intro-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .ebf-intro-content {
                text-align: center;
            }

            .ebf-intro h2 {
                text-align: center;
            }

            .ebf-intro h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .ebf-floating-buttons {
                right: 15px;
                bottom: 15px;
                gap: 10px;
            }

            .ebf-floating-btn {
                padding: 12px 20px;
            }

            .ebf-btn-text {
                font-size: 0.9rem;
            }

            .ebf-btn-icon {
                font-size: 1.2rem;
            }
        }
/* EVENT BOOST FINANCING PAGE CSS ENDS HERE */



/* EVENT BOOST FINANCING APPLICATION PAGE CSS STARTS HERE */
    .wiryslia-loan-wrapper * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .wiryslia-loan-wrapper {
        font-family: 'Quicksand', sans-serif;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        padding: 2rem 0;
    }

    .wiryslia-loan-section {
        padding: 3rem 2rem;
        max-width: 1000px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    .wiryslia-loan-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #1e3c72;
        font-weight: 700;
    }

    .wiryslia-loan-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .wiryslia-loan-form {
        width: 100%;
    }

    .wiryslia-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .wiryslia-form-group {
        display: flex;
        flex-direction: column;
    }

    .wiryslia-form-label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #333;
        font-size: 0.95rem;
    }

    .wiryslia-form-input, 
    .wiryslia-form-select, 
    .wiryslia-form-textarea {
        padding: 0.875rem;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 1rem;
        font-family: 'Nunito', sans-serif;
        transition: all 0.3s ease;
    }

    .wiryslia-form-input:focus, 
    .wiryslia-form-select:focus, 
    .wiryslia-form-textarea:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .wiryslia-calc-display {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 12px;
        padding: 1.5rem;
        margin: 1.5rem 0;
        display: none;
    }

    .wiryslia-calc-display.wiryslia-show {
        display: block;
        animation: wiryslia-slideIn 0.3s ease;
    }

    @keyframes wiryslia-slideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .wiryslia-calc-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        color: white;
    }

    .wiryslia-calc-item:not(:last-child) {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .wiryslia-calc-label {
        font-size: 1rem;
        font-weight: 500;
    }

    .wiryslia-calc-value {
        font-size: 1.25rem;
        font-weight: 700;
    }

    .wiryslia-calc-highlight {
        background: rgba(255,255,255,0.15);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }

    .wiryslia-btn-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 1rem 2rem;
        border: none;
        border-radius: 5px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        width: 100%;
        margin-top: 1rem;
        font-family: "Quicksand", sans-serif;
    }

    .wiryslia-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        font-family: "Quicksand", sans-serif;
    }

    .wiryslia-form-note {
        color: #666;
        display: block;
        margin-top: 0.5rem;
        font-size: 0.875rem;
    }

    .wiryslia-submit-note {
        text-align: center;
        margin-top: 1rem;
        font-size: 0.9rem;
        color: #666;
    }

    .wiryslia-extended-note {
        display: none;
        margin-top: 1rem;
        padding: 0.75rem;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    @media (max-width: 768px) {
        .wiryslia-form-row {
            grid-template-columns: 1fr;
        }

        .wiryslia-loan-title {
            font-size: 2rem;
        }
    }
/* EVENT BOOST FINANCING APPLICATION PAGE CSS ENDS HERE */

