
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    min-height: 100vh;
    position: relative;
}

/* Animated background elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.bg-element {
    position: absolute;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.bg-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bg-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.bg-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* New Navbar Design */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
    height: 80px;
}

/* Logo Section - New Design */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1.1;
    text-align: left;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: #f7931e;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: left;
    margin: 0;
}

/* Navigation Links - New Layout */
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    text-align: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    background: transparent;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    color: #ff6b35;
}

/* Event Dropdown Menu */
.nav-link.has-dropdown {
    position: relative;
    cursor: pointer;
}

.nav-link.has-dropdown::after {
    content: '▼';
    margin-left: 0.3rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-link.has-dropdown:hover::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 0.5rem;
    display: block;
}

.nav-link.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    display: block;
}

/* Ensure dropdowns work on touch devices */
.nav-link.has-dropdown:focus .dropdown-menu,
.nav-link.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    display: block;
}

/* Force dropdown to show when active */
.nav-link.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    display: block;
}

/* Click-based dropdown system */
.nav-link.has-dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.nav-link.has-dropdown.show-dropdown .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-item {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border-left-color: #ff6b35;
}

.dropdown-item:active {
    background: rgba(255, 107, 53, 0.2);
}





/* Action Buttons */
.action-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.register-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.register-btn:hover::before {
    left: 100%;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    justify-self: end;
    /* add this */
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.2rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        grid-template-columns: auto 1fr auto;
        /* was: auto auto */
        gap: 14rem;
        padding: 0 1rem;
        height: 70px;
    }

    .action-buttons {
        display: none;
        /* hide register on mobile */
    }

    .mobile-menu-btn {
        display: flex;
        grid-column: 3;
        /* force to right column */
        justify-self: end;
        /* align to right */
        align-self: center;
    }

    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        text-align: center;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
        justify-content: center;
    }

    /* Mobile Register Button Styling */
    .nav-links .register-btn {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 25px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0.5rem;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }

    .nav-links .register-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }

    /* Mobile dropdown styles */
    .nav-link.has-dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 107, 53, 0.1);
        border: none;
        border-radius: 8px;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
        min-width: auto;
        box-shadow: none;
    }

    .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        border-left: none;
        border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .action-buttons {
        justify-content: center;
    }

    .register-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 0.5rem;
    }

    .logo-title {
        font-size: 1rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .action-buttons {
        justify-content: center;
    }

    .register-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* Content Section */
.content {
    margin-top: 0;
    padding: 2rem;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInDown 1s ease-out 0.3s forwards;
}

@keyframes slideInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 1s ease-out 0.6s forwards;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.filter-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 ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Cards */
.gallery-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: cardAppear 0.8s ease-out forwards;
}

.gallery-card:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-card:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-card:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-card:nth-child(4) {
    animation-delay: 0.4s;
}

.gallery-card:nth-child(5) {
    animation-delay: 0.5s;
}

.gallery-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes cardAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 53, 0.8);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.gallery-card:hover .card-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 1rem;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.overlay-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.gallery-card:hover .overlay-content h3 {
    transform: translateX(0);
    opacity: 1;
}

.overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease 0.3s;
}

.gallery-card:hover .overlay-content p {
    transform: translateX(0);
    opacity: 0.9;
}

.view-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.4s;
}

.gallery-card:hover .view-btn {
    transform: translateY(0);
    opacity: 1;
}

.view-btn:hover {
    background: white;
    color: #ff6b35;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.date {
    color: rgba(255, 255, 255, 0.6);
}

.category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-section {
        padding: 2rem 1rem;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Selection Process Section */
.selection-process-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
}

.selection-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInDown 1s ease-out 0.3s forwards;
}

.selection-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff6b35;
    /* background: linear-gradient(135deg, #ff6b35, #f7931e); */
    margin-bottom: 0.5rem;
    font-family: 'Times New Roman', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.selection-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-family: 'Times New Roman', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.selection-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.selection-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out 0.6s forwards;
}

/* Left Trophy Styles */
.trophy-left-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.left-trophy-container {
    position: relative;
    width: 200px;
    height: 300px;
    animation: trophyBounce 3s ease-in-out infinite;
}

@keyframes trophyBounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.left-trophy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1) contrast(1.1);
    animation: leftTrophyGlow 3s ease-in-out infinite;
}

@keyframes leftTrophyGlow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        filter: brightness(1.1) contrast(1.1);
    }

    50% {
        box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6);
        filter: brightness(1.3) contrast(1.2);
    }
}

.left-trophy-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.left-trophy-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e3a8a;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Trophy Section */
.trophy-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trophy-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
}

