
/* Ensure Poppins font is imported */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');


body {
    /*
    font-family: 'Roboto', sans-serif;
    background-color: #131517;
    */
    background-color: #0a0f1a; /* Darker color with a bluish tint */
    font-family: 'Poppins', sans-serif;
    /*background-color: #111111;*/
    color: #e8e8e8;
}



.navbar {
   
}

/* Make the navbar-toggler (menu icon) white */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5); /* Change the border color to white with transparency */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

a.nav-link {
    color: #e8e8e8;
}

a.nav-link:hover {
    color: #00aaff;
}

h2, h3, h4 {
    color: #e8e8e8;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
}

/* Apply to the h1 element */
h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px; /* Larger text size */
    font-weight: 700; /* Bold */
    line-height: 1.2; /* Adjust line height for readability */
}


footer {
    
    color: #7a7e84;
    padding: 1.5rem;
}


/* Parallax Section Styling */
.parallax-divider {
    /*background-attachment: fixed;*/
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain; /* Ensures the full width of the image is shown */
    height: 400px; /* Adjust based on your preference */
    position: relative;
}

.parallax-divider.moving {
    background-position: center center;
    transition: background-position 0.3s ease-out;
}














.parallax-container {
    position: relative;
    overflow: hidden;
    height: 400px; /* Adjust as needed */
}

.parallax-image {
    width: 100%; /* Ensure full image width is shown */
    height: auto; /* Ensure the image scales proportionally */
    position: absolute;
    top: 0;
    left: 0;
    transform: translateZ(0); /* This helps performance */
}


/* Disable parallax and adjust height on mobile */
@media (max-width: 768px) {
    .parallax-container {
        background-attachment: scroll; /* Disable fixed attachment */
        height: auto; /* Adjust height for mobile */
        min-height: 200px; /* Set a reasonable minimum height for mobile */
    }

    .parallax-image {
        position: relative;
        height: auto; /* Ensure image fits the container */
        transform: none; /* Remove the parallax effect */
    }
}











.accordion-button {
    background-color: #2c2c2c;
    color: #e8e8e8;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #00aaff;
}

.accordion-body {
    background-color: #2c2c2c;
    color: #e8e8e8;
}

pre {
    border-radius: 5px;
    background-color: #2e2e2e;
    color: #f8f9fa;
    padding: 10px;
}


.card {
    background-color: #000000;
    border-color: #00aaff;
    border: 1;
    color: white;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card-title {
    color: #00aaff;
}

.card-text {
    color: #cccccc;
}


.gradient-text-old {
    font-weight: bold;
    background: linear-gradient(to right, #6ef9dd, #b404f9);
    -webkit-background-clip: text;
    color: transparent;
}

.gradient-text {
    font-weight: bold;
    background: linear-gradient(45deg, #00aaff, #ff66cc, #cc99ff);
    -webkit-background-clip: text;
    color: transparent;
}

.gradient-text-new {
    font-weight: bold;
    background: linear-gradient(45deg, #00aaff, #ff66cc, #cc99ff);
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200%;
    background-position: left;
    transition: background-position 0.5s ease-in-out;
}

.gradient-text-new:hover {
    background-position: right;
}

.gradient-text-info {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #d6d6d6, #e0e0e1, #babfc3, #00aaff, #cc99ff);
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200%;
    background-position: left;
    transition: background-position 0.5s ease-in-out;
    font-size: 2.25rem; /* Make the bold text even larger */
    font-weight: 100; /* Bold weight */
}

.gradient-text-info:hover {
    background-position: right;
}



.list-group {
    margin-left: 200px;  /* Adds a left margin of 100px */
    width: 60%;  /* Reduces the width to 75% */
}

.list-group-item {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem; /* Make the bold text even larger */
    font-weight: 100; /* Bold weight */
}



/* Optionally, customize font for strong/bold text */
strong {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem; /* Make the bold text even larger */
    font-weight: 100; /* Bold weight */
    color: #00aaff;
    
}

/* Styles for mobile devices */
@media (max-width: 768px) {
    .list-group {
        margin-left: 0;  /* Remove margin on mobile */
        width: 100%;  /* Full width on mobile */
    }

    .list-group-item {
        font-size: 1.5rem; /* Smaller text size on mobile */
    }

    strong {
        font-size: 1.5rem; /* Smaller text size on mobile */
    }

    .gradient-text-info {
        font-size: 1.5rem; /* Smaller text size on mobile */
    }
}

.btn-primary {
    background-color: #00aaff;
    border: none;
}

.btn-secondary {
    background-color: #555555;
    border: none;
}

.btn:hover {
    opacity: 0.8;
}

.btn-primary {
    background-color: #00aaff;
    border: none;
    
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #007acc; /* Darker blue on hover */
}

/* Options Section Container */
.options-section {
    
    justify-content: space-between;
    
}

.option-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.option-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00aaff, #ff66cc, #cc99ff);
    z-index: -1; /* Place it behind the content */
    padding: 2px; /* Thickness of the gradient border */
    border-radius: 8px; /* Match the border radius of the container */
    box-sizing: border-box; /* Ensure padding works as border */
}
.option-item {
    padding: 20px;
   
    position: relative;
    border-radius: 8px;
    flex: 1;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden; /* Hide the gradient overflow */
}

.option-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00aaff, #ff66cc, #cc99ff);
    z-index: -1; /* Place it behind the content */
    padding: 2px; /* Thickness of the gradient border */
    border-radius: 8px; /* Match the border radius of the container */
    box-sizing: border-box; /* Ensure padding works as border */
}

.option-item::after {
    content: '';
    position: absolute;
    top: 3px; /* Adjust based on padding */
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #0a0f1a; /* Inner background to create the border effect */
    border-radius: 6px; /* Slightly smaller radius to reveal the gradient */
    z-index: -1;
}

.option-item::after {
    content: '';
    position: absolute;
    top: 3px; /* Adjust based on padding */
    left: 3px;
    right: 3px;
    bottom: 3px;
    
    border-radius: 6px; /* Slightly smaller radius to reveal the gradient */
    z-index: -1;
}

.option-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.option-text {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Styling for the buttons */
.btn-primary {
    background-color: #00aaff;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #007acc; /* Darker blue on hover */
}

.text-mut {
    color: #6c757d; /* A typical gray color, adjust as needed */
}





/* Flashy input group styling */
.flashy-input-group {
    display: flex;
    align-items: center;
}

.license-input {
    font-size: 0.8rem; /* Smaller font size */
    background: linear-gradient(135deg, #007BFF, #f06b6b); /* Gradient background */
    color: white; /* White text for contrast */
    border: 2px solid #ccc;
    padding: 10px; /* More padding for better visual effect */
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle text shadow */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8); /* Glowing effect */
}

/* Add a glow effect on hover or focus */
.license-input:hover, .license-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8); /* Glowing effect */
    border-color: #fff;
}

.stargit-primary {
    background: #f06b6b; /* Green color */
    border-color: #ffffff;
    color: white;
    padding: 8px 12px; /* Padding for button */
    border-radius: 8px; /* Match input field */
    transition: background 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8); /* Glowing effect */
}

.stargit-primary:hover {
    background: #552626; /* Darker green on hover */
}

/* Flashy button styling with icon */
.stargit-primary i {
    font-size: 1.2rem;
}