@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.cdnfonts.com/css/kelson-sans-bg");

:root {
    --primaryColor: #026fc2;
    --blackColor: #000;
    --whiteColor: #fff;
    --paragrphColor: #4e4e56;
    --roboto: "Roboto", sans-serif;
    --Kelson: "Kelson Sans", sans-serif;
}

body.dark {
    --whiteColor: #262a2d;
    --paragrphColor: #f9f9f9;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    color: #4e4e56;
    background: var(--whiteColor);
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button,
figure {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: 0.3s all ease;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul li {
    display: inline-block;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

::selection {
    color: white;
    background: #3f90de;
}

::-webkit-selection {
    color: white;
    background: #3f90de;
}

::-moz-selection {
    color: white;
    background: #3f90de;
}

/* .scrolltotop */
.scrolltotop {
    width: 37px;
    height: 37px;
    line-height: 37px;
    border-radius: 50%;
    background: var(--primaryColor);
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 25px;
    bottom: 22px;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
    display: none;
}

.scrolltotop i {
    color: #ffff;
    font-size: 16px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 9px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primaryColor);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*
====================================
Home Page Start Here
====================================
*/

.menu-section {
    padding: 18px 0;
}

.menu-logo ul {
    padding-left: 16px;
}

.menu-logo ul li {
    font-size: 18px;
    color: var(--paragrphColor);
    font-family: var(--Kelson);
    display: block;
}

.menu-bar ul li a {
    margin: 0 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--paragrphColor);
    position: relative;
}

.menu-bar ul li a::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -3px;
    background-color: #4e4e56;
    transform: translateY(6px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.menu-bar ul li a:hover::after {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.menu-bar-btn a {
    padding: 8px 18px;
    background: var(--primaryColor);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-left: 35px;
}

.menu-bar-btn a:hover {
    background: #004b83;
}

.off-menu-bar a {
    font-size: 30px;
    color: var(--paragrphColor);
}

.mobile-menu-logo img {
    max-width: 50px;
}

.mobile-menu-logo ul li {
    font-size: 13px;
}

.offcanvas-header .btn-close {
    box-shadow: none !important;
    font-size: 20px;
}

.offcanvas-start .offcanvas-header {
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background: var(--whiteColor);
}

.offcanvas-start .offcanvas-body {
    padding: 0;
    margin: 0;
    background: var(--whiteColor);
}

.offcanvas-start .mobile-sidebar-menu {
    padding-top: 30px;
}

.offcanvas-start .mobile-sidebar-menu ul li {
    display: block;
    color: var(--paragrphColor);
}

.offcanvas-start .mobile-sidebar-menu ul li a {
    display: block;
    width: 100%;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
    color: var(--paragrphColor);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.offcanvas-start .mobile-sidebar-menu ul li a:hover {
    border-left-color: var(--paragrphColor);
    box-shadow: 0 2px 8px rgba(99, 99, 99, 0.2);
}

.mobile-menu-btn {
    padding: 0 18px;
}

.mobile-menu-btn a {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    background: var(--primaryColor);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.mobile-menu-btn a:hover {
    background: #004b83;
}

/* Heder Area Here */

.header-section {
    padding-top: 60px;
}

.header-left h2 {
    font-size: 64px;
    font-weight: 700;
    color: var(--primaryColor);
}

.header-left p {
    padding-top: 20px;
    font-size: 30px;
    font-weight: 700;
}

.header-left img {
    padding-top: 30px;
}

/* Event Area Here */

.section-heading {
    font-size: 42px;
    font-weight: 700;
    font-family: "Lato", sans-serif;
    color: var(--primaryColor);
}

.event-section {
    padding-top: 60px;
    display: grid;
    grid-template-columns: 45% 55%;
}

.event-right img {
    width: 100%;
}

.event-left {
    padding-left: calc((100vw - 1250px) / 2);
    padding-right: 45px;
    position: relative;
    padding-top: 60px;
}

.event-left-items p {
    padding-top: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--paragrphColor);
}

.event-left-items a {
    margin-top: 28px;
    padding: 10px 32px;
    border: 1px solid var(--primaryColor);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--roboto);
}

.event-left-items a:hover {
    background: var(--primaryColor);
    color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.event-section .swiper-pagination {
    position: absolute;
    top: 0;
}

.event-left .mySwiper1 {
    padding-top: 90px;
    padding-bottom: 110px;
}

.event-left .swiper-pagination {
    word-spacing: 120px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--roboto);
    color: var(--paragrphColor);
}

.event-left::after {
    content: "";
    position: absolute;
    display: block;
    width: 90px;
    height: 2px;
    background: #9dafbd;
    top: 73px;
    right: 242px;
}

.event-left .swiper-button-prev {
    position: absolute;
    top: 95%;
    left: 40%;
    transform: translateX(-40%);
    height: 40px;
    width: 40px;
    line-height: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border-radius: 50%;
    color: #9dafbd;
    font-size: 16px;
}

.event-left .swiper-button-next {
    position: absolute;
    top: 95%;
    right: 47%;
    transform: translateX(47%);
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    background: var(--primaryColor);
}

/* Blog Area Here */

.blog-section {
    padding-top: 60px;
}

.blog-heading {
    position: relative;
}

.blog-heading::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 130px);
    height: 1.2px;
    background: #9dafbd;
    top: 60%;
    right: 0;
}

.blog-left-area {
    padding-top: 38px;
}

.blog-left-area img {
    border-radius: 6px;
    width: 100%;
}

.blog-left-content {
    padding-left: 40px;
}

.blog-left-content h2 {
    padding-top: 12px;
    font-size: 34px;
    font-weight: 300;
    font-family: var(--roboto);
    color: var(--primaryColor);
}

.blog-left-content p {
    padding-top: 16px;
    font-size: 14px;
    font-family: var(--roboto);
    color: #9dafbd;
}

.blog-left-content a {
    padding: 10px 32px;
    text-align: center;
    background: var(--primaryColor);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
}

.blog-left-content a:hover {
    background: #004b83;
}

.blog-right-box {
    margin-top: 38px;
    padding: 87px 35px;
    border: 1px solid #d1dbe3;
    border-radius: 4px;
}

.blog-right-box h6 {
    color: var(--paragrphColor);
    font-family: var(--roboto);
    font-size: 16.611px;
    font-weight: 700;
}

.blog-right-box h4 ,.blog-right-box h4 a{
    padding-top: 24px;
    color: #026fc2 !important;
    font-family: var(--roboto);
    font-size: 21.357px;
    font-weight: 400;
}

.blog-right-box p {
    padding-top: 24px;
    color: var(--paragrphColor);
    font-family: var(--roboto);
    font-size: 16px;
}

/* Gallery Area Here */

.gallery-section {
    padding-top: 60px;
}

.gallery-heading::after {
    width: calc(100% - 165px);
}

.gallery-items {
    margin-top: 32px;
}

.gallery-items img {
    border-radius: 4px;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 0;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: none !important;
}

/* Footer Area Here */

.footer-section {
    padding-top: 65px;
    padding-bottom: 25px;
}

.footer-left {
    max-width: 330px;
}

.footer-left h6 {
    padding-bottom: 20px;
    color: var(--paragrphColor);
    font-size: 16px;
    font-weight: 700;
}

.footer-left p {
    padding-bottom: 20px;
    color: var(--paragrphColor);
    font-size: 16px;
}

.footer-right ul li {
    display: block;
}

.footer-right ul li a {
    font-size: 16px;
    font-weight: 700;
    color: var(--paragrphColor);
    padding-bottom: 8px;
}

.footer-right ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--paragrphColor);
}

