/* Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Figtree', sans-serif;
    background-color: #21212c;
    color: #ffffff
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

/* Header */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    z-index: 10;
    background-color: #21212c;

}

.navbar {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
    padding-right: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 60px;
    margin: 0;
    background-color: #ffffff;
}

.nav-links li {
    margin: 0;
}

.logo img {
    min-height: 140px; 
    margin-left: 0;

}

.nav-btn {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
    font-family: inherit; 
}

/* Hover effect for the buttons */
.nav-btn:hover {
    color: #983cb4; /* Purple color on hover */
}

.btn-login {
    background-color: #983cb4;
    color: #fff;
    padding: 8px 16px;
    font-size: 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: inherit; 
    display: inline-block; /* Ensure the button behaves like a block element */
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;

}
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px; /* Adjust to match the button's border-radius */
    border: 1px solid transparent; /* Initially invisible */
    box-sizing: border-box;
    pointer-events: none;
    transition: border-color .3s ease, border-width .3s ease;
}

.btn-login:hover::before {
    border-color: #ffffff; /* Border color for hover */
    animation: drawBorder1px .3s forwards;
}

.btn-login::before {
    animation: undoBorder1px .3s forwards; /* Undo the border when hover ends */
}
.nav-background {
    background-color: #1d1d28;
    border-radius: 15px;
    padding: 20px;
    box-shadow: -2px 6px 10px rgba(0, 0, 0, 0.4);

}
/* Menu toggle button */
.menu-toggle {
    background-color: #1d1d28;
    display: none;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 30px;
    margin-left: auto;
    z-index: 1001;
    position: relative;
    align-self: center; 

}

.menu-toggle:hover {
    color: #983cb4;
}

.nav-links.open {
    display: block;
    max-height: 500px; /* Adjust as needed */
    overflow: hidden;
}
section {
    position: relative;
    padding: 100px 20px;
    z-index: 1; /* Ensure content is above the line */
    overflow: hidden; /* Make sure the skewed line doesn't overflow */

}
.highlight-animated {
    font-weight: bold;
    animation: pulse 2.5s infinite; /* Create a subtle pulsing effect */
    padding-bottom: 10px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}
/* Hero Section */
.hero {
    background-color: #292936;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 60px;
    
}

.hero-content {
    margin-top: 150px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.hero-text {
    max-width: 40%;
    margin: 0;
    padding-right: 20px;
    text-align: left; /* Keep the text inside the block left-justified */

}

.hero-text h1 {
    margin: 0;
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 30px;

}
/* Base Styles for Skews */
.extra-skew {
    position: absolute;
    top: -10%;
    height: 110%;
    background-color: #21212c;
    transform: skewX(-60deg);
    transform-origin: left;
    z-index: -10;
}

/* Skew 0 */
.skew-0 {
    left: 59%;
    width: 5%; /* Adjust width as needed */
    z-index: -10;
}

/* Skew 1 */
.skew-1 {
    left: 66%;
    width: 2%; /* Adjust width as needed */
    background-color: #21212c;
    z-index: -10;
}

/* Skew 2 */
.skew-2 {
    left: 70%;
    width: 1%; /* Adjust width as needed */
    background-color: #21212c;
    z-index: -10;
}



.hero-text p {
    opacity: 0; /* Start hidden */
    animation: fadeInUp 2s ease-out forwards; /* Apply the animation */
    animation-delay: 1s;
    font-size: 1.2em;
    color: #bdbdbd;
    margin-bottom: 50px;
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px); /* Move from 30px below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at final position */
    }
}
.btn-primary.mobile {
    display: none; /* Hide the mobile button by default */
}

