html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(-45deg, #0a0a0a, #1a1a1a, #0a0a0a, #1a1a1a);
    background-size: 400% 400%;
    font-family: 'Arial', sans-serif;
    color: white;
    text-align: center;
    animation: gradientBG 15s ease infinite;
}

.back-to-top {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: fixed;
    bottom: 65px;
    right: 30px;
    background: #eb2d2d;
    color: rgb(74, 63, 63);
    text-decoration: none;
    padding: 5px 5px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}
.back-to-top:hover {
    background: #ff4d4d;
    transform: scale(1.1);
}

nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #1a1a1a, #111, #1a1a1a);
    box-shadow: 0 4px 20px rgba(0,0,0,0.7);
    z-index: 100;
    gap: 50px;
}

nav .logo-nav {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 2px solid #ff0000;
    padding: 3px;
    box-shadow: 0 0 10px #ff4d4d;
    object-fit: cover;
    margin-right: auto;
    transition: all 0.4s ease;
}

nav .logo-nav:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px #ff4d4d, 0 0 30px red;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 50px;
    align-items: center;
}

nav ul li a {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.4s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ff4d4d, #ff1a1a);
    border-radius: 3px;
    transition: width 0.4s ease;
}

nav ul li a:hover::after { width: 100%; }

nav ul li a:hover {
    color: #ff0000;
    transform: scale(1.15);
    text-shadow: 0 0 8px #ff4d4d, 0 0 16px red;
    background: linear-gradient(90deg, #ff0000, #ff4d4d, #ff1a1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.container {
    margin-top: 160px;
    margin-bottom: 150px;
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}

.logo {
    width: 300px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px red);
    animation: pulseLogo 2s infinite;
}

h1 {
    font-size: 45px;
    color: #ff2e2e;
    text-shadow: 0 0 10px red, 0 0 20px darkred;
    animation: glowText 2s infinite alternate;
}

p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 18px;
    animation: fadeInText 2s ease forwards;
    opacity: 0;
    animation-delay: 1s;
}

.download-btn {
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    border: none;
    text-decoration:none;
    padding: 15px 40px;
    text-decoration:none;
    font-size: 20px;
    color: white;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 0 15px red;
    transition: all 0.3s ease;
    animation: pulseBtn 2s infinite;
}

.download-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 40px red, 0 0 70px #ff4d4d;
    background: linear-gradient(45deg, #ff4d4d, #ff1a1a);
}


.social-bar {
    width: 100%;
    background-color: #111;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.6);
}

.social-bar a {
    color: #ff0000;
    font-size: 28px;
    transition: all 0.4s ease;
}

.social-bar a:hover {
    color: #ff4d4d;
    transform: rotate(-15deg) scale(1.3);
    text-shadow: 0 0 15px #ff4d4d, 0 0 30px red;
}

.section-title {
    font-size: 28px;
    color: #ff2e2e;
    margin: 40px 0 20px 0;
    text-align: center;
    text-shadow: 0 0 10px red;
}

.video-section {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255,0,0,0.4);
}

.video-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
    max-width: 900px;
}

.image-gallery img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #ff4d4d, 0 0 50px red;
}


.comment-section, .user-comments {
    max-width: 700px;
    margin: 80px auto 50px auto;
    padding: 20px;
    background: rgba(17,17,17,0.85);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255,0,0,0.4);
    text-align: left;
}

.comment-section h2, .user-comments h2 { text-align: center; color: #ff2e2e; margin-bottom: 20px; }

.comment-section textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #ff0000;
    background-color: #1a1a1a;
    color: white;
    resize: none;
    height: 100px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}


.comment-section textarea:focus {
    border-color: #ff4d4d;
    box-shadow: 0 0 15px #ff4d4d;
}

.comment-section button {
    margin-top: 15px;
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-section button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #ff4d4d, 0 0 50px red;
}


