/* Purchase.html specific styling */


/* Styling for Review Order Header */
.purchase-container h2 {
    color: #FCFCFC;
    text-align: center;
    margin-bottom: 15px;
}

.header-title {
    color: #25347A;
    font-weight: 600;
    margin-top: 30px;
}

/* Card Styling */
.card {
    background-color: #FCFCFC; /* Consistent background color for cards */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(37, 52, 122, 0.2); /* Slightly larger shadow on hover for depth */
    margin-bottom: 30px !important; /* Space between cards */
}

.card-body {
    padding: 20px; /* Spacing inside card */
}

/* Tab Styling*/
.nav-tabs .nav-item .nav-link {
    color: #25347A; /* Consistent color scheme*/
}

.nav-tabs .nav-item .nav-link.active {
    background-color: #25347A;
    color: #FCFCFC;
}

/* Form Control Styling */
.form-control {
    border: 1px solid #25347A; /* Consistent border color */
    border-radius: 5px; /* Rounded corners */
    /* Other form control styles as needed */
}

/* Order Details Styling */
#orderDetailsTable {
    margin-top: 15px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .purchase-container {
        padding: 10px;
    }

    .card {
        margin-bottom: 10px;
    }
}

/* Enhancements for the Add-ons List */
#addonsList {
    padding: 0;
    margin: 0;
}

.addonListItem {
    background-color: #F8FAFF;
    display: flex;
    align-items: center;
    margin-bottom: 15px; /* Increase spacing between items */
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: 1px solid #25347A; /* Custom border color */
}

/* Hover Effect on Add-on Items */
.addonListItem:hover {
    background-color: #FCFCFC; /* Lighter shade for hover, matching button hover */
    color: #25347A; /* Text color change to match button hover */
    border: 2px solid #25347A; /* Border color to match button hover */
}

/* Custom Checkbox Styling */
.addonCheckbox {
    appearance: none; /* Remove default styling */
    width: 20px;
    height: 20px;
    border: 2px solid #25347A; /* Custom border color */
    border-radius: 4px; /* Slightly rounded corners for the checkbox */
    margin-right: 15px; /* Increase spacing between checkbox and label */
    position: relative;
    cursor: pointer;
}

.addonCheckbox:checked {
    background-color: #25347A;
}

.addonCheckbox:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.addonLabel {
    cursor: pointer;
}

/* Responsive Design for Add-ons List */
@media screen and (max-width: 768px) {
    .addonListItem {
        flex-direction: column;
        align-items: flex-start;
    }

    .addonCheckbox {
        margin-bottom: 5px; /* Adjust for better spacing in mobile view */
    }
}


.addonCheckbox {
    margin-right: 10px; /* Space between checkbox and text */
    background-color: #FCFCFC;
}

.addonCheckbox:hover {
    border-color: #0056b3; /* Slightly darker border color on hover */
}

.addonListItem:hover .addonLabel {
    color: #25347A; /* Text color change to match button hover */
}

/* Table Styling for Order Details */
.table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
}

.table th, .table td {
    border: 1px solid #dee2e6;
    padding: 8px;
}

.table thead {
    background-color: #25347A;
    color: #FCFCFC;
}

/* Increased space below the "Buy Now" button */
#btnBuy {
    margin-top: 20px;
    background-color: #25347A;
    color: #FCFCFC;
}

#btnBuy:hover {
    background-color: #f06755;
    color: #FCFCFC;
    box-shadow: 0 0 15px rgba(37, 52, 122, 0.55) !important; /* Slightly larger shadow on hover for depth */
    border: none;
}

.buyBtn {
    background-color: #25347A !important;
    color: #FCFCFC !important;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 180px;
}

.buyBtn:hover {
    background-color: #FCFCFC !important;
    color: #25347A !important;
    box-shadow: 0 0 15px rgba(37, 52, 122, 0.75); /* Slightly larger shadow on hover for depth */
}