.btn-primary {
    opacity: 0; /* Start hidden */
    animation: fadeIn 1s ease-out forwards; /* Apply the animation */
    animation-delay: 2.5s;
    display: inline-block;
    background-color: #983cb4;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    text-align: center; /* Center the text within the button */
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.btn-primary:hover {
    transform: translateY(-3px); /* Use scale for the hover effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px; /* Adjust to match the button's border-radius */
    border: 1px solid transparent; /* Initially invisible */
    box-sizing: border-box;
    pointer-events: none;
    transition: border-color .3s ease, border-width .3s ease;
}

.btn-primary:hover::before {
    border-color: #ffffff; /* Border color for hover */
    animation: drawBorder1px .3s forwards;
}

.btn-primary::before {
    animation: undoBorder1px .3s forwards; /* Undo the border when hover ends */
}

/* Keyframe animation for drawing the border clockwise */
@keyframes drawBorder1px {
    0% {
        border-width: 1px 0 0 0; /* Start at the top */
    }
    25% {
        border-width: 1px 1px 0 0; /* Top and right border */
    }
    50% {
        border-width: 1px 1px 1px 0; /* Top, right, and bottom border */
    }
    75% {
        border-width: 1px 1px 1px 1px; /* Full border drawn */
    }
    100% {
        border-width: 1px 1px 1px 1px; /* Full border remains */
    }
}

/* Keyframe animation for undoing the border clockwise (with 1px border) */
@keyframes undoBorder1px {
    0% {
        border-width: 1px 1px 1px 1px; /* Full border */
    }
    25% {
        border-width: 1px 1px 1px 0; /* Left border disappears */
    }
    50% {
        border-width: 1px 1px 0 0; /* Bottom border disappears */
    }
    75% {
        border-width: 1px 0 0 0; /* Right border disappears */
    }
    100% {
        border-width: 0 0 0 0; /* All borders disappear */
    }
}

/* Animation container */
.animation-container {
    max-width: 50%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Ensures padding and borders are counted inside width/height */
}

dotlottie-player {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 0; /* Ensure no margin is applied */
    padding: 0; /* Ensure no padding is applied */
    display: block; /* Removes any potential inline spacing */
}

/* Responsive Adjustments */
@media (max-width: 1050px) {
    .btn-primary:not(.mobile) {
        display: none; /* Hide the primary button */
    }
    .header {
        position: absolute;
        top: 0;
        width: 100%; /* Ensure header stays within the viewport */
        display: flex;
        justify-content: space-between;
        padding: 0; /* Adjust padding for better alignment on mobile */
        z-index: 10;
        background-color: #21212c;
    }
    .btn-primary.mobile {
        display: block; /* Show the mobile button */
        margin-top: 20px; /* Add some spacing */
        text-align: center; /* Center the mobile button */
    }

    /* Ensure mobile button is placed below the animation */
    .hero-content {
        flex-direction: column; /* Stack the content on smaller screens */
        align-items: center; /* Center align the elements */
    }

    .animation-container {
        max-width: 100%;
        margin-bottom: 20px; /* Add space below the animation for the button */
    }

    .hero-text {
        height: auto; /* Let the height adjust based on content */

        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }
  

    .animation-container {
        max-width: 100%;
    }
    .logo img {
        min-height: 80px; 
        margin-left: 0;
    }
    .section {
        margin: 0;
    }
    .nav-links {
        gap: 40px;
    }
    .nav-btn {

        font-weight: 400;
        font-size: 15px;
        padding: 8px 12px;

    }
    .btn-login {

        padding: 8px 16px;
        font-size: 15px;
    }
    .nav-background {
        padding: 10px 20px;
    }
    .navbar {
        padding-left: 40px;
    }
    
}

/*Features Section */
.features {
    background-color: #21212c;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);

}
    .feature-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
    }
    .feature-cards a {
        color: #ffffff;
    }
    .card {
    position: relative;
    background-color: #333343;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    
    }
    .card:hover {
        transform: translateY(0) scale(1.02); /* Keep translateY(0) and adjust only scale */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        border: 2px solid transparent; /* Initially invisible */
        z-index: 1;
        box-sizing: border-box;
        pointer-events: none;
        transition: border-color .3s, border-width .3s; /* Smooth transition */

    }
    
    /* On hover, animate the border drawing in */
.card:hover::before {
    border-color: #ffffff; /* Border color matching demo button */
    animation: drawBorder1px .3s forwards; /* Draw the border */
}

/* When hover ends, animate the border drawing out */
.card::before {
    border-color: transparent; /* Border invisible when not hovered */
    animation: undoBorder1px .3s forwards; /* Undo the border */
}

/* Keyframe animation for drawing the border clockwise */

