/* Table of Contents
----------------------------------

/*------------------------------ Global CSS ------------------------------*/
/*
0- Global CSS
1- Heading CSS
2- Sub Heading CSS
3- Button CSS
4- Menubar CSS
5- Logo Area CSS
6- Sidebar Area CSS
7- Scroll-Top Area CSS
8- Swiper Pagination CSS
9- Swiper Navigation CSS
*/

/*------------------------------ All Sections CSS ------------------------------*/
/*
1- Home
2- About
3- Counter
4- Skills
5- Experience
6- Services
7- Portfolio
8- Testimonials
9- Blogs
10- Contact
*/



/*--------------------- Global CSS (Start) ---------------------*/

/*----- 0- Global CSS -----*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

:root{
    --navy: #001D6E;
    --dark-blue: #589dfd;
    --white: #fff;
    --grey: #666;
    --black: #121113;
    --border-radius-1: 0.5rem;
    --border-radius-2: 1rem;
    --border-radius-3: 50%;
    --font-family-1: "Merriweather", serif;
    --font-family-2: 'Roboto', sans-serif;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

*{
    font-family: var(--font-family-2);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: capitalize;
    border: none;
    outline: none;
}

*:not(.portfolio-item){
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

*::-moz-selection{
    color: var(--white);
    background-color: var(--dark-blue);
}

*::selection{
    color: var(--white);
    background-color: var(--dark-blue);
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body{
    background: #f2f3f8;
    overflow-x: hidden;
    padding-left: 25rem;
}

section{
    padding: 3rem 5%;
}

img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

p{
    color: var(--grey);
    font-size: 1.6rem;
    line-height: 1.6;
}

::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-thumb{
    border-radius: 1rem;
    background-color: var(--dark-blue);
}

::-webkit-scrollbar-track{
    background-color: var(--navy);
}

/*----- 1- Heading CSS -----*/
.heading {
    padding-bottom: 2rem;
}

.heading h1 {
    position: relative;
    font-family: var(--font-family-1);
    font-weight: 500;
    font-size: 4rem;
    color: var(--navy);
    text-shadow: var(--text-shadow);
}

.heading h1 span {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2.5;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    padding-bottom: 1rem;
    color: rgba(0, 0, 0, 0.4);
    color: var(--dark-blue);
}

.heading h1:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 6rem;
    height: 0.2rem;
    background-color: var(--navy);
}

/*----- 2- Sub Heading CSS -----*/
.sub-heading{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3rem;
}

.sub-heading h5 {
    color: var(--navy);
    font-size: 3rem;
    font-weight: 600;
    position: relative;
    font-family: var(--font-family-1);
}

.sub-heading h5::before{
    content: '';
    position: absolute;
    bottom: -0.5rem; left: 0;
    background: var(--navy);
    height: 0.2rem;
    width: 110%;
}

.sub-heading.linear-bg h5 {
    color: var(--white);
}

.sub-heading.linear-bg h5::before{
    background: var(--white);
}

/*----- 3- Button CSS -----*/
.btn {
    display: inline-block;
    border: 0.2rem solid var(--dark-blue);
    background: none;
    color: var(--dark-blue);
    padding: 1rem 2rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    color: var(--white);
}

.btn:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue);
    z-index: -1;
    border-radius: 50% 50% 0% 0%;
    height: 0%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.btn:hover:before {
    height: 190%;
}

/*----- 4- Menubar CSS -----*/
#menu {
    z-index: 10000;
    color: var(--white);
    font-size: 3rem;
    padding: 0rem 1rem;
    cursor: pointer;
    display: none;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

#menu:hover{
    color: var(--dark-blue);
}

/*----- 5- Logo Area CSS -----*/
.logo h2 {
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-shadow: 4px 3px 0 #7A7A7A;
    font-family: var(--font-family-1);
    text-align: center;
}

/*----- 6- Sidebar Area CSS -----*/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 25rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1000;
    background: var(--navy);
    padding: 4rem 2rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar .navbar {
    padding: 4rem 0;
}

.sidebar .navbar li {
    list-style-type: none;
}

