* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #333;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
}

:root {

    --primary: #0f4c81;
    --secondary: #d89b2b;
    --dark: #1b1b1b;
    --light: #ffffff;
    --gray: #f5f5f5;

}

/* Top Header */
.top-header {

    background: #7b5b47;

    color: #fff;

    padding: 10px 0;

    font-size: 14px;

}

.top-header .container-fluid {

    padding-left: 35px;

    padding-right: 35px;

}

.top-header a {

    color: white;

    margin-left: 15px;

}

/*==========================================
            HEADER
==========================================*/

.main-header {

    position: relative;

    width: 100%;

    background: #fff;

}

/* Logo Area */

.header-logo-area {

    background: #6f90aa url("../images/bg-top.png") right center no-repeat;

    background-size: auto 100%;

    min-height: 130px;

    display: flex;

    align-items: center;

}

.header-logo-area .container-fluid {

    padding: 0 30px;

}

.logo img {

    height: 100px;

}

/*==========================================
            MENU
==========================================*/

.header-navbar {
    background: #f3dfbd;
    min-height: 30px;
    padding: 0 !important;
}

.header-navbar .container-fluid {

    display: flex;

    align-items: center;

    justify-content: space-between;
    padding: 0 !important;

}

.navbar-collapse {

    justify-content: center;

}

.navbar-nav {

    display: flex;

    align-items: center;

    gap: 8px;

    margin: auto;

}

.nav-item {

    position: relative;

}

.nav-link {

    color: #222;

    font-size: 15px;

    font-weight: 600;

    padding: 8px 10px !important;

    white-space: nowrap;

}

.nav-link:hover {

    color: #d89b2b;

}


@media(max-width:991px) {

    .header-logo-area {

        min-height: 90px;

    }

    .logo img {

        height: 65px;

    }


    .header-navbar {

        min-height: 0 !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;

    }

    .navbar {

        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;

    }

    .navbar-collapse {

        background: #f3dfbd;
        margin-top: 0;
        border-radius: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .12);

    }

    .collapse:not(.show) {

        display: none !important;

    }

    .navbar-nav {

        padding: 0 0;

    }

    .nav-link {

        padding: 12px 20px;

    }

    .navbar-toggler {

        border: none;

        box-shadow: none;

        background: #fff;

        border-radius: 6px;

        padding: 8px 12px;
        border: 1px solid #ddd;

    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833,37,41,.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

.dropdown-menu {

    border-top: 3px solid #fda21d;

    border-radius: 0;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);

    padding: 0 0;

}

.dropdown-item {

    padding: 12px 22px;

    font-weight: 500;

}

.dropdown-item:hover {

    background: #0b4559;

    color: #fff;

}

@media(min-width:992px) {

    .dropdown:hover>.dropdown-menu {

        display: block;

        margin-top: 0;

    }

}


/*==========================================
        Appointment Button
==========================================*/

.appointment-btn {

    margin-left: auto;

    background: #222;

    color: #fff;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 4px 28px;

    min-height: 30px;
    border-radius: 50px 0 0 50px;


}

.appointment-btn i {

    font-size: 26px;

}

.appointment-btn strong {

    display: block;

    font-size: 15px;

}

.appointment-btn small {

    display: block;

    color: #d89b2b;

}

.appointment-btn:hover {

    color: #fff;

    text-decoration: none;

}

/* Hero Slider */
.hero {

    position: relative;

}

.hero img {

    width: 100%;

    height: 650px;

    object-fit: cover;

}

.hero-content {

    position: absolute;

    left: 8%;

    top: 50%;

    transform: translateY(-50%);

    max-width: 600px;

    color: white;

}

.hero-content h5 {

    font-size: 28px;

    color: #ffc107;

    margin-bottom: 20px;

}

.hero-content h1 {

    font-size: 55px;

    font-weight: 800;

    line-height: 1.2;

}

.hero-content span {

    color: #ffc107;

}

.hero-content p {

    font-size: 20px;

    margin: 25px 0;

}