/* Specific Styling for "What Happens Next?" section */

.card.mb-3 .card-body .card-title {
    color: #25347A;
    margin-bottom: 15px;
}

/* Retain this */
.card.mb-3 .list-group {
    list-style: none;
    padding-left: 0;
}

/* Replace this block with the new icon-specific styling */
.card.mb-3 .list-group .list-group-item {
    background: none;
    border: none;
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
}

/* Add Font Awesome icons for each list item */
.card.mb-3 .list-group .list-group-item:nth-child(1)::before { content: '\f0e0'; } /* fa-envelope */
.card.mb-3 .list-group .list-group-item:nth-child(2)::before { content: '\f002'; } /* fa-search */
.card.mb-3 .list-group .list-group-item:nth-child(3)::before { content: '\f571'; } /* fa-file-invoice-dollar */
.card.mb-3 .list-group .list-group-item:nth-child(4)::before { content: '\f09d'; } /* fa-credit-card */
.card.mb-3 .list-group .list-group-item:nth-child(5)::before { content: '\f086'; } /* fa-comments */
.card.mb-3 .list-group .list-group-item:nth-child(6)::before { content: '\f058'; } /* fa-check-circle */

.card.mb-3 .list-group .list-group-item::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.5;
    color: #25347A;
    font-size: 20px;
}

/* Retain this */
.card.mb-3 .list-group .list-group-item:hover {
    background-color: #F8FAFF;
    border-radius: 5px;
    cursor: pointer;
}

/* Retain this */
@media screen and (max-width: 768px) {
    .card.mb-3 .list-group .list-group-item {
        padding-left: 20px;
    }
}

/* Style for the textarea in the comment section */
.card.mb-3 .card-body .mb-3 .form-control {
    border-radius: 5px; /* Match border-radius with other form elements */
    margin-left: 0; /* Removing additional margin for alignment */
    margin-right: 0; /* Removing additional margin for alignment */
    width: 100%;
    border: 1px solid #25347A;
    background-color: #FCFCFC;
}

/* Styling for quantity buttons */
.quantity-btn {
    background-color: #F8FAFF;
    color: #495057;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: #e2e6ea;
    border-color: #dae0e5;
    cursor: pointer;
}

/* Styling for the quantity container */
.quantity-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styling for the quantity text */
.quantity-text {
    margin: 0 10px; /* Adjust spacing around the quantity number */
}

/* Center-align the contents of the Quantity column */
#orderDetailsTable th#tableQuantity, 
#orderDetailsTable td.quantity-cell {
    text-align: center; /* Center align the text and content */
}

/* Styling for the quantity text */
.quantity-text {
    display: inline-block; /* Needed for center alignment */
    margin: 0 10px; /* Adjust spacing around the quantity number */
}

#terms{
    width: 60%;
    margin: auto;
    margin-bottom: 60px;
    margin-top: 40px;
}

#termsTitle, #term1, #term2, #term3{
    color: #FCFCFC;
}

.height2{
    min-height: 500px;
}

.description-small{
    font-weight: 400;
}

#orderDetailsH5{
    margin-bottom: 0px !important;
}

.demo-message {
    display: inline; /* Display inline with the link text */
    visibility: hidden; /* Start hidden and make visible on click */
    opacity: 0;
    color: #FCFCFC; /* Light text color for contrast */
    transition: opacity 0.5s ease, visibility 0.5s ease; /* Smooth transition for fading in/out */
    font-size:smaller;
    background-color: #f06755;
    padding: 4px;
    border-radius: 5px;
}


















/* Index */

.fas.fa-globe:hover {
    transition: font-size 0.2s ease;
}

#slide6Info {
    background-color: #FCFCFC;
    color: #25347A;
    box-shadow: 0 0 10px rgba(37, 52, 122, 0.5);
}

.navbar-brand img {
    max-width: 170px;
    height: auto;
    margin-top: -30px;
    margin-bottom: -55px;
}

