@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
    --primary-color: #005FAE;
    --secondary-color: #1DA163;
    --bg-color: #EEF1F8;
    --red-color: #ff0000;
    --bg-color: #EEF1F8;
    --yellow-color: #FCBF2E;
    --navy-color: #213455;
    --white-color: #FFFFFF;
    --white-text: #ffffff;
    --text-color: #4D4D4D;
    --text-color-2: #7B7B7B;
    --hover-bg: #ececec;
    --my-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1)
}

/* Dark mode overrides */
body.dark-mode {
    --primary-color: #1E90FF;
    --secondary-color: #FFFFFF;
    --bg-color: #121212;
    --red-color: #FF6B6B;
    --yellow-color: #FFD93D;
    --dark-color: #F0F0F0;
    --white-color: #1E1E1E;
    --text-color: #ffffff;
    --text-color-2: #AAAAAA;
    --hover-bg: #666666;
    --my-shadow: 0 2px 2px 0px rgba(255, 255, 255, 0.05);
}

*.dark-mode,
body.dark-mode {
    color: #FFFFFF !important;
    background-color: var(--white-color);
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.25px;
    color: #101010;

}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

p{
    line-height: 1.6;
}

.pointer {
    cursor: pointer;
}

.primary-color {
    color: var(--primary-color) !important;
}


.section-title {
    font-size: 36px;
    display: inline-block;
    position: relative;
    color: var(--navy-color);
    font-weight: 700;
    margin-bottom: 60px;

    &::before {
        content: '';
        height: 1px;
        width: 210px;
        background-color: var(--primary-color);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -16px;
    }

    &::after {
        content: '';
        height: 5px;
        width: 96px;
        background-color: var(--primary-color);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -18px;
    }
}

.title-secondary {
    font-size: 26px;
    color: var(--primary-color);
    position: relative;
    border-bottom: 1px dashed var(--primary-color);
    display: inline-block;
    border-radius: 0.5rem;
    padding: 5px 10px;
    font-weight: 700;
    letter-spacing: 1px;
    background: #005fae14;
}


.container-fluid {
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 50px;
}


.section-padding {
    padding: 50px 0;
}

.slick-prev,
.slick-next {
    color: #fff;
    border: none;
    background: #5B5B5B;
    font-weight: 700;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #007FFF;
    outline: none;
    color: #fff;
}

.slick-prev:focus,
.slick-next:focus {
    background-color: #007FFF;
    color: #fff;
}

.slick-prev {
    left: -55px;
}

.slick-next {
    right: -55px;
}

.slick-next:before {
    content: '\EA6C';
    font-family: 'remixicon';
}

.slick-prev:before {
    content: '\EA60';
    font-family: 'remixicon';
}

.btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    gap: 5px;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    min-width: 80px;
    background-color: var(--primary-color);
    color: var(--white-color);
}



/* ================================ 
Header Section 
=================================== */
.top-header {
    position: relative;
    height: 50px;
    background-color: #005FAE;
    color: #FFF704;
    align-content: center;

    span {
        position: absolute;
        width: 230px;
        height: 100%;
        z-index: 2;
        left: 0;
        top: 0;
        align-content: center;
        text-align: center;
        background-color: #C7CEE6;
        color: #213455;
        font-weight: 700;
    }
}

