/* =========================================================
   PROJECT: IRD BD 
   FILE: style.css
   AUTHOR: Technohaat IT Limited
   DESIGNER: Raqibul Hasan Rahat
   DESCRIPTION: Custom styles and Bootstrap overrides
   CREATED: 2025
========================================================= */
@import url('https://fonts.googleapis.com/css2?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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* =========================================================
   1. ROOT VARIABLES
========================================================= */
:root {
    /* Brand Colors */
    --primary-color: #0D8943;
    --secondary-color: #EC1D23;
    --accent-color: #F3EC18;
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #212529;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2e0a13;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #7c3848;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    /* Neutral Palette */
    --text-color: #212529;
    --muted-color: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #121212;

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    /* Layout */
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* =========================================================
   2. GLOBAL RESET & BASE
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
   3. TYPOGRAPHY
========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--text-color);
    font-family: var(--font-secondary);
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}


@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1240px;
    }
}

.custom-boxshadow {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.radious-6 {
    border-radius: 6px;
}

/* =========================================================
   4. BUTTONS
========================================================= */

.btn {
    white-space: nowrap;
}

.btn-grad {
    background-image: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 51%, var(--accent-color) 100%)
}

.btn-grad {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.btn-grad:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}



.btn-custom {
    background: var(--primary-color);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 0.6rem 1.4rem;
    transition: var(--transition);
}

.btn-custom:hover {
    background: var(--accent-color);
    color: #fff;
}

.btn-primary {
    border-color: #16a34a;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #03742c 0%, #15803d 100%);
    border-color: #03742c;
}

@media (max-width: 576px) {
    .btn-primary {
        font-size: 12px;
    }
}

/* =========================================================
   5. SECTIONS
========================================================= */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--text-color);
    position: relative;
}

/* .section-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 12px auto 0;
    border-radius: 2px;
} */
.section-title {
    display: block;
    position: relative;
    z-index: 9 !important;
}

.top-title {
    font-size: 18px;
    color: #ffc221;
    font-weight: 700;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    text-transform: capitalize;
    z-index: 1;
    margin-bottom: 3px;
    color: var(--primary-color);
}

.section-title span {
    position: relative;
    color: var(--primary-color);
}

.section-title span img {
    position: absolute;
    left: -2px;
    bottom: 2px;
    z-index: -1;
    animation: section-animation 5s infinite;
}

@keyframes section-animation {
    0% {
        width: 0;
    }

    15% {
        width: 100%;
    }

    85% {
        opacity: 1;
    }

    90% {
        width: 100%;
        opacity: 0;
    }

    100% {
        width: 0;
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 20px;
    }

    .section-title {
        margin-bottom: 15px;
    }
}

/* =========================================================
   6. UTILITIES
========================================================= */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-light-custom {
    background-color: var(--bg-light) !important;
}

.bg-dark-custom {
    background-color: var(--bg-dark) !important;
    color: #fff;
}

.rounded-custom {
    border-radius: var(--border-radius);
}

.shadow-custom {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Spacing Utilities */
.mt-6 {
    margin-top: 6rem !important;
}

.mb-6 {
    margin-bottom: 6rem !important;
}

.pt-6 {
    padding-top: 6rem !important;
}

.pb-6 {
    padding-bottom: 6rem !important;
}

/* =========================================================
    6.5. LAZY LOADING ANIMATIONS
========================================================= */
.lazy-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lazy-section.lazy-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Delay animations for staggered effect */
.lazy-section.lazy-loaded:nth-child(1) {
    transition-delay: 0s;
}

.lazy-section.lazy-loaded:nth-child(2) {
    transition-delay: 0.1s;
}

.lazy-section.lazy-loaded:nth-child(3) {
    transition-delay: 0.2s;
}

/* =========================================================
    7. NAVBAR CUSTOMIZATION
========================================================= */
.top-logo img {
    /* width: 48px; */
    height: 48px;
}

.top-logo h5 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.navbar .navbar-brand {
    display: none;
}

.navbar-brand img {
    /* width: 60px; */
    height: 80px;
}




.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0 !important;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}

/* SPECIAL : ROTATION des flèches */
.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: 0.8em;
}

li:hover>.dropdown-toggle:after {
    transform: rotate(180deg);
}

li li:hover>.dropdown-toggle:after {
    transform: rotate(90deg);
}

li .dropdown-toggle:after {
    transition: all 0.5s;
}

li.show>.dropdown-toggle:after {
    transform: rotate(180deg);
}

li li.show>.dropdown-toggle:after {
    transform: rotate(90deg);
}

.navbar {
    background-color: #FFFFFF !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    padding: 0 !important;
    transition: all 0.3s ease-in-out;
}