.hero-content .btn-warning {
    background: #fff !important;
    border: #fff;
    margin-right: 10px;
    padding: 10px 20px;
    border-radius: 15px 15px 15px 0;
    transition: 0.5s;
}

.hero-content .btn-warning:hover {
    background: #0b4559 !important;
    color: #fff;
}

.hero::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, .45);

    z-index: 1;

}

.hero-content {

    z-index: 2;

}

.hero .swiper-button-next,
.hero .swiper-button-prev {

    width: 55px;
    height: 55px;

    background: rgba(255, 255, 255, .85);

    border-radius: 50%;

    color: #0f4c81;

    transition: .3s;

}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {

    background: #d89b2b;

    color: #fff;

}

.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {

    font-size: 20px;
    font-weight: bold;

}

/* Notice Bar */
.notice-bar1 {

    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;

}

.notice-bar {

    display: flex;
    align-items: center;
    width: 100%;
    background: #f0ece9;
    overflow: hidden;

}

.notice-title {

    background: #6e3508;
    color: #fff;

    font-weight: 600;

    font-size: 17px;

    padding: 15px 30px;

    white-space: nowrap;

    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0 30px 30px 0;

}

.notice-scroll {

    flex: 1;

    background: #f0ece9;

    color: #171717;

    padding: 15px 10px;

    font-size: 16px;

    font-weight: 500;

}

.notice-scroll marquee {

    margin: 0;

}

/* Admission & News Section */

/*==========================================
    PART 2A
    Admission Banner + News Panel
==========================================*/

.admission-news {
    padding: 70px 0;
    background: #f7f9fc;
}

/*==========================
    Admission Banner
==========================*/

.admission-card {
    position: relative;
    height: 460px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
}

.admission-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.admission-card:hover img {
    transform: scale(1.08);
}

.admission-card::before {
    content: "";
    position: absolute;
    inset: 0;
}

/*==========================
      News Panel
==========================*/

.news-card {

    background: #fff;

    height: 460px;

    border-radius: 22px 22px 22px 0;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    display: flex;

    flex-direction: column;
    border: 2px solid #d5e5ea;

}

.news-header {

    background: #0c4759;

    color: #fff;

    padding: 18px 22px;

    flex-shrink: 0;

}

.news-header h4 {

    margin: 0;

    font-size: 22px;

    font-weight: 600;

}

.news-header i {

    margin-right: 8px;

}

.news-container {

    position: relative;

    height: 390px;

    overflow: hidden;

}

.news-list {

    position: absolute;

    width: 100%;

    left: 0;

    top: 0;

}

.news-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px 18px;

    background: #fff;

    border-bottom: 1px solid #ececec;

    transition: .3s;

}

.news-item:hover {

    background: #f8f9fa;

}

.news-date {

    width: 65px;

    min-width: 65px;

    height: 65px;

    border-radius: 12px;

    background: #d89b2b;

    color: #fff;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    font-weight: 700;

}

.news-date span {

    font-size: 24px;

    line-height: 24px;

}

.news-content {

    flex: 1;

}

.news-content h5 {

    margin: 0 0 6px;

    color: #0c4759;

    font-size: 17px;

    font-weight: 600;

}

.news-content p {

    margin: 0;

    color: #666;

    font-size: 14px;

    line-height: 1.45;

}

.news-content a {

    color: #0f4c81;

    font-weight: 600;

}

.news-content a:hover {

    color: #d89b2b;

}

/*==========================
        Hover Effect
==========================*/

.news-item:hover .news-date {

    transform: scale(1.08);

    transition: .3s;

}

/*==========================
        Scroll Fade
==========================*/

.news-container::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 25px;

    background: linear-gradient(#fff, transparent);

    z-index: 5;

    pointer-events: none;

}

.news-container::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 25px;

    background: linear-gradient(transparent, #fff);

    z-index: 5;

    pointer-events: none;

}

/*==========================
      Responsive
==========================*/