/* ================================  
Header Section 
=================================== */
header {
    position: relative;
    height: 110px;
    align-content: center;

    .header-text {
        width: 100%;
        max-width: 430px;
        margin-left: 6rem;

        h3 {
            font-size: 24px;
            text-align: center;
            margin-bottom: 5px;
            font-weight: 700;
            color: var(--primary-color);
        }

        p {
            font-size: 14px;
            color: #005FAE;
            margin-bottom: 0;
            text-align: center;
            font-weight: 400;
        }
    }

    .upper-nav {
        li {
            font-size: 16px;
            font-weight: 500;
            padding: 0 14px;
            border-right: 2px solid #C7CEE6;
            display: inline-block;
            line-height: 1;

            a {}

            &:last-child {
                border-right: none;
                padding: 0;
                padding-left: 14px;
            }
        }
    }

    .lower-nav {
        margin-top: 20px;

        li {
            font-size: 15px;
            font-weight: 500;
            padding: 0 14px;
            border-right: 2px solid #C7CEE6;
            display: inline-block;

            &:last-child {
                border-right: none;
                padding: 0;
                padding-left: 14px;
            }


            .dark,
            .light {
                width: 24px;
                height: 24px;
                display: inline-block;
                border-radius: 3px;
                background: #000;
                cursor: pointer;
                border: 2px solid #000;
            }

            .light {
                border-color: #007FFF;
            }

            select {
                width: 90px;
                height: 30px;
                color: #000;
                border-radius: 5px;
                padding: 7px 10px;
                background: var(--white-color);
                border: 1px solid #00000033;
                font-size: 13px;
                font-weight: 500;
                padding-top: 6px;
            }

            .default-font {
                padding: 1px 6px;
                background: #213455;
                border-radius: 3px;
                color: var(--white-text);
                margin: 0 8px;
            }
        }

        .social-nav {
            li {
                font-size: 15px;
                font-weight: 500;
                padding: 0 14px;
                border-right: 2px solid #C7CEE6;
                display: inline-block;

                a {
                    &:last-child {
                        border-right: none;
                    }
                }

                &:last-child {
                    border-right: none;
                    padding: 0;
                    padding-left: 14px;
                }
            }

            a {
                display: inline-block;
                margin-right: 8px;

                &:last-child {
                    margin-right: 0;
                }
            }
        }
    }

    .lower-nav li .dark:active,
    .lower-nav li .light:active,
    .lower-nav li .dark:focus,
    .lower-nav li .light:focus {
        border-color: #007FFF;
    }
}

/* ================================ 
Navabr Section 
=================================== */
.navbar {
    padding: 10px 0;
    background-color: var(--secondary-color);

    .nav-link {
        display: inline-block;
        font-size: 20px;
        font-weight: 600;
        font-family: var(--my-family);
        letter-spacing: 0.5px;
        color: var(--white-color);
        position: relative;
        padding: 10px 0;
        margin: 0 14px;

        &:hover {
            color: #FFFF00;
        }
    }

    .nav-link.active::before,
    .navbar-nav .nav-link.show::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 5px;
        background-color: #FFFF00;
        bottom: -15px;
        left: 0;
    }
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #FFFF00;
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
        top: 40px;
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(10px);
        transition: all .3s ease-in;
        visibility: hidden;
        min-width: 22rem;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        min-width: 15em;
        padding: 5px;
        border-radius: 0;
        border: 0;
        box-shadow: -2px 3px 10px rgba(0, 0, 0, 0.068);
        /* background: linear-gradient(130deg, #FBA007, #e49000); */
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0;
        min-width: 20rem;
        border-radius: 10px;

        /* box-shadow: none; */
    }

    .navbar .dropdown-item:hover:hover {
        background-color: transparent !important;
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--primary-color);
    }

    .navbar .dropdown .dropdown-menu li {
        border-bottom: 1px solid #ddd;
        transition: all 0.35s ease-in-out;
        background-color: #fff;
    }

    .navbar .dropdown .dropdown-menu li:hover {
        background-color: var(--secondary-color);

    }

    .navbar .dropdown .dropdown-menu li:hover a {
        color: var(--white-color);
    }

    /* .navbar .dropdown .dropdown-menu li:first-child {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    } */

    .navbar .dropdown .dropdown-menu li:last-child {
        border: none;
        padding-bottom: 0;
        /* border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px; */
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        top: 60px;
    }
}

.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 12px 0;
    box-shadow: 0 -2px 20px 5px #00000028;
    animation: fadeInDown 0.5s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

.scroll-on .nav-link.active::before,
.scroll-on .nav-link.show::before {
    bottom: -21px;
    height: 7px;
}



/* ================================ 
Banner section 
=================================== */
.banner {
    background-color: #2f2c1c;
    .container-fluid {
        width: calc(100% - 50px);
        margin-left: 50px;
        margin-right: 0;
        padding-right: 0;

        .banner-main {
            width: calc(100% - 300px);
            flex: 1;
            .banner-contain {
                background-color: #D4DFE3;
                height: 100%;
            }
            .slick-list, .slick-track{
                height: 100%;
            }
        }

        .side-nav {
            width: 280px;
            margin-right: 20px;
        }

        .banner-img {
            height: 100%;
            object-fit: cover;
            width: 100%;
        }
    }
}

