@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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Generic CSS */

 :root {
    --primary: #218AE6;
    --secondary: #D9D9D9;
}

body {
    font-family: "Lato", sans-serif;
    background: #fff;
    position: relative;
    margin: 0;
    padding: 0;
}

ul {
    padding: 0 !important;
    margin: 0 !important;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none;
}


/* EDM Header Section */

.edm-header {
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #D9D9D9;
}


/* border for mobile */

.edm-header-border {
    border-top: 1px solid #D9D9D9;
    display: none;
    position: absolute;
    top: 20px;
    width: 100%;
}

.edm-header .navbar {
    padding: 0 !important;
}

.edm-header .navbar-brand {
    padding: 0 !important;
}

.edm-header .navbar-brand img {
    max-width: 100px;
}

.edm-header .navbar-light .navbar-toggler {
    border-radius: 0px;
    right: 12px;
    top: 0px;
    max-width: 70px;
    padding: 19px 15px;
    background: #fff;
    border-radius: 0px;
}

.edm-header .navbar .navbar-nav {
    align-items: center;
    background-color: #d9d9d9bf;
    border-radius: 25px;
    padding: 7px !important;
    justify-content: center;
    width: 100%;
}

.edm-header .navbar .nav-item a {
    color: #fff !important;
    font-size: 14px;
    text-transform: uppercase;
    padding: 3px 15px;
}

.edm-header .navbar .nav-item a:hover,
.edm-header .navbar .nav-item a.active {
    background-color: #218ae6;
    border-radius: 25px;
    padding: 3px 15px;
}

.edm-header .btn-primary {
    background-color: #218ae6 !important;
    border-radius: 25px;
    padding: 7px 20px;
    text-transform: uppercase;
    font-size: 14px;
}

.edm-header .btn-primary i {
    transform: rotate(-20deg);
}

.edm-header .btn-primary:hover {
    background-color: #D9D9D9 !important;
    color: #010101;
}


/* EDM Hero Video Section */

.edm-hero-video {
    height: 100vh;
    overflow: hidden;
}

.edm-hero-video video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
}

.edm-hero-video .video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(0 0 0 / 70%), rgba(0, 0, 0, .2));
    z-index: 0;
}

.edm-hero-video .video-control {
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 18px;
    z-index: 3;
}

.edm-hero-video h1 {
    color: #ffffff;
}

.edm-hero-video h1 strong {
    color: #218AE6;
    font-weight: 900;
}

.edm-hero-video h1 span {
    color: #218AE6;
    font-weight: 700;
}

.edm-hero-video .btn-primary {
    background-color: #218ae6 !important;
    border-radius: 25px;
    padding: 7px 20px;
    text-transform: uppercase;
    width: 30%;
    font-size: 14px;
}

.edm-hero-video .btn-primary:hover {
    background-color: #D9D9D9 !important;
    color: #010101;
}

.edm-hero-video .caption {
    top: 210px;
    position: absolute;
    z-index: 11;
    width: 50%;
}


/* EDM About Us Section */


/* Left Sect */

.edm-about-section {
    background-color: #f0f8ff;
}

.edm-about-section .section-heading {
    position: relative;
}

.edm-about-section .section-heading h2 {
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
    border-bottom: 2px solid #d4d4d4;
    padding-bottom: 10px;
}

.edm-about-section .heading-line {
    display: block;
    width: 130px;
    height: 2px;
    background-color: #218AE6;
    border-radius: 2px;
    position: absolute;
    top: 48px;
}

.edm-about-section .about-images-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.edm-about-section .img-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.edm-about-section .img-1 img,
.edm-about-section .img-4 img {
    box-shadow: 4px 4px 12px 4px rgb(0 0 0 / 36%);
    border-radius: 25px;
}

.edm-about-section .img-2 img,
.edm-about-section .img-3 img {
    box-shadow: 4px 4px 12px 4px rgb(0 0 0 / 36%);
    border-radius: 25px;
}

.edm-about-section .img-box img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.edm-about-section .img-box img:hover {
    transform: scale(1.04);
}


/* Right Sect */

