:root {
    --primary: #1B0198;
    --secondary: #559def;
    --Btn-color: #1B0198;
    --capsule: rgb(103, 101, 101);
    --dark-black: #1e293b;
    --icons: linear-gradient(135deg, #1B0198, #559def);
    --sectionBackground: #F4F4FF;
    --gradient-primary: linear-gradient(135deg, #1B0198, #559def);
    --dark-black-color: #1e293b;
    --light-white-color: #f8fafc;
    --text-dark-gray-color: #334155;
}

/* ── Headings ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--dark-black);
    line-height: 1.3;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

/* ── Subheading (reusable class) ── */
.sub-heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark-black);
}

/* ── Body content ── */
p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--capsule);
}

.content {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--capsule);
}

.section-bg {
    background: var(--sectionBackground);
    padding: 50px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.capsule{
    background: #E8EEFF;
    color: var(--capsule);
}

.button-gb{
  background: var(--Btn-color);
  border: none;
  color: white;
}

.checked-icon{
   color: var(--primary);
}

.icon-color{
    color: var(--primary);
}

.icons-bg{
    background: var(--icons);
    color : white
}

.gradient-bg{
    background: var(--icons);
    color : white
}










/* Footer styling */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 30px;
}

.footer-title {
    /* font-size: 1.25rem; */
    /* font-size: 16px; */
    /* font-weight: 700; */
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--light-color);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    /* background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); */
    background: linear-gradient(90deg, #6c757d, #fff);
}

.footer-links {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.footer-links li {
    margin-bottom: 0.75rem;
    color: #fff;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
    padding-left: 5px;
}

.footer-links i {
    /* color: var(--primary-color); */
    /* font-size: 1.1rem; */
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}