.inner-contain {
    .menu-conain {
        padding: 0;

        li {
            position: relative;
            transition: all 0.3s ease-in-out;
            /* width: 278px; */

            a {
                display: flex;
                align-items: center;
                padding: 10px;
                border: 1px solid var(--white-color);
                border-radius: 5px;
                margin-bottom: 4px;
                color: var(--white-color);
                /* width: 278px; */
                white-space: wrap;
                line-height: 20px;
                font-size: 14px;
                position: relative;

                &:before {
                    content: '\EA6B';
                    font-family: 'remixicon';
                    margin-right: 5px;
                }

                &:hover {
                    background-color: #F5EEBE;
                    color: #000;
                }

            }
        }
    }
}

@media all and (min-width:992px) {
    .side-nav .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0
    }

    .side-nav .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden;
        min-width: 18rem;
        position: absolute;
        right: -18rem;
        width: 100%;
        top: 0;
        padding: 0;
        max-height: 480px;
        overflow-y: auto;
        box-shadow: -2px 3px 10px rgb(0 0 0 / .1)
    }



    .side-nav .dropdown-menu li {
        border-bottom: 1px solid #c3c3c3;
        width: 100% !important;

        &:last-child {
            border: none;
        }
    }

    .side-nav .dropdown-item {
        padding: 7px !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        color: #121212 !important;
        display: flex !important;
        margin-bottom: 0 !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }


    .side-nav .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0
    }

    .side-nav .dropdown-submenu:hover>.dropdown-menu,
    .side-nav .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 15px;
        text-decoration: none;
        font-size: 15px;
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--primary-color);
        background-color: #fff0
    }

    .side-nav .dropdown-toggle::after {
        margin-left: auto;
        transform: rotate(-90deg);
    }
}

/* ================================ 
Other Links section 
=================================== */
.oth-link {
    background-color: #C7CEE6;
    height: 140px;
    align-content: center;

    .inner-contain {
        background-color: var(--white-color);
        border: 2px solid var(--navy-color);
        border-radius: 10px;
        padding: 10px;
        display: block;

        .img-contain {
            background-color: #C7CEE6;
            display: grid;
            place-items: center;
            width: 60px;
            height: 60px;
            border-radius: 10px;
        }

        p {
            font-size: 18px;
            font-weight: 600;
            color: var(--navy-color);
            line-height: 24px;
        }
    }
}