.edm-about-section .about-content h2 {
    color: #218AE6;
    border-bottom: 2px solid #d4d4d4;
    font-weight: bold;
    font-size: 1.7rem;
}

.edm-about-section .feature-card h5 {
    color: #218AE6;
}

.edm-about-section .btn-primary {
    background-color: #218ae6 !important;
    border-radius: 25px;
    padding: 7px 20px;
    text-transform: uppercase;
    font-size: 14px;
}

.edm-about-section .btn-primary:hover {
    background-color: #D9D9D9 !important;
    color: #010101;
}

.edm-about-section .btn-primary i {
    transform: rotate(-20deg);
}

.edm-about-section .about-features p {
    margin-left: 35px;
}

.edm-about-section .about-content {
    margin-left: 30px;
}


/* EDM Publicatios Section */

.edm-publications-section {
    background: #ffffff;
}

.edm-publications-section .section-heading {
    position: relative;
}

.edm-publications-section .section-heading h2 {
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
    border-bottom: 2px solid #d4d4d4;
    padding-bottom: 10px;
}

.edm-publications-section .heading-line {
    display: block;
    width: 175px;
    height: 2px;
    background-color: #218AE6;
    border-radius: 2px;
    position: absolute;
    top: 48px;
}


/* Card */

.edm-publications-section .publication-card {
    border: 1px solid #D9D9D9;
    border-radius: 25px 25px 0 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.edm-publications-section .publication-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.edm-publications-section .pub-card-resp img {
    width: 100%;
}

/* Content */

.edm-publications-section .publication-card.pub-card-1 .pub-content {
    text-align: center;
    padding: 20px;
    background-color: #AA5B01;
}

.edm-publications-section .publication-card.pub-card-2 .pub-content {
    background-color: #0F62AC;
    text-align: center;
    padding: 20px;
}

.edm-publications-section .publication-card.pub-card-3 .pub-content {
    background-color: #0FAC99;
    text-align: center;
    padding: 20px;
}

.edm-publications-section .publication-card .pub-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.4;
    color: #fff;
}


/* EDM Research Themes Section */


/* Whole Section Background */

.emd-research-theme-section {
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}


/* Title */

.emd-research-theme-section .section-heading {
    position: relative;
}

.emd-research-theme-section .section-heading h2 {
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
    border-bottom: 2px solid #d4d4d4;
    padding-bottom: 10px;
}

.emd-research-theme-section .heading-line {
    display: block;
    width: 250px;
    height: 2px;
    background-color: #218AE6;
    border-radius: 2px;
    position: absolute;
    top: 48px;
}


/* Grey Container Box */

.emd-research-theme-section .research-theme-wrapper-bg {
    background: #F5F5F5;
    padding: 30px;
    border-radius: 25px;
    width: 100%;
}


/* Theme Cards BG spacing*/


/* .emd-research-theme-section .spacing {
    margin-top: -275px;
    padding: 15px 25px;
} */


/* Theme Cards */

.emd-research-theme-section .theme-card {
    position: relative;
    background: #C4E0FF;
    /* light bluish */
    border-radius: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 20px 12px;
}

.emd-research-theme-section .theme-card img {
    max-width: 100px;
    margin-bottom: 15px;
}

.emd-research-theme-section .theme-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #218AE6;
}

.emd-research-theme-section .theme-card p {
    font-size: 16px;
    color: #555;
    margin: 0;
}


/* Hover Green Overlay */

.emd-research-theme-section .theme-hover-box {
    position: absolute;
    inset: 0;
    background: #0FAC99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.emd-research-theme-section .theme-hover-box a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}


/* Hover Effects */

.emd-research-theme-section .theme-card:hover .theme-hover-box {
    opacity: 1;
}

.emd-research-theme-section .theme-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}


/* edm-project section */

.edm-projects-section .section-heading {
    position: relative;
}

.edm-projects-section .section-heading h2 {
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
    border-bottom: 2px solid #d4d4d4;
    padding-bottom: 10px;
}

.edm-projects-section .heading-line {
    display: block;
    width: 125px;
    height: 2px;
    background-color: #218AE6;
    border-radius: 2px;
    position: absolute;
    top: 48px;
}