.icon-placeholder {
    background-color: #21212c !important;
    color: #b3b3b3 !important;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    
    display: flex;              /* Enable flexbox */
    justify-content: center;     /* Center horizontally */
    align-items: center;         /* Center vertically */
}
    .circle-image-container {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        border: none;
        outline: none; /* Ensure no outline is being rendered */
        box-shadow: none; /* Remove any box shadow */
    }
    
    .circle-image {
        width: 100%;
        
        height: auto;
        object-fit: cover;
        object-position: center top;
        position: absolute;
        left: 0;
        top: 15%;
        transform: scale(0.6); /* Scale down the image */
        transform-origin: top center; /* Ensure scaling starts from the top center */
    }
    
    .card h3 {
    margin-bottom: 10px;
    color: #ffffff;
    }
    
    .card p {
        color: #bdbdbd;
    }
    
    /* FAQ Section */
    .faq {
    background-color: #292936;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }
    .faq a {
        color: #ffffff;
    }
    
    .faq-items {
    max-width: 800px;
    margin: 0 auto;
    }
    
    .faq-item {
    position: relative; /* Ensure ::before is positioned relative to each faq-item */

    margin-bottom: 30px;
    padding: 20px;
    background-color: #21212c;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
    }
    
    .faq-item:hover {
        background-color: #23232d;
    }
    .faq-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 8px;
        border: 1px solid transparent; /* Initially invisible */
        box-sizing: border-box;
        pointer-events: none;
        transition: border-color .3s ease, border-width .3s ease;
    }
    
    .faq-item:hover::before {
        border-color: #983cb4; /* Border color for hover */
        animation: drawBorder1px .3s forwards;
    }
    
    .faq-item::before {
        animation: undoBorder1px .3s forwards; /* Undo the border when hover ends */
    }
    
    .faq-item h3 {
        margin-bottom: 10px;
        color: #ffffff;
    }
    
    .faq-item p {
    color: #bdbdbd;
    }
    #more-content {
    display: none; /* Hidden by default */
    }
    
    #more-btn {
    cursor: pointer;
    color: #983cb4; /* Color for the link */
    text-decoration: underline;
    }
    /* Apps Section */
    .apps {
    background-color: #21212c;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }
    
    
    .app-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;

    }
    
    .app-card {
    background-color: #333343;

    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    .app-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        border: 2px solid transparent; /* Initially invisible */
        z-index: 1;
        box-sizing: border-box;
        pointer-events: none;
        transition: border-color .3s, border-width .3s; /* Smooth transition */

    }
    
    /* On hover, animate the border drawing in */
.app-card:hover::before {
    border-color: #ffffff; /* Border color matching demo button */
    animation: drawBorder1px .3s forwards; /* Draw the border */
}

/* When hover ends, animate the border drawing out */
.app-card::before {
    border-color: transparent; /* Border invisible when not hovered */
    animation: undoBorder1px .3s forwards; /* Undo the border */
}
    
    .app-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
    }
    
    .app-card p {
    color: #bdbdbd;
    }
    
    .appicon-placeholder {
        background-color: #21212c;
        color: #b3b3b3;
        width: 80px;
        height: 80px;
        border-radius: 10%;
        margin: 0 auto 20px;
        display: flex;              /* Enable flexbox */
        justify-content: center;     /* Center horizontally */
        align-items: center;         /* Center vertically */
        overflow: hidden;            /* Ensure the image does not overflow */
    }
    
    .circle-image-appicon {
        width: 100%;                  /* Adjust width to be a percentage of the placeholder */
        height: auto;                /* Maintain aspect ratio */
        border-radius: 10%;          /* Make the image a rounded rectangle */
    }
/* Contact Section */
.contact {
    background-color: #292936;
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contact h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2em;
    color: #bdbdbd;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    color: #983cb4;
}

.contact-item a {
    font-size: 1.3em;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #983cb4;
}

/* Responsive Styling */
@media (max-width: 810px) {
    .contact {
        padding: 40px 20px;
    }
    
    .contact h2 {
        font-size: 2em;
    }
    
    .contact-details {
        flex-direction: column;
        align-items: center;
    }
}

    /* Footer */
    .footer {
    background-color: #21212c;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .footer-content p {
    margin: 5px 0;
    font-size: 16px;
    color: #bdbdbd;
    }
    
    .footer-content a {
        color: #983cb4;
        text-decoration: none;
        margin: 0 5px;
        transition: color 0.2s ease, text-decoration 0.2s ease; /* Added transition for the underline */
    }
    
    .footer-content a:hover {
        color: #a23fc1;
        text-decoration: underline; /* Add underline on hover */
    }
    
    /* Media Queries */
