@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
/* font-family: "Lora", serif; */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: "Archivo", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Khitan+Small+Script&display=swap');
/* font-family: "Noto Serif Khitan Small Script", serif; */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
/* font-family: "Oswald", sans-serif; */

/**************************************
    Common Section
**************************************/
html {scroll-behavior: smooth;}

body {
    margin: 0;
    padding: 0;
}

.bold {font-weight: bold !important;}
.italic {font-style: italic !important;}
.underline {text-decoration: underline !important;}
.mobile-view {display: none;}
.desktop-view {display: block;}


/**************************************
    Header Section
**************************************/
.header {
    background-color: #E7E7E7;
    padding: 20px 0;
    font-family: "Lora", serif;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.header .contact-info {
    display: flex;
    gap: 20px;
    padding-top: 20px;
}

.contact-info .info-details {
    display: flex;
    gap: 10px;
}

.contact-info .info-details i {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    background-color: #23D1DD;
    color: #fff;
    text-align: center;
}

.contact-info .info-details a {
    text-decoration: none;
    color: #2B2B2B;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}
.contact-info .info-details a:hover {color: #ff3636;}

/**************************************
    Navbar Section
**************************************/
#navbar {background-color: #002077;}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    height: 100%;
}

.menu li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Archivo", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #edf4ff;
    padding: 12px 18px;
    transition: all 0.2s;
}
.menu > li:hover > a {background-color: #002485;}
.menu li a:hover {background-color: #002485;}

.menu li a i {
    font-size: 10px;
    color: #dbe1eb;
    margin-left: 6px;
}

.dropdown_menu {
    position: relative;
}

.dropdown_menu .dropdown-list {
    position: absolute;
    top: 120%;
    left: 0;
    z-index: 99;
    min-width: 250px;
    background-color: #f8fcff;
    list-style: none;
    padding: 5px;
    margin: 0;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.02s;
}

.dropdown_menu:hover .dropdown-list {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
}

.dropdown_menu .dropdown-list li a {
    font-size: 15px;
    font-weight: 400;
    color: #313131;
    padding: 8px 10px;
    border-bottom: 1px solid #f1f1f1;
    display: block;
    white-space: nowrap;
    text-transform: capitalize;
}
.dropdown_menu .dropdown-list li:last-child a {border-bottom: none;}

.dropdown_menu .dropdown-list li a:hover {
    background-color: #edeeee;
    color: #002485;
}

/**************************************
    Slider Banner Section
**************************************/
.slider-banner {
    position: relative;
    background-color: #41595c;
}

.slider-banner .owl-nav {
    position: absolute;
    top: 40%;
    left: 0;
    z-index: 99;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
}

.slider-banner .owl-nav .owl-prev {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.4s;
}

.slider-banner:hover .owl-nav .owl-prev {
    opacity: 1;
    transform: translateX(0);
}

.slider-banner .owl-nav .owl-next {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s;
}

.slider-banner:hover .owl-nav .owl-next {
    opacity: 1;
    transform: translateX(0);
}

.slider-banner .owl-nav i {
    font-size: 28px;
    width: 45px;
    height: 45px;
    line-height: 46px !important;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: rgba(223, 0, 0, 0.4) !important;
    transition: all 0.4s;
}
.slider-banner .owl-nav i:hover {background-color: rgba(223, 0, 0, 0.7) !important;}

.owl-carousel .owl-item img.desktop-view {display: block;}
.owl-carousel .owl-item img.mobile-view {display: none;}

/**************************************
    Service Period Section
**************************************/
.service-period {
    margin: 50px auto;
    width: 88%;
    padding: 20px;
    background-color: #F7F8FA;
    display: flex;
    align-items: center;
    font-family: "Noto Serif Khitan Small Script", serif;
}
.service-period .service-time {width: 50%;}

.service-period .service-time h2 {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
    word-spacing: -7px;
    color: #34E2D1;
    margin-bottom: 0;
}

.service-period .service-time h3 {
    font-size: 40px;
    font-weight: 600;
    word-spacing: -7px;
    color: #DD3333;
    margin-bottom: 0;
}

.service-period .service-desc {
    width: 50%;
    padding-left: 40px;
    border-left: 1px solid #DD8502;
}

.service-period .service-desc p {
    font-size: 15px;
    margin-bottom: 0;
}

/**************************************
    Events Section
**************************************/
.events {
    background-image: url(../img/events-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}

.events::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #2e3f64;
    opacity: 1;
    mix-blend-mode: multiply;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.event-details {
    font-family: "Archivo", sans-serif;
    width: 65%;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.event-details h2 {
    text-transform: uppercase;
    font-size: 45px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
}
.event-details h2 span {color: #FF9900;}

.event-details p {
    font-size: 16px;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 40px;
}

.event-details .readMoreBtn {
    display: inline-block;
    text-decoration: none;
    font-size: 20px;
    background-color: #fff;
    color: #1a1b1b;
    padding: 15px 35px;
    border-radius: 5px;
    transition: all 0.4s;
}

.event-details .readMoreBtn:hover {
    color: #fff;
    background-color: #c23636;
}

/**************************************
    Brief Section
**************************************/
.brief-area {
    background-color: #F5F5F5;
    margin-bottom: 100px;
    padding: 40px 60px;
    padding-top: 120px;
    display: flex;
    gap: 50px;
}

.brief-content {
    width: calc(100% - 550px);
}

.brief-content h2 {
    font-size: 20px;
    font-weight: 400;
    color: #4C2970;
    margin-bottom: 15px;
}

.brief-content p {
    font-family: "Noto Serif Khitan Small Script", serif;
    font-size: 16px;
    color: #1a1b1b;
}

.brief-content .readMoreBtn {
    float: right;
    font-family: "Noto Serif Khitan Small Script", serif;
    font-size: 15px;
    line-height: 100%;
    text-decoration: none;
    background-color: #1CB9C8;
    color: #fff;
    padding: 10px 20px;
    transition: all 0.4s;
}
.brief-content .readMoreBtn:hover {background-color: #dd3333;}

/**************************************
    Collage Gallery Section
**************************************/
.collage-gallery {
    width: 90%;
    margin: 60px auto;
    background-color: #F7F7F7;
    padding: 30px;
}

.collage-gallery h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.gallery-icon {
    display: inline-block;
    margin-bottom: 40px;
    position: relative;
}

.gallery-icon::before, .gallery-icon::after {
    content: "";
    width: 35px;
    height: 2px;
    background-color: #82AF7C;
    position: absolute;
    top: calc(50% - 1px);
}

.gallery-icon::before {left: 135%;}
.gallery-icon::after {right: 135%;}

.collage-gallery-box {
    display: flex;
}

.collage-gallery .single-column {
    display: flex;
    flex-direction: column;
    width: 20%;
}
.collage-gallery .single-column img {border: 1px solid #82AF7C;}

/**************************************
	Help Section
**************************************/
.help-section {
    width: 90%;
    margin: 100px auto;
    display: flex;
    font-family: "Archivo", sans-serif;
}
.help-thumb {width: 41%;}

.help-content {
    width: 59%;
    padding-left: 70px;
}

.help-content h4 {
    display: inline-block;
    font-size: 17px;
    color: #9c9c9c;
    padding-right: 10px;
    margin-bottom: 12px;
    position: relative;
}

.help-content h4::before {
    content: "";
    background-color: #DF5311;
    width: 80px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 100%;
}

.help-content h2 {
    font-size: 50px;
    font-weight: bold;
    color: #144047;
    margin-bottom: 25px;
}

.help-content p {
    font-size: 17px;
    color: #9c9c9c;
    margin-bottom: 35px;
}

.help-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 45px;
}

.single-help-tab {
    width: calc(100% - 15px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-help-tab p {
    font-size: 21px;
    font-weight: 600;
    line-height: 30px;
    color: #144047;
    margin-bottom: 0;
}

.help-point {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}

.help-point li {
    font-size: 17px;
    color: #9c9c9c;
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.help-point li i {
    line-height: 100%;
    color: #FDBE44;
}

.help-content .readMoreBtn {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
    background-color: #DF5311;
    color: #fff;
    padding: 18px 40px;
    transition: all 0.4s;
}
.help-content .readMoreBtn:hover {background-color: #3f3939;}

/**************************************
    Projects Section Start
**************************************/
#common-box {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    margin-top: 40px;
    margin-bottom: 1px;
    padding-left: 4px;
    padding-right: 4px;
}

.single-service-mini {
    width: 14.28%;
    overflow: hidden;
}

.single-service-mini h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #00469a;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    height: 50px;
    margin-top: 0;
    margin-bottom: 0;
}

.single-service-mini img {transition: all 1s;}
.single-service-mini:hover img {transform: scale(1.05);}

/**************************************
Page Content Section Start
**************************************/
#page_content {
    margin-top: 60px;
    margin-bottom: 100px;
    font-family: "Archivo", sans-serif;
    color: #3c3c3c;
}

.main-hd {
    display: inline-block;
    font-size: 25px;
    font-weight: 600;
    color: #6d6d6d;
    margin-bottom: 30px;
    padding-bottom: 5px;
    position: relative;
}

.main-hd::before {
    content: "";
    background-color: #717171;
    width: 85%;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 0;
}

.main-hd::after {
    content: "";
    background-color: #9ea9b4;
    width: 15%;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 85%;
}

#page_content p {font-size: 17px;}

/**************************************
    Contact Us Section
**************************************/
.contact-form {
    margin-top: 30px;
    font-family: "Archivo", sans-serif;
}

.form-box {
    padding: 30px 40px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
	border-top: 3px solid #006fa9;
}

.contact-form .form-area h2 {
	font-size: 22px;
	font-weight: 600;
	color: #2FA22C;
	text-align: center;
	margin-top: 0;
    margin-bottom: 5px;
}

.contact-form .form-area p {
	font-size: 17px;
	font-weight: 500;
	color: #384237;
	text-align: center;
	margin-bottom: 30px;
}

.contact-form .form-area h5 {
	font-size: 17px;
	font-weight: 500;
	color: #da0000;
	text-align: center;
	margin-bottom: 30px;
}

.form-box .form-group {margin-bottom: 20px;}
.form-box .form-group .form-control {height: 100%;}

.form-box .form-group input,
.form-box .form-group select,
.form-box .form-group textarea {
    border-radius: 0 !important;
	font-size: 17px;
	padding: 10px 12px;
	color: #000;
}

.form-box .form-group input:focus,
.form-box .form-group select:focus,
.form-box .form-group textarea:focus {
    box-shadow: none;
}

.form-box .form-group textarea {resize: vertical;}

.form-box .form-group input[type=number]::-webkit-outer-spin-button,
.form-box .form-group input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.submit-btn {
    display: inline;
    color: #fff;
    background: #3376ce;
    border-radius: 2px;
    border: none !important;
    font-size: 18px;
    padding: 7px 25px;
    padding-top: 7px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #1966ca;
	border: none !important;
	outline: none !important;
}

.form-detail {
    font-family: "Archivo", sans-serif;
    background-color: #fbfbfb;
    color: #505050;
    padding: 40px 20px;
    margin-top: 30px;
}

.form-detail p {
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: 400;
}

.form-detail ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.form-detail ul li {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 300;
}
.form-detail ul li a {text-decoration: none;}

/**************************************
    Our Gallery Section
**************************************/
.photo-gallery {
    margin-top: 30px;
    margin-bottom: 70px;
}

.gallery-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.gallery-info h2 {
    font-size: 20px !important;
    font-weight: 400 !important;
    color: #5c5c5c;
    margin: 0 !important;
}

.gallery-block {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.gallery-block.two {row-gap: 25px;}

.gallery-block .gallery-item {
    width: calc(33.33% - 12px);
    height: 235px;
    border: 1px solid #ebebeb;
    padding: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.027);
    cursor: zoom-in;
    position: relative;
}

.gallery-block.two .gallery-item {
    text-decoration: none;
    width: calc(50% - 9px);
    height: auto;
}

.gallery-block.two .gallery-item p {
    color: #3c3c3c;
    margin-bottom: 0;
    margin-top: 10px;
}

.gallery-block .gallery-item::before {
    content: "";
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
    transition: all 0.4s;
    backdrop-filter: blur(1px);
    opacity: 0;
}
.gallery-block .gallery-item:hover::before {opacity: 1;}

.gallery-block .gallery-item img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
}
.gallery-block.two .gallery-item img {height: auto;}

.gallery-block .gallery-item iframe {
    width: 100%;
    height: 230px;
}

.activity {
    border-bottom: 2px solid #bebebe;
    padding-bottom: 20px;
    margin-bottom: 50px;
}
.activity:last-of-type {border: none;}

.activity-info h2 {
    font-size: 19px !important;
    font-weight: 600 !important;
    color: #3a3a3a;
    margin: 5px !important;
}
.activity-info p {font-size: 16px !important;}

/**************************************
    Our Team Section
**************************************/
.team-profile {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.single-team-profile {
    width: calc(25% - 24px);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.4s;
}
.single-team-profile:hover {transform: translateY(-4px);}

.profile-details {
    border: 1px solid #f6f1f1;
    text-align: center;
    padding: 15px 10px;
}

.profile-designation h3 {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 0;
}

.profile-designation p {
    font-size: 13px;
    color: #bbb;
    line-height: 18px;
    margin-bottom: 0;
}

/**************************************
    Reports Section
**************************************/
.reports {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 40px;
}

.single-report {
    width: calc(33.33% - 24px);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.single-report h3 {
    font-size: 16px;
    font-weight: 400;
    color: #6b6b6b;
    text-align: center;
    margin-bottom: 25px;
}

.single-report .viewBtn {
    font-family: "Oswald", sans-serif;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #23698b;
    border-radius: 5px;
    padding: 12px 24px;
    margin-top: 25px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.single-report .viewBtn:hover {
    background-color: #7a3824;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

/**************************************
    Support Page Section
**************************************/
.partner-block {margin-top: 25px;}

.single-partner-block {
    display: flex;
    align-items: start;
    gap: 25px;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 50px;
    padding-bottom: 25px;
}

.partner-thumb {
    min-width: 230px;
    background-color: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.partner-block-content h2 {
    font-size: 22px;
    font-weight: bold;
    color: #343436;
    margin-bottom: 18px;
}

.partner-block-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

.partner-block-content ul li {
    font-size: 16px;
    font-weight: 500;
}

.partner-block-content ul li strong {
    display: inline-block;
    min-width: 100px;
}

.partner-block-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.partner-block-content .readMoreBtn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    gap: 7px;
    color: #1f1f1f;
    border: 1px solid #1f1f1f;
    padding: 6px 12px;
    margin-top: 10px;
    transition: all 0.4s;
}

.partner-block-content .readMoreBtn:hover {
    color: #ff3c00;
    border-color: #ff3c00;
}

/**************************************
    Footer Section
**************************************/
#footer-section {
    width: 100%;
    display: flex;
}

#footer-left {
    padding: 60px 50px;
    padding-bottom: 30px;
    width: 28%;
    background-image: url(../img/footer-left-bg.jpg);
    text-align: center;
}

#footer-left .footer-desc {
    text-align: left;
    margin-bottom: 30px;
}

#footer-left .footer-desc h1 {
    text-transform: uppercase;
    font-size: 38px;
    font-weight: bold;
    line-height: 40px;
    color: #9fff9f;
    margin-bottom: 15px;
}

#footer-left .footer-desc h2 {
    font-size: 20px;
    font-weight: 400;
    color: #dbdbdb;
    margin-bottom: 12px;
}

#footer-left .footer-desc h3 {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

#social-media span {
    color: #d1cfcf;
    font-size: 15px;
    font-style: italic;
    display: block;
    margin-bottom: 2px;
}

#social-media ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

#social-media ul li a {
    display: inline-block;
    font-size: 24px;
    width: 46px;
    height: 40px;
    line-height: 38px;
    color: #ff3737;
    border: 1px solid #57688d;
    transition: all 0.3s;
}

#social-media ul li a.facebook:hover {color: #6d93e5;}
#social-media ul li a.linkedin:hover {color: #04a6ff;}
#social-media ul li a.instagram:hover {color: #f834ff;}
#social-media ul li a.skype:hover {color: #34a9ff;}
#social-media ul li a.youtube:hover {color: #e5d7d7;}


#footer-right {
    padding: 60px 50px;
    padding-bottom: 30px;
    width: 72%;
    background-image: url(../img/footer-right-bg.jpg);
    position: relative;
}

#footer-menu-list {
    display: flex;
}

#footer-menu-list ul {
    width: 33.33%;
    list-style: none;
    padding: 0;
    margin: 0;
}

#copyright-section .privacy-link {color: #788aaf;}

#footer-menu-list ul li a,
#copyright-section .privacy-link a {
    text-decoration: none;
    font-size: 14px;
    color: #d1cfcf;
    transition: all 0.3s;
}

