@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@600&family=Poppins:wght@300;400;700&display=swap');
* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
body {
    background-color: black;
}
.main {
    background-image: url("cm.jpeg");
    background-position: center center;
    background-size: max(1200px, 100vw);
    background-repeat: no-repeat;
    height: 644px;
    position: relative;
}
.main .box {
    height: 644px;
    width: 100%;
    opacity: 0.69;
    position: absolute;
    top: 0;
    background-color: black;
}
nav {
    max-width: 60vw;
    justify-content: space-between;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100px;
}
nav img {
    color: red;
    width: 130px;
    position: relative;
    z-index: 10;
    background-color: transparent;
}

nav button {
    position: relative;
    z-index: 10;
}
.hero {
    font-family: 'Martel Sans', sans-serif;
    height: calc(100% - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    position: relative;
    gap: 23px;
    padding: 0 30px;
}
.hero> :nth-child(1) {
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    font-size: 48px;
    text-align: center;
}
.hero> :nth-child(2) {
    font-weight: 400;
    font-size: 24px;
    text-align: center;
}
.hero> :nth-child(3) {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}
.separation {
    height: 7px;
    background-color: rgb(46, 44, 44);
    position: relative;
    z-index: 20;
}
.btn {
    padding: 3px 8px;
    font-weight: 400;
    color: white;
    background-color: rgba(248, 243, 243, 0.021);
    border-radius: 4px;
    border: 1px solid white;
    cursor: pointer;
}
/* General Button Styles */
.btn {
    padding: 12px 24px;
    font-weight: 500;
    color: white;
    background-color: rgba(248, 243, 243, 0.2);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5); /* Soft glowing effect */
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background-color: rgba(248, 243, 243, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7); /* Glowing effect on hover */
}

/* Red Button Styles */
.btn-red {
    background: linear-gradient(45deg, #ff3e00, #d10000); /* Gradient effect */
    color: white;
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid transparent;
    background-clip: padding-box;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5); /* Soft glowing effect */
}

.btn-red:hover {
    background: linear-gradient(45deg, #ff5b00, #d90000);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); /* Glowing effect on hover */
}

/* Small Red Button */
.btn-red-sm {
    background-color: rgb(68, 22, 22);
    color: white;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3); /* Soft glowing effect */
}

.btn-red-sm:hover {
    background-color: rgb(85, 28, 28);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6); /* Glowing effect on hover */
}