@media(max-width:991px) {

    .admission-card,
    .news-card {

        height: auto;

    }

    .admission-card {

        min-height: 350px;

    }

    .news-container {

        height: 350px;

    }

}

@media(max-width:768px) {

    .admission-news {

        padding: 50px 0;

    }

    .admission-card {

        min-height: 280px;

    }

    .news-header h4 {

        font-size: 18px;

    }

    .news-item {

        padding: 12px;

        gap: 12px;

    }

    .news-date {

        width: 55px;

        min-width: 55px;

        height: 55px;

    }

    .news-date span {

        font-size: 20px;

    }

    .news-content h5 {

        font-size: 15px;

    }

    .news-content p {

        font-size: 13px;

    }

}

/* Latest Video Reels */

.video-section {

    background: #fff;

}

.section-heading {

    text-align: center;

    margin-bottom: 50px;

}

.section-heading h2 {

    font-size: 38px;

    font-weight: 500;

    color: #0f4c81 !important;

}

.section-heading p {

    color: #666;

}

.video-card {

    background: #fff;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .3s;

}

.video-card:hover {

    transform: translateY(-8px);

}

.video-card iframe {

    width: 100%;

    height: 220px;

    border: none;

}

.video-card h5 {

    padding: 20px;

    text-align: center;

    font-weight: 600;

}

/*=================================
        Latest Video
=================================*/

.latest-video {

    padding: 80px 0;

    background: #ffffff;

}

.video-content {

    padding-right: 40px;

}

.section-subtitle {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #d89b2b;

    text-transform: uppercase;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;

}

.section-subtitle::after {

    content: "";

    width: 60px;

    height: 2px;

    background: #d89b2b;

}

.video-content h2 {

    font-size: 48px;

    font-weight: 700;

    color: #222;

    line-height: 1.15;

    margin-bottom: 25px;

}

.video-content h2 span {

    color: #f0a51b;

}

.video-content p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 35px;

    font-size: 16px;

}

.btn-video {

    background: #f0a51b;

    color: #fff;

    padding: 14px 35px;

    border-radius: 40px;

    font-weight: 600;

    transition: .4s;

}

.btn-video:hover {

    background: #0b4559;

    color: #fff;

    transform: translateY(-3px);

}

.video-box {

    position: relative;

    overflow: hidden;

    border-radius: 35px 35px 35px 0;

    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);

}

.video-box img {

    width: 100%;

    height: 430px;

    object-fit: cover;

    transition: .6s;

}

.video-box:hover img {

    transform: scale(1.08);

}

.play-btn {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 90px;

    height: 90px;

    background: #f0a51b;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    font-size: 30px;

    transition: .3s;

    text-decoration: none;

    z-index: 2;

}

.play-btn:hover {

    background: #0b4559;

    color: #fff;

}

.play-btn::before {

    content: "";

    position: absolute;

    width: 90px;

    height: 90px;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, .6);

    animation: pulse 2s infinite;

}

@keyframes pulse {

    0% {

        transform: scale(1);

        opacity: 1;

    }

    100% {

        transform: scale(1.8);

        opacity: 0;

    }

}




/*==================================================
            TESTIMONIALS SECTION
==================================================*/

.testimonials {

    padding: 30px 0 0 0;

    background: url('../images/bg-testimonials.jpg');
    background-size: 100% auto;

    position: relative;

    overflow: hidden;

}



/*======================================
            Heading
======================================*/

.section-heading {

    text-align: center;

    margin-bottom: 60px;

}

.sub-title {

    color: #f0a51b;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    display: inline-block;

    margin-bottom: 15px;

}

.section-heading h2 {

    color: #fff !important;

    font-size: 48px;

    font-weight: 700;

    margin-bottom: 20px;

}

.section-heading p {

    color: rgba(255, 255, 255, .85);

    max-width: 650px;

    margin: auto;

    line-height: 1.8;

}

/*======================================
            Slider
======================================*/

.testimonial-slider {

    overflow: hidden;

    width: 100%;

    position: relative;

}

.testimonial-track {

    display: flex;

    gap: 30px;

    transition: transform .7s ease;

    will-change: transform;

}