.footer-bottom ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #f4f4f6;
    border-radius: 50%;
    font-size: 12px;
    color: #4e4e56;
    text-align: center;
    margin: 0 6px;
}

.footer-bottom ul li a:hover {
    background: var(--primaryColor);
    color: var(--whiteColor);
}
/*
====================================
Home Page Start Here
====================================
*/

.standard-section {
    padding-top: 110px;
    padding-bottom: 130px;
}

.standard-inner-one {
    max-width: 912px;
    margin: 0 auto;
}

.standard-inner-one h2 {
    font-size: 64px;
    font-weight: 700;
    color: var(--primaryColor);
}

.standard-inner-one span {
    display: block;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        181.23deg,
        #5ca1da -850.58%,
        #184197 101.84%,
        #339b41 1032.28%,
        #8bb54a 1339.98%
    );
    margin-top: 10px;
}

.standard-inner-one h6 {
    padding-top: 20px;
    font-size: 20px;
    font-weight: 400;
    color: #9dafbd;
    line-height: 30px;
    font-family: var(--roboto);
}

.standard-inner-one p {
    padding-top: 35px;
    font-size: 16px;
    font-weight: 400;
    color: #9dafbd;
    line-height: 22px;
    font-family: var(--roboto);
}

.standard-inner-tow img {
    padding-top: 50px;
    padding-bottom: 20px;
    width: 100%;
}