.sidebar .navbar li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    height: 100%;
    width: 100%;
    font-size: 2rem;
    color: var(--white);
    margin: 0.5rem 0;
    padding: 0.7rem 1.5rem;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar .navbar li a:before {
    content: "";
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    height: 1.2rem;
    width: 1.2rem;
    border: 0.3rem solid var(--dark-blue);
    border-width: 0 0 0.3rem 0.3rem;
    opacity: 0;
}

.sidebar .navbar li a::after {
    content: "";
    position: absolute;
    right: 1.2rem;
    top: 1.2rem;
    height: 1.2rem;
    width: 1.2rem;
    border: 0.3rem solid var(--dark-blue);
    border-width: 0.3rem 0.3rem 0 0;
    opacity: 0;
}

.sidebar .navbar li a span {
    margin-left: 1rem;
    font-size: 2rem;
}

.sidebar .navbar li a:hover,
.sidebar .navbar li.active a {
    background-color: var(--dark-blue);
}

.sidebar .navbar li a:hover::before {
    left: -0.5rem;
    bottom: -0.5rem;
    opacity: 1;
}

.sidebar .navbar li a:hover::after {
    right: -0.5rem;
    top: -0.5rem;
    opacity: 1;
}

.sidebar .navbar li a .icon {
    height: 2.5rem;
    min-width: 4rem;
    font-size: 2.2rem;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

.sidebar .social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
}

.sidebar .social a{
    color: var(--white);
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
       align-items: center;
}

.sidebar .social a:hover{
    color: var(--dark-blue);
}

/*----- 7- Scroll-Top Area CSS -----*/
.scroll-top{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    font-size: 3rem;
    font-weight:lighter;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--border-radius-3);
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scroll-top:hover{
    background: var(--dark-blue);
}

/*----- 8- Swiper Pagination CSS -----*/
.swiper-pagination-bullet {
    height: 1rem;
    width: 3rem;
    border-radius: var(--border-radius-1);
    background: var(--navy);
    opacity: 1;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.swiper-pagination-bullet-active {
    width: 6rem;
    background: var(--dark-blue);
    opacity: 0.9;
}

/*----- 9- Swiper Navigation CSS -----*/
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    background-color: var(--navy);
    color: var(--white);
    height: 5rem;
    width: 5rem;
    padding: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.testimonial-slider .swiper-button-next::after,
.testimonial-slider .swiper-button-prev::after {
    font-size: 2rem;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
    background-color: var(--dark-blue);
}

/*------------------------------ Global CSS (End) ------------------------------*/



/*------------------------------ All Sections CSS (Start) ------------------------------*/

/*----- 1- Home -----*/
.home{
    padding: 0;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url('../images/Home/Home-Image.jpg');
    background:         linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url('../images/Home/Home-Image.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home .box-container {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home .content{
    width: 60rem;
    text-align: center;
}

.home .content h1 {
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-family-1);
}

.home .content h4 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 500;
    padding: 2rem 0;
}

.home .content h4 .typed-cursor {
    font-weight: bold;
    -webkit-animation: blink 0.7s infinite;
            animation: blink 0.7s infinite;
}

@-webkit-keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.home .content p {
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 400;
    padding-bottom: 2rem;
}

/*----- 2- About -----*/
.about .box-container {
    padding-bottom: 3rem;
}

.about .text {
    padding-bottom: 2rem;
}

.about .text h2 {
    font-size: 3rem;
    color: var(--navy);
    padding-bottom: 1rem;
    font-family: var(--font-family-1);
}

.about .text .about-info{
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.about .text .about-info h4 {
    font-size: 1.6rem;
    color: var(--navy);
    padding-bottom: 1.2rem;
}

.about .text .about-info span {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--grey);
}

/*----- 3- Counter -----*/
.about .counting {
    min-height: 15rem;
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    background-color: var(--navy);
}

.about .counting .box {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    text-align: center;
    padding: 2rem;
}

.counting .box .count {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-blue);
    padding-bottom: 0.5rem;
}

.about .counting .box h3 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    font-family: var(--font-family-1);
}

/*----- 4- Skills -----*/
.skill-container {
    padding-bottom: 2rem;
}

.skills {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

.skill-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
}

.skill-item .box {
    padding-bottom: 2rem;
}

