/* General Reset and Font Setup */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --secondary-color: #7209b7;
    --accent-color: #4895ef;
    --light-accent: #4cc9f0;
    --success-color: #4ade80;
    --error-color: #f87171;
    --warning-color: #fbbf24;
    --text-color: #2b2d42;
    --light-text: #8d99ae;
    --lighter-text: #adb5bd;
    --bg-color: #f8f9fa;
    --card-color: #ffffff;
    --section-profile: #f0f9ff;
    --section-contact: #f8f0ff;
    --section-security: #fff0f3;
    --border-color: #e2e8f0;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Poppins", sans-serif;
    --color1: #FFF ;
    --color2: #3f0707 ;
    background-color: #492626;
}

           header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
  
        .nav-bar {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
            position: relative;
            background-color: var(--color2);
            padding: 12px 20px;
            transition: all 0.3s ease;
        }
        .nav-bar.scrolled {
            padding: 8px 20px;
            box-shadow: 0 4px 10px rgba(251, 249, 249, 0.2);
        }
        .logo img {
            width: 40px;
        
            transition: transform 0.3s ease;
        }
        .logo:hover img {
            transform: rotate(15deg);
        }
        .menu {
            
            display: flex;
        }
        .menu li {
            padding-left: 30px;
            list-style: none;
        }
        .menu li a {
            display: inline-block;
            font-weight: bold;
           text-decoration: none;
            color: var(--color1);
            text-align: center;
            transition: all 0.15s ease-in-out;
            position: relative;
            text-transform: uppercase;
            font-size: 15px;
            font-weight: 500;
        }
        .menu li a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--color1);
            transition: width 0.3s ease;
        }
        .menu li a:hover {
            color: #f6f7f8;
        }
        .menu li a:hover::after {
            width: 100%;
        }
        .open-menu, .close-menu {
            position: absolute;
            color: var(--color1);
            cursor: pointer;
            font-size: 1.5rem;
            display: none;
            transition: all 0.3s ease;
        }
        .open-menu {
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
        }
        .close-menu {
            top: 20px;
            right: 20px;
        }
        .open-menu:hover, .close-menu:hover {
            color: #c7db78;
            transform: scale(1.1);
        }
        #check {
            display: none;
        }
        @media(max-width: 768px) {
            .menu {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 80%;
                height: 100vh;
                position: fixed;
                top: 0;
                right: -100%;
                z-index: 100;
                background-color: var(--color2);
                transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
            }
            .menu li {
                margin-top: 40px;
                opacity: 0;
                transform: translateX(20px);
                transition: all 0.4s ease;
            }
            .menu li a {
                font-size: 18px;
                padding: 10px;
            }
            .open-menu, .close-menu {
                display: block;
            }
            #check:checked ~ .menu {
                right: 0;
            }
            #check:checked ~ .menu li {
                opacity: 1;
                transform: translateX(0);
                transition-delay: calc(0.1s * var(--i));
            }
            .close-menu {
                opacity: 0;
                transition: opacity 0.3s ease 0.3s;
            }
            #check:checked ~ .menu .close-menu {
                opacity: 1;
            }
        }

        
.logo-image {
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin-right: 8px; 
    vertical-align: middle; 
}