.navbar.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    box-shadow: rgba(100, 100, 111, 0.3) 0 7px 29px 0;
    transition: all 0.3s ease-in-out;
}

.navbar.navbar-fixed .navbar-brand {
    display: block;
}

.navbar.navbar-fixed .navbar-brand img {
    /* width: 40px; */
    height: 50px;
}


.navbar .nav-link {
    text-transform: uppercase;
    color: #252525 !important;
    font-weight: 500;
    margin-left: 5px;
    margin-right: 5px;
    padding: 16px 0;
    position: relative;
    white-space: nowrap;
    font-size: 15px;
}

.navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar .dropdown-menu {
    top: 99% !important;
    padding: 0;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    margin: 0 !important;
}

.dropdown-submenu .dropdown-menu {
    top: 0 !important;
}

.dropdown-menu li {
    border-bottom: 1px solid #f2f2f2 !important;
}

.dropdown-menu li:last-child {
    border-bottom: 0 solid #f2f2f2 !important;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: #252525 !important;
    font-weight: 500;
    background-color: #fff !important;
    background: linear-gradient(to right, var(--primary-color) 50%, white 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.5s ease-out;
    font-size: 15px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color) !important;
    -webkit-transition: 0.9s;
    transition: 0.9s;
    z-index: 1;
}

.dropdown-item:hover {
    padding-left: 30px;
    background-color: var(--primary-color) !important;
    color: #FFF !important;
    background-position: left bottom;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: 45%;
}

.dropdown:hover>.dropdown-menu {
    display: block;
    top: 100%;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: 19px;
}


.sub-header {
    background-color: var(--primary-color);
    padding: 15px 0;

}

.sub-header-address h4 {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0;
}


.top-social-links ul {
    padding: 0;
    margin: 0;

}

.top-social-links ul li {
    list-style: none;
    display: inline-flex;
}

.top-social-links ul li a {
    height: 36px;
    width: 36px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 18px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s ease-in;

}

.top-social-links ul li a:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.top-social-links ul li a i {
    color: #ffffff;
}

.nav-search-area {
    position: relative;
    border-left: 1px solid rgb(201, 197, 197)
}

.floating-search-bar {
    display: none;
    position: absolute;
    min-width: 400px;
    right: 0;
    top: 40px;
    z-index: 99;
    padding: 10px 15px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.floating-search-bar.show {
    display: block;
}

.floating-search-bar .form-control {
    border-radius: 8px 0 0 8px;
}

.floating-search-bar .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.floating-search-bar .btn.btn-primary {
    border-radius: 0 8px 8px 0;
    border-color: var(--primary-color);
}



@media (max-width: 991px) {
    .sub-header {
        display: none;
    }

    .navbar .navbar-brand {
        display: block;
    }

    .navbar {
        padding: 5px 0 !important;
    }

    .navbar-brand img {
        height: 48px;
        /* width: 48px; */
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        width: 70%;
        height: 100%;
        z-index: 99;
        background-color: #fff;
        overflow-y: scroll;
        padding-top: 27px;
    }

    .navbar-collapse.collapsing {
        left: -75%;

    }

    .navbar-collapse ul {
        height: 100%;
    }

    .navbar-collapse ul li {
        width: 100%;
        margin: 0 auto;
    }

    .navbar-collapse.show {
        left: 0;
        transition: left 300ms ease-in-out;
    }

    .navbar-toggler.collapsed~.navbar-collapse {
        transition: left 500ms ease-in-out;
    }

    .navbar-light .navbar-toggler {
        color: transparent !important;
        border: transparent !important;
    }

    .bar1,
    .bar2,
    .bar3 {
        width: 20px;
        height: 2px;
        background-color: #333;
        margin: 6px 0;
        transition: 0.4s;
    }

    .change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-9px, 6px);
        transform: rotate(-45deg) translate(-9px, 6px);
    }

    .change .bar2 {
        opacity: 0;
    }

    .change .bar3 {
        -webkit-transform: rotate(45deg) translate(-5px, -3px);
        transform: rotate(45deg) translate(-5px, -3px);
    }

    .navbar .nav-link {
        padding: 8px !important;
    }

    .dropdown:hover>.dropdown-menu {
        display: none;
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: none;
    }

    .dropdown-menu.show {
        display: block !important;
        margin: 0;
        border: 0;
    }

    .dropdown-item::before {
        content: '';
        width: 0;
        height: 100%;
        background-color: transparent !important;

    }

    .navbar .dropdown-menu {
        box-shadow: none;
        padding: 0 12px;
    }

    .dropdown-item {
        background: #fff !important;
    }

    .navbar .nav-link:hover {
        color: #252525 !important;
    }

    li.show>.dropdown-toggle:after {
        transform: rotate(180deg) !important;
    }

    /* sous-Niveaux suivants */
    li li.show>.dropdown-toggle:after {
        transform: rotate(90deg) !important;
    }

    .dropdown-menu li {
        border: transparent !important;
    }

    .dropdown-item:hover {
        padding: 0.5rem 1.5rem;
        background-color: #FFF !important;
        color: #252525 !important;
        background-position: left bottom;
    }

    .navbar-light .navbar-nav .nav-link {
        border-bottom: 1px solid #DBEEFD;
    }

    .dropdown-item {
        border-bottom: 1px solid #DBEEFD;
    }

    .dropdown-item {
        padding: 5px;
        color: #252525 !important;
        font-weight: 500;
        background-color: #fff !important;
        background: linear-gradient(to right, var(--primary-color) 50%, white 50%);
        background-size: 200% 100%;
        background-position: right bottom;
        transition: all 0.5s ease-out;
        font-size: 14px;
        white-space: wrap;
    }
}