/* Card */

.edm-projects-section .project-card {
    position: sticky;
    top: 120px;
    margin-bottom: 40px;
    padding: 25px;
    background: #F5F5F5;
    border-radius: 25px;
    box-shadow: 4px 4px 12px 4px rgb(0 0 0 / 36%);
    ;
}

.edm-projects-section .project-card:nth-child(odd) {
    border: 2px solid #218AE6;
}

.edm-projects-section .project-card:nth-child(even) {
    border: 2px solid #0FAC99;
}


/* Row inside card */

.edm-projects-section .project-row {
    display: grid;
    grid-template-columns: 40% 60%;
    overflow: hidden;
}


/* Image */

.edm-projects-section .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}


/* Content */

.edm-projects-section .project-info {
    width: 97%;
    padding: 25px;
    background: #ffffff;
    border-radius: 25px;
    margin-left: 3%;
}

.edm-projects-section .project-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #218ae6
}

.edm-projects-section .project-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}


/* Meta */

.edm-projects-section .project-meta {
    list-style: none;
    margin-right: 50px;
}

.edm-projects-section .project-meta li {
    border-bottom: 1px solid #d4d4d4;
    width: 100%;
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    display: flex;
}

.edm-projects-section .project-meta li strong {
    color: #218ae6;
    width: 40%;
    font-size: 16px;
    display: inline-flex;
}

.edm-projects-section .project-meta li span {
    color: #555;
    font-size: 14px;
    width: 60%;
    float: right;
}


/* Button */

.edm-projects-section .project-btn {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 50px;
    background: #218AE6;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 40px;
    text-transform: uppercase;
}

.edm-projects-section .project-btn:hover {
    background: #1a6fc2;
}


/* edm-News Section */

.edm-news-section {
    background-color: #f0f8ff;
}

.edm-news-section .section-heading {
    position: relative;
}

.edm-news-section .section-heading h2 {
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
    border-bottom: 2px solid #d4d4d4;
    padding-bottom: 10px;
}

.edm-news-section .heading-line {
    display: block;
    width: 80px;
    height: 2px;
    background-color: #218AE6;
    border-radius: 2px;
    position: absolute;
    top: 48px;
}

.edm-news-section .news-section {
    background: #f7f9fc;
}


/* Card */

.edm-news-section .news-card {
    background: #ffffff;
    border: 1px solid #D9D9D9;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.edm-news-section .news-card:hover {
    box-shadow: 4px 4px 12px 4px rgb(0 0 0 / 36%);
    transform: translateY(-6px);
}


/* News Card */

.news-card {
    background: #ffffff;
    border: 1.5px solid #D9D9D9;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
    border-color: #cfcfcf;
}


/* Image */

.edm-news-section .news-image img {
    width: 100%;
    height: 275px;
    object-fit: cover;
}


/* Content */

.edm-news-section .news-content {
    padding: 22px;
}

.edm-news-section .news-meta {
    font-size: 13px;
    color: #777;
    display: block;
    margin-bottom: 8px;
}

.edm-news-section .news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #218ae6;
}

.edm-news-section .news-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 18px;
}


/* Link */

.edm-news-section .news-link {
    font-size: 14px;
    font-weight: 600;
    color: #218AE6;
    text-decoration: none;
}

.edm-news-section .news-link:hover {
    text-decoration: underline;
}


/* edm-footer Section */

.edm-footer-section {
    background: #c3cad1;
    /* background: linear-gradient(90deg, rgba(190, 213, 237, 1) 0%, rgb(118 176 235 / 58%) 27%, rgba(108, 167, 226, 1) 44%, rgb(176 218 255 / 19%) 100%); */
    border-radius: 15px 15px 0 0;
    box-shadow: 0px 0px 6px 4px rgb(0 0 0 / 67%);
}


/* TOP BAR */

.edm-footer-section .footer-top {
    padding: 20px 0;
}

.edm-footer-section .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.edm-footer-section .footer-logo img {
    max-width: 75%;
}

.edm-footer-section .footer-contact,
.edm-footer-section .footer-address {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #615d5c;
}