/* Button Container Styles */
.btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-red {
        padding: 12px 28px;
        font-size: 16px;
    }

    .btn-red-sm {
        padding: 8px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .btn-container {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    .btn-red {
        width: 100%;
        padding: 14px;
        font-size: 18px;
    }

    .btn-red-sm {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}


.main input {
    padding: 7px 101px 8px 14px;
    color: white;
    font-size: 12px;
    border-radius: 4px;
    background-color: rgba(23, 23, 23, 0.7);
    border: 1px solid rgba(246, 238, 238, 0.5);
}
.first {
    display: flex;
    justify-content: center;
    max-width: 70vw;
    margin: auto;
    color: white;
    justify-content: center;
    align-items: center;
}
.secImg {
    position: relative;
}
.secImg img {
    width: 555px;
    position: relative;
    z-index: 10;
}
.secImg video {
    position: absolute;
    top: 51px;
    right: 0;
    width: 555px;
}
section.first>div {
    display: flex;
    flex-direction: column;
    padding: 34px 0;
}
section.first>div :nth-child(1) {
    font-size: 48px;
    font-weight: bolder;
}
section.first>div :nth-child(2) {
    font-size: 24px;
}
.faq h2 {
    text-align: center;
    font-size: 48px;
}
.faq {
    background: black;
    color: white;
    padding: 34px;
}
.faqbox:hover {
    background-color: #414141;
    color: white;
}
.faqbox svg {
    filter: invert(1);
}
.faqbox {
    transition: all 1s ease-out;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    background-color: #2d2d2d;
    padding: 24px;
    max-width: 60vw;
    margin: 34px auto;
    cursor: pointer;
}
footer {
    color: white;
    max-width: 60vw;
    margin: auto;
    padding: 60px;
}
footer .questions {
    padding: 34px 0;
}
.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    color: white;
}
@media screen and (max-width: 1300px) {
    nav{
        max-width: 90vw;
    }
    .first {
        flex-wrap: wrap;
    }
    .secImg img {
        width: 305px;
    }
    .secImg video {
        width: 305px;
    }
    .hero> :nth-child(1) {
        font-size: 32px;
    }
    .hero> :nth-child(2) {
        font-size: 18px;
    }
    .hero> :nth-child(3) {
        font-size: 18px;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }
    .faq h2 {
        text-align: center;
        font-size: 32px;
    }
    footer {
        max-width: 90vw;
        padding: 75px 0;
    }
    .footer-item{
        align-items: center;
    }
 
}
@media screen and (max-width: 1300px) {
    .footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@600&family=Poppins:wght@300;400;700&display=swap');

        * {
            padding: 0;
            margin: 0;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: black;
        }
        
        .main {
            background-image: url("cm.jpeg");
            background-position: center center;
            background-size: max(1200px, 100vw);
            background-repeat: no-repeat;
            height: 644px;
            position: relative;
            filter: brightness(0.8);
        }
        
        .main .box {
            height: 644px;
            width: 100%;
            opacity: 0.69;
            position: absolute;
            top: 0;
            background-color: black;
        }
        
        nav {
            max-width: 60vw;
            justify-content: space-between;
            margin: auto;
            display: flex;
            align-items: center;
            height: 100px;
        }
        
        nav img {
            width: 130px;
            z-index: 10;
            background-color: transparent;
        }
        
        nav button {
            z-index: 10;
        }
        
        .hero {
            font-family: 'Martel Sans', sans-serif;
            height: calc(100% - 100px);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            position: relative;
            gap: 23px;
            padding: 0 30px;
        }
        
        .hero> :nth-child(1) {
            font-family: 'Poppins', sans-serif;
            font-weight: bolder;
            font-size: 48px;
            text-align: center;
        }
        
        .hero> :nth-child(2) {
            font-weight: 400;
            font-size: 24px;
            text-align: center;
        }
        
        .hero> :nth-child(3) {
            font-weight: 400;
            font-size: 20px;
            text-align: center;
        }
        
        .separation {
            height: 7px;
            background-color: rgb(46, 44, 44);
            position: relative;
            z-index: 20;
        }
        
        .btn {
            padding: 3px 8px;
            font-weight: 400;
            color: white;
            background-color: rgba(248, 243, 243, 0.021);
            border-radius: 4px;
            border: 1px solid white;
            cursor: pointer;
            box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .btn:hover {
            transform: scale(1.1);
            box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
        }
        
        .btn-red {
            background-color: red;
        }
        
        input {
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            border-radius: 5px;
        }
        
        .faqbox {
            color: white;
            padding: 15px;
            background-color: #141B34;
            margin-bottom: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faqbox:hover {
            background-color: #414141;
            color: white;
            transform: scale(1.02);
            box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
            transition: all 0.5s ease;
        }
        
        footer {
            display: flex;
            justify-content: space-around;
            background-color: rgb(29, 28, 28);
            padding: 25px 10px;
            color: #fff;
            font-size: 16px;
            gap: 10px;
        }
        
        footer a {
            text-decoration: none;
            color: inherit;
        }
        
        footer a:hover {
            text-decoration: underline;
        }
        
        .first {
            padding: 60px 0;
            display: flex;
            justify-content: space-between;
        }
        
        .first .secImg {
            position: relative;
        }
        
        .first img {
            width: 500px;
        }
        
        .first span {
            font-size: 24px;
            color: white;
            font-weight: 400;
            line-height: 36px;
            text-align: left;
        }
        
        .first.second {
            background-color: #141B34;
        }
        
        .first.third {
            background-color: #141B34;
        }
        
        .first.third .secImg {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 500px;
        }
        
        .first.third img {
            width: 400px;
        }
        
        .first.third video {
            height: 500px;
        }
        
        .secImg img {
            width: 100%;
            display: block;
        }
        
        .faq {
            padding: 60px 0;
            text-align: center;
        }
        
        .faq h2 {
            font-size: 36px;
            color: white;
            margin-bottom: 30px;
        }
        
        .faqbox svg {
            transition: transform 0.3s ease;
        }
        
        .faqbox svg:hover {
            transform: rotate(90deg);
            cursor: pointer;
        }
        
        footer .footer-item {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        footer .footer-item a {
            font-size: 14px;
            color: white;
        }
        
        footer .footer-item a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .main {
                height: 100vh;
            }
        
            nav {
                max-width: 100%;
                justify-content: space-between;
            }
        
            .hero {
                height: 100%;
                padding: 30px 20px;
            }
        
            .first {
                flex-direction: column;
            }
        
            .first .secImg {
                width: 100%;
            }
        
            .first img {
                width: 100%;
            }
        
            footer {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
        }
        
    }
}
.footer a {
    font-size: 14px;
    color: white;
}
.footer-item {
    display: flex;
    flex-direction: column;
    gap: 23px;
}


.credit {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 10;
}
.credit span {
    font-size: 18px;
    font-weight: 600;
}
.credit strong {
    color: #FF2D00;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.movie-container {
    text-align: center;
    margin-top: 20px;
}

.movie-player {
    max-width: 800px;
    margin: 0 auto;
}

.movie-list ul {
    list-style-type: none;
    padding: 0;
}

.movie-list li {
    display: inline;
    margin: 10px;
}

.movie-list button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #FF2D00;
    color: white;
    border: none;
    cursor: pointer;
}

.movie-list button:hover {
    background-color: #FF5733;
}
