/* General styles */
body {
    background-color: #271944;
    color: white;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Default Row and Column for Desktop */
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.column {
    flex: 1;
    padding: 20px;
}

.column img {
    max-width: 100%;
    height: auto;
}

/* Header styling */
.header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background-color: transparent;
}

/* Logo styling */
.logo img {
    max-height: 100%;
    width: auto;
}

/* Navigation menu styling */
.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu ul li {
    display: inline-block;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

/* Buttons styling */
.buttons {
    display: flex;
    gap: 20px;
}

.sign-in {
    background: none;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.try-free {
    background: none;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 20px;
    border: 3px solid white;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.try-free:hover {
    background-color: white;
    color: #1C183D;
}

/* Description Section */
.description-section {
    /*background-color: #1C183D;*/
    padding: 20px;
}

/* "How it works" Section */
.how-section {
    background-color: #1C183D;
    padding: 20px;
    text-align: center;
}

.how-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.how-section video {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    margin: 0 auto;
    display: block;
}

/* Container for main content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    background-color: #1C183D;
    padding: 20px;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
}

/* Thinner HR */
hr {
    border: 0;
    height: 1px; /* Set the thickness */
    background-color: white; /* Color of the hr */
    margin: 20px 0;
}

.faq {
    margin-bottom: 20px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
}

.faq-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-content {
    display: none;
    margin-top: 10px;
}

.faq-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 5px 0;
    text-align: left;
}

.faq-content.show {
    display: block;
}

.faq-header.open .toggle-icon {
    transform: rotate(45deg);
}

/* Toggle icon */
.toggle-icon {
    font-size: 1.5rem;
    font-weight: 500;
    transition: transform 0.3s;
}

/* Footer Styling */
.footer {
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

.footer-menu {
    margin-bottom: 30px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-menu ul li {
    display: inline-block;
}

.footer-menu ul li a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    color: #1C183D;
    font-size: 1.5rem;
    transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
    background-color: #f0f0f0;
    color: #1C183D;
}

/* Social Icon Colors */
.social-icon.instagram:hover {
    color: #C13584;
}

.social-icon.facebook:hover {
    color: #1877F2;
}

.social-icon.twitter:hover {
    color: #1DA1F2;
}

/* Heading styling */
h1 {
    margin-top: 50px;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Paragraph styling */
p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 20px;
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

/* Side navigation styles */
.side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #1C183D;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.side-nav a, .side-nav button {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    display: block;
    transition: 0.3s;
}

.side-nav a:hover, .side-nav button:hover {
    color: #f1f1f1;
}

.side-nav .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 2rem;
    color: white;
}

.side-nav button {
    background: none;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
}

/* Media Query for Mobile (max-width: 768px) */
@media only screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .menu, .buttons {
        display: none;
    }

    .row {
        flex-direction: column;
    }

    .column {
        width: 100%;
        padding: 10px 0;
    }

    .column img {
        margin: 0 auto;
        display: block;
        max-width: 100%;
    }

    .description-section, .about-section {
        text-align: center;
    }
}

/* Media Query for Tablet (max-width: 1024px) */
@media only screen and (max-width: 1024px) {
    .row {
        flex-direction: column;
    }

    .column {
        width: 100%;
        padding: 10px 0;
    }

    .description-section, .about-section {
        text-align: center;
    }
}

/* Show the side navigation when open */
.side-nav.open {
    width: 250px;
}

.floating-div {
    position: fixed;
    bottom: 20px; /* Distance from bottom */
    right: 20px;  /* Distance from right */
    background: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.icon-container {
    border-radius: 50%;
    padding: 10px;
    margin-right: 10px;
    color: #6a1b9a; /* Purple icon color */
}

.icon-container i {
    color: #6a1b9a; /* Purple icon color */
    font-size: 20px;
}

.text-container {
    margin-right: 10px;
    color: #271944;
}

.button-container {
    display: flex;
    gap: 10px;
}

.play-btn, .stop-btn {
    background: none;
    border: none;
    color: #6a1b9a; /* Purple icon color */
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.play-btn:hover, .stop-btn:hover {
    color: #4a0072; /* Darker purple on hover */
}

.play-btn i, .stop-btn i {
    margin: 0; /* Remove any default margin */
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Make sure it is behind other content */
}

/* Glassy Modal Style */
.glassy-modal {
    background: rgba(255, 255, 255, 0.1); /* Transparent white */
    backdrop-filter: blur(10px); /* Adds glassy effect */
    border-radius: 15px; /* Rounded corners */
    color: white; /* Text color */
    overflow: hidden; /* Ensures content inside respects border-radius */
}

/* Image Background for Modal */
.modal-image {
    background: url('https://your-image-url.jpg') no-repeat center center;
    background-size: cover;
    border-top-left-radius: 15px; /* Top left rounded */
    border-bottom-left-radius: 15px; /* Bottom left rounded */
}

/* Modal Form and Tab Styles */
.nav-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Match the glassy feel */
}

.nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7); /* Semi-transparent white */
    border: none;
    font-weight: 700;
}

.nav-tabs .nav-link.active {
    color: white;
    background: none;
    border-bottom: 2px solid #6a1b9a; /* Purple accent color */
}

.form-label {
    color: rgba(255, 255, 255, 0.7); /* Semi-transparent label */
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 5px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #6a1b9a; /* Purple border on focus */
    box-shadow: none;
}

.btn-primary {
    background-color: #6a1b9a; /* Primary purple button */
    border-color: #6a1b9a;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #4a0072; /* Darker purple on hover */
    border-color: #4a0072;
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
    .modal-image {
        display: none; /* Hide image on mobile for more space */
    }
    .col-md-8 {
        border-radius: 15px; /* Full border radius for mobile */
    }
}