.navbar-toggler {
    padding: 0%;
    border: none;
    cursor: pointer;
    margin-right: 15px;
}

.navbar{
    background-color: #FCFCFC;
}

/* Nav Link Specific Styling */
.navbar a {
    color: #25347A; /* Color matching the caro-content */
    padding: 10px 15px;
    text-decoration: none; /* Removes underline from links */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

/* Nav Link Hover Effect */
.navbar a:hover {
    color: #0056b3; /* Color change on hover */
}

.navbar-toggler:focus {
    outline: none;
    border: none;
    box-shadow: 0 2px 4px rgba(37, 52, 122, 0.7);
}

.navbar-toggler i.fas {
    color: #25347A; /* Default color, adjust as needed */
    transition: color 0.3s; /* Smooth transition for color change */
    margin-left: 13px;
}

/* Hover effect for the chevron icon */
.navbar-toggler:hover i.fas {
    font-size: xx-large;
}


#navBottom{
    background-color: #25347A;
    color: #FCFCFC;
    padding-top: 5px;
}



body {
    background-color: #F8FAFF; /* Light background color */
    font-weight: 600;
}


.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-left,
.carousel-fade .carousel-item-right {
    transform: translateX(0);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.contr:hover{
    background-color: rgba(252, 252, 252, 0.4);; /* Darker shade when hovered */
}


.carousel-item {
    position: relative; /* Ensure a positioning context for absolute children */
}

.carousel-div {
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
}

.carousel-div2 {
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    display: flex; /* Use flexbox to align children */
    align-items: center; /* Align children vertically in the center */
    justify-content: center; /* Align children horizontally in the center */
}

/* Hide carousel indicators on small screens */
@media (max-width: 576px) {
    .carousel-indicators {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .carousel-div {
        position: relative;
    }

    .buttonsDiv{
        margin-top: 25px;
        margin-bottom: 35px;
    }


    .caro-content p {
        margin-bottom: 30px;
    }

    .caro-content button{
        margin-bottom: 20px;
    }
}

.caro-content h1 {
    margin-top: 8%;
    margin-bottom: 25px;
}

@media screen and (min-width: 769px) and (max-width: 1250px) {
    .caro-content h1 {
        margin-top: 2%;
        margin-bottom: 25px;
    }
  }
.caro-content p {
    margin-bottom: 30px;
}

#slide2Info, #slide3Info, #slide4Info {
    text-align: left;
}



.input-container {
    display: flex; /* Use flex to align children */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    width: 100%; /* Take the full width of the parent */
}

/* Input styling */
.form-control {
    width: 70%; /* Example width, adjust as needed */
    padding: 10px;
    margin-bottom: 10px; /* Adds space between the inputs */
    border-radius: 5px;
    border: 1px solid #25347A; /* Example border, adjust as needed */
}

#btnLogin {
    background-color: #25347A;
    color: #FCFCFC;
}


#inputUsername, #inputPassword {
    max-width: 250px !important;
}

#subContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

#subContainer h1 {
    font-weight: 600;
    margin-bottom: 45px;
    margin-top: 50px;
    color: #25347A;
}

#subContainer p {
    margin-bottom: 30px;
    font-weight: 400;
}

.features {
    box-shadow: 0 0 5px rgba(37, 52, 122, 0.1);
    background-color: #FCFCFC;
    padding: 25px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 20px;
    border: none;
}

.card.features .card-header {
    background-color: #FCFCFC;
    color: #25347A !important;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: #25347A 1px solid;
}

.card.features .card-header-about {
    color: #25347A !important;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: #25347A 1px solid;
}

/* General setup for all list-group-items in the first features card */
.card.features:nth-child(1) .list-group .list-group-item::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #25347A; /* Adjust the color as needed */
    font-size: 20px; /* Adjust the size as needed */
    margin-top: 5px;
}

