html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
}

h2 {
    line-height: 1.5;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/space.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-top: 100px;
}

.hero-content h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 70px;
    color: white;
}

.hero-content h1 span {
    text-transform: uppercase;
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
    color: white;
}

.hero-content button {
    background-color: #FFC847;
    font-size: 18px;
    font-weight: 600;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease-out;
    margin-top: 20px;
    width: 350px;
    height: 57px;
    box-shadow: 0 0 10px rgba(255, 200, 71, 0.7);
}

.hero-content button:hover {
    position: relative;
    top: -3px;
    box-shadow: 0 0 20px rgba(255, 200, 71, 1), 0 0 40px rgba(255, 200, 71, 0.8), 0 0 60px rgba(255, 200, 71, 0.6);
}

/* Navbar Styles */
.navbar {
    position: absolute; /* Fix navbar at the top */
    top: 0;
    left: 0;
    width: calc(100% - 160px); /* Full width minus 80px margin on both sides */
    margin: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background: transparent;
    color: white;
}

/* Company Name */
.logo a {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

/* Navigation Links */
.nav-center {
    flex-grow: 1; /* Allow centering */
    display: flex;
    justify-content: center; /* Center the nav links */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    font-weight: 600;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-links a:hover {
    color: #FFC847;
}

/* Social Icons */
.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 18px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #FFC847;
}

/* Plate container styling */
.plate-container {
    display: flex;
    justify-content: center; /* Centers images */
    margin-top: 60px; /* Space between button and plates */
}

/* Plate images */
.plate {
    width: 270px;
    transition: transform 0.3s ease-in-out; /* Smooth transition */
}

/* Adjust individual plates */
.plate:first-child {
    transform: translateX(45px); /* Move slightly right */
}

.plate:nth-child(2) {
    transform: translateY(45px); /* Keep center but lower slightly */
}

.plate:last-child {
    transform: translateX(-45px); /* Move slightly left */
}

/* Optional: Add a slight hover effect */
.plate:hover {
    transform: rotate(0deg) scale(1.05); /* Straightens and slightly enlarges */
}

/* About Section Layout */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    color: black;
}

/* Left Content */
.about-content {
    flex: 1;
    max-width: 100%;
    text-align: left;
    padding-left: 70px;
}

.about-content h2 {
    font-size: 50px;
    margin-bottom: 20px;
    margin-top: -70px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Button */
.about-btn {
    background-color: #FFC847;
    font-size: 18px;
    font-weight: 600;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease-out;
    margin-top: 20px;
    width: 290px;
    height: 57px;
    box-shadow: 4px 4px 4px 0 black;
}

.about-btn:hover {
    background-color: #FFC847;
    transform: scale(1.05);
}

/* Image */
.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-image img {
    width: 850px;
    object-fit: cover;
}

.benefits-section {
    background-color: white;
    padding: 40px 0;
}

.benefits-content {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-content h2{
    font-size: 50px;
    margin-bottom: 40px;
}

.benefits-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.benefits-card {
    display: flex;
    justify-content: center; /* Centers cards in a row */
    gap: 20px; /* Adds spacing between cards */
    margin-top: 30px;
}

.card {
    width: 305px;
    height: 450px;
    background-color: #FAFAFA;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card h3 {
    font-size: 25px;
    margin-bottom: 50px;
}

.card img {
    width: 100px; /* Adjust icon size */
    height: 100px;
    margin-bottom: 50px;
}

.card p {
    font-size: 18px;
    line-height: 1.6;
    color: black;
}

.pricing-section {
    text-align: center;
    height: auto;
}

.pricing-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/space_2.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: -1; /* Places the image behind the content */
}

.pricing-content h2 {
    font-size: 50px;
    margin-bottom: 40px;
    margin-top: 50px;
    color: white;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 60px; /* Spacing between cards */
    margin-top: 20px;
}

.pricing-card {
    width: 350px;
    height: auto;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
}

.pricing-card h3 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: -15px;
}

.pricing-card p {
    text-align: start;
}

.pricing-line {
    width: 360px; /* Line width */
    height: 1px; /* Thickness */
    background-color: black;
}

.old-price {
    font-size: 35px;
    color: grey;
    text-decoration: line-through;
    display: block;
    margin-bottom: -5px;
    margin-top: 10px;
}