@media (max-width: 810px) {
    .hero {
        padding: 0 20px;
        padding-top: 100px;
        
    }
    .hero-content {
        flex-direction: column; /* Stack the content on smaller screens */
        align-items: center; /* Center align the elements */
        margin: 0;
    }
    .hero-content h1 {
    font-size: 2.5em;
    }
    .hero-content p {
        font-size: 1em;
    }
    
    .feature-cards,
    .app-cards {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 810px) {
    .navbar {
        flex-direction: row; /* Ensure it stays in a row */
        align-items: flex-start;
        padding: 10px 0px;
        

    }
    .nav-background {
        margin-top: 10px;
    }
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; /* Place dropdown directly below the navbar */
        right: 0; /* Align the dropdown to the right */
        width: 200px;         
        background-color: #1d1d28;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        position: absolute;        
        padding: 10px 20px;
        box-sizing: border-box;
        z-index: 1000;
        gap: 20px;

    }


    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a,
    .btn-login {
        width: 100%;
        text-align: left;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
    }

    /* Hover underline effect for smaller screens */
    .nav-links a:hover {
        text-decoration: underline;
        background-color: transparent;
    }
    .extra-skew {
        position: absolute;
        top: -10%;
        height: 110%;
        background-color: #21212c;
        transform: skewX(-40deg);
        transform-origin: left;
        z-index: -10;
    }
    
    /* Skew 0 */
    .skew-0 {
        left: 59%;
        width: 13%; /* Adjust width as needed */
        z-index: -10;
    }
    
    /* Skew 1 */
    .skew-1 {
        left: 78%;
        width: 6%; /* Adjust width as needed */
        background-color: #21212c;
        z-index: -10;
    }
    
    /* Skew 2 */
    .skew-2 {
        left: 89%;
        width: 3%; /* Adjust width as needed */
        background-color: #21212c;
        z-index: -10;
    }
}
@media (min-width: 811px) {
    /* Ensure dropdown menu closes when the screen is resized to larger size */
    .nav-links {
        display: flex !important;
        flex-direction: row;
        background-color: transparent;
        position: static;
        padding: 0;
        box-shadow: none;
    }

    
}
@keyframes fadeSlideIn {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
/* Initial hidden state */
.fade-slide-in {
    opacity: 0;
    transform: translateY(50px) scale(1); /* Initial state includes scale(1) to combine with hover later */
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  /* Fade-in and slide-up when entering the viewport */
  .fade-slide-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1); /* Ensures that both translateY and scale are managed */
  }
  
  /* Fade-out and slide-up when leaving the viewport upwards */
  .fade-slide-in.fade-out-up {
    opacity: 0;
    transform: translateY(-50px) scale(1); /* Ensure the scale remains consistent */
  }
  
  /* Fade-out and slide-down when leaving the viewport downwards */
  .fade-slide-in.fade-out-down {
    opacity: 0;
    transform: translateY(50px) scale(1); /* Ensure the scale remains consistent */
  }
  
  /* Optional delay to stagger animations for multiple elements */
  .fade-slide-in.delay-1 {
    transition-delay: 0.1s;
  }
  
  .fade-slide-in.delay-2 {
    transition-delay: 0.2s;
  }
  
  .fade-slide-in.delay-3 {
    transition-delay: 0.3s;
  }
  
  .fade-slide-in.delay-4 {
    transition-delay: 0.4s;
  }


  .store-icons {
    margin-top: 20px; 

}

.apple-store-icon {
    width: 30px; /* Adjust size as needed */
    height: auto;
    margin-right: 10px; /* Space between store icons */
}
.google-store-icon {
    width: 100px; /* Adjust size as needed */
    height: auto;
}
/* Flex container for First Name and Last Name */
.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Add space between the two fields */
  }
  
  /* Half width for each input field */
  .half-width {
    width: 50%;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
  }
  
  .modal-content {
    background-color: #1d1d28;
    margin: 10% auto;
    padding: 20px 40px;
    width: 50%;
    border-radius: 12px;
    position: relative;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 700px;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
  }
  
  .close:hover {
    color: #983cb4;
  }
  
  /* Form field styling */
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #b3b3b3;
  }
  
  input {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #b3b3b3;
    border-radius: 8px;
    background-color: #2b2b39;
    color: #ffffff;
    font-size: 16px;
  }
  
  input::placeholder {
    color: #b3b3b3;
  }
  
  /* Highlight fields with validation errors */
  input.error {
    border: 1px solid red;
  }
  
  #form-btn {
    background-color: #983cb4;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%;
  }
  
  #form-btn:hover {
    background-color: #7e2a9e;
  }
  
  #form-message {
    color: red;
    margin-top: 10px;
    display: none;
    font-size: 14px;
  }
  
  .modal-content p {
    margin-top: 15px;
    font-size: 14px;
    color: #b3b3b3;
    text-align: center;
  }
@media (max-width: 810px) {
    .modal-content {
        background-color: #1d1d28;
        padding: 10px 20px;
        width: 75%;

      }
}