.rating { display: flex; justify-content: center; gap: 10px; margin-top: 10px; }
.rating input { display: none; }
.rating label {
    font-size: 30px;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
}
.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
    color: #ff0000;
    text-shadow: 0 0 10px #ff4d4d, 0 0 20px red;
}


.user-comments .comment {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(255,0,0,0.3);
}
.user-comments .comment .author { font-weight: bold; color: #ff4d4d; margin-bottom: 5px; }
.user-comments .comment .text { color: #ccc; }

.copyright {
    width: 100%;
    text-align: center;
    color: #ccc;
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.6;
    margin-bottom: 75px;
}

.copyright span {
    display: block;
}

.copyright a {
    color: #d89797;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copyright a:hover {
    text-shadow: 0 0 10px red;
    color: #ff1a1a;
}


@keyframes gradientBG { 0% {background-position: 0% 50%;} 50% {background-position: 100% 50%;} 100% {background-position: 0% 50%;} }
@keyframes pulseLogo { 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px red);} 50% { transform: scale(1.05); filter: drop-shadow(0 0 30px #ff4d4d);} }
@keyframes glowText { 0% { text-shadow: 0 0 10px red, 0 0 20px darkred; } 50% { text-shadow: 0 0 20px #ff4d4d, 0 0 40px darkred; } 100% { text-shadow: 0 0 10px red, 0 0 20px darkred; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInText { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulseBtn { 0%, 100% { transform: scale(1); box-shadow: 0 0 15px red; } 50% { transform: scale(1.05); box-shadow: 0 0 30px #ff4d4d; } }

@media (min-width: 1600px) and (max-width: 1919px) {
    .logo { width: 400px; }
    h1 { font-size: 55px; }
    p { font-size: 20px; }
    .download-btn { padding: 18px 45px; font-size: 22px; }
    .image-gallery img { width: 280px; height: 170px; }
    .video-section iframe { height: 550px; }
    .comment-section, .user-comments { max-width: 850px; padding: 28px; }
    nav ul li a { font-size: 22px; padding: 12px 16px; }
    .social-bar a { font-size: 32px; }
    .copyright { font-size: 15px; }
}

@media (min-width: 1920px) and (max-width: 2047px) {
    .logo { width: 450px; }
    h1 { font-size: 60px; }
    p { font-size: 22px; }
    .download-btn { padding: 20px 50px; font-size: 24px; }
    .image-gallery img { width: 300px; height: 180px; }
    .video-section iframe { height: 600px; }
    .comment-section, .user-comments { max-width: 900px; padding: 30px; }
    nav ul li a { font-size: 24px; padding: 14px 18px; }
    .social-bar a { font-size: 34px; }
    .copyright { font-size: 16px; }
}

@media (min-width: 2048px) and (max-width: 2399px) {
    .logo { width: 500px; }
    h1 { font-size: 65px; }
    p { font-size: 24px; }
    .download-btn { padding: 22px 55px; font-size: 26px; }
    .image-gallery img { width: 320px; height: 190px; }
    .video-section iframe { height: 650px; }
    .comment-section, .user-comments { max-width: 950px; padding: 32px; }
    nav ul li a { font-size: 26px; padding: 16px 20px; }
    .social-bar a { font-size: 36px; }
    .copyright { font-size: 17px; }
}

@media (min-width: 2400px) {
    .logo { width: 550px; }
    h1 { font-size: 70px; }
    p { font-size: 26px; }
    .download-btn { padding: 25px 60px; font-size: 28px; }
    .image-gallery img { width: 350px; height: 200px; }
    .video-section iframe { height: 700px; }
    .comment-section, .user-comments { max-width: 1000px; padding: 35px; }
    nav ul li a { font-size: 28px; padding: 18px 22px; }
    .social-bar a { font-size: 38px; }
    .copyright { font-size: 18px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .logo { width: 250px; }
    h1 { font-size: 36px; }
    p { font-size: 18px; }
    .download-btn { padding: 15px 35px; font-size: 18px; }
    .image-gallery { flex-wrap: wrap; gap: 15px; }
    .image-gallery img { width: 45%; height: auto; }
    .video-section iframe { height: 350px; }
    .comment-section, .user-comments { max-width: 90%; padding: 20px; }
    nav ul { flex-direction: row; gap: 20px; flex-wrap: wrap; }
    nav ul li a { font-size: 18px; padding: 10px 12px; }
    .social-bar a { font-size: 28px; }
    .copyright { font-size: 14px; }
}


.comment-section textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #ff0000;
    background-color: #1a1a1a;
    color: white;
    resize: none;
    height: 120px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}
.comment-section button {
    margin-top: 15px;
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.comment-section button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #ff4d4d, 0 0 50px red;
}


.faq-section { max-width: 800px; margin: 50px auto;    margin-top: 140px;text-align: left; }
.faq-section h2 { text-align: center; color: #ff2e2e; margin-bottom: 30px; }
.faq-item { margin-bottom: 15px; background: rgba(17,17,17,0.85); border-radius: 10px; box-shadow: 0 0 15px rgba(255,0,0,0.4); }
.faq-item input { display: none; }
.faq-item label {
    display: block; padding: 15px; font-weight: bold; cursor: pointer; color: #ff4d4d;
    transition: all 0.3s ease;
}
.faq-item label:hover { color: #ff0000; text-shadow: 0 0 8px red; }
.faq-content {
    max-height: 0; overflow: hidden; padding: 0 15px; color: #ccc;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item input:checked ~ .faq-content {
    max-height: 200px; padding: 15px;
}


.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 30px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}
.back-to-top:hover {
    background: #ff4d4d;
    transform: scale(1.2);
}


html { scroll-behavior: smooth; }

.innovative-question-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a, #330000);
    border: 2px solid #ff0000;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255,0,0,0.6);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.innovative-question-section h2 {
    color: #ff2e2e;
    text-shadow: 0 0 10px red;
    margin-bottom: 25px;
    font-size: 28px;
}

.innovative-question-section textarea {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #ff4d4d;
    background-color: #0a0a0a;
    color: white;
    font-size: 16px;
    resize: none;
    outline: none;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 10px rgba(255,0,0,0.5);
}

.innovative-question-section textarea:focus {
    border-color: #ff1a1a;
    box-shadow: 0 0 20px #ff4d4d, inset 0 0 15px #ff0000;
    background-color: #1a0000;
}

.innovative-question-section textarea::placeholder {
    color: #ff9999;
    font-style: italic;
}

.innovative-question-section button {
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 18px;
    color: white;
    border: none;
    border-radius: 20px;
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    cursor: pointer;
    box-shadow: 0 0 20px #ff0000;
    transition: all 0.3s ease;
}

.innovative-question-section button:hover {
    transform: scale(1.15) rotate(-2deg);
    box-shadow: 0 0 40px #ff4d4d, 0 0 60px red;
    background: linear-gradient(45deg, #ff4d4d, #ff1a1a);
}

@media (max-width: 768px) {

    nav {
        padding: 8px 20px;
        gap: 20px;
    }

    nav .logo-nav {
        height: 35px;
        width: 35px;
    }

    nav ul {
        gap: 20px;
    }

    nav ul li a {
        font-size: 14px;
        padding: 6px 8px;
    }

    .container {
        margin-top: 120px;
        padding: 10px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 15px;
    }

    .logo {
        width: 180px;
    }

    .download-btn {
        font-size: 15px;
        padding: 10px 20px;
    }

    .image-gallery img {
        width: 200px;
        height: 120px;
    }

    .video-section iframe {
        height: 220px;
    }

    .social-bar {
        gap: 20px;
        padding: 10px 0;
    }

    .social-bar a {
        font-size: 22px;
    }

}@media (max-width: 768px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

}@media (max-width: 768px) {

    nav {
        left: 15px;
        right: 15px;
        width: auto;
        border-radius: 10px;
    }

}