.nav-bar .logo {
    color: #f6f1f1;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

.nav-bar a{
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Auth Section Styles */
.nav-bar .auth-section {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-left: 30px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.login-btn, .register-btn {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-btn {
    color: var(--color1);
    border: 1px solid var(--color1);
}

.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.register-btn {
    background-color: #492626;
    color: var(--color2);
    border: 1px solid #c7db78;
}

.register-btn:hover {
    background-color: #3f0707;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.username {
    color: var(--color1);
    font-weight: 500;
}

.logout-btn {
    color: var(--color1);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.logout-btn:hover {
    color: #c7db78;
}

/* Mobile Styles */
@media(max-width: 768px) {
    .nav-bar .auth-section {
        padding-left: 0;
        margin: 20px 0;
        justify-content: center;
        width: 100%;
    }
    
    .auth-buttons {
        flex-direction: column;
        width: 80%;
        gap: 15px;
    }
    
    .login-btn, .register-btn {
        padding: 10px;
        text-align: center;
        width: 100%;
    }
    
    .user-profile {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* Home Design */
.home {
    height: 100dvh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background-size: cover;
    background-position: center;
}

.home-content {
    max-width: 600px;
}

.home-content h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #c7db78;
}

.home-content p {
    color: #fff;
    font-size: 20px;
    margin: 20px 0 40px;
}

/* Social Media Icons */
.home-sci {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 10px;
}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #b3c4c1;
    border-radius: 50%;
    font-size: 25px;
    color: #c7db78;
    text-decoration: none;
    transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease;
}

.home-sci a:hover {
    color: #0a0d0e;
    background-color: #c7db78;
    border-color: #c7db78;
}
 

/* Image Slider */
.slider-container {
    position: absolute;
    right: 80px; 
    top: 50%;
    transform: translateY(-50%);
    width: auto; 
    height: 500px; 
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}


/* Slider */
.slider {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.slide.active {
    display: block;
}

/* Slider Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
    transition: 0.3s;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: rgba(255, 255, 255, 0.8);
    color: black;
}

/* Scroll down animation */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 3px solid #c7db78;
    border-right: 3px solid aqua;
    transform: rotate(45deg);
    margin: -10px;
    animation: scrollDown 2s infinite;
}

.scroll-down span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-down span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}
/* Button Style */
.btn-box {
    display: flex;
    gap: 20px;
    height: 50px;
}

.btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    border: 2px solid #b3c4c1;
    border-radius: 10px;
    font-size: 20px;
    color: #c7db78;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    overflow: hidden;
    transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5 ease;
}


@media (max-width: 576px) {
    .logo-image {
        width: 30px;
        height: 30px;
    }
}

.btn-box a:hover {
    color: #081b29;
    background-color: #c7db78;
    border-color: #c18452;
}

.btn-box a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #c7db78;
    z-index: -1;
    transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5 ease;
}

.btn-box a:hover::before {
    width: 100%;
}

.submit-btn {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: rgb(251, 251, 251);
  
    padding: 16px;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.submit-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: 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, var(--primary-dark), var(--secondary-color));
}

.btn-text {
    position: relative;
    z-index: 1;
}


/* Video Section */
.video-section {
    text-align: center;
    margin-top: 50px;
}

h2{
    color: #ffffff;
}

.video-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-container img {
    width: 200px;
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.video-container img:hover {
    transform: scale(1.2); 
}

.video-container:hover img:not(:hover) {
    filter: blur(10px); 
}

/* About Section */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header Styles */
.about-header {
    color: #c7db78;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.about-header:after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #c7db78, #3f0707);
    margin: 15px auto;
}

.about-subheader {
    color: #c7db78;
    font-size: 2rem;
    text-align: center;
    margin: 50px 0 25px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}

.about-subheader:after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, #3f0707, #c7db78);
    margin: 12px auto;
}

/* Description Styles */
.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 25px;
    background-color: #3f0707;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-description.primary {
    border-left: 4px solid #c7db78;
    color: aliceblue;
}

.about-description.secondary {
    border-left: 4px solid #b3c4c1;
    color: antiquewhite;
}

.about-description strong {
    color: #c7db78;
    font-weight: 600;
}