/*======================================
            Card
======================================*/

.testimonial-card {

    flex: 0 0 calc((100% - 90px) / 3);

    max-width: calc((100% - 90px) / 3);

    background: #fff;

    border-radius: 22px 22px 22px 0;

    padding: 15px;

    border-bottom: 3px solid #f0a51b;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);

    transition: .4s;

}

.testimonial-card:hover {

    transform: translateY(-8px);

}

.stars {

    color: #FFC107;

    font-size: 22px;

    margin-bottom: 5px;

    letter-spacing: 3px;

}

.testimonial-card p {

    color: #666;

    line-height: 1.7;

    font-size: 15px;

    margin-bottom: 30px;

    min-height: 110px;

}

/*======================================
            User
======================================*/

.testimonial-user {

    display: flex;

    align-items: center;

    gap: 15px;

}

.testimonial-user img {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    object-fit: cover;

    border: 3px solid #f0a51b;

}

.testimonial-user h5 {

    margin: 0;

    font-size: 18px;

    color: #0f4c81;

    font-weight: 600;

}

.testimonial-user span {

    color: #777;

    font-size: 14px;

}

/*======================================
        Navigation Buttons
======================================*/

.testimonial-btn {

    width: 50px;

    height: 50px;

    border: none;

    border-radius: 50%;

    background: #f0a51b;

    color: #fff;

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    cursor: pointer;

    transition: .3s;

    z-index: 10;

}

.testimonial-btn:hover {

    background: #fff;

    color: #0f4c81;

}

.testimonial-prev {

    left: 10px;

}

.testimonial-next {

    right: 10px;

}

/*======================================
            Dots
======================================*/

.testimonial-dots {

    margin-top: 45px;
    margin-bottom: 50px;
    display: flex;

    justify-content: center;

    gap: 12px;

}

.testimonial-dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .35);

    cursor: pointer;

    transition: .3s;

}

.testimonial-dot.active {

    background: #f0a51b;

    width: 32px;

    border-radius: 20px;

}

/*======================================
        Tablet
======================================*/

@media(max-width:991px) {

    .testimonial-card {

        flex: 0 0 calc((100% - 30px) / 2);

        max-width: calc((100% - 30px) / 2);

    }

    .section-heading h2 {

        font-size: 38px;

    }

}

/*======================================
        Mobile
======================================*/

@media(max-width:767px) {

    .testimonials {

        padding: 70px 0;

    }

    .section-heading {

        margin-bottom: 40px;

    }

    .section-heading h2 {

        font-size: 30px;

    }

    .testimonial-card {

        flex: 0 0 100%;

        max-width: 100%;

    }

    .testimonial-card p {

        min-height: auto;

    }

    .testimonial-prev,

    .testimonial-next {

        display: none;

    }

}



/*=================================
        ASSOCIATIONS
==================================*/

.association-section {

    padding: 0 0 30px 0;

    background: #fff;

}

.association-section .section-title {

    margin-bottom: 20px;

}

.association-section .sub-title {

    margin-bottom: 0;

}

.association-section h2 {

    margin: 0;

}

.association-section .section-title span {

    color: #d89b2b;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;

}

.association-section .section-title h2 {

    font-size: 42px;

    font-weight: 700;

    color: #0f4c81;

    margin-top: 10px;

}

.logo-slider {

    overflow: hidden;

    position: relative;

}

.logo-track {

    display: flex;

    align-items: center;

    gap: 70px;

    width: max-content;

    animation: logoScroll 35s linear infinite;

}

.logo-slider:hover .logo-track {

    animation-play-state: paused;

}

.logo-item {

    width: 180px;

    height: 90px;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .4s;

}

.logo-item img {

    max-width: 100%;

    max-height: 80px;

    filter: grayscale(100%);

    opacity: .7;

    transition: .4s;

}

.logo-item:hover {

    transform: translateY(-8px);

}

.logo-item:hover img {

    filter: none;

    opacity: 1;

}

