/*Common Section*/
@font-face {
    font-family: 'HKGrotesk';
    src: url(../fonts/hk-grotesk/TTF/HKGrotesk-Regular.ttf);
}

@font-face {
    font-family: 'CabinetGrotesk';
    src: url(../fonts/cabinet-grotesk/CabinetGrotesk-Variable.ttf);
}
@font-face {
    font-family: 'Mulish';
    src: url(../fonts/mulish/Mulish-Regular.ttf);
}

body {
    transition: background-color .5s;
    background-color: #F5F8FD;

}

html {
    scroll-behavior: smooth;
}

:root {
    --themeColor: #085890;
    --themeColorRGBA: rgba(8,88,144, 1);
    --secondaryColor: #2FA84F;
    --secondaryColorRGBA: rgba(47,168,79, 1);
    --bgColor: #F5F8FD;
    --primaryTextColor: #1A1A1A;
    --secondaryTextColor: #4A4A4A;
    --fontFamilyHKGrotesk: 'HKGrotesk';
    --fontFamilyCabinetGrotesk: 'CabinetGrotesk';
    --fontFamilyMulish: 'Mulish';
    --font-weight-bold: 700;
    --font-weight-regular: 400;
    --line-height: 1.5;
    --color-white: white;
    --line-height-titles: 1.2;
    --grid-gap: 40px 60px;
    --box-shadow10: 1px 5px 10px 0px #DEECFF;
    --box-shadow20: 1px 5px 20px 0px #DEECFF;
    --box-shadow40: 0 .5rem 2rem rgba(0, 0, 0, .1);
    --box-shadow50: 0 .5rem 2rem rgba(0, 0, 0, .2);

    --themeColorRGBA01: rgba(8,88,144, 0.1);
    --themeColorRGBA02: rgba(8,88,144, 0.2);
    --themeColorRGBA03: rgba(8,88,144, 0.3);
    --themeColorRGBA04: rgba(8,88,144, 0.4);
    --themeColorRGBA05: rgba(8,88,144, 0.5);
    --themeColorRGBA06: rgba(8,88,144, 0.6);
    --themeColorRGBA07: rgba(8,88,144, 0.7);
    --themeColorRGBA08: rgba(8,88,144, 0.8);
    --themeColorRGBA09: rgba(8,88,144, 0.9); 
    --Approved: #239B56;
    --New: #B03A2E;
    --InProgress: #F39C12;
    --OnHold: #FF5733;
    --Closed: #2ECC71;
    --Assigned: #0096CC;
    --bgImage:linear-gradient(270deg, #2FA84F, #085890);
}

h1,
h2,
h3 {
    color: var(--primary-text-color);
    font-family: var(--fontFamilyProductSans);
}

h4,
h5,
h6,
p {
    color: var(--secondary-text-color);
    font-family: var(--fontFamilyMulish);
}

button {
    background-color: var(--secondaryColor);
    border: 0px;
    margin-top: 8px;
    color: white;
    padding: 10px 25px;
    border-radius: 10px;
}



.paggignationHeader h3 {
    margin: 0px;
    padding: 0px;
    font-weight: normal;
    font-size: 1em;
    opacity: 0.7;
    padding-bottom: 10px;
    color: var(--secondaryTextColor);
}

.paggignationHeader h3 a {
    color: var(--primaryTextColor);
    font-weight: bold;
    text-decoration: none;
}

/* Bottom gradient overlay */
.courseHeading .overlayView {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, rgba(8,88,144,1), rgba(8,88,144,0.8), rgba(0,0,0,0));
z-index: 1;
}
/* Text content */
.courseHeading .content {
position: relative;
z-index: 2; 
animation: fadeInUp 1.5s ease forwards;
transform: translateY(30px);
opacity: 0;
}
 
/* Animation */
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
/*Common Section*/

/*NAVBAR*/

/*NAVBAR*/

/*Common Styles*/

.SectionHeadComp span {
    background-color: var(--secondaryColor);
    color: white;
    border-radius: 40px;
    text-align: center;
    padding: 10px 25px
}

.SectionHeadComp h2 {
    font-weight: bold;
    text-align: left;
    color: var(--primaryTextColor);
    letter-spacing: 1px;
    line-height: 45px;
    font-size: 2.5em;
}

.SectionHeadComp h5 {
    font-size: 1.2em;
    line-height: 25px;
    color: var(--secondaryTextColor);
}

/*Common Styles*/

/*================= INDEX PAGE STARTS ======================*/

/* ------------- LandingSection STARTS ----------------*/
/* ------------- LandingSection ENDS ----------------*/