/*
====================================
Provide Page Start Here
====================================
*/

.provide-inner h2 {
    font-size: 64px;
    font-weight: 700;
    color: var(--primaryColor);
}

.provide-inner img {
    padding-top: 45px;
    width: 100%;
    border-radius: 4px;
}

.provide-inner p {
    padding-top: 35px;
    font-size: 20px;
    font-weight: 400;
    color: #9dafbd;
    font-family: var(--roboto);
}

.provide-inner-inner-tow {
    padding-top: 50px;
}

.provide-inner-inner-tow h2 {
    font-size: 45px;
    font-weight: 700;
    color: var(--primaryColor);
}

.provide-inner-inner-tow p {
    padding-top: 35px;
    font-size: 20px;
    font-weight: 400;
    color: #9dafbd;
    font-family: var(--roboto);
}

.provide-inner-inner-tow img {
    border-radius: 4px;
}

/*
====================================
Excellence Page Start Here
====================================
*/

.excellence-header-section {
    background: linear-gradient(
        90deg,
        #5ca1da 22.8%,
        #184197 48.8%,
        #339b41 74.2%,
        #8bb54a 82.6%
    );
    padding-bottom: 40px;
    border-bottom-right-radius: 220px;
    border-top-left-radius: 220px;
}

.excellence-header-section .header-left h2 {
    color: #fff;
}

.excellence-header-section .header-left p {
    color: #fff;
}

/*
====================================
Educational Page Start Here
====================================
*/

.educational-section {
    padding-top: 120px;
    padding-bottom: 30px;
}

.educational-area h2 {
    color: #026fc2;
    font-size: 64px;
    font-weight: 700;
}

.educational-area h6 {
    padding-top: 6px;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--roboto);
    color: #9dafbd;
}

.educational-area img {
    padding-top: 35px;
    width: 100%;
}

.educational-area p {
    padding-top: 20px;
    font-size: 20px;
    font-family: var(--roboto);
    color: #9dafbd;
}

/*
====================================
Event Page Start Here
====================================
*/

.event-area {
    padding-top: 90px;
}

.event-area .blog-heading {
    margin-bottom: 35px;
}

.event-items {
    padding-top: 55px;
}

.event-items h6 {
    font-size: 20px;
    font-family: var(--roboto);
    color: #9dafbd;
}

.event-items h2 {
    padding-top: 15px;
    color: #026fc2;
    font-size: 42px;
    font-weight: 700;
}

.event-items p {
    padding-top: 20px;
    font-size: 16px;
    font-family: var(--roboto);
    color: #9dafbd;
}

.event-items a {
    padding: 8px 18px;
    background: var(--primaryColor);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

.event-items a:hover {
    background: #004b83;
}

/*
====================================
Contact Page Start Here
====================================
*/

.contact-section {
    padding-top: 75px;
    padding-bottom: 30px;
}

.contact-heading h2 {
    font-size: 54px;
    font-family: var(--roboto);
    font-weight: 400;
    color: var(--primaryColor);
}

.contact-heading p {
    padding-top: 12px;
    font-size: 18px;
    font-family: var(--roboto);
    color: #9dafbd;
}

.contact-form {
    padding-top: 55px;
}

.contact-form input {
    margin-top: 20px;
    padding: 15px 18px;
    border: 1px solid #d1dbe3;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 300;
    color: #9dafbd;
}

.contact-form input::placeholder {
    font-size: 16px;
    font-weight: 300;
    color: #9dafbd;
}

.contact-form input:focus {
    border-color: var(--primaryColor);
}

.contact-form textarea {
    margin-top: 20px;
    padding: 15px 18px;
    border: 1px solid #d1dbe3;
    width: 100%;
    min-height: 220px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 300;
    color: #9dafbd;
}

.contact-form textarea::placeholder {
    font-size: 16px;
    font-weight: 300;
    color: #9dafbd;
}

.contact-form textarea:focus {
    border-color: var(--primaryColor);
}

.contact-form-btn {
    padding-top: 30px;
    text-align: center;
}

.contact-form-btn button {
    padding: 10px 65px;
    background: var(--primaryColor);
    border-radius: 4px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--roboto);
    color: #fff;
}