@keyframes logoScroll {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}

/* Google Map */
.map-section {

    margin: 0;

    padding: 0;

}



/*=====================================================
                FOOTER
======================================================*/

.footer {

    background: #222831;

    color: #d9d9d9;

    position: relative;

    overflow: hidden;

    font-size: 15px;

}

/* Left Pillar */

.footer-pillar-left {
    position: absolute;

    left: 0;

    top: 0;

    z-index: 2;

}

/* Right Pillar */

.footer-pillar-right {

    position: absolute;

    right: 0;

    top: 0;

    z-index: 2;

}

.footer a {

    color: #d9d9d9;

    text-decoration: none;

    transition: .35s;

}

.footer a:hover {

    color: #d89b2b;

}

.footer-pillar img {

    width: 100%;

    height: auto;

    display: block;

}

/* Footer Content */

.footer-top,
.footer-middle,
.footer-bottom {

    position: relative;

    z-index: 5;

}

/* Keep content away from pillars */

.footer .container {

    max-width: 1320px;

    padding-left: 160px;

    padding-right: 160px;
    padding-top: 0;
    padding-bottom: 0;

}

/* Desktop */

@media(min-width:1600px) {

    .footer-pillar img {

        width: 140px;

    }

    .footer .container {

        max-width: 1450px;

        padding-left: 150px;

        padding-right: 150px;

    }

}

/* Laptop */

@media(max-width:1200px) {

    .footer-pillar img {

        width: 90px;

    }

    .footer .container {

        padding-left: 100px;

        padding-right: 100px;

    }

}

/* Tablet */

@media(max-width:991px) {

    .footer-pillar {

        display: none;

    }

    .footer .container {

        padding-left: 15px;

        padding-right: 15px;

    }

}

/*=====================================================
                FOOTER TOP
======================================================*/

.footer-top {

    padding: 40px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.footer-top-box {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    transition: .35s;

}

.footer-top-box:hover {

    transform: translateY(-4px);

}

.footer-top-box i {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(216, 155, 43, .12);

    color: #d89b2b;

    font-size: 24px;

    flex-shrink: 0;

}

.footer-top-box h5 {

    color: #fff;

    font-size: 24px;

    margin-bottom: 6px;

    font-weight: 700;

}

.footer-top-box p {

    margin: 0;

    color: #c8c8c8;

    font-size: 15px;

}

/*=====================================================
                MAIN FOOTER
======================================================*/

.footer-middle {

    padding: 60px 0;

}

.footer-logo img {

    max-width: 280px;

    margin-bottom: 25px;

}

.footer-desc {

    color: #cfcfcf;

    line-height: 1.9;

    margin-bottom: 30px;

}

/*=====================================================
                CONTACT
======================================================*/

.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;

    line-height: 1.7;

}

.footer-contact i {

    color: #d89b2b;

    margin-top: 4px;

    width: 18px;

}

/*=====================================================
                SOCIAL ICONS
======================================================*/

.social-links {

    display: flex;

    gap: 12px;

    margin-top: 30px;

}

.social-links a {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(255, 255, 255, .08);

    color: #fff;

    font-size: 16px;

    transition: .35s;

}

.social-links a:hover {

    background: #d89b2b;

    color: #fff;

    transform: translateY(-5px);

}

/*=====================================================
                FOOTER TITLE
======================================================*/

.footer h4 {

    color: #fff;

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 28px;

    position: relative;

    padding-bottom: 12px;

}

.footer h4::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 60px;

    height: 3px;

    background: #d89b2b;

    border-radius: 10px;

}

/*=====================================================
                FOOTER LINKS
======================================================*/

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-links li {

    margin-bottom: 12px;

    padding-bottom: 10px;

    border-bottom: 1px dashed rgba(255, 255, 255, .08);

}

.footer-links li:last-child {

    border: none;

}

.footer-links a {

    display: block;

    color: #d8d8d8;

    transition: .3s;

}

.footer-links a:hover {

    padding-left: 8px;

    color: #d89b2b;

}