.price {
    font-size: 54px;
    font-weight: 500;
    color: black;
    margin-top: 10px;
    margin-bottom: 10px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card li {
    font-size: 14px;
    margin-bottom: 25px;
}

.pricing-btn {
    background-color: #FFC847;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease-out;
    width: 296px;
    height: 58px;
    display: block;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.pricing-btn:hover {
    background-color: #FFC847;
    transform: scale(1.05);
}

.recommended-card {
    border: 3px solid red; /* Add red border */
    position: relative; /* Needed for absolute positioning of tag */
}

.recommended-tag {
    position: absolute;
    top: 10px;
    left: -10px;
    background-color: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
    transform: rotate(-10deg); /* Slight rotation for style */
}

.contact-section {
    text-align: center;
    height: 579px;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/space_2.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: -1; /* Places the image behind the content */
}

.contact-content {
    text-align: center;
    color: white;
}

.contact-content h2 {
    font-size: 50px;
    margin-top: 10px;
    margin-bottom: 25px;
}

.contact-btn {
    background-color: #FFC847;
    font-size: 18px;
    font-weight: 600;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease-out;
    margin-top: 55px;
    width: 350px;
    height: 57px;
    box-shadow: 0 0 10px rgba(255, 200, 71, 0.7); /* Initial glow */
}

.contact-btn:hover {
    position: relative;
    top: -3px;
    box-shadow: 0 0 20px rgba(255, 200, 71, 1), 0 0 40px rgba(255, 200, 71, 0.8), 0 0 60px rgba(255, 200, 71, 0.6);
}

/* FAQ Section */
.faq-section {
    background-color: white;
    text-align: center;
}

.faq-content h2 {
    font-size: 50px;
    margin-top: -150px;
    margin-bottom: 40px;
}

/* Accordion */
.faq-accordion {
    max-width: 600px;
    margin: 0 auto;
    background-color: black;
    border-radius: 16px;
}

/* Question Button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-align: left;
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.faq-question::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: white; /* White horizontal line */
    position: absolute;
    top: 0;
    left: 0;
}

.faq-question .icon {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 40px;
    color: white;
    font-size: 16px;
    text-align: left;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

/* Show Answer with Smooth Animation */
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content length */
    padding: 0 40px; /* Restore padding */
}

.copyright-section {
    background-color: black;
    color: white;
    height: 100px;
}

/* Tablet View */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 62px;
    }

    .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
    }

    .about-content {
        padding: 40px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 40px;
        margin-top: 70px;
    }

    .about-btn {
        margin-bottom: 20px;
    }

    .benefits-section {
        padding: 0;
    }

    .benefits-content {
        text-align: center;
    }

    .benefits-content h2{
        font-size: 40px;
        margin-bottom: 40px;
        margin-top: 100px;
    }

    .card {
        width: 255px;
        height: 450px;
        margin-bottom: 100px;
    }

    .card h3 {
        font-size: 22px;
    }

    .pricing-content h2 {
        font-size: 40px;
        margin-top: 100px;
        margin-bottom: 50px;
    }

    .pricing-card {
        width: 340px;
    }

    .pricing-card h3 {
        font-size: 26px;
    }

    .pricing-line {
        width: 340px;
    }

    .price {
        font-size: 54px;
    }

    .pricing-card li {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .pricing-btn {
        font-size: 16px;
        width: 220px;
    }

    .contact-content h2 {
        font-size: 40px;
    }

    .faq-content h2 {
        font-size: 40px;
    }
}

/* Smartphone View */
@media (max-width: 500px) {
    .navbar {
        display: none;
    }

    .hero-content {
        width: 100%;
        margin-top: -50px;
    }

    .hero-content h1 {
        font-size: 27px;
        line-height: 1.5;
    }

    .hero-content p {
        font-size: 14px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content p br {
        display: none;
    }

    .hero-content button {
        font-size: 14px;
        width: 65%;
    }

    .plate {
        width: 170px;
    }

    .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 25px;
        margin-top: 50px;
    }

    .about-content p {
        font-size: 14px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .about-btn {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .about-image {
        justify-content: center;
        margin-top: 10px;
    }

    .about-image img {
        width: 100%;
        max-width: 600px;
        height: auto;
    }

    .benefits-section {
        height: auto;
    }

    .benefits-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .benefits-content h2{
        font-size: 23px;
        margin-bottom: 20px;
    }

    .benefits-content p{
        font-size: 14px; 
        margin: 0 20px 40px 20px; 
        line-height: 1.6;
    }

    .benefits-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card {
        width: 235px;
        height: 370px;
        margin-bottom: 20px;
    }

    .card h3 {
        font-size: 20px;
    }

    .card img {
        width: 100px;
        margin-bottom: 30px;
    }

    .card p {
        font-size: 14px;
    }

    .pricing-section {
        text-align: center;
        height: auto;
    }

    .pricing-content h2 {
        font-size: 22px;
        line-height: 1.5;
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pricing-card {
        width: 260px;
        height: 800px;
    }

    .pricing-card h3 {
        font-size: 30px;
    }

    .pricing-card .price-p {
        font-size: 16px;
    }

    .pricing-line {
        width: 260px;
    }

    .price {
        font-size: 60px;
    }

    .pricing-card li {
        font-size: 12px;
        margin-bottom: 25px;
    }

    .pricing-btn {
        font-size: 14px;
        width: 260px;
    }

    .contact-section {
        text-align: center;
        height: 400px;
    }

    .contact-content h2 {
        font-size: 22px;
        margin-top: 50px;
        margin-bottom: 25px;
    }

    .contact-content p {
        font-size: 14px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .contact-btn {
        font-size: 14px;
        width: 65%;
    }

    .faq-content h2 {
        font-size: 27px;
        margin-bottom: 40px;
    }

    .faq-accordion {
        max-width: 350px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-question .icon {
        font-size: 22px;
    }

    .faq-answer {
        font-size: 12px;
    }

    .copyright-content p {
        font-size: 14px;
    }
}
