@import url('https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i');

body {
    font-family: 'Rubik', sans-serif;
    color: var(--ms-text);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --dark-blue: #102131;
    --yellow: #FDDD77;
    --white: #ffffff;
    --text-light: #dce5ea;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
}

a {
    text-decoration: none;
    color: #000;
}

ul {
    padding: 0px;
    margin: 0;
}

ul li {
    list-style: none;
}

p {
    font-size: 16px;
    margin-bottom: 0px;
    text-align: justify;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 0px;
    /* font-weight: 600; */
}







/* section css */
section {
    padding: 50px 0px;
}




@media screen and (max-width: 767px) {
    p {
        font-size: 12px;
    }

    section {
        padding: 20px 0px;
    }


}


/* section css */

/* footer css */
.footer {
    padding: 50px 0px;

}

@media screen and (max-width: 767px) {
    .footer {
        padding: 20px 0px;
    }
}

/* footer css */







/* ================= FLOATING CONTACT ICONS ================= */
.floating-contact-icons {
    position: fixed;
    right: 22px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floating-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    transition: all 0.35s ease;
    position: relative;
}

.floating-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: pulseRing 2s infinite;
    opacity: 0.35;
}

.whatsapp-icon {
    background: #25d366;
}

.whatsapp-icon::before {
    background: #25d366;
}

.mail-icon {
    background: var(--dark-blue);
}

.mail-icon::before {
    background: var(--dark-blue);
}

.floating-icon:hover {
    transform: translateY(-4px) scale(1.08);
    color: #fff;
}

.mail-icon:hover {
    background: var(--yellow);
    color: #000;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.35;
    }

    70% {
        transform: scale(1.45);
        opacity: 0;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .floating-contact-icons {
        right: 15px;
        bottom: 18px;
        gap: 10px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 21px;
    }
}

/* fixed icon css end */



/* ================= TOPBAR ================= */
.premium-topbar {
    background: linear-gradient(90deg, #0b1824 0%, #102131 50%, #162c42 100%);
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 999;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left a,
.topbar-left span {
    color: #ffffff;
    margin-right: 20px;
    text-decoration: none;
    font-weight: 400;
}

.topbar-left i {
    color: var(--yellow);
    margin-right: 6px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-text {
    color: #d8e1e8;
    font-size: 13px;
    margin-right: 10px;
    letter-spacing: 0.3px;
}

.topbar-right a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    transition: 0.3s ease;
}

.topbar-right a:hover {
    background: var(--yellow);
    color: #000;
}

/* ================= HERO WRAPPER ================= */
.hero-main-wrapper {
    position: relative;
    overflow: hidden;
}

/* ================= NAVBAR ================= */
.premium-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    z-index: 1000;
    padding: 18px 0 !important;
    transition: all 0.4s ease;
}

.logo {
    width: 150px;
    background: #ffffff;
    /* border-radius: 10px; */
}

.premium-navbar .nav-link {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0 !important;
    position: relative;
    transition: 0.3s ease;
}

.premium-navbar .nav-link:hover,
.premium-navbar .nav-link.active {
    color: var(--yellow) !important;
}

.premium-navbar .nav-item {
    position: relative;
}

.premium-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: 0.35s ease;
}

.premium-navbar .nav-link:hover::after,
.premium-navbar .nav-link.active::after {
    width: 100%;
}

.premium-dropdown {
    border: none;
    border-radius: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.premium-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #102131 !important;
    transition: 0.3s ease;
}

.premium-dropdown .dropdown-item:hover {
    background: var(--yellow);
    color: #000 !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.nav-ul-active {
    font-weight: 600 !important;
    background: var(--yellow);
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--yellow);
    color: #000;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.35s ease;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    background: #fff0b0;
    color: #000;
    transform: translateY(-2px);
}

.custom-toggler {
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none !important;
}

