* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

header {
    background-color: rgba(100, 100, 100, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease;
}

header:hover {
    background-color: rgba(130, 130, 130, 0.6);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 80px;
    width: 200px;
}

.nav-center {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
    padding: 0;
    margin-right: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem; 
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #358856;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: #000;
    transition: 0.3s;
    border-radius: 5px;
}

.event-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.event-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/herobg.png');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: 1;
}

.event-hero > * {
    position: relative;
    z-index: 2;
}

.event-hero-content {
    text-align: center;
}

.event-hero h2 {
    font-size: 5rem;
    font-weight: 700;
    margin-top: 100px;
}

.contact-section {
    background: linear-gradient(185deg, #f0f4f8 0%, white 100%);
    padding: 100px 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    flex: 1.5;
    padding: 50px;
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #358856;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    background-color: #f8fafc;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #358856;
    background-color: #fff;
    box-shadow: 0 10px 15px rgba(0, 230, 96, 0.2);
    outline: none;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.select-selected {
    background-color: #f8fafc;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 14px;
    padding-right: 40px;
    font-size: 0.95rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
}

.select-selected::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #358856 transparent transparent transparent;
    transform: translateY(-25%);
    transition: all 0.3s ease;
}

.select-selected.select-arrow-active::after {
    transform: translateY(-75%) rotate(180deg);
}

.select-selected.select-arrow-active {
    border-color: #358856;
    background-color: #fff;
    box-shadow: 0 10px 15px rgba(0, 230, 96, 0.2);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select-items {
  position: absolute;
  background-color: #fff;
  border: 2px solid #358856;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 230, 96, 0.2);
}

.select-hide {
  display: none;
}

.select-items div {
  color: #000;
  padding: 14px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}

.select-items div:hover,
.same-as-selected {
  background-color: #358856;
  color: black;
}

.send-email-button {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #25523B, #358856);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-email-button:hover {
    background-color: #62BD69;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 230, 96, 0.2);
}

.contact-details {
    flex: 1;
    background-color: #25523B;
    color: #ffffff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.org-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item .icon {
    font-size: 1.2rem;
}

.contact-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details p, 
.contact-details li {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.notification-toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear, bottom 0.5s;
}

.notification-toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

.notification-toast.success {
    background-color: #4CAF50;
}

.notification-toast.error {
    background-color: #f44336;
}

.advertisement {
    text-align: center;
    padding: 20px 0;
}

.ad-container {
    position: relative;
    display: inline-block;
    width: 300px;
    height: auto;
}

.ad-container img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.ad-label {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px 20px;
    background-color: #333;
    color: #fff;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-section {
    flex: 1;
    margin: 10px;
    text-align: center;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #f2f2f2;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin: 5px 0;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-logo {
    width: 200px;
    margin-top: 40px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    margin: 0 5px;
}

.sponsor-logo {
    width: 100px;
    margin-top: 10px;
}

.footer-ramp-icons {
    position: relative;
    height: 60px;
    width: 100%;
    background: transparent;
    z-index: 2;
}

.ramp-icon {
    position: absolute;
    bottom: 0;
    width: auto;
    height: 200px;
    z-index: 3;
}

.ramp-icon.left {
    left: 0;
}

.ramp-icon.right {
    right: 0;
}

.ramp-icon.center {
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 200px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
        margin-right: 20px;
    }

    .nav-links a {
        font-size: 1rem;
    }
}

@media (max-width: 850px) {
    .hamburger {
        display: flex;
    }

    .nav-center {
        position: static;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 30px 0;
        gap: 30px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s ease-in-out;
        z-index: -1;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        z-index: 999;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .event-hero h2 {
        font-size: 3rem;
        margin-top: 60px;
    }

    .contact-container {
        flex-direction: column;
    }
    
    .contact-form, 
    .contact-details {
        padding: 30px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .ramp-icon {
        width: 60px;
    }

    .ramp-icon.center {
        width: 70px; 
    }
}