.contact-form-btn button:hover {
    background: #004b83;
}

/*
====================================
Login Page Start Here
====================================
*/

.login-section {
    padding-top: 90px;
    padding-bottom: 30px;
}

.login-heading {
    text-align: center;
}

.login-heading h2 {
    font-size: 34px;
    font-weight: 300;
    font-family: var(--roboto);
    color: var(--primaryColor);
}

.login-heading p {
    padding-top: 14px;
    font-size: 18px;
    color: #9dafbd;
}

.login-form {
    padding-top: 55px;
}

.login-form input {
    margin-top: 20px;
    padding: 15px 18px;
    border: 1px solid #d1dbe3;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 300;
    color: #9dafbd;
}

.login-form input::placeholder {
    font-size: 16px;
    font-weight: 300;
    color: #9dafbd;
}

.login-form input:focus {
    border-color: var(--primaryColor);
}

.login-form-btn button {
    padding: 10px 0;
    background: var(--primaryColor);
    border-radius: 4px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--roboto);
    color: #fff;
    width: 100%;
    margin-top: 30px;
    transition: 0.3s;
}

.login-form-btn button:hover {
    background: #004b83;
}

.login-form-btn input {
    padding: 9px 0;
    background: #fff;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--roboto);
    color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    width: 100%;
    margin-top: 30px;
    transition: 0.3s;
}

.login-form-btn input:hover {
    background: var(--primaryColor);
    color: #fff;
}

/*
====================================
Verify Page Start Here
====================================
*/

.verify-form .opt-field {
    margin: 45px 0;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.verify-form .opt-field input {
    height: 55px;
    width: 55px;
    border: 1px solid #d1dbe3;
    text-align: center;
    border-radius: 14px;
    margin: 0 8px;
    font-size: 20px;
    outline: none;
    font-size: 22px;
    color: #4e4e56;
}

.verify-form-btn {
    padding-top: 30px;
}

.verify-form-btn button {
    padding: 10px 55px;
    background: var(--primaryColor);
    border-radius: 4px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--roboto);
    color: #fff;
    transition: 0.3s;
}

.verify-form-btn a {
    margin-left: 35px;
    font-size: 20px;
    color: var(--primaryColor);
    font-weight: 500;
}

/*
====================================
Location Page Start Here
====================================
*/

.locaton-section {
    padding-top: 90px;
    padding-bottom: 30px;
}

.locaton-heading h2 {
    font-size: 40px;
    font-weight: 500;
    font-family: var(--roboto);
    color: var(--primaryColor);
    text-align: center;
}

.location-items {
    margin-top: 55px;
}

.location-inner-one {
    width: 100%;
    position: relative;
}

.location-inner-one input {
    padding: 15px 45px;
    border: 1px solid #d1dbe3;
    border-radius: 50px;
    width: 100%;
    font-size: 16px;
    color: #4e4e56;
}

.location-inner-one input::placeholder {
    font-size: 16px;
    color: #4e4e56;
}

.location-inner-oneing {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
}

.location-inner-tow {
    margin-top: 15px;
    padding: 15px 45px;
    border: 1px solid #d1dbe3;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
}

.location-inner-tow p {
    font-size: 16px;
    color: #4e4e56;
}

.location-select-items {
    position: absolute;
    margin-top: 18px;
    display: none;
}

.location-select-items ul li {
    display: block;
}

.rotate {
    transform: rotate(180deg);
    transition: 0.3s ease;
}

.location-select-items ul li a {
    font-size: 18px;
    color: #4e4e56;
    padding: 5px 0;
    border-bottom: 1px solid #4e4e56;
    display: block;
    width: 100%;
    background: #fff !important;
}

