:root {
    --accent1: #5f01ad;
    --accent1-light: #dcc5f0;
    --accent1-rgb: 95, 1, 173;
    --background-gradient: linear-gradient(to bottom, white, #f88);
    --background1: #001529;
    --background1-rgb: 0, 21, 41;
    --background1-gradient: radial-gradient(circle, #002a4e, #001529);
    --background2: #002a4e;
    --background3: #003f73;
    --primary: #001529;
    --primary-rgb: 0, 21, 41;
    --dark: #333333;
}
body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(172, 172, 241) 0%, rgba(255,255,255) 50%, rgb(209, 245, 209) 100%);
    background-attachment: fixed;
}
.background1 {
    background-color: var(--background1);
}

.background-gradient {
    background: var(--background-gradient);
}

.text-accent1 {
    color: var(--accent1);
}

.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 3rem;
    font-size: 18px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.5);
}

.bg-primary {
    background: var(--background1-gradient) !important;
    box-shadow: 1px 1px 5px var(--background1);
    color: white;
    padding: 1.5rem;
    height: 100%;
}

.bg-primary-1 {
    background-color: var(--background1) !important;
    box-shadow: 1px 1px 5px var(--background1);
    color: white;
    padding: 1.5rem;
    height: 100%;
}

.bg-primary-2 {
    background-color: var(--background2);
    box-shadow: 1px 1px 5px var(--background1);
    color: white;
    padding: 1.5rem;
    height: 100%;
}

.bg-primary-3 {
    background-color: var(--background3);
    box-shadow: 1px 1px 5px var(--background1);
    color: white;
    padding: 1.5rem;
    height: 100%;
}

.btn-primary {
    background-color: var(--background1);
    border-color: #054f94;
    box-shadow: 1px 1px 5px var(--background1);
}

.gray-frame {
    padding: 0.1rem;
    background-color: rgba(255, 255, 255, 0.297);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.swiveling {
    transition: transform 1s;
    transform: rotateY(3deg) translateX(7px) scale(1);

}

.swiveling-parent {
    perspective: 400px;
}

.swiveling:hover {
    transform: rotateY(0deg) translateX(0px) scale(1);
}

h3 {
    margin-top: 3rem;
}

/* Updated rule for section headers */
section > header {
    padding: 0;
    padding-top: 7rem !important;
}

section > header > h2 {
    font-size: 3rem; /* Default size for smaller screens */
    padding: 0;
}

/* Adjust font size for medium screens */
@media (min-width: 768px) {
    section > header > h2 {
        font-size: 4rem;
    }
}

/* Adjust font size for large screens */
@media (min-width: 992px) {
    section > header > h2 {
        font-size: 5rem;
    }
}

/* Center feature list on medium screens */
@media (min-width: 768px) and (max-width: 991.98px) {
    .feature-list {
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* Adjust padding for larger screens */
@media (min-width: 992px) {
    .feature-list {
        padding-left: 10%;
        padding-right: 10%;
    }
}

/* Additional centering for list items, increased vertical spacing, and tick-text distance */
.feature-list li {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    margin-bottom: 0.575rem; /* Increased by 15% from the default 0.5rem */
    padding-left: 1.5em; /* Add left padding for tick-text distance */
}

/* Adjust spacing for the last item to maintain overall card height */
.feature-list li:last-child {
    margin-bottom: 0;
}

/* Increase space between tick and text */
.feature-list li::before {
    content: "✅"; /* Add the tick */
    margin-right: 0.5em; /* Adjust this value to increase/decrease space */
}

.bg-pink-gradient {
    background: linear-gradient(to bottom, #ff9a9e, #fad0c4);
    color: #333; /* Darker text color for better readability */
    padding: 4rem 0;
}

.bg-pink-gradient a {
    color: #5f01ad; /* Using the accent1 color for the link */
    font-weight: bold;
    text-decoration: none;
}

.bg-pink-gradient a:hover {
    text-decoration: underline;
}

/* Global Accordion Styles */
.accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    border-radius: 12px;
    font-size: 1.2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--background1) 0%, var(--background2) 100%);
    color: white;
    transition: all 0.3s ease;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--background2) 0%, var(--background3) 100%);
    color: white;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(95, 1, 173, 0.25);
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background-color: white;
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    color: #333;
}

.accordion-body ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.accordion-body ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.accordion-body ul li::before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #22c55e;
}

.accordion-body ul {
    padding-left: 2rem;
    margin-top: 1rem;
    list-style: none;
}

.accordion-body ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

/* Responsive adjustments for accordions */
@media (max-width: 768px) {
    .accordion-item {
        margin-bottom: 1rem;
    }

    .accordion-button {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
    
    .accordion-body {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .accordion-body ul li {
        margin-bottom: 0.8rem;
    }
}

/* Update the contact us button size */
.btn-lg {
    font-size: 2rem;
    padding: 1.5rem 3rem;
    border-radius: 0.5rem;
}

/* Increase font size in the Get in Touch section */
section:last-of-type {
    font-size: 1.3rem;
}

section:last-of-type .text-muted {
    font-size: 1.2rem;
}

section:last-of-type .list-unstyled li {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

section:last-of-type .fas {
    font-size: 1.4rem;
}

/* Contact button styles */
section:last-of-type .btn-lg {
    font-size: 1.8rem;
    padding: 1.4rem 3rem;
    background: radial-gradient(circle, var(--accent1) 60%, #7502d5 100%);
    border-color: var(--accent1);
    transition: transform 0.3s ease;
    background-color: var(--accent1);
}

section:last-of-type .btn-lg:hover {
    background: var(--accent1);
    transform: scale(1.05);
}

/* Generic section styles */
section {
    padding: 6rem 0;
    position: relative;
}