.trophy-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1) contrast(1.1);
    animation: trophyGlow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes trophyGlow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        filter: brightness(1.1) contrast(1.1);
    }

    50% {
        box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6);
        filter: brightness(1.3) contrast(1.2);
    }
}

.trophy-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.trophy-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e3a8a;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Selection Steps */
.selection-steps {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.step {
    position: absolute;
    background: rgba(30, 58, 138, 0.9);
    border: 2px solid #1e3a8a;
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Times New Roman', serif;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: stepAppear 0.8s ease-out forwards;
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step:nth-child(1) {
    animation-delay: 0.1s;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.3s;
}

.step:nth-child(4) {
    animation-delay: 0.4s;
}

.step:nth-child(5) {
    animation-delay: 0.5s;
}

.step:nth-child(6) {
    animation-delay: 0.6s;
}

.step:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes stepAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.step-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffd700;
}

.step-text {
    font-size: 0.8rem;
    line-height: 1.2;
    text-align: center;
}

/* Step Positions - Staircase Layout */
.step[data-step="1"] {
    bottom: 50px;
    left: 20px;
}

.step[data-step="2"] {
    bottom: 120px;
    left: 80px;
}

.step[data-step="3"] {
    bottom: 190px;
    left: 140px;
}

.step[data-step="4"] {
    bottom: 260px;
    left: 200px;
}

.step[data-step="5"] {
    bottom: 330px;
    left: 260px;
}

.step[data-step="6"] {
    bottom: 400px;
    left: 320px;
}

.step[data-step="7"] {
    bottom: 470px;
    left: 380px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1e3a8a;
    border-color: #ffd700;
    width: 180px;
    height: 60px;
}

.step[data-step="7"]:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

/* Process Details */
.process-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.9s forwards;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.detail-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.detail-card h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.detail-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design for Selection Process */
@media (max-width: 1024px) {
    .selection-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .selection-title {
        font-size: 3rem;
    }

    .selection-subtitle {
        font-size: 2rem;
    }

    .trophy-container {
        max-width: 400px;
        height: 500px;
    }

    .step[data-step="6"] {
        left: 280px;
    }

    .step[data-step="7"] {
        left: 340px;
    }
}

@media (max-width: 768px) {
    .selection-process-section {
        padding: 3rem 1rem;
    }

    .selection-title {
        font-size: 2.5rem;
    }

    .selection-subtitle {
        font-size: 1.8rem;
    }

    .left-trophy-container {
        width: 150px;
        height: 250px;
    }

    .left-trophy-image {
        width: 100%;
        height: 100%;
    }

    .trophy-container {
        max-width: 350px;
        height: 450px;
    }

    .trophy-image {
        width: 150px;
        height: 250px;
    }

    .step {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        width: 150px;
        height: 50px;
    }

    .step-text {
        font-size: 0.7rem;
    }

    .step[data-step="1"] {
        bottom: 40px;
        left: 15px;
    }

    .step[data-step="2"] {
        bottom: 100px;
        left: 70px;
    }

    .step[data-step="3"] {
        bottom: 160px;
        left: 125px;
    }

    .step[data-step="4"] {
        bottom: 220px;
        left: 180px;
    }

    .step[data-step="5"] {
        bottom: 280px;
        left: 235px;
    }

    .step[data-step="6"] {
        bottom: 340px;
        left: 290px;
    }

    .step[data-step="7"] {
        bottom: 400px;
        left: 345px;
        width: 150px;
        height: 50px;
    }

    .process-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .selection-title {
        font-size: 2rem;
    }

    .selection-subtitle {
        font-size: 1.5rem;
    }

    .left-trophy-container {
        width: 120px;
        height: 200px;
    }

    .left-trophy-image {
        width: 100%;
        height: 100%;
    }

    .trophy-container {
        max-width: 280px;
        height: 350px;
    }

    .trophy-image {
        width: 120px;
        height: 200px;
    }

    .step {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        width: 120px;
        height: 45px;
    }

    .step-text {
        font-size: 0.6rem;
    }

    .step[data-step="1"] {
        bottom: 30px;
        left: -10px;
    }

    .step[data-step="2"] {
        bottom: 80px;
        left: 30px;
    }

    .step[data-step="3"] {
        bottom: 130px;
        left: 70px;
    }

    .step[data-step="4"] {
        bottom: 180px;
        left: 110px;
    }

    .step[data-step="5"] {
        bottom: 230px;
        left: 150px;
    }

    .step[data-step="6"] {
        bottom: 280px;
        left: 190px;
    }

    .step[data-step="7"] {
        bottom: 330px;
        left: 230px;
        width: 120px;
        height: 45px;
    }

    .detail-card {
        padding: 1rem;
    }

    .detail-icon {
        font-size: 2.5rem;
    }

    .detail-card h4 {
        font-size: 1.1rem;
    }

    .detail-card p {
        font-size: 0.9rem;
    }
}

/* Footer */
.site-footer {
    background: #080e40;
    color: #c9d6e3;
    margin-top: 4rem;
}

.footer-top {
    padding: 3rem 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 0 0 2rem 0;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ff6b1f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 6px 18px rgba(255, 107, 31, .35);
}

.social-btn:hover {
    transform: translateY(-3px);
    background: #ff7f3a;
    box-shadow: 0 10px 24px rgba(255, 107, 31, .45);
}

.social-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: .5px;
    margin: 0 0 1.2rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .85rem;
}