.location-inner-tow-tow {
    margin-bottom: 30px;
}

.location-inner-three {
    padding: 20px 0;
    border-top: 1px solid #d1dbe3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-inner-three h2 {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--roboto);
    color: var(--primaryColor);
    padding-left: 15px;
}

.location-inner-three h6 {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--roboto);
    color: var(--primaryColor);
    padding-left: 15px;
    padding-top: 10px;
}

.location-inner-three p {
    font-size: 14;
    color: #000;
    padding-left: 15px;
}

.location-inner-four {
    border-bottom: 1px solid #d1dbe3;
}

.location-map {
    margin-top: 55px;
}

.location-map iframe {
    width: 100%;
    height: 490px;
    border-radius: 30px;
}

/*
====================================
Announcement-1 Page Start Here
====================================
*/

.artboard-menu p {
    font-size: 14px;
    color: #4e4e56;
}

.artboard-menu a {
    padding: 8px 15px;
    background: var(--primaryColor);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-left: 50px;
}

.artboard-menu a:hover {
    background: #004b83;
}

.announ-section {
    padding-top: 90px;
    padding-bottom: 50px;
}

.announ-items img {
    border-radius: 4px;
}

.announ-items h6 {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--roboto);
    color: #9dafbd;
}

.announ-items h2 {
    padding-top: 12px;
    font-weight: 300;
}

.announ-items p {
    padding-top: 12px;
    font-size: 18px;
    font-family: var(--roboto);
    color: #9dafbd;
}

.announ-items a {
    padding: 8px 15px;
    background: var(--primaryColor);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
}

.announ-items a:hover {
    background: #004b83;
}

.announ-section .swiper-button-prev,
.announ-section .swiper-button-next {
    position: absolute;
    height: 40px;
    width: 40px;
    line-height: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border-radius: 50%;
    color: #9dafbd;
    font-size: 16px;
    background: #fff;
}

.announ-section .swiper-slide {
    padding-left: 55px;
    padding-right: 20px;
}

/* Common Section Here */

.common-section {
    padding-top: 55px;
    padding-bottom: 10px;
}

.common-heading h6 {
    font-size: 34px;
    font-weight: 300;
    font-family: var(--roboto);
    color: #1e6fb8;
}

.common-heading h2 {
    font-size: 54px;
    font-weight: 400;
    font-family: var(--roboto);
    color: #1e6fb8;
}

.common-items {
    margin-top: 32px;
    padding: 18px 28px;
    border: 1px solid #d3d5d6;
    border-radius: 6px;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}

.common-items h4 {
    font-size: 28px;
    font-weight: 300;
    font-family: var(--roboto);
    color: #1e6fb8;
}

/*
====================================
Announcement-2 Page Start Here
====================================
*/

.announ-contact {
    padding-top: 90px;
}

.announ-contact-area {
    max-width: 520px;
    margin: 0 auto;
}

.announ-contact-area input {
    display: block;
    padding: 16px 15px;
    margin-top: 20px;
    width: 100%;
    background: #fff;
    border: 1px solid #d2dbe3;
    border-radius: 4px;
    font-size: 14px;
    color: #9dafbe;
}

.announ-contact-area input::placeholder {
    font-size: 14px;
    color: #9dafbe;
}

.announ-contact-area input:focus {
    border-color: var(--primaryColor);
}

.announ-contact-area .location-inner-tow-tow {
    margin-top: 20px;
    margin-bottom: 0;
    background: #fff;
    border: 1px solid #d2dbe3;
    border-radius: 4px;
    padding: 16px 15px;
}

.announ-contact-area .location-inner-tow-tow p {
    font-size: 14px;
    color: #9dafbe;
}

.announ-contact-area textarea {
    display: block;
    padding: 16px 15px;
    margin-top: 20px;
    width: 100%;
    background: #fff;
    border: 1px solid #d2dbe3;
    border-radius: 4px;
    font-size: 14px;
    color: #9dafbe;
    min-height: 170px;
}

.announ-contact-area textarea::placeholder {
    font-size: 14px;
    color: #9dafbe;
}

.announ-contact-area textarea:focus {
    border-color: var(--primaryColor);
}