/* Custom icons for each list item in #card1 */
#card1 .list-group .list-group-item:nth-child(1)::before { content: '\f0eb'; } /* Lightbulb */
#card1 .list-group .list-group-item:nth-child(2)::before { content: '\f543'; } /* Project Diagram */
#card1 .list-group .list-group-item:nth-child(3)::before { content: '\f0ae'; } /* Balance Scale */
#card1 .list-group .list-group-item:nth-child(4)::before { content: '\f201'; } /* Chart Line */
#card1 .list-group .list-group-item:nth-child(5)::before { content: '\f15c'; } /* File Alt */
#card1 .list-group .list-group-item:nth-child(6)::before { content: '\f031'; } /* Font */
#card1 .list-group .list-group-item:nth-child(7)::before { content: '\f0ac'; } /* Globe */
#card1 .list-group .list-group-item:nth-child(8)::before { content: '\f07a'; } /* Shopping Cart */
#card1 .list-group .list-group-item:nth-child(9)::before { content: '\f03e'; } /* Image */
#card1 .list-group .list-group-item:nth-child(10)::before { content: '\f03d'; } /* Film */


/* Custom icons for each list item in #card2 */
#card2 .list-group .list-group-item:nth-child(1)::before { content: '\f0ce'; } /* Th (Dashboard) */
#card2 .list-group .list-group-item:nth-child(2)::before { content: '\f15c'; } /* File Alt (Document) */
#card2 .list-group .list-group-item:nth-child(3)::before { content: '\f086'; } /* Comments (Interaction) */
#card2 .list-group .list-group-item:nth-child(4)::before { content: '\f1c8'; } /* Folder Open (Media Management) */
#card2 .list-group .list-group-item:nth-child(5)::before { content: '\f201'; } /* Chart Line (Budget Overview) */
#card2 .list-group .list-group-item:nth-child(6)::before { content: '\f0ac'; } /* Globe (Website Control) */
#card2 .list-group .list-group-item:nth-child(7)::before { content: '\f07a'; } /* Shopping Cart (Webshop Integration) */
#card2 .list-group .list-group-item:nth-child(8)::before { content: '\f0e8'; } /* Comments (Meeting Tools) */


/* Custom icons for each list item in #card2 */
#card3 .list-group .list-group-item:nth-child(1)::before { content: '\f108'; } /* Desktop (User-Friendly Interface) */
#card3 .list-group .list-group-item:nth-child(2)::before { content: '\f144'; } /* Play Circle (E-Learning Platform) */
#card3 .list-group .list-group-item:nth-child(3)::before { content: '\f544'; } /* Tools (Tailored Business Tools) */
#card3 .list-group .list-group-item:nth-child(4)::before { content: '\f2db'; } /* Microchip (AI-Driven Solutions) */
#card3 .list-group .list-group-item:nth-child(5)::before { content: '\f500'; } /* User Friends (SME Community) */

/* synergyHub card icons */
#cardSynergyHub .list-group .list-group-item:nth-child(1)::before { content: '\f0c0'; } /* Users (Global Collaboration) */
#cardSynergyHub .list-group .list-group-item:nth-child(2)::before { content: '\f234'; } /* User Plus (Matchmaking) */
#cardSynergyHub .list-group .list-group-item:nth-child(3)::before { content: '\f0c0'; } /* Users (Public/Private Groups) */
#cardSynergyHub .list-group .list-group-item:nth-child(4)::before { content: '\f1c4'; } /* File (Business Profiles) */
#cardSynergyHub .list-group .list-group-item:nth-child(5)::before { content: '\f0d1'; } /* Truck (Supply Chain) */
#cardSynergyHub .list-group .list-group-item:nth-child(6)::before { content: '\f19d'; } /* Building (Organizations) */
#cardSynergyHub .list-group .list-group-item:nth-child(7)::before { content: '\f086'; } /* Comments (AI-Powered Tools) */


.extra-text {

    margin-bottom: 10px;
    
}