.custom-toggler .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Navbar scroll effect */
.navbar-scrolled {
    position: fixed !important;
    background: rgba(16, 33, 49, 0.94) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.4s ease;
    padding: 14px 0 !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* ================= HERO ================= */
.premium-hero-slider,
.premium-hero-slider .carousel-inner,
.premium-hero-slider .carousel-item,
.hero-slide {
    min-height: 100vh;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16, 33, 49, 0.94) 0%, rgba(16, 33, 49, 0.82) 42%, rgba(16, 33, 49, 0.35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    z-index: 1;
    pointer-events: none;
}

.hero-glow-1 {
    width: 260px;
    height: 260px;
    background: rgba(253, 221, 119, 0.18);
    top: 16%;
    right: 10%;
    animation: glowFloat 6s ease-in-out infinite;
}

.hero-glow-2 {
    width: 180px;
    height: 180px;
    background: rgba(253, 221, 119, 0.14);
    bottom: 12%;
    left: 8%;
    animation: glowFloat 7s ease-in-out infinite;
}

@keyframes glowFloat {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-18px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding-top: 90px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(253, 221, 119, 0.12);
    border: 1px solid rgba(253, 221, 119, 0.35);
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--yellow);
}

.hero-content p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 30px;
}

.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-btn {
    min-width: 180px;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}

.hero-btn-primary {
    background: var(--yellow);
    color: #000;
    box-shadow: 0 12px 28px rgba(253, 221, 119, 0.2);
}

.hero-btn-primary:hover {
    background: #fff0b5;
    color: #000;
    transform: translateY(-3px);
}

.hero-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.hero-btn-outline:hover {
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.hero-mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-feature-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 500;
}

.hero-feature-box i {
    color: var(--yellow);
}

.hero-glass-card {
    position: relative;
    z-index: 3;
    max-width: 420px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 35px 30px;
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.hero-glass-card h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-glass-card ul {
    margin: 0 0 20px;
    padding-left: 18px;
}

.hero-glass-card ul li {
    color: #eef4f7;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.hero-glass-card a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
}

.hero-glass-card a i {
    margin-left: 8px;
    transition: 0.3s ease;
}

.hero-glass-card a:hover i {
    transform: translateX(6px);
}

/* ================= ARROWS ================= */
.custom-hero-arrow {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    opacity: 1;
    z-index: 5;
    margin: 0 20px;
    backdrop-filter: blur(8px);
}

.custom-hero-arrow span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.custom-hero-arrow:hover {
    background: rgba(253, 221, 119, 0.18);
}

/* ================= INDICATORS ================= */
.custom-indicators {
    z-index: 6;
    bottom: 24px;
}

.custom-indicators button {
    width: 28px !important;
    height: 6px !important;
    border-radius: 20px !important;
    border: none !important;
    background-color: rgba(255, 255, 255, 0.45) !important;
    margin: 0 6px !important;
}

.custom-indicators .active {
    background-color: var(--yellow) !important;
    width: 44px !important;
}

/* ================= FADE EFFECT ================= */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .logo {
        width: 130px;
    }
}

@media (max-width: 991px) {
    .premium-topbar {
        display: none;
    }

    .premium-navbar {
        background: rgba(16, 33, 49, 0.92) !important;
        backdrop-filter: blur(10px);
        position: relative;
        padding: 12px 0 !important;
    }

    .premium-navbar .navbar-collapse {
        background: rgba(16, 33, 49, 0.98);
        padding: 20px;
        margin-top: 14px;
        border-radius: 14px;
        overflow-x: hidden;
    }

    .premium-navbar .navbar-nav {
        width: 100%;
        margin-left: 0 !important;
    }

    .premium-navbar .dropdown-menu {
        width: 100%;
        min-width: 0;
    }

    .premium-navbar .dropdown-item {
        white-space: normal;
        word-break: break-word;
    }

    .premium-navbar .nav-link::after {
        display: none;
    }

    .premium-hero-slider,
    .premium-hero-slider .carousel-inner,
    .premium-hero-slider .carousel-item,
    .hero-slide {
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 70px 0 80px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btn-group,
    .hero-mini-features {
        justify-content: center;
    }

    .custom-hero-arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .logo {
        width: 105px;
    }

    .topbar-left a {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .hero-content {
        padding: 50px 0 70px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 14px;
    }

    .hero-content h1 {
        font-size: 27px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-btn {
        min-width: 150px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .hero-feature-box {
        width: 100%;
        justify-content: center;
        font-size: 13px;
    }

    .custom-indicators {
        bottom: 10px;
    }
}


/* end hero section ======================================================*/



/* sub-page */

.sub-heading {
    position: absolute;
    left: 50%;
    translate: -50% -120%;
    z-index: 999;
    color: #fff;
}

@media(max-width: 991px) {
    .sub-heading{
        translate: -50% -20%;
    }
    .sub-img {
        height: 250px !important;
    }

    .sub-heading h1 {
        font-size: 28px;
    }
}

/*  */





/* ================= ABOUT US SECTION START ================= */
.premium-about-section {
    position: relative;
    background: linear-gradient(180deg, #f8fbfd 0%, #eef4f7 100%);
    overflow: hidden;
}

.premium-about-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(253, 221, 119, 0.12);
    border-radius: 50%;
    top: -80px;
    left: -80px;
    filter: blur(80px);
    z-index: 0;
}

.premium-about-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(16, 33, 49, 0.06);
    border-radius: 50%;
    bottom: -70px;
    right: -70px;
    filter: blur(70px);
    z-index: 0;
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.about-main-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-main-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: 0.5s ease;
}

.about-main-image:hover img {
    transform: scale(1.05);
}

.about-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    min-width: 240px;
}

.about-floating-card i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--yellow);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-floating-card h5 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-blue);
}