/*=====================================================
            CONTACT INFO LIST
======================================================*/

.contact-info li {

    display: flex;

    gap: 12px;

    align-items: flex-start;

}

.contact-info i {

    color: #d89b2b;

    margin-top: 4px;

    width: 18px;

}

/*=====================================================
            NEWSLETTER BOX (Optional)
======================================================*/

.footer-newsletter {

    margin-top: 25px;

}

.footer-newsletter input {

    width: 100%;

    border: none;

    outline: none;

    padding: 14px 18px;

    border-radius: 50px;

    background: #2f3743;

    color: #fff;

    margin-bottom: 12px;

}

.footer-newsletter button {

    width: 100%;

    border: none;

    padding: 14px;

    border-radius: 50px;

    background: #d89b2b;

    color: #fff;

    font-weight: 600;

    transition: .3s;

}

.footer-newsletter button:hover {

    background: #0f4c81;

}


/*=====================================================
                FOOTER BOTTOM
======================================================*/

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 22px 30px;

    background: #1c222b;

}

.footer-bottom p {

    margin: 0;

    color: #cfcfcf;

    font-size: 15px;

}

.footer-bottom a {

    color: #d89b2b;

    font-weight: 600;

}

.footer-bottom a:hover {

    color: #fff;

}

/*=====================================================
            SCROLL TO TOP
======================================================*/

.scroll-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 50px;

    height: 50px;

    background: #d89b2b;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    text-decoration: none;

    font-size: 18px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .35s;

    z-index: 999;

}

.scroll-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.scroll-top:hover {

    background: #0f4c81;

    color: #fff;

    transform: translateY(-5px);

}

/*=====================================================
            HOVER EFFECT
======================================================*/

.footer-links li {

    transition: .3s;

}

.footer-links li:hover {

    padding-left: 8px;

}

.footer-contact li {

    transition: .3s;

}

.footer-contact li:hover {

    transform: translateX(6px);

}

.contact-info li {

    transition: .3s;

}

.contact-info li:hover {

    transform: translateX(6px);

}

.footer-top-box {

    position: relative;

}

.footer-top-box::after {

    content: "";

    position: absolute;

    left: 78px;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #d89b2b;

    transition: .4s;

}

.footer-top-box:hover::after {

    width: 80px;

}

/*=====================================================
            RESPONSIVE
======================================================*/

@media(max-width:1199px) {

    .footer-middle {

        padding: 20px 0;

    }

    .footer-logo img {

        max-width: 180px;
        margin-bottom: 7px;
    }
.footer-desc {

    color: #cfcfcf;

    line-height: 1.6;

    margin-bottom: 0;
    font-size:14px;

}
}

@media(max-width:991px) {

    .footer-top {

        padding: 35px 0;

    }

    .footer-top-box {

        margin-bottom: 25px;

    }

    .footer h4 {

        margin-top: 0;

    }

    .footer-bottom {

        text-align: center;
        padding: 3px 3px 3px 3px;

    }

    .footer-bottom .text-md-end {

        text-align: center !important;

        margin-top: 0;

    }
.footer-bottom p {

    margin: 0;

    color: #cfcfcf;

    font-size: 14px;

}
}

@media(max-width:767px) {

    .footer {

        text-align: center;

    }

    .footer-top-box {

        flex-direction: column;

        align-items: center;

    }

    .footer-top-box::after {

        display: none;

    }

    .footer-contact li,

    .contact-info li {

        justify-content: center;

        text-align: center;

    }

    .social-links {

        justify-content: center;
    margin-top: 15px;
    }

    .footer h4::after {

        left: 50%;

        transform: translateX(-50%);

    }

    .footer-links li {
width:50%; float:left;
        padding-bottom: 5px;
    margin-bottom: 5px;
    }
    .footer-links1 li {
width:100%; float:left;
        padding-bottom: 5px;
    margin-bottom: 5px;
    font-size:14px;
    }
.footer-links li:last-child {

    border-bottom: 1px dashed rgba(255, 255, 255, .08);

}    
    .scroll-top {

        right: 15px;

        bottom: 15px;

        width: 45px;

        height: 45px;

    }

}