/* General styles for slide4, ensuring uniqueness */
.slide4-header {
    color: #25347A;
}

.slide4-features-card {
    box-shadow: 0 0 5px rgba(37, 52, 122, 0.1); /* Slightly larger shadow on hover for depth */
    background-color: #FCFCFC;
    padding: 25px;
    border-radius: 12px;
    margin-top: 35px;
}

.slide4-card-header {
    background-color: #FCFCFC;
    color: #25347A;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid #25347A;
}

.slide4-list-group .slide4-feature-item {
    background-color: #FCFCFC;
    border: none;
}

/* Specific icons for slide4 list items, using the ID for targeting */
#slide4FeaturesCard .list-group-item:nth-child(1)::before { content: '\f542'; } /* Custom Design: fa-pencil-ruler */
#slide4FeaturesCard .list-group-item:nth-child(2)::before { content: '\f5fc'; } /* AI-Driven Development: fa-laptop-code */
#slide4FeaturesCard .list-group-item:nth-child(3)::before { content: '\f108'; } /* Responsive Design: fa-desktop */
#slide4FeaturesCard .list-group-item:nth-child(4)::before { content: '\f0e8'; } /* SEO Optimized: fa-chart-line */
#slide4FeaturesCard .list-group-item:nth-child(5)::before { content: '\f022'; } /* Flexible Options: fa-list-ul */

#slide4FeaturesCard .list-group-item::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #25347A;
    font-size: 20px;
    margin-top: 8px;
}

.slide4-pricing {
    margin-bottom: 55px;
}

.slide3ProductDescription{
    font-weight: 400;
    font-size: 16px;
}

/* Specific icons for slide3 list items, using the ID for targeting */
#slide3FeaturesCard .list-group-item:nth-child(1)::before { content: '\f0d0'; } /* Three custom logo designs: fa-magic */
#slide3FeaturesCard .list-group-item:nth-child(2)::before { content: '\f1fc'; } /* Final logo in color, black, and white: fa-palette */
#slide3FeaturesCard .list-group-item:nth-child(3)::before { content: '\f1c5'; } /* High-resolution PNG: fa-file-image */
#slide3FeaturesCard .list-group-item:nth-child(4)::before { content: '\f509'; } /* Personalized design process: fa-users-cog */

#slide3FeaturesCard .list-group-item::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #25347A; /* Adjust the color as needed */
    font-size: 20px;
    margin-top: 8px;
}

/* Icons for slide2FeaturesCard list items */
#slide2FeaturesCard .list-group-item:nth-child(1)::before { content: '\f540'; } /* Three drafts: fa-pencil-ruler */
#slide2FeaturesCard .list-group-item:nth-child(2)::before { content: '\f4fe'; } /* Designs tailored: fa-user-cog */
#slide2FeaturesCard .list-group-item:nth-child(3)::before { content: '\f06e'; } /* Focus on UX: fa-eye or fa-chart-line (\f201) */
#slide2FeaturesCard .list-group-item:nth-child(4)::before { content: '\f019'; } /* Delivery: fa-download */


#slide2FeaturesCard .list-group-item::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #25347A;
    font-size: 20px;
    margin-top: 8px;
}

.slide2ProductDescription{
    font-weight: 400;
    font-size: 16px;
}

/* Icons for slide1FeaturesCard list items */
#slide1AboutCard .list-group-item:nth-child(1)::before { content: '\f3c5'; } /* Founded in Drangedal, Norway: fa-map-marker-alt */
#slide1AboutCard .list-group-item:nth-child(2)::before { content: '\f5fc'; } /* Specialization in web development: fa-laptop-code */
#slide1AboutCard .list-group-item:nth-child(3)::before { content: '\f0ac'; } /* Collaboration across continents: fa-globe */
#slide1AboutCard .list-group-item:nth-child(4)::before { content: '\f135'; } /* Commitment to innovation: fa-rocket */
#slide1AboutCard .list-group-item:nth-child(5)::before { content: '\f4fe'; } /* Tailored solutions: fa-user-cog */