.about-floating-card p {
    margin: 0;
    font-size: 14px;
    color: #5f6d77;
}

.about-card-one {
    top: 40px;
    right: -20px;
}

.about-card-two {
    bottom: 19px;
    left: -1px;
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 40px;
    background: linear-gradient(135deg, var(--dark-blue), #18344b);
    color: #fff;
    padding: 22px 24px;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(16, 33, 49, 0.18);
    max-width: 200px;
}

.about-experience-badge span {
    display: inline-block;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-experience-badge h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
}

.about-content {
    position: relative;
    z-index: 2;
    padding-left: 10px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 18px;
}

.section-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
    transform: translateY(-50%);
}

.section-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 22px;
}

.section-title span {
    color: #c59c29;
}

.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: #5d6a73;
    margin-bottom: 18px;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
    margin-bottom: 32px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
}

.about-feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    background: rgba(253, 221, 119, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon i {
    color: var(--dark-blue);
    font-size: 20px;
}

.about-feature-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.about-feature-item p {
    font-size: 14px;
    color: #60707a;
    margin: 0;
    line-height: 1.7;
}

.about-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-btn-primary,
.about-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s ease;
}

.about-btn-primary {
    background: var(--dark-blue);
    color: #fff;
}

.about-btn-primary:hover {
    background: #18344b;
    color: #fff;
    transform: translateY(-3px);
}

.about-btn-outline {
    border: 1px solid var(--dark-blue);
    color: var(--dark-blue);
    background: transparent;
}

.about-btn-outline:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #000;
    transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1199px) {
    .section-title {
        font-size: 38px;
    }

    .about-main-image img {
        height: 580px;
    }
}

@media (max-width: 991px) {
    .about-image-wrapper {
        padding-right: 0;
    }

    .about-content {
        padding-left: 0;
    }

    .section-title {
        font-size: 34px;
    }

    .about-main-image img {
        height: 520px;
    }

    .about-card-one {
        top: 25px;
        right: 15px;
    }

    .about-card-two {
        bottom: 30px;
        left: 15px;
    }

    .about-experience-badge {
        right: 20px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-main-image img {
        height: 420px;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }

    .about-floating-card {
        position: static;
        margin-top: 15px;
        min-width: 100%;
    }

    .about-experience-badge {
        position: static;
        margin-top: 15px;
        max-width: 100%;
    }

    .about-btn-primary,
    .about-btn-outline {
        width: 100%;
    }
}

/* about us section end ========================================================= */





/* ================= PRODUCTS SECTION START ================= */
.premium-products-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
    overflow: hidden;
}

.premium-products-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(253, 221, 119, 0.10);
    border-radius: 50%;
    top: -90px;
    right: -90px;
    filter: blur(80px);
    z-index: 0;
}

.premium-products-section::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(16, 33, 49, 0.05);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    filter: blur(70px);
    z-index: 0;
}