.skill-item .box h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 1rem;
    font-size: 1.7rem;
    color: var(--navy);
    font-weight: 400;
}

.skill-item .box .progress-bar {
    width: 100%;
    background: var(--navy);
    overflow: hidden;
    height: 1rem;
    border-radius: 50rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.skill-item .box .progress-bar span {
    display: block;
    height: 100%;
    background: var(--dark-blue);
}

/*----- 5- Experience -----*/
.resume-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

.education,
.experience {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
}

.education-item,
.experience-item {
    position: relative;
    padding: 0 0 2rem 3rem;
    border-left: 0.2rem solid var(--navy);
    margin-left: 2rem;
}

.education-item .icon,
.experience-item .icon {
    position: absolute;
    top: 0;
    left: -2.5rem;
    height: 5rem;
    width: 5rem;
    font-size: 2.5rem;
    line-height: 5rem;
    color: var(--white);
    background: var(--navy);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.education-item .content,
.experience-item .content {
    padding: 2rem;
    padding-top: 1rem;
}

.education-item span,
.experience-item span {
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 50rem;
}

.education-item h3,
.experience-item h3 {
    font-size: 2.6rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--navy);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-family-1);
}

.experience-item h6,
.education-item h6{
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/*----- 6- Services -----*/
.services .box-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-item {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
    background-color: var(--white);
    padding: 4rem 3rem;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.service-item::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    bottom: calc(-100% + 0.5rem);
    background-color: var(--navy);
    z-index: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.service-item:hover::before {
    bottom: 0;
}

.service-item .content {
    position: relative;
    z-index: 2;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.service-item .icon {
    font-size: 4rem;
    color: var(--dark-blue);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
}

.service-item h3 {
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--navy);
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    font-family: var(--font-family-1);
}

.service-item:hover .icon,
.service-item:hover h3,
.service-item:hover p {
    color: var(--white);
}

/*----- 7- Portfolio -----*/
.portfolios .controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.controls .button {
    display: inline-block;
    pointer-events: auto;
    cursor: pointer;
    border: none;
    padding: 1.2rem 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--navy);
    font-family: var(--font-family-1);
}

.controls .button span {
    content: "";
    position: absolute;
    height: 100%;
    width: 25%;
    background-color: var(--navy);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform-origin: top;
        transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.controls .button span:nth-child(1) {
    left: 0;
    top: 0;
}

.controls .button span:nth-child(2) {
    left: 25%;
    top: 0;

}

.controls .button span:nth-child(3) {
    left: 50%;
    top: 0;
}

.controls .button span:nth-child(4) {
    left: 75%;
    top: 0;
}

.controls .button:hover {
    cursor: pointer;
    color: var(--white);
}

.controls .button:hover span:nth-child(1) {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.controls .button:hover span:nth-child(2) {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 0.15s;
        transition-delay: 0.15s;
}

.controls .button:hover span:nth-child(3) {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
}

.controls .button:hover span:nth-child(4) {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 0.45s;
        transition-delay: 0.45s;
}

.controls .button.active {
    cursor: pointer;
    color: var(--white);
    background: var(--navy);
}

.portfolio-item {
    width: 33.3%;
    padding: 0.3rem;
}

.portfolios-content {
    height: 25rem;
    position: relative;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}

.portfolio-item .content {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    padding: 3rem 2rem;
    background-color: rgba(127, 181, 255, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.portfolio-item:hover .content {
    bottom: 0%;
}

.portfolio-item .text h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--navy);
    padding-bottom: 0.4rem;
    font-family: var(--font-family-1);
}

.portfolio-item .text p {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    padding-bottom: 1.3rem;
}

.portfolio-item .btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.portfolio-item .btn-container a {
    height: 4.5rem;
    width: 4.5rem;
    background-color: var(--navy);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: var(--border-radius-1);
}

.portfolio-item a i {
    font-size: 1.8rem;
    color: var(--white);
}

.portfolio-item .btn-container a:hover {
    background-color: var(--black);
}

/*----- 8- Testimonials -----*/
.testimonial-slider {
    padding: 0rem 5rem;
    padding-top: 2rem;
    padding-bottom: 11rem;
    position: relative;
    overflow: hidden;
}

.testimonial-slider .swiper-button-next {
    top: 18rem;
    right: 2rem;
}

.testimonial-slider .swiper-button-prev {
    top: 18rem;
    left: 2rem;
}

.testi-item {
    padding: 4rem 6rem;
    padding-bottom: 10rem;
    text-align: center;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.testi-item .content {
    padding-bottom: 4rem;
}

.testi-item .comment {
    padding-top: 1rem;
    position: relative;
}

.testi-item .quote-start,
.testi-item .quote-end {
    position: absolute;
    font-size: 2.5rem;
    color: var(--dark-blue);
}

.testi-item .comment .quote-start {
    top: 0;
    left: 0;
}

.testi-item .comment .quote-end {
    right: 0;
    bottom: 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.testi-item .comment p {
    margin-top: 2rem;
}

.testi-item .intro img {
    position: absolute;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    bottom: 0;
    left: 50%;
    height: 12rem;
    width: 12rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.testi-item .intro h4 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--navy);
    padding-bottom: 0.5rem;
    font-family: var(--font-family-1);
}

.testi-item .intro h6 {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 600;
}

/*----- 9- Blogs -----*/
.blog .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1.5rem;
}

.blog-item {
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--white);
}

.blog-item .image {
    height: 25rem;
    position: relative;
}

.blog-item .date {
    position: absolute;
    bottom: 0;
    left: 0;
    color: var(--white);
    background-color: var(--navy);
    opacity: 0.9;
    font-size: 1.7rem;
    line-height: 1.6;
    padding: 0.9rem 2rem;
    text-align: center;
}

.blog-item .content {
    padding: 2rem;
}

.blog-item .intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 0.15rem solid rgba(0, 0, 0, 0.15);
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-item .intro .category {
    display: inline-block;
    font-size: 1.7rem;
    color: var(--navy);
    border: 0.2rem solid var(--navy);
    padding: 0.9rem 1.5rem;
    border-radius: var(--border-radius-1);
}

.blog-item .intro span {
    font-size: 2rem;
    font-weight: 500;
    color: var(--navy);
}

.blog-item .content .main-heading {
    display: block;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    font-family: var(--font-family-1);
}

.blog-item .content .main-heading:hover {
    color: var(--dark-blue);
}

/*----- 10- Contact -----*/
.contact .box-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/*-- Contact Info --*/
.contact-info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
    padding: 3rem 2.5rem;
    background: -webkit-linear-gradient(rgba(0, 29, 110, 0.9), rgba(0, 29, 110, 0.8)), url('../images/Contact/Contact-bg.jpg');
    background:         linear-gradient(rgba(0, 29, 110, 0.9), rgba(0, 29, 110, 0.8)), url('../images/Contact/Contact-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-info .info-item {
    padding-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}

.contact-info .info-item .icon {
    height: 4rem;
    width: 4rem;
    border-radius: var(--border-radius-3);
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-info .info-item i {
    font-size: 1.6rem;
    color: var(--navy);
}

.contact-info .info-item .content h4 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-blue);
    padding-bottom: 0.4rem;
    font-family: var(--font-family-1);
}

.contact-info .info-item .content p {
    color: var(--white);
    text-transform: none;
}

.contact form{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 35rem;
            flex: 1 1 35rem;
    background-color: var(--white);
    padding: 3rem 2.5rem;
}

.contact form input:-webkit-autofill,
.contact form input:-webkit-autofill:hover,
.contact form input:-webkit-autofill:focus,
.contact form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--navy);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.contact form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact form .input-field{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem; 
    border: 0.15rem solid rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: var(--border-radius-1);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.contact form .input-field:hover{
    border-color: var(--dark-blue);
}

.contact form .input-field label {
    color: var(--dark-blue);
    font-size: 1.6rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.contact form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--navy);
    background-color: transparent;
    text-transform: none;
}

.contact form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

.contact form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

.contact form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

.contact form .box::placeholder{
    text-transform: capitalize;
    color: var(--grey);;
}

.contact form textarea{
    height: 12rem;
    resize: none;
}

.contact form .text-area {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact .alert{
    display: block;
    font-size: 1.8rem;
    color: var(--navy);
    padding-top: 1.3rem;
}


/*------------------------------ All Sections CSS (End) ------------------------------*/