#slide1AboutCard .list-group-item::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #25347A;
    font-size: 20px;
    margin-top: 8px;
}

#slide1AboutCard {
    background-color: #F8FAFF !important;
    box-shadow: none;

}

.leadAbout{
    margin-bottom: 45px !important;
}

.about-sub-heading{
    font-weight: 600;
    font-size: 18px;
    margin-top: 35px;
    color: #25347A;
}

.aboutP{
    font-weight: 400;
    font-size: 16px;
    margin-top: 15px;
}

.about-texts{
    margin-top: 35px;
}

body, input, button, .btn, .navbar a {
    font-family: 'Roboto', sans-serif; /* Use a sans-serif font for better readability */
}

/* Apply a heavier weight of Open Sans to buttons and nav links for emphasis */
button, .btn, .navbar a {
    font-weight: 600; /* Medium weight for better visibility */
}

.btn {
    background-color: #F8FAFF; /* White background for buttons */
    color: #25347A; /* Text color for buttons */
    border: 1px solid #25347A; /* Border color matching the text */
    box-shadow: 0 0 10px rgba(37, 52, 122, 0.5);
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.btn:hover {
    background-color: #25347A; /* Darker shade when hovered */
    color: #FCFCFC; /* Text color change on hover */
    border: 3px solid #25347A;
    box-shadow: 0 0 15px rgba(37, 52, 122, 0.85);
}

#slide1Services {
    background-color: #25347A;
    color: #FCFCFC;
    font-size:larger;
    padding: 16px 32px;
}

#slide1Services:hover {
    background-color: #f06755;
    color: #FCFCFC;
    border: 1px solid #f06755;
    
}

footer{
    background-color: #202020; /* Dark background for footer */
    color: #FCFCFC;
}

/* Styling for the social media icons and logo */
footer a.text-reset {
    display: inline-block;
    margin: 0 15px; /* Adjust spacing around icons as needed */
    color: #FCFCFC; /* Initial color for icons */
    transition: color 0.3s; /* Smooth transition for color change */
}

footer img {
    height: auto; /*This ensures the aspect ratio is maintained */
    max-width: 150px !important; /* Optional: Limit logo size */
}

@media screen and (max-width: 768px) {
    footer img {
        max-width: 100px !important; /* Optional: Limit logo size */
    }
}

/* Hover effect for the icons */
footer a.text-reset:hover {
    color: #25347A !important; /* Change to desired hover color */
}


/* Ensure the row's items are vertically aligned */
.row.align-items-center {
    align-items: center;
}

#servicesList {
    font-weight: 400;
}

.spaceRight{
    margin-right: 25px;
}

#servicesCards{
    margin-top: 35px;
}

.service-description{
    margin-top: 10px;
    min-height: 200px;
}

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

.slide4-list-group {
    padding-right: 25px;
}

.slide4-card-header {
    background-color: #FCFCFC !important;
}

.card-no-standout {
    background-color: #F8FAFF;
    box-shadow: none;
    border: none;
}

#orderMainh1{
    color: #25347A;
    margin-bottom: 35px;
}

.minDivHeight{
    min-height: 500px;
}

#commentSection{
    background-color: #FCFCFC;
    height: 275px;
    border: 1px solid #25347A;
    border-radius: 5px;
    resize: none; /* Prevent textarea resizing */
    overflow-y: auto; /* Ensures vertical scrollbar appears when text exceeds the height */
    box-shadow: 0 0 10px rgba(37, 52, 122, 0.1); /* Slightly larger shadow on hover for depth */
}

.purchaseButtons{
    background-color: #FCFCFC;
    box-shadow: 0 0 10px rgba(37, 52, 122, 0.2);
    border: 1px solid #25347A;
}