.premium-products-section .container {
    position: relative;
    z-index: 2;
}

.section-heading .section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-heading .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-heading .section-title span {
    color: #c59c29;
}

.section-heading .section-desc {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #61717b;
    text-align: center;
}



.nhb-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    /* height: 320px; */
    cursor: pointer;
    margin-bottom: 40px;
}

.nhb-product-card img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: 0.5s ease;
}

/* Overlay */
.nhb-product-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
    transition: 0.4s ease;
}

.nhb-product-overlay h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Hover Effects */
.nhb-product-card:hover img {
    transform: scale(1.08);
}

.nhb-product-card:hover .nhb-product-overlay {
    background: linear-gradient(180deg, transparent, rgba(16, 33, 49, 0.95));
}




.all-products-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 14px 30px;
    background: var(--dark-blue);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s ease;
}

.all-products-btn:hover {
    background: #18344b;
    color: #fff;
    transform: translateY(-3px);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1199px) {
    .section-heading .section-title {
        font-size: 38px;
    }

    .product-img {
        height: 290px;
    }
}

@media (max-width: 991px) {
    .section-heading .section-title {
        font-size: 34px;
    }


}

@media (max-width: 767px) {
    .section-heading .section-title {
        font-size: 28px;
        text-align: start;
    }

    .section-heading .section-desc {
        font-size: 14px;
        line-height: 1.7;
        text-align: justify;
    }



    .all-products-btn {
        width: 100%;
    }

    .nhb-product-card {
        /* height: 250px; */
    }

    .nhb-product-overlay h4 {
        font-size: 16px;
    }
}

/* products css end -=================================================== */




/* ================= WHY CHOOSE US SECTION START ================= */
.nhb-why-choose {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
    overflow: hidden;
}

.nhb-why-choose::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(253, 221, 119, 0.10);
    border-radius: 50%;
    top: -80px;
    left: -80px;
    filter: blur(70px);
    z-index: 0;
}

.nhb-why-choose::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(16, 33, 49, 0.06);
    border-radius: 50%;
    bottom: -70px;
    right: -70px;
    filter: blur(70px);
    z-index: 0;
}

.nhb-why-choose .container {
    position: relative;
    z-index: 2;
}

.nhb-section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 18px;
}

.nhb-section-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
    transform: translateY(-50%);
}

.nhb-section-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 18px;
}

.nhb-section-title span {
    color: #c59c29;
}

.nhb-section-text {
    font-size: 16px;
    line-height: 1.9;
    color: #63717a;
    margin-bottom: 28px;
}

.nhb-why-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.nhb-stat-box {
    min-width: 180px;
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.nhb-stat-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.nhb-stat-box p {
    margin: 0;
    color: #677780;
    font-size: 14px;
}

.nhb-why-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 24px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
    border: 1px solid rgba(16, 33, 49, 0.04);
}

.nhb-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.08);
}

.nhb-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(253, 221, 119, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.nhb-why-icon i {
    font-size: 24px;
    color: var(--dark-blue);
}

.nhb-why-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.nhb-why-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #64727b;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1199px) {
    .nhb-section-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .nhb-section-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .nhb-section-title {
        font-size: 28px;
    }

    .nhb-section-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .nhb-stat-box {
        width: 100%;
    }

    .nhb-why-card {
        padding: 24px 20px;
    }

    .nhb-why-card h4 {
        font-size: 20px;
    }

    .nhb-why-card p {
        font-size: 14px;
    }
}

/* why choose us css end ========================================================== */




/* ================= APPLICATIONS / PROJECTS ================= */
.nhb-projects-section {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(253, 221, 119, 0.12), transparent 25%),
        linear-gradient(180deg, #f8fbfd 0%, #edf3f7 100%);
    overflow: hidden;
}

.nhb-projects-heading {
    max-width: 760px;
    margin: 0 auto;
}

.nhb-project-showcase {
    position: relative;
}

/* ===== MAIN CARD ===== */
.nhb-main-project-card {
    position: relative;
    height: 100%;
    min-height: 620px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(16, 33, 49, 0.14);
    transform: translateY(0);
    transition: 0.5s ease;
}

.nhb-main-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 38px 80px rgba(16, 33, 49, 0.18);
}