@media (max-width: 576px) {
    .floating-search-bar {
        display: none;
        position: absolute;
        min-width: 300px;
        right: 0;
        top: 40px;
        z-index: 99;
        padding: 10px 15px;
        background: #fff;
        border-radius: 0 0 8px 8px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
}



/* =========================================================
   8. ANIMATIONS
========================================================= */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   9. RESPONSIVE
========================================================= */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.6rem;
    }

    .navbar-custom .nav-link {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }

    .section-title h2::after {
        width: 40px;
    }
}

/* ===========================================================================
 Hero Start From Here
============================================================================== */

.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-banner-area {
    position: relative;
    z-index: 9;
    height: 600px;
    border-radius: 0px;
}

.hero-swiper {
    border-radius: 0px;
}

.hero .hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--contrast-color);
    position: relative;
    border-radius: 0px;
    height: 100%;
}

.hero .hero-container .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero .hero-container .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.banner-slider-content {
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 0 10px;
    padding-bottom: 100px;
}

.banner-slider-content h4 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.banner-slider-content p {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0px;
    padding-bottom: 0;
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
    background-color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.hero .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--primary-color) !important;
}

@media (max-width: 991.9px) {
    .hero-banner-area {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-banner-area {
        height: 300px;
    }

    .banner-slider-content h4 {
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .banner-slider-content p {
        font-size: 12px;
        font-weight: 500;
        color: #ffffff;
        margin-bottom: 0px;

    }
}

@media (max-width: 578px) {
    .hero-banner-area {
        height: 220px;
    }

    .banner-slider-content h4 {
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .banner-slider-content p {
        font-size: 10px;
        font-weight: 500;
        color: #ffffff;
        margin-bottom: 0px;

    }

    .banner-slider-content {
        padding-bottom: 10px;
    }
}

/* .hero .hero-container .hero-content .cta-buttons {
    margin-bottom: 30px;
} */

.hero .hero-container .hero-content .cta-buttons a {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .hero .hero-container .hero-content .cta-buttons a {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
}

/* ==========================================================================================
Hero End Here
============================================================================================== */



/* ==================== */
.about-slider {
    height: 360px;
    width: 100%;
}

.about-us {
    position: relative;
    padding: 75px 0px 45px;
}

.about-us .about-pic {
    border-radius: 5px;
    box-shadow: 0 30px 60px #010b3c24;
}

/* .about-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 30%;
    height: 40%;
    background-color: transparent;
    border: 2px solid #8D208B;
    bottom: -45px;
    right: -40px;
    border-radius: 35px;
} */

.about-us .animation-img img {
    position: absolute;
    z-index: -1;
}

.about-us .animation-img img.hero-1-dot {
    bottom: 80px;
    right: 42%;
    animation: hero-dot-1 5s linear 0s infinite alternate;
}

.about-us .animation-img img.hero-2-dot {
    top: 85px;
    right: 17%;
}

.about-us .animation-img img.hero-3-dot {
    top: 85px;
    right: 17%;
}

@keyframes hero-dot-1 {
    0% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-text h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: justify;
}

.about-text p {
    color: #444;
    font-size: 14px;
    text-align: justify;
    font-weight: 500;
}

.sub-content {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 15px 10px 23px 160px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-shadow: 0 0 15px rgb(0 0 0 / 5%);
    box-shadow: 0 0 15px rgb(0 0 0 / 5%);
}

.about-img {
    width: 100%;
}

.about-img .carousel-inner {
    width: 100% !important;
    height: 355px;
}

.about-img .carousel-inner .carousel-item {
    height: 100% !important;
    width: 100% !important;
}

.about-img .carousel-inner .carousel-item img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 5px !important;
}

.about-img .sub-content img {
    position: absolute;
    top: 10px;
    left: 10px;
    max-width: 123px;
    border-radius: 15px 0 0 15px;
}

.about-img .sub-content h3 {
    font-size: 45px;
    color: #ffc221;
    font-weight: 700;
    margin-bottom: 0;
}

.about-img .sub-content span {
    color: #252525;
    font-size: 18px;
    font-weight: 600;
}

.image-box-boder-box {
    position: relative;
}

.image-box-boder-box::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-image: -webkit-linear-gradient(top, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(58.33333%, #ccc), color-stop(0%, rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-image: linear-gradient(to bottom, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-position: left top;
    background-size: 100% 8px;
    background-repeat: repeat-y;
    z-index: 1;
}

.image-box-boder-box::after {
    position: absolute;
    content: "";
    right: 0;
    left: 0;
    bottom: -1px;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(58.33333%, #ccc), color-stop(0%, rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-image: linear-gradient(to right, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-position: left bottom;
    background-size: 8px 100%;
    background-repeat: repeat-x;
}

.image-box-boder-box .image-box-boder {
    padding: 0;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.image-box-boder-box .image-box-boder::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-image: -webkit-linear-gradient(top, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(58.33333%, #ccc), color-stop(0%, rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-image: linear-gradient(to bottom, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-position: left top;
    background-size: 100% 8px;
    background-repeat: repeat-y;
}

.image-box-boder-box .image-box-boder::after {
    position: absolute;
    content: "";
    right: 0;
    left: 0;
    top: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(58.33333%, #ccc), color-stop(0%, rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-image: linear-gradient(to right, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-position: left bottom;
    background-size: 8px 100%;
    background-repeat: repeat-x;
}

.image-box-boder-box .image-box-boder:hover .style-09 {
    background: #fff;
    border-radius: 3px;
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    z-index: 3;
    -webkit-box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
    box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
    z-index: 9;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@-webkit-keyframes boxImageAnimationSignal {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    1% {
        opacity: 0.14;
    }

    20% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.4;
    }

    60% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes boxImageAnimationSignal {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    1% {
        opacity: 0.14;
    }

    20% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.4;
    }

    60% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.image-box-wrap {
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    padding: 30px 35px 31px;
    border-radius: 5px;
}

.image-box-wrap .content .heading {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #000;
    font-size: 26px;
}

.image-box-wrap .content .text {
    color: var(--light-color);
}

.box-image img {
    width: 64px;
    margin-bottom: 10px;
}

@media (max-width: 578px) {
    .image-box-area {
        padding: 0 30px;
    }
}

.b-list {
    padding-left: 30px;
}

.b-list li {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--default-color);
    margin-bottom: 15px;
    list-style: none;
    text-align: justify;
}

.b-list li::before {
    position: absolute;
    content: '\f0a4';
    font-weight: 900;
    font-family: 'Font Awesome 7 Free';
    left: -24px;
    top: 2px;
    background: linear-gradient(to right, #0D8943 0%, #EC1D23 51%, #F3EC18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.abt-sub-title {
    font-weight: 800;
    text-transform: capitalize;
    color: var(--primary-color);
}

.abt-sub-text p {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--default-color);
    margin-bottom: 15px;
    list-style: none;
    text-align: justify;
}


.about-2 {
    margin-bottom: 30px;
}


@media (max-width: 576px) {
    .about-us {
        position: relative;
        padding: 25px 0px 25px;
    }

    .about-text h5 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 10px;
        text-align: justify;
        line-height: 1.5;
    }

    .about-text p {
        color: #444;
        font-size: 12px;
        text-align: justify;
        font-weight: 500;
        line-height: 1.5;
    }

    .about-img .carousel-inner {
        width: 100% !important;
        height: 215px;
    }

    .abt-sub-title {
        font-weight: 800;
        text-transform: capitalize;
        color: var(--primary-color);
        font-size: 20px;
        margin-bottom: 10px;
    }

    .b-list li {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .abt-sub-text p {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

/* ===================== */

.home-research-area {
    padding: 40px 0;
    background-color: #ebebeb;
}

.icon-holder {
    /* width: 48px;
    height: 48px; */
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

.icon-holder svg {
    width: 36px;
    height: 36px;
}

.home-research-area .bg-green {
    background-color: rgb(220 252 231)
}

.home-research-area .bg-blue {
    background-color: rgb(219 234 254);
}

.home-research-area .bg-purple {
    background: rgb(243 232 255);
}

.home-research-area .bg-red {
    background: rgb(254 226 226);
}

.home-research-area .bg-yellow {
    background: rgb(254 249 195);
}

.home-research-area .bg-indigo {
    background: rgb(224 231 255);
}

.icon-holder.bg-green svg path {
    fill: #03742c;
}

.icon-holder.bg-blue svg path {
    fill: rgb(0, 109, 252);
}

.icon-holder.bg-purple svg path {
    fill: rgb(147 51 234);
}

.icon-holder.bg-red svg path {
    fill: rgb(220 38 38);
}

.icon-holder.bg-yellow svg path {
    fill: rgb(202 138 4);
}

.icon-holder.bg-indigo svg path {
    fill: rgb(79 70 229);
}

.hr-single-wrapper {
    margin-bottom: 20px;
    transition: all 0.5s ease-in-out;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    cursor: pointer;
}

.hr-single-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.hr-single-wrapper .title {
    font-size: 18px;

}

.hr-single-wrapper p {
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 0;
    color: var(--text-color);
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    line-height: 1.4;
    
    overflow: hidden; */
}



/* .h-research-area {
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/img/slider/research-bg.jpg');
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.h-research-area .section-title h3 {
    color: #fff !important;
    font-size: 40px;
}

.section-title p {
    font-size: 14px;
    color: #fff !important;
    margin-bottom: 5px;
}

.res-area-single {
    background-color: #fff;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 35px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    transition: 0.5s all ease;
    cursor: pointer;
}

.res-area-single:hover {
    transform: translateY(-10px);
} */
@media (max-width: 576px) {
    .home-research-area {
        padding: 25px 0;
        background-color: #ebebeb;
    }

    .icon-holder svg {
        width: 25px;
        height: 25px;
    }

    .hr-single-wrapper p {
        font-size: 12px;
        font-weight: 500;
        text-align: justify;
        margin-bottom: 0;
        color: var(--text-color);
    }

    .hr-single-wrapper .title {
        font-size: 15px;
    }
}

/* ============================= */
.home-publications {
    padding: 40px 0;
}

.megazine-area {
    border: 10px solid #e7e7e7;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.45) 0 25px 20px -20px !important;
}

.megazine .item .inner {
    position: relative;
    width: 100%;
    height: 350px;
    display: block;
    overflow: hidden;

}

.megazine .item .inner img {
    box-shadow: rgba(0, 0, 0, 0.45) 0 25px 20px -20px;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
    transition: all 1s ease;
}

.megazine .item:hover>.inner img {
    transform: scale(1.1);
}

.item-details {
    background-color: rgba(4, 40, 62, 0.6);
    width: 100%;
    z-index: 9;
    position: absolute;
    bottom: 0;
    height: 50px;
    box-shadow: rgba(0, 0, 0, 0.45) 0 25px 20px -20px;
}

.item-details p {
    text-align: center;
    color: #fff;
    /* font-family: 'Open Sans Condensed', sans-serif; */
    font-size: 25px;
    line-height: 50px;
    padding: 0;
    margin: 0;
    font-weight: 500;
}

/* .featureImage{
    padding: 10px;
} */

.featureImage__image {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
    aspect-ratio: 8 / 10;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.featureImage__image img {
    border-radius: 5px;
    height: 100%;
    width: 100%;
}

.featureImage__title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    text-align: start;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.featureImage__date {
    font-size: 12px;
    color: var(--muted-color);
    text-align: start;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .home-publications {
        padding: 25px 0;
    }

    .featureImage__title {
        font-size: 12px;
        font-weight: 600;
        margin-top: 10px;
        text-align: start;
    }
}

/* ======== */

.home-Jurnals {
    padding: 40px 0;
    background-color: #f2f2f2;
}

.jurnal-card {
    position: relative;
    z-index: 0;
    height: fit-content;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    background: #ffffff;
    display: inline-flex;
    align-items: start;
    justify-content: start;
}

.jurnal-card .jurnal-img {
    width: 35%;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.jurnal-card .jurnal-img img {
    width: 100%;
    height: 100%;

    transition: 0.6s;
    border-radius: 6px;
}

.jurnal-card:hover .jurnal-img img {
    transform: scale(1.15);
}


.journal-slider .swiper-slide {
    padding: 15px;
}

.jurnal-content {
    padding: 20px 15px;
    width: 65%;
}

.jurnal-content h4 {
    font-size: 22px;
    font-weight: 600;
}

.jurnal-content p {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.glimps-text {
    color: var(--default-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
    font-size: 14px;
    text-align: justify;
}


@media (max-width: 576px) {
    .journal-slider .swiper-slide {
        padding: 8px;
    }

    .jurnal-content h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
        line-height: 1.5;
    }

    .glimps-text {
        color: var(--default-color);
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-bottom: 0;
        font-size: 12px;
        text-align: justify;
    }

    .jurnal-card .jurnal-img {
        width: 35%;
        overflow: hidden;
        border-radius: 8px;
        height: 210px;
    }

    .home-Jurnals {
        padding: 25px 0;
        background-color: #f2f2f2;
    }

    .jurnal-content p {
        font-size: 10px;
    }

    .jurnal-content {
        padding: 10px 8px;
    }
}

/* =========== */

.home-scholarship {
    border-top: 1px solid #f5f7fc;
    padding: 100px 0px;
    border-bottom: 1px solid #f5f7fc;
    padding: 50px 0;
    background-color: #ffffff;
    border-radius: 50px 50px 50px 50px;
    z-index: 11;
    position: relative;
}



.scholership-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 6px;
    aspect-ratio: 16 / 9;
    /* max-height: 200px;
    max-width: 355px; */
}

.scholership-slider .swiper-button-next,
.scholership-slider .swiper-button-prev {
    color: #837e7e;
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background-color: #e4e6e89c;
}

.scholership-slider .swiper-button-next:hover,
.scholership-slider .swiper-button-prev:hover {
    background-color: #e4e6e8;
    color: var(--bs-black);
}


.scholership-slider .swiper-button-prev {
    border-radius: 0 20px 20px 0;
}

.scholership-slider .swiper-button-next {
    border-radius: 20px 0 0 20px;
}

.scholership-slider .swiper-button-next:after,
.scholership-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 800;
}

/* .swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 0px !important;
    left: auto;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 0 !important;
    right: auto;
} */

@media (max-width: 576px) {
    .home-scholarship {
        border-top: 1px solid #f5f7fc;
        padding: 100px 0px;
        border-bottom: 1px solid #f5f7fc;
        padding: 25px 0;
        background-color: #ffffff;
        border-radius: 50px 50px 50px 50px;
        z-index: 11;
        position: relative;
    }
}

/* ================ */

.home-notice {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.notice-wrapper-single {
    padding: 20px 15px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.notice-time-wrapper {
    position: relative;
    width: 64px;
}

.notice-time-wrapper svg {
    width: 64px;
    height: 64px;
}

.date-holder {
    position: absolute;
    top: 66%;
    left: 49%;
    transform: translate(-50%, -50%);
    margin: 0;
}



.date-font {
    font-size: 10px;
    font-weight: 900;
    margin-right: 5px;
}

.month-font,
.year-font {
    font-weight: 700;
    font-size: 10px;
}

.notice-title {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.notice-details {
    font-size: 12px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 2);
}

.notice-details-btn {
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    padding: 2px 6px;
    border-radius: 12px;
    transition: all 0.5s ease-in-out;
}

.notice-details-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
    border: 1px solid var(--secondary-color);

}

.notice-single-wrapper {
    padding: 20px 15px;
    background: #ffffff;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.5s ease-in-out;
}

.notice-single-wrapper:hover {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.nsw-title {
    font-size: 16px;
    font-weight: 600;
    color: #121212;
    line-height: 1.4;
}

.nsw-description {
    font-size: 14px;
    font-weight: 400;
    color: #383c5e;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 2);
}

.nsw-date {
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #6c757d;
}


@media (max-width: 576px) {
    .nsw-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .nsw-description {
        font-size: 12px;
        font-weight: 500;
    }
}


/* ============================== */


.home-gallary {
    padding: 40px 0;
    background-color: rgb(242, 242, 242);
}

.home-gallary .img_body .image-box {

    overflow: hidden;
    border-radius: 8px;
}

.home-gallary .img_body .image-box.aspect-ratio-168 {
    aspect-ratio: 16/8;
}

.home-gallary .img_body .image-box.aspect-ratio-88 {
    aspect-ratio: 8/8.5;
}

.home-gallary .img_body .image-box img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.6s;
}

.image-gallary .img_body {
    position: relative;
    margin-bottom: 20px;
}

.image-gallary:hover .img_body .image-box img {
    transform: scale(1.15);
}

.image_caption {
    position: absolute;
    text-align: center;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    bottom: 0;
    border-radius: 0 0 10px 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}


@media (max-width: 575px) {
    .home-gallary {
        padding: 25px 0 25px 0;
    }

    .image_caption {
        position: absolute;
        text-align: center;
        width: 100%;
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.4);
        bottom: 0;
        border-radius: 0 0 10px 10px;
        color: #ffffff;
        font-size: 12px;
    }
}

/* ============= */
.home-events {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.home-events .event-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 14px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-events .event-card:hover {
    transform: translateY(-6px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 32px;
}

.home-events .event-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.home-events .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-events .event-card:hover .event-image img {
    transform: scale(1.12);
}

.home-events .event-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(12, 87, 42, 0.92);
    color: #ffffff;
    border-radius: 12px;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.home-events .event-day {
    font-size: 22px;
    line-height: 1;
}

.home-events .event-month {
    font-size: 12px;
    line-height: 1;
}

.home-events .event-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.home-events .event-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
}

.home-events .event-content p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 12px;
    line-height: 1.5;
}

.home-events .event-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.8px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.home-events .event-link::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
}

.home-events .event-link:hover {
    color: var(--primary-color);
}

.home-events .swiper-slide {
    padding: 10px;
}


.events-slider .swiper-button-next,
.events-slider .swiper-button-prev {
    color: rgb(131, 126, 126);
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(228, 230, 232, 0.61);
}

.events-slider .swiper-button-next:hover,
.events-slider .swiper-button-prev:hover {
    background-color: rgb(228, 230, 232);
    color: var(--bs-black);
}

.events-slider .swiper-button-prev {
    border-radius: 0px 20px 20px 0px;
}

.events-slider .swiper-button-next {
    border-radius: 20px 0px 0px 20px;
}

.events-slider .swiper-button-next::after,
.events-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 800;
}

/* .swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 0px !important;
    left: auto;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 0px !important;
    right: auto;
} */

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 20px;
    margin: 18px 30px;
    box-shadow: 0 0 20px rgba(1, 41, 112, 0.1);
    background: #fff;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #383c5e;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto;
    color: #383c5e;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
}

.testimonials .swiper-pagination {
    margin-top: 60px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--color-red);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-red);
}

.testimonials .swiper-slide {
    opacity: 0.7;
}

@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }

    .testimonials .swiper-pagination {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}

/* .profile img {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-mid-green);
    padding: 5px;
} */

/* .testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 20px;
    margin: 18px 30px;
    box-shadow: 0 0 20px rgba(1, 41, 112, 0.1);
    background: #fff;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
} */


/* ======================= */

footer {
    overflow-x: hidden !important;
    background-color: #003021;
    padding-top: 100px;
    padding-bottom: 50px;
    color: #fff;
}

.footer-logo img {
    /* width: 80px; */
    height: 80px;
    background: #ffffff;
}

.footer-logo p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
}

.address p {
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
}

.footer-nav {
    padding: 0;
}

.footer-nav li {
    margin-bottom: 10px !important;
    list-style: none;
}

.footer-nav li a {
    color: #fff;
}


footer h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color: #0f271f;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: #037e59;
    color: #fff;
}

@media (max-width: 576px) {
    footer {
        overflow-x: hidden !important;
        background-color: #003021;
        padding-top: 30px;
        padding-bottom: 30px;
        color: #fff;
    }

    footer h4 {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        position: relative;
        padding-bottom: 5px;
    }

    .footer-nav li {
        margin-bottom: 10px !important;
        list-style: none;
        font-size: 12px;
    }

    .footer-newsletter p {
        font-size: 12px;
    }

    .footer-logo img {
        width: 40px;
        height: 55px;
    }
}


/* ====================BREADCRUMB=================== */

.breadcrumb {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: #F1f1f1;
    border-radius: 6px;
}

.breadcrumb ul {
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
}

.breadcrumb ul li {
    list-style: none;
    font-size: 12px;
    font-weight: 500;
    color: #003021;
    display: inline-flex;
    align-items: center;
}

.breadcrumb ul li::after {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin: 0 8px;
    font-size: 12px;
}

.breadcrumb ul li:last-child::after {
    content: "";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin: 0 8px;
}

.breadcrumb ul li a {
    list-style: none;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

/* =================================== */
.inner-section-title h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.inner-sub-section-title h5 {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    color: #0D8943;
    margin: 0;
}

.abt-pg-content p {
    color: rgb(75 85 99);
    font-size: 15px;
    font-weight: 500;
}

.single-trustess-wrapper {
    text-align: center;
    width: 100%;
}

.single-trustess-wrapper img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 10px solid #f2f2f2;
    margin: 0 auto;
    margin-bottom: -55px;
}

.trustees-info {
    padding: 60px 10px 10px 10px;
    border-radius: 6px;
    background: #f2f2f2;
}

.trustees-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
}

.trustees-info h6 {
    font-size: 16px;
    font-size: 500;
    color: var(--primary-color);
}

.trustees-info p {
    font-size: 12px;
    color: #383c5e;
    font-weight: 500;
}


.trustees-button-next,
.trustees-button-prev {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

@media (max-width: 576px) {
    .inner-section-title h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 14px;
        padding-bottom: 6px;
        border-bottom: 2px solid var(--primary-color);
    }

    .abt-pg-content p {
        color: rgb(75 85 99);
        font-size: 12px;
        font-weight: 500;
    }

    .inner-sub-section-title h5 {
        font-size: 16px;
        font-weight: 600;
        padding-bottom: 6px;
        color: #0D8943;
        margin: 0;
    }
}


/* ================================================= */

.research-list li {
    font-size: 15px;
    font-weight: 500;
    color: #60676d;
}

/* =================================================== */

.material-container .custom-card {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #d1dde7;
}

.custom-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #383838;
    margin-bottom: 5px;
}

.custom-card-content p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    color: #444343;
}

.custom-card-flex {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2;
}

.pagination .page-item .page-link {
    color: var(--primary-color) !important;
}

.pagination .page-item .page-link.active {
    color: #ffffff !important;
    ;
    background-color: var(--primary-color) !important;
}

@media (max-width: 576px) {
    .research-list li {
        font-size: 12px;
        font-weight: 500;
        color: #60676d;
    }

    .custom-card-title {
        font-size: 15px;
        font-weight: 600;
        color: #383838;
        margin-bottom: 5px;
    }

    .custom-card-content p {
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 0;
        color: #444343;
        text-align: justify;
    }

    .custom-card-flex {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .custom-card-flex .btn {
        margin-top: 10px;
    }
}


/* ================================ */

.custom-card-2 {
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    border: 1px solid #f3f3f3;
    margin-bottom: 15px;
}

.custom-card-2 .custom-card-image {
    position: relative;
}

.title-badge {
    position: absolute;
    right: 10px;
    top: 10px;
}

.custom-card-2 .custom-card-image img {
    border-radius: 6px 6px 0 0;
    aspect-ratio: 16/8;
}

.custom-card-2 .custom-card-content {
    padding: 10px;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
}

.custom-card-footer {
    padding: 10px;
    border-top: 1px solid #f7f2f2;
}

.custom-card-footer h5 {
    font-size: 12px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

.card-description {
    font-size: 12px;
    font-weight: 500;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.card-more-btn a {
    margin-top: 5px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
}

@media(max-width: 576px) {
    .card-title {
        font-size: 14px;
    }
}

/* =================================== */

.details-pg-img img {
    width: 100%;
    aspect-ratio: 16/8;
    border-radius: 8px;
    margin-bottom: 15px;
}

.details-title {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
}

.details-content {
    font-size: 14px;
}

/* ========================= */

.form-control:focus,
.form-select:focus {
    box-shadow: none !important;
    border-color: var(--primary-color);
}



.redirect-btn {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
}

.redirect-btn a {
    color: var(--primary-color);
}

/* =========== */

.megazine-info.blog-info-link {
    display: inline-flex;
    justify-content: start;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-flow: wrap;
}

.megazine-info.blog-info-link li {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid #c0bfbf;
    white-space: nowrap;
}

.megazine-info.blog-info-link li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.blog-share.navigation-top .social-icons {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-share.navigation-top .social-icons li {
    margin-right: 10px;
}

.blog-share.navigation-top .social-icons li:last-child {
    margin-right: 0;
}

.navigation-area {
    margin: 10px 0;
}

.navigation-area .thumb {
    padding: 0 10px;
}

.navigation-area .thumb img {
    height: 128px;
    width: 100px;
}

@media (max-width: 767px) {
    .navigation-area .thumb img {
        height: 36px;
        width: 24px;
    }

    .navigation-area .detials h4 {
        font-size: 12px;
    }

    .navigation-area .detials p {
        margin-bottom: 0px;
        padding: 0;
    }
}

.navigation-area .thumb img {
    height: 36px;
    width: 24px;
}


.media.post_item {
    display: inline-flex;
    align-items: start;
    justify-content: start;
    padding-bottom: 2.5px;
    margin-bottom: 2.5px;
    border-bottom: 1px solid #b1aaaa;
}

.media.post_item:last-child {
    border-bottom: none;
}

.media-body {
    padding-left: 2.5px;
}

.media-body h3 {
    font-size: 16px;
    margin-left: 4px;
}

.media-body p {
    margin-bottom: 0;
    font-size: 10px;
}


.cat-hintsfloat {
    font-size: 12px;
    margin-bottom: 2px;
}

.photo-credit {
    font-size: small;
    text-align: center;
    background: #e6e6e6;
    padding: 3px;
}

@media (max-width: 767px) {
    .blog-header.blog_details h2 {
        font-size: 16px;
    }
}