.discord-icon {
    font-size: 24px; /* Icon size */
    vertical-align: middle; /* Aligns icon with text */
    transition: color 0.3s ease; /* Smooth color transition */
    text-decoration: none; /* Remove underline */
}

#welcomeLeadText {
    display: inline; /* Makes the paragraph inline with the icon */
    vertical-align: middle; /* Aligns text with the icon */
}

#registeredUserCol {
    width: 65% !important;
}


#welcomeButtonDiscord {
    background-color: #F8FAFF;
    color: #25347A;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 24px; /* Adjusted for icon size */
    padding: 15px 20px; /* Padding added */
    box-shadow: none;
}

#welcomeButtonDiscord:hover {
    background-color: #F8FAFF;
    color: #7289DA; /* Discord blue color */
}

#welcomeLeadText {
    font-size: 20px; /* Size adjusted for visibility */
    color: #333; /* Slightly darker for better readability */
    font-weight: bold; /* Make it bold */
}

#welcomeDiv {
    padding: 10%; /* Adjusted for spacing */
    padding-top: 50px !important; /* Adjusted for spacing */
    padding-bottom: 80px !important; /* Adjusted for spacing */
}

#contactSubheading{
    margin-bottom: 60px !important;
}

.fas.fa-check {
    color: #25347A;
}

.advantages-container {
    background-color: #FCFCFC;
    text-align: left; /* Align the text to the left */
    margin: 0 auto; /* Center the container */
    margin-top: 60px;
    box-shadow: 0 0 10px rgba(37, 52, 122, 0.3);
    border-radius: 12px;
    padding-top: 40px;
    padding-bottom: 20px;
}
.advantages-container li {
    font-weight: 400;
    margin-bottom: 15px; /* Add space between list items */
}

#discordCommunityP{
    margin-top: 40px;
}

.btnAction {
    background-color: #F8FAFF;
}

#slide3Heading {
    color: #FCFCFC;
}

#slide3Subheading {
    color: #FCFCFC;
    font-style: italic;
}

#buyTextButton {
    font-weight: 600 !important; /* Adjusted font weight for better visibility */
}

.img-space-top {
    margin-top: 40px; /* Adds space above the element */
}

.space-top {
    margin-top: 20px; /* Adds space above the element */
}

.space-top2 {
    margin-top: 40px; /* Adds space above the element */
}

.space-bottom {
    margin-bottom: 20px; /* Adds space below the element */
}

.space-bottom2 {
    margin-bottom: 40px; /* Adds space below the element */
}

.custom-font-weight {
    font-weight: 400;
}

.fallOfContainer {
    background-color: #050504;
    color: #F8FAFF;
    padding-bottom: 30px;
}

.fallOfHeading {
    color: #BA262B !important;
    font-family: "shlop", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
}

.fallOfSubheading {
    color: #BA262B !important;
    font-family: "shlop", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*.caro-content {
    padding-left: 7%;
}

.caro2 {
    padding-left: 1% !important;
}*/

@media screen and (max-width: 768px) {
    .caro-content {
        padding-left: 0;
    }
    
}

#slide4Heading {
    color: #F8FAFF;
}

@media screen and (max-width: 768px) {
    #slide4Heading {
        color: #25347A;
    }

    #slide4Subheading {
        color: #25347A !important;
    }

    #fallOfReadMoreButton {
        background-color: #25347A;
        color: #FCFCFC;
        border: 2px solid #25347A;
        box-shadow: 0 0 15px rgba(37, 52, 122, 0.75);
    }
    
}

#slide4Subheading {
    color: #F8FAFF;
}

#fallOfReadMoreButton:hover {
    background-color: #F8FAFF;
    color: #BA262B;
    border: 2px solid #F8FAFF;
    box-shadow: 0 0 15px rgba(186, 38, 43, 0.75);
}

#fallOfRegisterButton:hover {
    background-color: #F8FAFF;
    color: #BA262B;
    border: 2px solid #F8FAFF;
    box-shadow: 0 0 15px rgba(186, 38, 43, 0.75);
}