.edm-footer-section .footer-contact i,
.edm-footer-section .footer-address i {
    font-size: 50px;
}

.edm-footer-section .footer-contact p {
    margin: 0;
    font-size: 16px;
}

.edm-footer-section .footer-address p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}


/* MIDDLE BAR */

.edm-footer-section .footer-middle .edm-footer-border {
    border-top: 1px solid #615d5c;
    padding: 15px 0;
}

.edm-footer-section .footer-tagline {
    margin: 0;
    color: #615d5c;
}

.edm-footer-section .footer-tagline strong {
    color: #1d2023;
    font-weight: 900;
}

.edm-footer-section .footer-top-btn {
    background: #1d2023;
    color: #615d5c;
    cursor: pointer;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    border: none;
    font-weight: 900;
}

.edm-footer-section .footer-top-btn:hover {
    color: #ec242c;
    transition: all 0.3s ease;
}


/* MENU BAR */

.edm-footer-section .footer-menu {
    padding: 10px 0px 40px 0px;
}

.edm-footer-section .footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    background: #1d2023;
    padding: 12PX ! IMPORTANT;
    border-radius: 25PX;
    width: 70%;
    justify-content: center;
}

.edm-footer-section .footer-links a {
    color: #615d5c;
    font-size: 14px;
    text-decoration: none;
    font-weight: bolder;
    transition: all 0.3s ease;
}

.edm-footer-section .footer-links a:hover {
    color: #ec242c;
}

.edm-footer-section .footer-social ul li {
    display: inline-flex;
    border: 1px solid #615d5c;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.edm-footer-section .footer-social ul li a {
    color: #615d5c;
    font-size: 20px;
}

.edm-footer-section .footer-social ul li a {
    transition: transform 0.5s ease-in-out;
}

.edm-footer-section .footer-social li a:hover {
    transform: rotate(360deg);
}


/* BOTTOM BAR */

.edm-footer-section .footer-bottom {
    background: #1d2023;
    padding: 10px 0;
    font-size: 12px;
    color: #615d5c;
    font-weight: 800;
}

.edm-footer-section .footer-bottom p {
    margin: 0;
}


/* EDM About Us Page CSS */


/* about us banner */

section.edm-about-us-banner {
    padding-block: clamp(0px, 0vw, 0px) !important;
    height: inherit !important;
}

.edm-about-us-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    top: 0;
}

.edm-about-us-banner .caption {
    text-align: center;
}

.edm-about-us-banner .btn-primary {
    width: 10%;
    margin: 0px 2px;
}

.edm-about-us-banner .banner-breadcrumbs li {
    font-size: 18px;
    color: #fff;
}

.edm-about-us-banner .banner-breadcrumbs li a {
    color: #fff;
    padding: 0px 5px;
    font-size: 14px;
}


/* why work with us */

.emd-research-theme-section.edm-why-work {
    background-image: none !important;
    background-color: #FFF9F9;
}

.edm-why-work .heading-line {
    width: 285px !important;
}

.edm-why-work .theme-card {
    background-color: #0FAC99 !important;
    border-radius: 25px 25px 0 0;
    position: relative;
    text-align: left;
    align-items: baseline;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 20px 12px;
}

.edm-why-work .theme-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    background-color: #99CAFF !important;
}

.edm-why-work .theme-card h5 {
    color: #212020;
    min-height: 48px;
    width: 75%;
}

.edm-why-work .theme-card p {
    color: #404040;
}

.edm-why-work .theme-card img {
    max-width: 75px !important;
    margin-bottom: 30px !important;
}


/* Contract us page css */

.edm-contact-us-section .heading-line {
    display: block;
    width: 155px;
}

.edm-contact-us-section .map-column iframe {
    width: 100%;
}

.edm-contact-us-section .connect-column {
    background-color: #0FAC99;
    border-radius: 25px 25px 0 0;
    padding: 30px 15px;
    color: #fff;
}

.edm-contact-us-section .connect-column h2 {
    margin-bottom: 20px;
}

.edm-contact-us-section .connect-column strong {
    font-size: 32px;
    color: #D9D9D9;
    font-weight: 900;
}