.announ-contact-area button {
    padding: 8px 42px;
    background: var(--primaryColor);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 50px auto 0;
    border: none;
    display: block;
}

.announ-contact-area button:hover {
    background: #004b83;
}

.common-items-active {
    background: var(--primaryColor);
}

.common-items-active h4 {
    color: #fff;
}

/*
====================================
Announcement-3 Page Start Here
====================================
*/

.survey-section {
    padding-top: 35px;
}

.survey-area {
    margin-top: 40px;
}

.survey-area img {
    margin-right: 30px;
}

.survey-area h6 {
    font-size: 28px;
    font-weight: 400;
    font-family: var(--roboto);
    color: #9dafbe;
}

.survey-area p {
    font-size: 18px;
    color: #1e6fb8;
    font-family: var(--roboto);
}

/*
====================================
Announcement-4 Page Start Here
====================================
*/

.submitted-section {
    padding-top: 90px;
}

.submitted-area {
    max-width: 555px;
    margin: 0 auto;
}

.submitted-area p {
    width: 100%;
    text-align: center;
    padding: 55px 0;
    background: #fff;
    border-radius: 4px;
    color: #1e6fb8;
    font-size: 14px;
    font-weight: 500;
}

.submitted-button a {
    padding: 8px 25px;
    background: var(--primaryColor);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 30px auto 0;
}

.submitted-button a:hover {
    background: #004b83;
}

/*
====================================
Announcement-6 Page Start Here
====================================
*/

.satisfy-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.satisfy-slider {
    padding-top: 55px;
}

.satisfy-slider-items h2 {
    font-size: 32px;
    font-weight: 400;
    font-family: var(--roboto);
    color: #9dafbe;
    padding-bottom: 20px;
}

.satisfy-slider-items label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-family: var(--roboto);
    color: var(--primaryColor);
    cursor: pointer;
    padding: 5px 0;
}

.satisfy-slider-items input[type="checkbox"] {
    width: 22px;
    height: 22px;
    border-radius: 20px;
    border: 2px solid #9dafbe;
    accent-color: var(--primaryColor);
    cursor: pointer;
}

.satisfy-slider .swiper-slide {
    padding-left: 65px;
    padding-right: 65px;
}

.satisfy-slider .swiper-button-prev,
.satisfy-slider .swiper-button-next {
    position: absolute;
    height: 40px;
    width: 40px;
    line-height: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border-radius: 50%;
    color: #9dafbd;
    font-size: 16px;
    background: #fff;
}

.satisfy-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #d4dce5;
    opacity: 1;
    margin: 0 6px;
    border-radius: 50%;
    transition: 0.3s;
}

.satisfy-slider .swiper-pagination-bullet-active {
    background-color: #1565c0;
}

.satisfy-slider .swiper-pagination {
    padding-top: 30px !important;
    position: initial;
}

/*
====================================
Announcement-7 Page Start Here
====================================
*/

.announ-section-tow .announ-items h2 {
    padding: 0;
}

.announ-section-tow .announ-items h6 {
    padding-top: 10px;
}

.announ-items-inner-one {
    margin-top: 18px;
    padding: 10px 0;
    border: 1px solid #d3d5d6;
    border-radius: 4px;
}

.announ-items-inner-tow p {
    padding-top: 18px;
    font-size: 20px;
}

/*
====================================
Announcement-11 Page Start Here
====================================
*/

.new-request-button a {
    padding: 8px 15px;
    background: var(--primaryColor);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
}

.new-request-button a i {
    margin-right: 5px;
}

.new-request-button a:hover {
    background: #004b83;
}

.survey-area-top p {
    font-size: 26px;
    color: #9dafbe;
    font-weight: 500;
    font-family: var(--roboto);
}

.survey-area-new {
    margin-top: 55px;
}

.survey-area-new h2 {
    font-size: 26px;
    color: #9dafbe;
    font-weight: 500;
    font-family: var(--roboto);
    margin-bottom: 100px;
}

/*
====================================
Announcement-13 Page Start Here
====================================
*/

.rtl-menu-logo ul li {
    display: block;
}

.rtl-menu-logo ul li {
    font-size: 18px;
    color: #000;
    font-family: var(--Kelson);
    display: block;
    font-weight: 700;
}