#footer-menu-list ul li a:hover,
#copyright-section .support-link a:hover,
#copyright-section .privacy-link a:hover {
    color: #ff3636;
}

#copyright-section {
    margin-top: 40px;
}

#copyright-section .support-section,
#copyright-section .privacy-section {
    display: flex;
    align-items: center;
}

#copyright-section .support-link {
    width: 43%;
    color: #d1cfcf;
    font-size: 14px;
}

#copyright-section .support-link span {font-weight: 300;}

#copyright-section .support-link a {
    text-decoration: none;
    font-size: 15px;
    color: #fbff00;
    transition: all 0.3s;
}
#copyright-section .privacy-section {margin-top: 12px;}

#copyright-section .privacy-link {
    width: 24%;
    text-align: right;
}

#copyright-section .privacy-section p {
    width: 76%;
    font-size: 15px;
    color: #788aaf;
    margin-bottom: 0;
}

#scrollTop {
    font-size: 20px;
    width: 47px;
    height: 47px;
    line-height: 44px;
    text-align: center;
    color: #6e6e6e;
    background-color: #fff;
    border: 3px solid #A8B2CF;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 100px;
    right: 50px;
    z-index: 9999;
    transition: all 0.4s;
}

#scrollTop:hover {
    color: #db5858;
    border-color: #db5858;
}

#donate-btn {
    position: fixed;
    top: 48%;
    right: -43px;
    z-index: 1000;
    transform: rotate(-90deg);
}

#donate-btn a {
    display: inline-block;
    text-decoration: none;
    padding: 7px 18px;
    background-color: #fb3a00;
    color: #fff;
    font-size: 16px;
    font-family: "Archivo", sans-serif;
    border-radius: 5px 5px 0 0;
    box-shadow: -4px 2px 25px 0 rgb(29, 29, 29, 0.6);
    transition: all 0.3s;
    user-select: none;
}
#donate-btn a:hover {background-color: #962401;}