.edm-contact-us-section .connect-column .connect-spacing {
    border-top: 1px solid #D9D9D9;
    padding-top: 30px !important;
}

.edm-contact-us-section .connect-column .connect-spacing li i {
    margin-right: 5px;
}

.edm-contact-us-section .connect-column .connect-spacing li {
    margin: 15px 0px;
}


/* Contact Form css */

.edm-contact-form .heading-line {
    width: 345px;
}

.edm-contact-form .contact-us-bg {
    background-color: transparent;
    padding: 40px 20px;
    border-radius: 25px 25px 0 0;
    box-shadow: 4px 4px 10px 4px rgb(0 0 0 / 36%);
}

.edm-contact-form .contact-us-bg .submit-btn {
    background-color: #218ae6 !important;
    border-radius: 25px;
    padding: 7px 20px;
    text-transform: uppercase;
    width: 30%;
    font-size: 14px;
    margin-top: 30px;
}

.edm-contact-form .contact-us-bg .submit-btn:hover {
    background-color: #D9D9D9 !important;
    color: #010101;
}

.edm-contact-form .contact-us-bg .form-text {
    font-size: 1.2rem;
    color: #010101;
}


/* Publication page CSS */

.edm-pubs-section .heading-line {
    width: 170px;
}

.edm-pubs-section .publication-card {
    text-align: center;
    border-radius: 25px 25px 0 0;
    transition: all 0.3s ease;
    border: 3px solid;
    margin: 15px 0px;
}

.pub-borders:nth-child(4n+1) .publication-card {
    border-color: #002677;
}

.pub-borders:nth-child(4n+2) .publication-card {
    border-color: #0FAC99;
}

.pub-borders:nth-child(4n+3) .publication-card {
    border-color: #AA5B01;
}

.pub-borders:nth-child(4n+4) .publication-card {
    border-color: #74848C;
}

.edm-pubs-section .publication-card:hover {
    box-shadow: 4px 4px 12px 4px rgb(0 0 0 / 36%);
    transform: translateY(-6px);
}

.edm-pubs-section .publication-card img {
    border-radius: 25px 25px 0 0;
    width: 100%;
    margin-bottom: 8px;
    max-height: 260px !important;
}

.edm-pubs-section .publication-card time {
    font-size: 14px;
    padding-bottom: 8px;
    display: inline-flex;
}

.edm-pubs-section .pagination {
    box-shadow: 4px 4px 12px 4px rgb(0 0 0 / 36%);
    border-radius: 25px 25px 4px 4px;
}

.edm-pubs-section .page-item .page-link {
    color: #000;
    padding: 5px 20px;
    background-color: #d9d9d94d;
    border-color: #002677;
    text-align: center;
}

.edm-pubs-section .page-item .page-link:hover {
    background-color: #218ae6;
    color: #fff;
}

.edm-pubs-section .page-item:first-child .page-link {
    border-top-left-radius: 25px;
    width: 130px;
    text-align: center;
}

.edm-pubs-section .page-item:last-child .page-link {
    border-top-right-radius: 25px;
    width: 130px;
    text-align: center;
}


/* Project Page CSS */

.edm-proj-section .project-bg {
    transition: all 0.3s ease;
    border-radius: 25px 25px 0 0;
    border: 3px solid;
    margin: 15px 0;
}

.edm-proj-section .project-bg:hover {
    box-shadow: 4px 4px 12px 4px rgb(0 0 0 / 36%);
    transform: translateY(-6px);
}

.edm-proj-section .project-bg .proj-img img {
    border-radius: 25px 25px 0 0;
    width: 100%;
}

.edm-proj-section .project-info {
    width: 100%;
    padding: 25px 15px;
    margin-left: 0%;
}

.proj-bord:nth-child(3n+1) .project-bg {
    border-color: #0FAC99;
}

.proj-bord:nth-child(3n+2) .project-bg {
    border-color: #AA5B01;
}

.proj-bord:nth-child(3n+3) .project-bg {
    border-color: #74848C;
}

.edm-proj-section .project-meta li:last-child {
    min-height: 70px !important;
}

.edm-proj-section .project-desc {
    min-height: 125px;
}


/* News Page CSS */