.rtl-menu-bar p {
    font-size: 18px;
    color: #000;
    font-weight: 700;
}

.rtl-menu-bar select {
    padding: 5px 7px;
    margin: 0 10px;
    font-size: 18px;
    color: #000;
    font-weight: 700;
    background: transparent;
    border: 1px solid #000000cc;
    border-radius: 4px;
}

.rtl-menu-bar a {
    padding: 8px 15px;
    background: var(--primaryColor);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.rtl-slider-area .swiper-slide {
    padding-left: 65px;
    padding-right: 65px;
}

.rtl-slider-area .swiper-button-prev,
.rtl-slider-area .swiper-button-next {
    position: absolute;
    height: 40px;
    width: 40px;
    line-height: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border-radius: 50%;
    color: #9dafbd;
    font-size: 16px;
    background: #fff;
}

.dark-btn a {
    height: 32px;
    width: 32px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid var(--paragrphColor);
    margin-left: 12px;
    font-size: 14px;
    cursor: pointer;
    color: var(--paragrphColor);
}

.dark-btn a i {
    color: var(--paragrphColor);
}

.mobile-twine-button {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
}

.signup-btn {
    background-color: #fff;
    color: #004b83;
    border: 1px solid var(--primaryColor);
    border-color: var(--primaryColor);
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    padding: 9px 0;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--roboto);
    width: 100%;
    margin-top: 30px;
    transition: 0.3s;
}

.signup-btn:hover {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    color: #fff;
    text-decoration: none;
}

/* Alert styles */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-dismissible {
    padding-right: 40px;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
    background: transparent;
    border: 0;
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.5;
}

/* Fade animation for alerts */
.fade {
    transition: opacity 0.15s linear;
}

.fade.show {
    opacity: 1;
}
.logout-form-btn{
    padding: 8px 15px;
    background: var(--primaryColor);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-left: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

.logout-form-btn:hover{
    background: #004b83;
}

/* Article Details Page Styles */
.article-meta {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.article-meta p {
    margin-bottom: 10px;
    color: #495057;
}

.article-meta strong {
    color: #2c3e50;
    font-weight: 600;
}

.article-meta .badge {
    font-size: 0.8rem;
    padding: 5px 10px;
    margin-right: 5px;
    background-color: #6c757d !important;
}

.article-content {
    margin-top: 30px;
    line-height: 1.8;
    color: #9DAFBD !important;
}

.article-content h1, .article-content h2, .article-content h3,
.article-content h4, .article-content h5, .article-content h6 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    color: #495057;
}

.article-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #6c757d;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.article-content a {
    color: #007bff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.article-content a:hover {
    border-bottom: 1px solid #007bff;
}
.dropdown-options{
    border: 0px !important;
}
/* Responsive Design for Articles */
@media (max-width: 768px) {
    .article-meta {
        padding: 15px;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h1, .article-content h2, .article-content h3 {
        font-size: 1.5rem;
    }
}

/* Language Switcher Styles */
.language-switcher .dropdown-toggle {
    border: none;
    background: none;
    color: inherit;
    font-size: inherit;
    padding: 0;
}

.language-switcher .dropdown-toggle:hover {
    color: var(--primaryColor);
}

.language-switcher .dropdown-menu {
    min-width: 120px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.language-switcher .dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-switcher .dropdown-item:hover {
    background-color: var(--primaryColor);
    color: white;
}

.language-switcher .dropdown-item.active {
    background-color: var(--primaryColor);
    color: white;
}

.language-switcher .dropdown-item i {
    width: 16px;
    text-align: center;
}

/* Mobile Language Switcher */
.mobile-language-switcher .btn {
    border: 1px solid #ddd;
    background: white;
    color: #333;
    font-size: 14px;
    padding: 8px 16px;
}

.mobile-language-switcher .btn:hover {
    background-color: var(--primaryColor);
    color: white;
    border-color: var(--primaryColor);
}

.mobile-language-switcher .dropdown-menu {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-language-switcher .dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-language-switcher .dropdown-item:hover {
    background-color: var(--primaryColor);
    color: white;
}

.mobile-language-switcher .dropdown-item.active {
    background-color: var(--primaryColor);
    color: white;
}