.response-message {
    margin-top: 20px;
}

#inputUsername2, #inputPassword2 {
    width: 100% !important;
    box-shadow: 0 0 10px rgba(37, 52, 122, 0.5);
}

#button-container{
    width: 100% !important;
}


#result {
    margin-top: 25px;
    color: #BA262B;
}

.register-btn{
    margin-bottom: 60px;
    background-color: #25347A;
    color: #FCFCFC;
}

.register-btn:hover {
    background-color: #F8FAFF;
    color: #25347A;
    box-shadow: 0 0 15px rgba(37, 52, 122, 0.75) !important; /* Slightly larger shadow on hover for depth */
    border: none;
}



#endLeadText {
    padding-left: 15px;
    padding-right: 15px;
}

.equal-height-cards {
    display: flex;
    flex-wrap: wrap;
}

.equal-height-cards .col-md-6,
.equal-height-cards .col-md-8 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-card{
    box-shadow: 0 0 5px rgba(37, 52, 122, 0.1) !important; /* Slightly larger shadow on hover for depth */
    background-color: #FCFCFC !important;
    border-radius: 12px;
    border: none;
}


#overlay {
    position: fixed; /* Or 'absolute' depending on your needs */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9); /* Semi-transparent black background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* High value to ensure it's on top */
}


#accessPrompt {
    padding: 20px;
    background: #FCFCFC;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#accessCode {
    margin-bottom: 10px; /* Adds some space between the input and the button */
    width: 100%; /* Makes the input take the full width of the #accessPrompt div */
}

#requestAccessButton {
    width: 100%; /* Makes the button take the full width of the #accessPrompt div */
    cursor: pointer; /* Changes cursor to pointer when hovering over the button */
}

.iconContact {
    color: #25347A !important;
}

.cookie-banner {
    background-color: #FCFCFC;
    border-top: 5px solid #25347A !important;
}
.cookie-link {
    color: #25347A;
}

/* Keep the article narrow & readable on desktops */
#policyArticle, #tosArticle{
  max-width:720px;
  line-height:1.6;
  background-color: #FCFCFC;
  box-shadow: 0 0 15px rgba(37, 52, 122, 0.25);
}

/* Subtle divider between each numbered section */
.policy-section + .policy-section, .tos-section + .tos-section {
  border-top:1px solid var(--bs-border-color-translucent);
  padding-top:1.25rem;
}

/* Bullet colour visible in light & dark modes */
.policy-section ul li::marker, .tos-section ul li::marker {
  color:var(--bs-secondary);
}

/* Footer legal links */
.wt a {
    font-size: .85rem;      /* ≈ 13–14 px on default root size */
    font-weight: 400;       /* slightly lighter than the rest of the nav */
    color: #FCFCFC;
    transition: color .3s ease;
}

.wt a:hover,
.wt a:focus {
    color: #25347A;         /* same blue hover as before */
}

.wt a:hover,
.wt a:focus {
    color: #25347A;               /* blue on hover/focus */
}

/* footer copyright */
.wt #copyright {
    font-size: 0.8rem;   /* a touch smaller than body text */
    font-weight: 400;    /* regular weight */
    color: #FCFCFC;      /* same white as the links */
    letter-spacing: 0.2px;
}

.custom-alert {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

.custom-alert-content {
    background-color: #FCFCFC;
    color: #25347A;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 25%;
    text-align: center;
    font-weight: 600;
}

/* On small screens */
@media screen and (max-width: 768px) {
    .custom-alert-content {
        width: 98%; /* Adjust width for smaller screens */
    }
}
  
.alert-button {
    width: 80px;
    padding: 8px 16px;
    background-color: #25347A;
    color: #FCFCFC;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
  
.alert-button:hover {
    background-color: #f06755;
    color: #FCFCFC;
    box-shadow: 0 4px 8px rgba(0,0,0,0.9);
}