.about-description.primary:hover {
    transform: scale(1.1) translateY(-10px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-description.secondary:hover {
    transform: scale(1.1) translateY(-10px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #3f0707;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c7db78;
    margin-bottom: 15px;
}

.team-member h3 {
    color: #c7db78;
    margin: 10px 0 5px;
}

.team-member p {
    color: #b3c4c1;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-header {
        font-size: 2rem;
    }
    
    .about-subheader {
        font-size: 1.7rem;
    }
    
    .about-description {
        padding: 20px;
        font-size: 1rem;
    }
}

/* Participant Section */
.main-container {
    background-color: #481a1a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    height: 80vh;
    margin: 0 auto; 
}

.participant-info {
    width: 45%;
    padding: 20px;
    border: 2px solid #eaebed;
    border-radius: 8px;
    margin-right: 20px;
    overflow-y: auto;
}

.participant-info h1 {
    font-size: 24px;
    color: #fdfcfc;
    text-align: left;
}

.participant-info h2 {
    font-size: 18px;
    color: #cecccc;
    text-align: left;
    margin-bottom: 20px;
}

.participant-info p {
    font-size: 16px;
    color: #dae4e1;
    line-height: 1.6;
}

.form-container {
    width: 45%;
    padding: 20px;
    border: 2px solid #ececed;
    border-radius: 8px;
    overflow-y: auto;
}

.submission-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #f9f3f3;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

#fileUpload{
    color: #c7db78;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

.terms-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #1DB954;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-content {
    display: flex;
    align-items: center;
    max-width: 800px;
    width: 100%;
}

.terms-checkbox {
    margin-right: 15px;
    accent-color: #1DB954;
    width: 18px;
    height: 18px;
}

.terms-text {
    font-size: 0.9rem;
    flex-grow: 1;
}

.terms-text a {
    color: #1DB954;
    text-decoration: none;
    font-weight: 600;
}

.terms-text a:hover {
    text-decoration: underline;
}
.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

  /* New Chatbot Styles */
   .chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.chatbot-closed {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.chatbot-header {
    background: linear-gradient(to right, #1DB954, #178d45);
    color: white;
    padding: 15px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.chatbot-title {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-title i {
    font-size: 1.2rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.chatbot-body {
    background-color: white;
    height: 400px;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    line-height: 1.4;
    font-size: 0.95rem;
}

.bot-message {
    background-color: #f0f0f0;
    align-self: flex-start;
    border-radius: 18px 18px 18px 4px;
}

.user-message {
    background-color: #1DB954;
    color: white;
    align-self: flex-end;
    border-radius: 18px 18px 4px 18px;
}

.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
    background-color: white;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 0.95rem;
}

.chatbot-input button {
    background-color: #1DB954;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.chatbot-input button:hover {
    background-color: #15793b;
}

.chatbot-launcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #c18452;
    color: rgb(19, 19, 19);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9998;
}

.chatbot-launcher i {
    font-size: 1.5rem;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 10px 15px;
    background-color: #f0f0f0;
    border-radius: 18px 18px 18px 4px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background-color: #999;
    border-radius: 50%;
    animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingAnimation {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .chatbot-container {
        width: 90%;
        right: 5%;
        bottom: 80px;
    }
    
    .chatbot-body {
        height: 300px;
    }
    
    .chatbot-launcher {
        bottom: 20px;
        right: 20px;
    }
}

/* Winner Scroll Container */
.winner-scroll-container {
    width: 90%;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    padding: 20px;
}

.winner-container {
    display: flex;
    gap: 20px;
    overflow-x: auto; 
    scroll-behavior: smooth; 
    padding: 10px;
}

.winner-container::-webkit-scrollbar {
    display: none;
}

.winner-box {
    background-color: #481a1a;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 200px;
    flex-shrink: 0; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.winner-box:hover {
    transform: scale(1.1) translateY(-10px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.rank {
    font-size: 18px;
    font-weight: bold;
    color: #fcfafa;
    margin-bottom: 10px;
}

.winner-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffcc00;
    margin-bottom: 10px;
}

.winner-name {
    font-size: 16px;
    font-weight: bold;
    color: #34c879;
    margin-bottom: 5px;
}

.prize {
    font-size: 14px;
    color: #fff;
}

/* Scroll Buttons */
.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.scroll-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}


/* Contact Section */
.contact {
    padding: 60px 20px;
    background-color: #492626;
    color: #fff;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 500px; 
    background-color: #481a1a;
    border: 2px solid #b3c4c1;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info ul li i {
    margin-right: 10px;
    color: #c7db78;
}

.contact-info .social-links {
    margin-top: 20px;
}

.contact-info .social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: 25px;
    color: #c7db78;
    text-decoration: none;
    transition: all 0.5s ease;
}

.contact-info .social-links a:hover {
    background-color: #c7db78;
    color: black;
}

.contact-form {
    background-color: #481a1a;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #c7db78;
    background-color: transparent;
    color: #fff;
    border-radius: 15px;
    outline: none;
    transition: 0.3s;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #ccc;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: orange;
}

.contact-form .form-btn {
    text-align: center;
}

.contact-form .form-btn .btn {
    background-color: #c18452;
    border: none;
    padding: 12px 25px;
    font-size: 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.5s;
}

.contact-form .form-btn .btn:hover {
    background-color: #481a1a;
    color: rgb(244, 237, 237);
    border: 2px solid white; 
}

.resume-link {
    margin-top: 20px;
    text-align: center;
}

.resume-link .resume-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #c18452;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.resume-link .resume-btn:hover {
    background: #481a1a;
    color: rgb(244, 237, 237);
    border: 2px solid white; 
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #2e0303;
}

.footer-p{
    color: #fff;
}
.follow-on {
    color: #fff;
    margin-top: 20px;
    text-align: center;
}

.follow-on a {
    color: #c7db78;
    text-decoration: none;
    margin: 0 10px;
}

.follow-on a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 10px;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .home-content h1 {
        font-size: 36px;
    }

    .home-content h3 {
        font-size: 24px;
    }

    .home-content p {
        font-size: 14px;
    }

    .btn-box {
        flex-direction: column;
        gap: 10px;
    }

    .video-container img {
        width: 150px;
    }

    .main-container {
        flex-direction: column;
        height: auto;
    }

    .participant-info, .form-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .winner-scroll-container {
        width: 100%;
    }

    .winner-box {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .home-content h1 {
        font-size: 28px;
    }

    .home-content h3 {
        font-size: 20px;
    }

    .video-container img {
        width: 100px;
    }

    .winner-box {
        width: 120px;
    }
}

/* Add these media queries at the end of your existing CSS */

@media (max-width: 992px) {
    .home {
        flex-direction: column;
        padding: 120px 20px 60px;
        height: auto;
        text-align: center;
    }

    .home-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .slider-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 400px;
        margin-top: 30px;
    }

    .home-sci {
        position: relative;
        bottom: auto;
        justify-content: center;
        margin-top: 30px;
    }

    .navbar {
        gap: 15px;
    }

    .header .logo {
        font-size: 20px;
    }

    .creator-image {
        width: 80px;
        height: 80px;
    }

    .winner-box {
        width: 180px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 768px) {
    .header {
        padding: 10px;
    }

    .navbar {
        gap: 10px;
    }

    .navbar a {
        font-size: 14px;
    }

    .home-content h1 {
        font-size: 36px;
    }

    .home-content h3 {
        font-size: 24px;
    }

    .btn-box {
        flex-direction: column;
        height: auto;
    }

    .btn-box a {
        width: 100%;
        margin-bottom: 10px;
    }

    .video-container img {
        width: 150px;
    }

    .mobileCategories_slide {
        flex-wrap: wrap;
    }

    .creator-box {
        margin: 10px;
    }

    .main-container {
        flex-direction: column;
        height: auto;
    }

    .participant-info, 
    .form-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .contact-info, 
    .contact-form {
        min-width: 100%;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    .header {
        flex-direction: column;
        padding: 10px;
    }

    .navbar {
        margin-top: 10px;
    }

    .home-content h1 {
        font-size: 28px;
    }

    .slider-container {
        height: 300px;
    }

    .video-container img {
        width: 120px;
    }

    .winner-box {
        width: 150px;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info, 
    .contact-form {
        width: 100%;
    }
}

/* Very small devices (small phones) */
@media (max-width: 400px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar a {
        font-size: 12px;
        padding: 5px;
    }

    .video-container img {
        width: 100px;
    }

    .winner-box {
        width: 130px;
        padding: 15px;
    }

    .winner-image {
        width: 80px;
        height: 80px;
    }
}
.lang{
    color: #fff;
}

/* Video Section Styles */
.videos-sections {
    padding: 60px 20px;
    background-color: #492626;
    text-align: center;
}

.videos-containers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 30px auto;
    padding: 0 20px;
}

.videos {
    background-color: #3f0707;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.videos:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.videos video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
}

.videos h3 {
    color: #c7db78;
    padding: 15px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* Play Button Overlay Effect */
.videos {
    position: relative;
}

.videos::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.videos:hover::after {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .videos-containers {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .videos-containers {
        grid-template-columns: 1fr;
    }
    
    .videos h3 {
        font-size: 16px;
        padding: 10px;
    }
}

