* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: black;
    font-family: sans-serif;
    overflow-x: hidden;
}

/* Smooth Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #cd1313, #460000);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ff1a1a, #660000);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 20px;
    background-color: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

nav.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(205, 19, 19, 0.3);
}

.logo img {
    height: 80px;
    width: 160px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.list ul {
    color: white;
    list-style: none;
    display: flex;
    gap: 30px;
}

.list ul li span {
    padding: 10px 15px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    display: inline-block;
}

.list ul li span:hover {
    color: white;
    background: linear-gradient(to right, #cd1313, #460000);
    box-shadow: 0 0 10px #82080875, 0 0 25px #8713158c, 0 0 50px #e61e177f, 0 0 100px #bc07077f;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url("bg5.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.403);
    transition: background 0.5s ease;
}

.hero h1 {
    position: relative;
    font-size: clamp(60px, 12vw, 150px);
    font-family: "Cinzel", serif;
    font-weight: 500;
    color: white;
    z-index: 2;
    text-align: center;
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.line.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Team Section */
.team {
    background: linear-gradient(to bottom, black, #390007);
    padding: 80px 20px;
}

.team-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    padding: 30px 20px 50px 20px;
    color: #edf5e8;
    font-size: clamp(30px, 6vw, 60px);
    text-align: center;
    font-family: "Encode Sans SC", sans-serif;
    font-weight: 700;
    font-style: normal;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.role {
    background-color: #2d0005;
    padding: 30px;
    border-radius: 15px;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 200px;
    opacity: 0;
    transform: translateY(30px);
}

.role.visible {
    opacity: 1;
    transform: translateY(0);
}

.role:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 20px #cd1313, 0 0 40px #460000;
}

.role h3 {
    margin-bottom: 15px;
    font-size: clamp(18px, 2.5vw, 24px);
    font-family: "Encode Sans SC", sans-serif;
    color: #fff;
    transition: color 0.3s ease;
}

.role p {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    font-family: "Encode Sans SC", sans-serif;
    color: #e0e0e0;
}

.role-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #460000, #1a0000);
}

.role-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.role:hover .role-image img {
    transform: scale(1.15);
}

/* Terms and Conditions Section */
.terms-section {
    background: linear-gradient(to bottom, #390007, #1a0003);
    padding: 80px 20px;
}

.terms-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-content {
    background-color: #2d0005;
    padding: 40px;
    border-radius: 15px;
    color: #e0e0e0;
    line-height: 1.8;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
}

.terms-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.terms-content h2 {
    color: #fff;
    font-family: "Encode Sans SC", sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 30px;
    text-align: center;
}

.terms-content h3 {
    color: #fff;
    font-family: "Encode Sans SC", sans-serif;
    font-size: clamp(18px, 2.5vw, 24px);
    margin-top: 25px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.terms-content h3:hover {
    color: #cd1313;
}

.terms-content p {
    font-size: clamp(14px, 1.5vw, 16px);
    margin-bottom: 15px;
    font-family: "Encode Sans SC", sans-serif;
}

.terms-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.terms-content ul li {
    margin-bottom: 10px;
    font-size: clamp(14px, 1.5vw, 16px);
    transition: transform 0.3s ease;
}

.terms-content ul li:hover {
    transform: translateX(5px);
}

/* Privacy Policy Section */
.privacy-section {
    background: linear-gradient(to bottom, #1a0003, black);
    padding: 50px 20px 0px 20px;
}

.privacy-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.privacy-content {
    background-color: #2d0005;
    padding: 40px;
    border-radius: 15px;
    color: #e0e0e0;
    line-height: 1.8;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.privacy-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.privacy-content h2 {
    color: #fff;
    font-family: "Encode Sans SC", sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 30px;
}

.privacy-content h3 {
    color: #fff;
    font-family: "Encode Sans SC", sans-serif;
    font-size: clamp(18px, 2.5vw, 24px);
    margin-top: 25px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.privacy-content h3:hover {
    color: #cd1313;
}

.privacy-content p {
    font-size: clamp(14px, 1.5vw, 16px);
    margin-bottom: 15px;
    font-family: "Encode Sans SC", sans-serif;
}

.privacy-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.privacy-content ul li {
    margin-bottom: 10px;
    font-size: clamp(14px, 1.5vw, 16px);
    transition: transform 0.3s ease;
}

.privacy-content ul li:hover {
    transform: translateX(5px);
}

.privacy-image {
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.privacy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.5s ease;
}

.privacy-image:hover img {
    transform: scale(1.05);
}

/* Footer */
.divider {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #cd1313, #460000);
}

.footer {
    background: #111;
    color: #bbb;
    padding: 50px 20px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
    max-width: 1200px;
    margin: 0 auto 20px auto;
}

.footer h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}

.footer h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #cd1313, #460000);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

.footer h3:hover::after {
    width: 60px;
}

.footer p {
    font-size: 14px;
    line-height: 22px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 8px 0;
    transition: transform 0.3s ease;
}

.footer-col ul li:hover {
    transform: translateX(5px);
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #cd1313;
}

.contact-info li {
    font-size: 14px;
    margin: 6px 0;
}

.subscribe-form {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.subscribe-form input {
    padding: 8px;
    border: none;
    border-radius: 3px;
    flex: 1;
    min-width: 150px;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    outline: 2px solid #cd1313;
    transform: scale(1.02);
}

.subscribe-form button {
    background: linear-gradient(to right, #cd1313, #460000);
    border: none;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.subscribe-form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 0 50px #82080843, 0 0 50px #8713158c, 0 0 50px #e61e1740, 0 0 50px #bc07073d;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
}

.social-icons a {
    color: #bbb;
    margin: 0 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #cd1313;
    transform: translateY(-3px) scale(1.2);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 20px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    background: #20b358;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .list {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 80px 20px 20px 20px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .list.active {
        left: 0;
    }

    .list ul {
        flex-direction: column;
        gap: 10px;
    }

    .list ul li span:hover {
        color: white;
        background: none !important;
        box-shadow: none !important;
    }

    .hero h1 {
        font-size: clamp(40px, 10vw, 80px);
    }

    .team {
        padding: 60px 15px;
    }

    .section-title {
        padding: 20px 15px 40px 15px;
    }

    .roles {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .role {
        padding: 25px;
        min-height: 180px;
    }

    .terms-section,
    .privacy-section {
        padding: 60px 15px 0px 15px;
    }

    .terms-content,
    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-image img {
        min-height: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-container .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 70px;
        width: 140px;
    }

    .hero {
        height: 80vh;
    }

    .hero h1 {
        font-size: clamp(30px, 8vw, 60px);
    }

    .team,
    .terms-section,
    .privacy-section {
        padding: 40px 30px 0px 30px;
    }

    .section-title {
        padding: 15px 10px 30px 10px;
    }

    .roles {
        gap: 15px;
        padding: 0 10px;
    }

    .role {
        padding: 20px;
        min-height: 160px;
    }

    .terms-content,
    .privacy-content {
        padding: 25px 15px;
    }

    .privacy-image img {
        min-height: 250px;
    }
}