.nhb-main-project-card img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.8s ease;
}

.nhb-main-project-card:hover img {
    transform: scale(1.06);
}

.nhb-main-project-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 33, 49, 0.12) 0%, rgba(16, 33, 49, 0.25) 38%, rgba(16, 33, 49, 0.88) 100%);
}

.nhb-main-project-content {
    position: absolute;
    left: 35px;
    bottom: 35px;
    z-index: 3;
    max-width: 520px;
    animation: projectContentFloat 4s ease-in-out infinite;
}

@keyframes projectContentFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.project-badge {
    display: inline-block;
    background: rgba(253, 221, 119, 0.14);
    color: var(--yellow);
    border: 1px solid rgba(253, 221, 119, 0.3);
    padding: 10px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.nhb-main-project-content h3 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.nhb-main-project-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #dce5ea;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tags span {
    padding: 9px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 13px;
    backdrop-filter: blur(8px);
}

/* Float card */
.project-float-card {
    position: absolute;
    top: 32px;
    right: 32px;
    z-index: 4;
    width: 220px;
    padding: 24px 22px;
    border-radius: 24px;
    background: rgb(2 16 48 / 40%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
    animation: floatCardMove 5s ease-in-out infinite;
}

@keyframes floatCardMove {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.project-float-card h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.project-float-card ul {
    margin: 0;
    padding-left: 18px;
}

.project-float-card ul li {
    color: #eef4f7;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 4px;
}

/* ===== SIDE CARDS ===== */
.nhb-side-project-card {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    min-height: 295px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    transition: 0.45s ease;
    position: relative;
}

.nhb-side-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.10);
}

.side-project-img {
    width: 46%;
    overflow: hidden;
}

.side-project-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: 0.6s ease;
}

.nhb-side-project-card:hover .side-project-img img {
    transform: scale(1.08);
}

.side-project-content {
    width: 54%;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.side-project-content span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c59c29;
    margin-bottom: 12px;
}

.side-project-content h4 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.side-project-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #62717b;
    margin: 0;
}

/* ===== APPLICATION CHIPS ===== */
.nhb-applications-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 38px;
}

.application-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 50px;
    background: #ffffff;
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
}

.application-chip i {
    color: var(--yellow);
    font-size: 15px;
}

.application-chip:hover {
    transform: translateY(-4px);
    background: var(--dark-blue);
    color: #fff;
}

.application-chip:hover i {
    color: var(--yellow);
}

/* ===== BUTTON ===== */
.nhb-project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 15px 30px;
    border-radius: 40px;
    background: var(--dark-blue);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s ease;
    box-shadow: 0 14px 35px rgba(16, 33, 49, 0.14);
}

.nhb-project-btn:hover {
    background: var(--yellow);
    color: #000;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .nhb-main-project-content h3 {
        font-size: 32px;
    }

    .side-project-content h4 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .nhb-main-project-card {
        min-height: 540px;
    }

    .project-float-card {
        width: 200px;
        padding: 20px 18px;
    }

    .nhb-side-project-card {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .nhb-main-project-card {
        min-height: 440px;
        border-radius: 22px;
    }

    .nhb-main-project-content {
        left: 20px;
        bottom: 20px;
        max-width: calc(100% - 40px);
    }

    .nhb-main-project-content h3 {
        font-size: 24px;
    }

    .nhb-main-project-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .project-float-card {
        position: static;
        width: calc(100% - 30px);
        margin: 15px;
        border-radius: 18px;
        animation: none;
    }

    .nhb-side-project-card {
        flex-direction: column;
        min-height: auto;
        border-radius: 22px;
    }

    .side-project-img,
    .side-project-content {
        width: 100%;
    }

    .side-project-img {
        /* height: 280px; */
    }

    .side-project-content {
        padding: 22px 18px;
    }

    .side-project-content h4 {
        font-size: 20px;
    }

    .side-project-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* application css end =============================================================== */



/* ================= SECTION HEADING ================= */
.nhb-section-heading {
    max-width: 720px;
    margin: 0 auto;
}

.nhb-section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.nhb-section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 14px;
}

.nhb-section-title span {
    color: #c59c29;
}

