* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto !important;
    scroll-behavior: smooth;
}

body {
    position: relative;
    height: auto !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 30px !important;
    font-size: 1rem;
    font-weight: 400 !important;
    font-family: var(--secondaryfont);
    color: var(--bodyclr);
}

.text-justify {
    text-align: justify !important;
}


img {
    max-width: 100%;
}

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

section {
    padding: 5rem 0 0px;
}


footer {
    margin-top: auto;
}



input {
    font-size: 1rem;
}

input:focus {
    box-shadow: none;
    outline: none;
}

b {
    color: var(--darkclr);
}

input::-moz-placeholder {
    font-size: 1rem;
}

input::placeholder {
    font-size: 1rem;
}

textarea {
    font-size: 1rem;
}

textarea:focus {
    box-shadow: none;
    outline: none;
}

textarea::-moz-placeholder {
    font-size: 1rem;
}

textarea::placeholder {
    font-size: 1rem;
}

a {
    font-size: 1rem;
    text-decoration: none;
    color: var(--lightbg);
}

a:hover {
    color: var(--themeprimaryclr) !important;
    text-decoration: none;
}

a:active {
    color: var(--themeprimaryclr);
}

/* ------------------------------------header a , p , span ------------------------------------*/
header a,
header span,
header p,
header select {
    font-size: 1.125rem !important;
    text-decoration: none;
    /* color: var(--lightbg);
  */
}



/* ---------------------------------------footer a, p , span--------------------------------------- */
footer a,
footer span,
footer p {
    font-size: 0.9375rem;
    color: var(--footerclr) !important;
    letter-spacing: 0.00938em;
}

footer a:hover {
    color: var(--themeprimaryclr);
}

.active {
    color: var(--themeprimaryclr) !important;
}

label {
    font-size: 1rem;
}

p {
    font-size: 0.9375rem;
    color: var(--paragraph);
    line-height: 1.8;
    font-weight: 400;
}



ul {
    padding-left: 0px;
    margin-bottom: 0px;
}

ul li {
    list-style: none;
}

ol li {
    list-style: none;
}

h1 {
    font-size: 2.5rem;
    font-family: var(--primaryfont);
}

h2 {
    font-size: 2rem;
    font-family: var(--primaryfont);
}

h3 {
    font-size: 1.75rem;
    font-family: var(--primaryfont);
}

h4 {
    font-size: 1.5rem;
    font-family: var(--primaryfont);
}

h5 {
    font-size: 1.25rem;
    font-family: var(--primaryfont);
}

h6 {
    font-size: 1rem;
    font-family: var(--primaryfont);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--darkclr);
}

.fs-same {
    font-size: 0.75rem !important;
}

.red {
    color: #ff2b2b !important;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.green {
    color: #198754 !important;
}

.orange {
    color: #ff7300 !important;
}

.yellow {
    color: #f2dc00 !important;
}

.blue {
    color: #00f !important;
}

.sitename {
    color: #1c75a1 !important;
}

.main-heading {
    font-size: 2.3125rem !important;
    font-family: var(--primaryfont);
    color: var(--headingclr);
    font-weight: 500 !important;

    line-height: 47px !important;

}

.sub-heading {
    font-size: 1.375rem !important;
    color: var(--headingclr);
    font-family: var(--primaryfont);
    line-height: 29px !important;
    font-weight: 500 !important;
}

.sub-heading-two {
    font-size: 1.125rem !important;
    color: var(--headingclr);
    font-family: var(--primaryfont);
    text-transform: capitalize;
}

.hover-underline:hover {
    text-decoration: underline !important;
    color: #00f !important;
}

.hover-change:hover {
    background-color: var(--themeprimaryclr);
}

.btn-desgin-one {
    display: inline-block;
    background: var(--gradientone);
    color: var(--plainclr) !important;
    border-radius: 30px;
    font-family: var(--secondaryfont);
    padding: 13px 35px;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-desgin-one.white-bg:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 24px 0px rgba(25, 118, 41, 0.3);
}

.btn-desgin-one:hover {
    background-position: right center;
    /* Smoothly shifts the gradient colors */
    transform: translateY(-3px);
    /* Lifts the button slightly */
    box-shadow: 0 8px 22px rgba(103, 43, 122, 0.5);
    /* Soft glowing shadow */

}

.btn-desgin-one:active {
    transform: translateY(-1px);

}

@media (max-width: 992px) {
    section {
        padding: 3rem 0 3rem 0;
    }


    

    header a,
    header span,
    header p,
    header select {
        letter-spacing: unset;
    }

    .main-heading {
        font-size: 1.5rem !important;
        font-weight: 500 !important;
        line-height: 22px !important;
    }

   .main-heading .purple-text {
        font-size: 1.5rem !important;
        font-weight: 500 !important;
        line-height: 22px !important;
    }

    .sub-heading {
        font-size: 1.1rem !important;
    }

    .btn-desgin-one {
        font-size: 0.85rem !important;

        padding: 8px 11px;
    }
}