@media all and (max-width: 768px),
only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px),
only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (min-resolution: 192dpi) and (max-width: 1024px),
only screen and (min-resolution: 2dppx) and (max-width: 1024px) {


    .hero-content {

        position: absolute;

        left: 8%;

        top: 50%;

    }

    .hero-content h5 {

        font-size: 18px !important;

        color: #ffc107;

        margin-bottom: 20px;

    }

    .hero-content h1 {

        font-size: 25px !important;

        font-weight: 800;

        line-height: 1.2;

    }

    .hero-content p {

        font-size: 20px;

        margin: 15px 0 !important;

    }

    .hero-content .btn-warning {
        background: #fff !important;
        border: #fff;
        margin-right: 10px;
        margin-top: 20px;
        padding: 10px 20px;
        border-radius: 15px 15px 15px 0;
        transition: 0.5s;
    }

    .hero-content .btn-warning:hover {
        background: #0b4559 !important;
        color: #fff;
    }

    .hero .swiper-button-next,
    .hero .swiper-button-prev {

        width: 35px;
        height: 35px;

        background: rgba(255, 255, 255, .85);

        border-radius: 50%;

        color: #0f4c81;

        transition: .3s;

    }

    .hero .swiper-button-next::after,
    .hero .swiper-button-prev::after {

        font-size: 12px;
        font-weight: bold;

    }
    .notice-title {
width:10%;
float:left;
    background: #f0ece9;
    font-weight: 600;
    font-size: 17px;
    padding: 0 30px 15px 30px;
    margin-top:-20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    color:#6e3508;

}
.notice-scroll {
width:100%;
float:left;

    flex:1;

    background: none;

    color: #171717;

    padding: 15px 0;

    font-size: 15px;

    font-weight: 500;
    margin:30px 0 0 0;

}

.notice-scroll marquee {

    margin: 0;

}
.footer h4 {

    color: #fff;

    font-size: 22px;

    font-weight: 700;

    margin:0 0 18px 0;

    position: relative;

    padding:0 0 12px 0;

}
.footermar{margin:20px 0 0 0; padding:0}
.footermar1{background:red; margin:10px 0; padding:0}
}

/*=====================================================
        OPTIONAL FADE ANIMATION
======================================================*/

.footer-top-box,
.footer-links li,
.social-links a {

    transition: all .35s ease;

}


.sticky-divi-button {
    z-index: 10;
    position: fixed;
    bottom: 20%;
    right: 0px;
}

.sticky-divi-button:hover {
    color: #dcbf73;
}

.sticky-divi-button1 {
    z-index: 10;
    position: fixed;
    bottom: 12%;
    right: 0px;
}

.sticky-divi-button1:hover {
    color: #dcbf73;
}

.instagram-reels{
    padding:70px 0;
    background:#f8f9fb;
    overflow:hidden;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title span{
    color:#E1306C;
    font-weight:600;
}

.section-title h2{
    font-size:36px;
    color:#16355c;
}

.reels-slider{
    overflow:hidden;
    position:relative;
}

.reels-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:scrollReels 30s linear infinite;
}

.reels-slider:hover .reels-track{
    animation-play-state:paused;
}

.reel-card{
    width:220px;
    height:390px;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    flex-shrink:0;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.reel-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.reel-card:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.overlay i{
    color:#fff;
    font-size:45px;
}

.reel-card:hover .overlay{
    opacity:1;
}

@keyframes scrollReels{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

    .reel-card{
        width:160px;
        height:285px;
    }

    .section-title h2{
        font-size:28px;
    }

}


.quote-section{
    width:100%;
    overflow:hidden;
    background: #f5f5f5;
    padding:50px 0!important;

}

.quote-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:scrollLeft 30s linear infinite;
}

.quote-section:hover .quote-track{
    animation-play-state:paused;
}

@keyframes scrollLeft{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:768px){



}