.footer-links li a {
    color: #c9d6e3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    transition: color .2s ease, transform .2s ease;
}

.footer-links li a::before {
    content: "›";
    color: #b9c8d8;
    font-size: 1.1rem;
    line-height: 1;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-bottom {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 30px;
    /* background: #06244a; */
    padding: 1rem;
    text-align: center;
    color: #c9d6e3;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-bottom a {
    color: #ff6b1f;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-socials {
        justify-content: flex-start;
    }
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 4px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.carousel-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.8s ease;
}

.carousel-slide.active .slide-image img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(15, 15, 35, 0.8), rgba(45, 27, 105, 0.6)); */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: left;
}

.slide-text {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease 0.3s;
}

.carousel-slide.active .slide-text {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleSlideIn 1s ease-out 0.5s both;
}

.slide-description {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
    animation: descriptionSlideIn 1s ease-out 0.7s both;
}

.slide-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: buttonSlideIn 1s ease-out 0.9s both;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.slide-btn:hover::before {
    left: 100%;
}

.slide-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
}

.indicator.active {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 107, 53, 0.7);
    transform: scale(1.1);
}

/* Carousel Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    width: 0%;
    transition: width 0.1s linear;
}

/* Carousel Animations */
@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes descriptionSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@keyframes buttonSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
	.hero-carousel {
		height: 70vh; /* restore sliding viewport height on mobile */
	}

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.2rem;
    }

    .slide-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

	.nav-btn {
        width: 50px;
        height: 50px;
    }

    .carousel-nav {
        padding: 0 1rem;
    }

	.carousel-indicators {
		bottom: 1rem;
	}

	/* Restore carousel behavior on mobile */
	.carousel-wrapper {
		height: 100%;
	}

	.carousel-slide {
		position: absolute;
		height: 100%;
		display: block;
		transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.slide-content {
		height: 100%;
	}

	/* Ensure full image is visible on mobile/tablet */
	.slide-image {
		background: #0b0f2a; /* subtle backdrop for letterboxing */
		position: absolute;
		height: 100%;
		width: 100%;
		inset: 0;
	}

	.slide-image img {
		width: 100%;
		height: 100%;
		object-fit: contain; /* avoid cropping on small screens */
	}

	/* Show carousel controls on mobile */
	.carousel-nav {
		display: flex;
	}
	.carousel-indicators {
		display: flex;
	}
	.carousel-progress {
		display: block;
	}
}

@media (max-width: 480px) {
	.hero-carousel {
		height: 32vh; /* smaller height on very small screens */
		/* height: 60vh; smaller height on very small screens */
	}

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-text {
        padding: 1rem;
    }

	.nav-btn {
        width: 45px;
        height: 45px;
    }

	/* Extra small screens: keep entire image visible */
	.slide-image img {
		object-fit: contain;
	}

	/* Extra small screens: remove controls above/below the image */
	.carousel-nav,
	.carousel-indicators {
		display: none;
	}
}


/* about page */

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    min-height: 100vh;
    color: #fff;
}

.navbar {
    background: rgba(15, 15, 35, 0.95);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 14rem; */
}

.page {
    max-width: 1200px;
    margin: 2rem auto 3rem;
    padding: 0 1rem;
}

.title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: .5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: rgba(255, 255, 255, .85);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