/* ================================ 
Announcement section 
=================================== */
.announce {
    .header-contain {
        margin-bottom: 20px;
        padding: 10px;
        border: 1px solid var(--primary-color);
        border-radius: 10px;
        /* min-height: 70px; */
        display: flex;
        align-items: center;
        justify-content: space-between;

        h3 {
            font-size: 18px;
            margin-bottom: 0;
            margin-right: 1rem;
        }
    }



    .inner-contain {
        background-color: #005FAE1A;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 10px;

        &:last-child {
            margin-bottom: 0;
        }

        .date {
            width: 40px;
            height: 40px;
            background-color: var(--white-color);
            border-radius: 5px;
            overflow: hidden;

            span {
                background-color: var(--primary-color);
                color: var(--white-color);
                display: block;
                font-size: 8px;
                text-align: center;
            }

            h4 {
                color: var(--navy-color);
                margin-bottom: 0;
                font-weight: 400;
                font-size: 14px;
                position: absolute;
                top: 60%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
        }

        h6 {
            line-height: 20px;
            font-size: 14px;
        }
    }

    .main-contain {
        .main-content {
            padding: 10px;
            border-bottom: 1px dashed #FFFFFF80;
            margin-bottom: 10px;
            background-color: #edfbf4;
            border-radius: 0.5rem;

            &:last-child {
                border: none;
                margin-bottom: 0;
                padding-bottom: 0;
            }

            p {
                margin-bottom: 8px;
                font-size: 13px;
                line-height: 22px;
            }

            .pdf-sec {
                span {
                    font-size: 12px;
                    display: block;
                }

                small {
                    display: inline;
                    font-size: 9px;
                }
            }
        }
    }

    .news-contain {
        padding: 15px;
        border: 1px solid #C7CEE6;
        box-shadow: 0px 2px 0 0 rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        margin-bottom: 8px;

        h5 {
            font-size: 14px;
            margin-bottom: 4px;
            font-weight: 400;
        }

        small {
            font-size: 12px;
        }
    }
}

.marquee-wrapper {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.marquee-inner {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    animation: scroll-up 15s linear infinite;
    animation-fill-mode: forwards;
}

.marquee-wrapper:hover .marquee-inner {
    animation-play-state: paused;
}

@keyframes scroll-up {
    0% {
        top: 100%; /* Start below the wrapper */
    }
    100% {
        top: -100%; /* Fully scrolled up and out */
    }
}


/* ================================ 
Achievement section 
=================================== */
.achievement {
    .achieveMain {
        display: flex;
        justify-content: space-between;

        .inner-contain {
            padding: 20px 15px;
            text-align: center;
            border: 1px dashed #101010;
            border-width: 1px;
            box-shadow: 4px 4px 0 0 #655E70;
            border-radius: 10px;
            margin: 0 .75rem;
            flex: 1;

            span {
                color: #1DA163;
                font-size: 24px;
                font-weight: 700;
            }

            h4 {
                color: var(--navy-color);
                margin-bottom: 0;
                font-size: 16px;
                margin-top: 10px;
            }
        }
    }

}



/* ================================ 
About section 
=================================== */
.about {
    background: url("../images/about/about-bg.svg") no-repeat center center;
    background-size: cover;
    width: 100%;

    .inner-contain {
        padding: 20px;
        border: 1px dashed var(--primary-color);
        border-radius: 10px;
        border-width: 2px;
        margin-bottom: 20px;

        &:nth-child(2) {
            border-color: #1DA163;
        }

        &:nth-child(3) {
            border-color: #A18F1D;
        }

        h4 {
            font-size: 24px;
            font-weight: 700;
            color: #101010;
            margin-bottom: 8px;
        }

        p {
            font-size: 15px;
            line-height: 22px;
        }
    }
}


/* ================================ 
Latest Post section 
=================================== */
.latest-post {
    .nav-item {
        .nav-link {
            border: 1px solid #000;
            border-radius: 0;
            min-width: 150px;
            align-content: center;
            display: inline-block;
            line-height: 1;
            padding-top: 10px;
            padding-bottom: 10px;
            color: #101010;

            img {
                filter: brightness(0.1);
            }
        }
    }

    .nav-tabs .nav-link.active {
        background-color: var(--primary-color);
        color: var(--white-color);
        border-color: var(--primary-color);

        img {
            filter: brightness(1);
        }
    }

    .card {
        .card-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        span {
            font-size: 12px;
            color: var(--primary-color);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        p {
            font-size: 15px;
            line-height: 22px;
            margin-bottom: 10px;

            &:last-child {
                margin-bottom: 0;
            }
        }
    }
}


/* ================================ 
Key person section 
=================================== */
.key {
    background: url("../images/key/key-bg.png") no-repeat center center;
    background-size: cover;
    width: 100%;

    .inner-contain {
        padding: 36px;
        background: var(--white-color);
        position: relative;

        &::before {
            content: '';
            display: inline-block;
            width: 150px;
            height: 150px;
            border-left: 1px dashed #1DA163;
            border-top: 1px dashed #1DA163;
            border-width: 2px;
            position: absolute;
            top: 20px;
            left: 20px;
            pointer-events: none;
        }

        &::after {
            content: '';
            display: inline-block;
            width: 150px;
            height: 150px;
            border-right: 1px dashed #1DA163;
            border-bottom: 1px dashed #1DA163;
            border-width: 2px;
            position: absolute;
            bottom: 20px;
            right: 20px;
            pointer-events: none;
        }

        .small-div {
            width: 20px;
            height: 20px;
            background-color: #1DA163;
            position: absolute;
            top: 0;
            left: 0;

            &:last-child {
                top: auto;
                left: auto;
                right: 0;
                bottom: 0;
            }
        }

        h3 {
            font-size: 30px;
            margin-bottom: 12px;
            font-weight: 600;
            color: var(--primary-color);
        }

        h6 {
            font-size: 20px;
            margin-bottom: 4px;
            font-weight: 500;
        }

        p {
            font-size: 18px;
            margin-bottom: 0;
        }

        .social {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-top: 12px;

            span {
                display: inline-block;
                width: 30px;
                height: 30px;
                border-radius: 10px;
                text-align: center;
                align-content: center;
                color: #565656;
                background-color: #efefef;
                cursor: pointer;
            }
        }
    }
}


/* ================================ 
Faq & testimonials section 
=================================== */

.faq-ul {
    .accordion-item {
        box-shadow: 4px 4px 0 0 #005FAE80;
        margin-bottom: 15px;
        border: 1px solid var(--primary-color);
        border-radius: 5px;
    }

    .accordion-button {
        font-size: 18px;
        display: flex;
        align-items: flex-start;
    }

    .accordion-button:not(.collapsed) {
        background: var(--primary-color);
        font-size: 18px;
        font-weight: 600;
        color: var(--white-color);

    }

    .accordion-body {
        font-size: 14px;
        background-color: var(--primary-color);
        color: var(--white-color);
    }

    .accordion-button::after {
        content: '\EA67';
        font-family: 'remixicon';
        background-image: none;
        font-size: 20px;
        transform: none;
        color: var(--primary-color);
    }



    .accordion-button:not(.collapsed)::after {
        background-image: none;
        transform: none;
        color: var(--white-color);
    }

    .ul-test {
        p {
            font-size: 15px;
            line-height: 24px;
            text-align: justify;
        }

        .test-contain {
            padding: 20px 24px;
            position: relative;
            border-radius: 10px;
            border: 5px solid #1DA163;

            .star {
                font-size: 24px;
                display: flex;
                align-items: center;
                gap: 6px;
                color: #F8B805;
                margin-bottom: 24px;
            }

            p {
                font-weight: 500;
                line-height: 24px;
                font-style: italic;
            }

            .test-icon {
                position: absolute;
                top: 0px;
                right: 20px;
            }
        }
    }
}


/* ================================ 
Gallery section 
=================================== */
.gallery {
    background: url("../images/gallery/gallery-bg.png") no-repeat center center;
    background-size: cover;
    width: 100%;
}


.contact {
    .icon-contain {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid #101010;
        text-align: center;
        align-content: center;
        margin-right: 16px;

    }

    strong {
        color: #1DA163;
    }

    .input-group {
        min-height: 60px;

        .input-group-text {
            font-size: 18px;
        }

        .form-control {
            padding-left: 0;
        }
    }
}



footer {

    .footer-icon {
        img {
            height: 40px;
        }
    }

    .footer-section h5 {
        font-weight: 500;
        margin-bottom: 10px;
        font-size: 22px;
        color: var(--navy-color);
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 5px;
    }

    .footer-section ul li a {
        text-decoration: none;
        color: #1e1e1e;
        font-size: 13px;
        display: flex;
        align-items: center;

        &::before {
            content: '';
            width: 8px;
            height: 8px;
            background-color: var(--navy-color);
            margin-right: 12px;
            border-radius: 50%;
        }
    }

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

    p {
        font-size: 15px;
        color: var(--navy-color);

        span {
            font-size: 15px;
            margin-bottom: 5px;
            color: #1DA163;
            text-transform: uppercase;
            display: block;
        }
    }

    .copy-right {
        padding: 20px;
        text-align: center;
        background-color: #00000026;

        a {
            color: #1DA163;
        }
    }
}



/* Contact Us */
.boxShadow {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}

.contact {
    p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 8px;
    }

}

.message-panel {
    .contactForm label {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .contactForm input,
    .contactForm select,
    .contactForm textarea {
        min-height: 50px;
        border-radius: 0.5rem;
        /* padding-left: 1.5rem; */
    }

    .contactDetails {
        border-radius: 1rem;
        background: var(--bg-color);
        padding: 1rem;
        position: relative;
        margin-left: -4rem;
    }

    .contactDetails iframe {
        display: block;
    }
}



.inner-nav-contain {
    position: sticky;
    top: 30px;
    z-index: 99;
    background: #1da163;
    padding: 12px;
    border-radius: 1rem;
    box-shadow: 0 5px 15px 6px rgb(29 161 99 / 10%);
    h4 {
        padding: 10px 14px;
        background-color: var(--yellow-color);
        color: #2f3438;
        font-size: 20px;
        font-weight: 700;
        border-radius: 10px 10px 0 0;
    }
    ul {
        background-color: var(--white-color);
        border-radius: 0 0 10px 10px;
        margin-bottom: 0 !important;
        li{
            margin: 0 !important;
            
            &:before{
                display: none;
            }
            a {
            font-weight: 500;
            padding: 10px 16px;
            border-bottom: 1px solid #e1f3ea;
            transition: all 0.2s ease-in-out;
            font-size: 15px;
            position: relative;
            display: flex;
            align-items: center;
            padding-left: 2rem;
            color: #121212;
            transition: all 0.3s ease-out;
                &:before {
                    content: '\EA6B';
                    font-family: 'remixicon';
                    position: absolute;
                    left: 10px;
                    font-size: 16px;
                    color: var(--primary-color);
                }
                &:hover{
                    padding-left: 2.15rem;
                }
            }
            &:last-child a {
                border: 0;
            }
        }
    }
}



.inner-nav-contain ul li a:hover {
    background-color: var(--hover-bg);
}

.dt-buttons .btn {
    margin-right: 6px;
}

.dt-buttons .btn i {
    margin-right: 4px;
}

table.table-bordered.dataTable th {
    color: var(--white-color) !important;
    background-color: var(--primary-color) !important;
}

table.table-bordered.dataTable td {
    font-size: 15px;

}

div.dataTables_wrapper div.dataTables_filter input {
    box-shadow: none;
}

table.dataTable.table-striped>tbody>tr.odd>* {
    box-shadow: inset 0 0 0 9999px rgb(235, 239, 242) !important;
}



.about-sec{
    ul{
        margin-bottom: 1rem;
        li{
            margin-bottom: 7px;
            position: relative;
            &:before{
                position: absolute;
                left: -1.5rem;
                top: 0;
                content: '\EB79';
                font-family: "remixicon";
                color: var(--primary-color);
            }
        }
    }
    ol{
        margin-bottom: 1rem;
        li{
            margin-bottom: 7px;
        }
    }
}



.galleryListMain {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    background-color: var(--bs-gray-200);
    .upperBox {
        aspect-ratio: 2 / 1.2;
        position: relative;
        display: block;
        overflow: hidden;
        .timePt {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            margin: auto;
            border-radius: 3rem;
            font-size: 12px;
            display: inline-table;
        }
    }
    /* h3 {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    } */
    p {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-weight: 700;
    }
}

/* Gallery */
.galleryBox {
    aspect-ratio: 2 / 1.5;
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    &:after {
        content: "";
        position: absolute;
        left: 20px;
        top: 20px;
        bottom: 20px;
        right: 20px;
        border: 6px double var(--white-color);
    }
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .bottomPart {
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
        opacity: 1;
        transition: 0.3s
    }
    .zoom {
        position: absolute;
        width: 50px;
        height: 50px;
        line-height: 50px;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        box-shadow: 0 0 0 3px rgb(0 0 0 / .3);
        font-size: 20px;
        text-align: center;
        border-radius: 1rem;
        opacity: 0
    }
    &:hover .zoom {
        opacity: 1;
        z-index: 5;
    }

}






@media (max-width: 1528px) {

    .top-header {
        span {
            width: 190px;
        }
    }

    header {
        .header-text {
            margin-left: 5rem;
        }

        .header-logo {
            height: 70px;
        }
    }

    .navbar {
        .nav-link {
            font-size: 18px;
            margin: 0 12px;
        }
    }

    .banner {
        .container-fluid {
            .inner-contain {
                .menu-conain {
                    li {
                        a {
                            padding: 10px 16px;
                            width: 278px;
                            font-size: 15px;
                        }
                    }
                }
            }
        }
    }

    .banner {
        .banner-main {
            width: 75%;
        }

        .side-nav {
            width: 20%;
        }

        .banner-img {
            height: 500px;
            object-fit: contain;
            width: 100%;
        }
    }

    .oth-link {
        .inner-contain {
            p {
                font-size: 14px;
            }
        }
    }
}


@media (max-width: 1440px) {
    .container-fluid {
        width: calc(100% - 50px);
        margin-left: 25px;
        margin-right: 25px;
    }

    .top-header {
        p {
            font-size: 14px;
        }
    }

    .navbar {
        .nav-link {
            font-size: 17px;
        }
    }

    .banner {
        .container-fluid {
            .banner-main {
                width: 77%;
            }
        }
    }

}

@media (max-width: 1366px) {
    header {
        .header-text {
            margin-left: 2.5rem;

            h3 {
                font-size: 22px;
            }
        }

        .upper-nav {
            li {
                a {
                    font-size: 14px;
                }
            }
        }
    }

    .navbar {
        .nav-link {
            font-size: 16px;
        }
    }

    .banner {
        .container-fluid {
            .banner-img {
                height: 500px;
            }
        }
    }

    .oth-link {
        .inner-contain {
            .img-contain {
                width: 50px;
                height: 50px;
            }

            p {
                font-size: 12px;
                line-height: 20px;
            }
        }
    }

    .achievement {
        .inner-contain {
            h4 {
                color: var(--navy-color);
                margin-bottom: 0;
                font-size: 16px;
                margin-top: 10px;
            }
        }
    }
}