.nhb-section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #667680;
    text-align: center;
}


/* ================= NHB SINGLE BLOG CARD ================= */
.nhb-blog-card-section {
    background: #f6f7f9;
}

.nhb-blog-card {
    background: #ffffff;
    border: 1px solid #d9dde2;
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
}

.nhb-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.nhb-blog-card-content h3 {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
    color: #1c2430;
    margin-bottom: 14px;
}

.nhb-blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
}

.nhb-blog-meta span {
    font-size: 13px;
    color: #4d5965;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nhb-blog-meta i {
    color: #7b8794;
}

.nhb-blog-card-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #4f5d69;
    margin-bottom: 18px;
}

.nhb-blog-read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-width: 170px;
    padding: 14px 20px;
    border: 2px solid #2d2d2d;
    border-radius: 18px;
    text-decoration: none;
    color: #1c2430;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    margin-bottom: 18px;
}

.nhb-blog-read-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s ease;
}

.nhb-blog-read-btn:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: #fff;
}

.nhb-blog-read-btn:hover span {
    transform: translateX(4px);
}

.nhb-blog-card-image {
    border-radius: 18px;
    overflow: hidden;
    height: 300px;
}

.nhb-blog-card-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: 0.45s ease;
}

.nhb-blog-card:hover .nhb-blog-card-image img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 767px) {
    .nhb-blog-card {
        padding: 14px;
    }

    .nhb-blog-card-content h3 {
        font-size: 17px;
    }

    .nhb-blog-card-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .nhb-blog-card-image {
        height: 240px;
    }

    .nhb-blog-read-btn {
        width: 100%;
    }

    .nhb-section-title {
        font-size: 28px;
    }

    .nhb-section-desc {
        font-size: 14px;
        text-align: justify;
    }
}

/* blog css end ============================================ */




/* blog detail  */

.blogs-detail {
    padding-top: 20px;
}

.blogs-detail h4 {
    margin-bottom: 10px;
}

#recent-blog a {
    margin: 10px 0px;
    display: inline-block;
    color: var(--blue);
    font-size: 16px;
}

#recent-blog img {
    width: 200px;
}

.blogs-detail ul li {
    line-height: 2;
    list-style: disc;
}

/* Tablet Landscape */
@media screen and (max-width:1200px) {
    #recent-blog a {
        margin: 8px 0px;
        font-size: 14px;
    }

    #recent-blog img {
        width: 120px;
    }

    .blogs-detail ul li {
        font-size: 12px;
    }
}

/* Tablet Portrait */
@media screen and (max-width:992px) {
    #recent-blog img {
        width: 200px;
    }
}

/* Phone Landscape */
@media screen and (max-width:767px) {
    .blogs-detail {
        padding-top: 10px;
    }

    #recent-blog {
        margin-top: 20px;
    }

    .blogs-detail h5 {
        font-size: 18px;
    }
}

/* blog details end */





/* ================= SUPPORT SECTION ================= */
.nhb-support-section {
    background: linear-gradient(180deg, #f7fafc, #eef4f7);
}

/* FAQ BOX */
.nhb-faq-box {
    padding: 20px;
}

.nhb-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.nhb-accordion .accordion-button {
    background: #fff;
    font-weight: 600;
    color: var(--dark-blue);
    padding: 16px;
}

.nhb-accordion .accordion-button:not(.collapsed) {
    background: var(--dark-blue);
    color: #fff;
}

.nhb-accordion .accordion-body {
    background: #fff;
    color: #5f6d77;
    font-size: 14px;
}

/* FORM BOX */
.nhb-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.nhb-form-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.nhb-form-box p {
    font-size: 14px;
    color: #6b7b85;
    margin-bottom: 20px;
}

/* INPUT */
.nhb-form-box .form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e0e6eb;
}

.nhb-form-box .form-control:focus {
    border-color: var(--yellow);
    box-shadow: none;
}

/* CAPTCHA */
.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

#captchaText {
    background: var(--dark-blue);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* BUTTON */