/* contect us page */

        .page{max-width:1200px; margin:2rem auto 3rem; padding:0 1rem}
        .heading-sm{color:#ff6b35; font-weight:700; letter-spacing:.08em; margin-bottom:.5rem}
        .title{font-size:2.4rem; font-weight:800; color:#fff; line-height:1.2; margin-bottom:1.5rem}
        .grid{display:grid; grid-template-columns:1fr; gap:1.25rem}
        .card{background:#fff; border-radius:16px; padding:1.25rem; border:1px solid rgba(15,23,42,.08)}
        .info-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem}
        .info{background:rgba(255,255,255,.95); border:1px solid rgba(15,23,42,.08); border-radius:16px; padding:1.5rem; text-align:center}
        .icon{width:64px; height:64px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; margin-bottom:.75rem; background:rgba(255,107,53,.1); color:#ff6b35; font-size:28px}
        .info h3{color:#0f172a; font-size:1.2rem; margin-bottom:.35rem}
        .info p{color:#334155; margin-bottom:.9rem}
        .btn{display:inline-block; text-decoration:none; background:linear-gradient(135deg,#ff6b35,#f7931e); color:#fff; padding:.55rem 1.1rem; border-radius:10px; font-weight:600}
        .btn:hover{opacity:.95}

        .form-grid{display:grid; grid-template-columns:1fr 1fr; gap:1rem}
        .input{width:100%; padding:.9rem 1rem; border:1px solid rgba(15,23,42,.12); border-radius:10px; outline:none; font:inherit; background:#fff}
        textarea.input{min-height:180px; resize:vertical}
        .submit{border:0; cursor:pointer}
        .note{color:#94a3b8; margin-top:.5rem; font-size:.9rem}

        @media (max-width:1024px){ .info-grid{grid-template-columns:1fr 1fr} }
        @media (max-width:700px){ .info-grid{grid-template-columns:1fr} .form-grid{grid-template-columns:1fr} .title{font-size:2rem} }
    

/* Event page */

.page {
    max-width: 1200px;
    margin: 2rem auto 3rem;
    padding: 0 1rem;
}
.title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: .5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.subtitle {
    color: rgba(255,255,255,.85);
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}
.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.note {
    margin-top: .75rem;
    font-size: .9rem;
    color: rgba(255,255,255,.8);
}
.links {
    margin-top: 1.5rem;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.btn {
    text-decoration: none;
    border: 2px solid rgba(255, 107, 53, 0.6);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 24px;
    transition: all .2s ease;
}
.btn:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

/* New: video grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.video-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 1rem;
}
.video-title {
    margin-top: .75rem;
    font-weight: 600;
    font-size: 1rem;
}
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}


/* Registration Page Styles */
.registration-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.registration-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.registration-content {
    padding: 3rem;
}

.registration-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.message.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: 1px solid #059669;
}

.message.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: 1px solid #dc2626;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.form-group.focused input,
.form-group.focused select {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff6b35;
    cursor: pointer;
}

.terms-checkbox label {
    font-size: 0.9rem;
    color: #374151;
    cursor: pointer;
    font-weight: 500;
}

.terms-checkbox a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-checkbox a:hover {
    color: #f7931e;
    text-decoration: underline;
}

.register-btn {
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.register-btn:hover::before {
    left: 100%;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.register-btn:active {
    transform: translateY(0);
}

.register-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design for Registration */
@media (max-width: 768px) {
    .registration-section {
        padding: 1rem;
    }
    
    .registration-content {
        padding: 2rem;
    }
    
    .registration-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .terms-checkbox {
        justify-content: center;
        text-align: center;
    }
    
    .register-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .registration-content {
        padding: 1.5rem;
    }
    
    .registration-title {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Benefits page */
.benefits-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInDown 1s ease-out 0.3s forwards;
}

.benefits-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Times New Roman', serif;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out 0.6s forwards;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.8);
}

.benefit-image {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
}

.benefit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-img {
    transform: scale(1.05);
}

.benefit-banner {
    /* background: linear-gradient(135deg, #ffd700, #ffed4e); */
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #1e3a8a;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}




/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefits-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 2rem 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-title {
        font-size: 2.5rem;
    }
    
    .benefit-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .benefits-title {
        font-size: 2rem;
    }
    
    .benefits-subtitle {
        font-size: 1rem;
    }
    
    .benefit-banner {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .benefit-image {
        height: 180px;
    }
}

















.gallery .galley_box{
    box-shadow: 0 0 10px #00000020;
    padding: 5px;
    margin: 10px auto;
    background-color: #fff;
}
.gallery .galley_box img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
@media only screen and (max-width: 1050px) {
    .gallery .galley_box img{
        height: 170px;
    }
}
@media only screen and (max-width: 600px) {
    .gallery .galley_box {
        margin: 0px 5px 10px;
    }
    .gallery .galley_box img{
        height: 150px;
    }
}