.form-btn {
    width: 100%;
    padding: 14px;
    background: var(--yellow);
    border: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.form-btn:hover {
    background: #ffe899;
}

.map iframe {
    width: 100%;
    height: 500px;
}


/* ================= CONTACT CARDS ================= */
.nhb-contact-cards {
    background: linear-gradient(180deg, #f8fbfd, #eef4f7);
}

/* Card */
.contact-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.10);
}

/* Icon */
.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(253, 221, 119, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--dark-blue);
    transition: 0.3s;
}

/* Hover icon */
.contact-card:hover .contact-icon {
    background: var(--dark-blue);
    color: #fff;
    transform: rotateY(180deg);
}

/* Title */
.contact-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

/* Text */
.contact-card p {
    font-size: 15px;
    line-height: 1.9;
    text-align: center;
}

/* Links */
.contact-card a {
    text-decoration: none;
    transition: 0.3s;
}

.contact-card a:hover {
    color: var(--yellow);
}

/* Responsive */
@media(max-width:767px) {
    .contact-card {
        padding: 30px 20px;
    }

    .contact-card h4 {
        font-size: 20px;
    }

    .contact-card p {
        font-size: 14px;
    }
}


/* Responsive */
@media(max-width:767px) {
    .nhb-form-box {
        padding: 25px;
    }
}







/* faq or contact css end ========================================================== */






/* enquiry details css start ===================================== */


/* PRODUCT DETAIL */
.product-detail-img img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* TABLE */
.product-table th {
    width: 30%;
    background: #f4f6f8;
}

/* INFO BOX */
.product-info-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.product-info-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.product-info-box ul {
    padding-left: 18px;
}

.product-info-box ul li {
    margin-bottom: 8px;
    font-size: 14px;
}


@media(max-width: 767px) {
    .product-detail-img img {
        margin-bottom: 20px;
    }
}

/* enquiyr page css end */






/* ================= MISSION VISION GOALS ================= */
.nhb-mvg-section {
    position: relative;
    background: linear-gradient(180deg, #f8fbfd, #eef4f7);
    overflow: hidden;
}

/* Glow Background */
.nhb-mvg-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(253, 221, 119, 0.15);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    filter: blur(80px);
}

/* Cards */
.mvg-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
    position: relative;
}

/* Hover */
.mvg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.10);
}

/* Center Highlight */
.mvg-center {
    transform: scale(1.05);
    background: linear-gradient(135deg, #102131, #18344b);
    color: #fff;
    box-shadow: 0 30px 70px rgba(16, 33, 49, 0.25);
}

.mvg-center h4,
.mvg-center p {
    color: #fff;
}

/* Icon */
.mvg-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(253, 221, 119, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--dark-blue);
    transition: 0.3s;
}

/* Center Icon */
.mvg-center .mvg-icon {
    background: var(--yellow);
    color: #000;
}

/* Hover Icon */
.mvg-card:hover .mvg-icon {
    transform: rotateY(180deg);
}

/* Title */
.mvg-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;

}

/* Text */
.mvg-card p {
    font-size: 15px;
    line-height: 1.9;
    /* color: #5f6d77; */
    text-align: center;
}

/* Responsive */
@media(max-width:991px) {
    .mvg-center {
        transform: scale(1);
    }
}

@media(max-width:767px) {
    .mvg-card {
        padding: 30px 20px;
    }

    .mvg-card h4 {
        font-size: 20px;
    }

    .mvg-card p {
        font-size: 12px;
        text-align: justify;
    }
}

/* missiin visson */




/* ================= FOOTER ================= */
.nhb-footer {
    background: #0d1c28;
    padding: 70px 0 0;
    color: #cbd6dd;
}

.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #cbd6dd;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-contact {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.footer-contact li {
    margin-bottom: 12px;
}

.footer-contact li a {
    color: #fff;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--yellow);
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--yellow);
    color: #000;
}

/* Bottom */
.footer-bottom {

    padding: 18px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    text-align: center;
    margin: 0;
    font-size: 14px;
}

/* Responsive */
@media(max-width:767px) {
    .nhb-footer {
        padding: 50px 0 0;
    }

    .footer-about p,
    .footer-links a {
        font-size: 12px;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .footer-contact li a {
        font-size: 12px;
    }

    .footer-contact li {
        font-size: 12px;
    }
}

/* footer css end =================================================================== */