html {
    scroll-behavior: smooth;
}

* {
    transition: all 0.1s ease;
}

/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

/*** Topbar End ***/


/*** Navbar Start ***/


.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 18px;
    outline: none;

}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #e6f1ff !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.navbar-scrolled {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 30px rgba(0, 229, 255, 0.15);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

/*  Carousel indicators  */
#carouselId .carousel-indicators {
    bottom: 12px;
    z-index: 5;
    margin-bottom: 0;
}

/* caption must not overlap  */
.carousel-caption {
    padding-bottom: 52px !important;
}

.carousel-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 8px;
}

.carousel-btn-row .btn {
    min-width: 140px;
}

/* Tablet  */
@media (max-width: 992px) {
    .carousel-item {
        min-height: 520px;
    }

    .carousel-item img {
        min-height: 520px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 36px !important;
        line-height: 1.25 !important;
    }

    .carousel-item h6 {
        font-size: 16px !important;
    }

    .carousel-item p {
        font-size: 15px !important;
        margin-bottom: 20px !important;
    }

    .carousel-caption {
        padding-bottom: 60px !important;
    }
}

/* Mobile  */
@media (max-width: 768px) {
    .carousel-item {
        min-height: 560px;
    }

    .carousel-item img {
        min-height: 560px;
        object-fit: cover;
        object-position: center top;
    }

    .carousel-item h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .carousel-item h6 {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }

    .carousel-item p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
    }

    .carousel-caption {
        padding-bottom: 64px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .carousel-btn-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .carousel-btn-row .btn {
        width: 100%;
        max-width: 260px;
        padding: 10px 20px !important;
        font-size: 14px;
    }

    /* Hide prev/next arrow buttons  */
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Very small phones (≤480px) */
@media (max-width: 480px) {
    .carousel-item {
        min-height: 580px;
    }

    .carousel-item h1 {
        font-size: 22px !important;
    }

    .carousel-caption {
        padding-bottom: 68px !important;
    }
}


.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/

/*** About Section Start ***/


.nb-about-img-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 90%;
    min-height: 380px;
}


.nb-about-ring {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    border: 2px dashed rgba(0, 229, 255, 0.2);
    animation: nb-spin-slow 18s linear infinite;
    z-index: 0;
}

@keyframes nb-spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Main (back) image */
.nb-about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid rgba(0, 229, 255, 0.15);
    z-index: 1;
    transition: transform 0.4s ease;
}

.nb-about-img-wrap:hover .nb-about-img-main {
    transform: scale(1.02);
}

/* Secondary (front) overlapping image */
.nb-about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 68%;
    border-radius: 16px;
    object-fit: cover;
    border: 4px solid #020c1b;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 255, 0.12);
    z-index: 2;
    transition: transform 0.4s ease;
}

.nb-about-img-wrap:hover .nb-about-img-secondary {
    transform: scale(1.02) translateY(-4px);
}

/* Floating badge */
.nb-about-badge {
    position: absolute;
    top: 36%;
    left: -16px;
    z-index: 3;
    background: #040f1f;
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 229, 255, 0.08);
    animation: nb-badge-float 3s ease-in-out infinite;
}

@keyframes nb-badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.nb-about-badge-num {
    font-size: 26px;
    font-weight: 700;
    color: #00e5ff;
    font-family: "Saira", sans-serif;
    line-height: 1;
}

.nb-about-badge-text {
    font-size: 12px;
    color: rgba(230, 241, 255, 0.6);
    line-height: 1.4;
}

/* Lead paragraph */
.nb-about-lead {
    font-size: 15px;
    color: rgba(230, 241, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Highlight checkmarks */
.nb-about-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0;
}

.nb-about-hl {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(230, 241, 255, 0.75);
}

.nb-about-hl i {
    font-size: 15px;
    color: #00e5ff;
    flex-shrink: 0;
}

/* Tech stack */
.nb-about-stack-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0, 229, 255, 0.55);
    margin-bottom: 12px;
}

.nb-about-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.nb-stack-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    background: rgba(0, 229, 255, 0.05);
    font-size: 13px;
    font-weight: 500;
    color: rgba(230, 241, 255, 0.7);
    cursor: default;
    transition: all 0.2s ease;
}

.nb-stack-pill i {
    font-size: 13px;
    color: #00e5ff;
}

.nb-stack-pill:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.4);
    color: #e6f1ff;
    transform: translateY(-2px);
}

/* CTA row */
.nb-about-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.nb-about-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00b8d4, #00e5ff);
    color: #020c1b;
    font-size: 14px;
    font-weight: 700;
    font-family: "Saira", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.nb-about-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
    color: #020c1b;
}

.nb-about-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.05);
    color: rgba(230, 241, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nb-about-btn-outline:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.5);
    color: #00e5ff;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nb-about-img-wrap {
        min-height: 300px;
        margin-bottom: 2rem;
    }

    .nb-about-badge {
        left: 0;
    }

    .nb-about-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .nb-about-btn-primary,
    .nb-about-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/*** About Section End ***/

/*** Services Start ***/

/* Legacy support — keep empty so nothing breaks */
.services .services-item {
    display: none;
}

/* ── Premium NashByte Service Cards ── */
.nb-service-card {


    position: relative;
    background: #040f1f;
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 16px;
    padding: 36px 28px 32px;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}


/* Subtle top-left corner accent line */
.nb-service-card::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00e5ff, transparent);
    border-radius: 16px 0 0 0;
    transition: width 0.4s ease;
}

/* Bottom-right glow blob */
.nb-service-card::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
    transition: all 0.4s ease;
}

/* HOVER STATE */
.nb-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.45);
    box-shadow:
        0 0 0 1px rgba(0, 229, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 229, 255, 0.08);
}

.nb-service-card:hover::before {
    width: 100%;

}

.nb-service-card:hover::after {
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
}

/* Featured card (middle card) */
.nb-service-featured {
    border-color: rgba(0, 229, 255, 0.3);
    background: #051626;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.07);
}

.nb-service-featured::before {
    width: 80px;
}

/* Icon wrapper */
.nb-service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 14px;

    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.nb-service-icon-wrap i {
    font-size: 26px;
    color: #00e5ff;
    transition: color 0.35s ease, transform 0.35s ease;
}

.nb-service-card:hover .nb-service-icon-wrap {
    background: rgba(0, 229, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.5);
    transform: rotate(-4deg) scale(1.05);
}

.nb-service-card:hover .nb-service-icon-wrap i {
    transform: scale(1.15);
}

/* Card number watermark */
.nb-service-number {
    position: absolute;
    top: 22px;
    right: 26px;
    font-size: 42px;
    font-weight: 700;
    color: rgba(0, 229, 255, 0.05);
    line-height: 1;
    font-family: "Saira", sans-serif;
    transition: color 0.35s ease;
    user-select: none;
}

.nb-service-card:hover .nb-service-number {
    color: rgba(0, 229, 255, 0.1);
}

/* Title */
.nb-service-title {
    font-size: 18px;
    font-weight: 600;
    color: #e6f1ff;
    margin-bottom: 12px;
    font-family: "Saira", sans-serif;
    transition: color 0.3s ease;
}

.nb-service-card:hover .nb-service-title {
    color: #00e5ff;
}

/* Description */
.nb-service-desc {
    font-size: 14px;
    color: rgba(230, 241, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.nb-service-card:hover .nb-service-desc {
    color: rgba(230, 241, 255, 0.75);
}

/* Explore link */
.nb-service-link {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 229, 255, 0.6);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.3s ease, gap 0.3s ease;
    gap: 6px;
}

.nb-service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nb-service-card:hover .nb-service-link {
    color: #00e5ff;
}

.nb-service-card:hover .nb-service-link i {
    transform: translateX(5px);
}

/*** Services End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;

}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}

.blog-icon-1 {
    position: relative;
    top: -4px;
}

.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Contact Start ***/

/* ── Info Cards ── */
.nb-contact-card {
    background: #040f1f;
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nb-contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00e5ff, transparent);
    border-radius: 16px 0 0 0;
    transition: width 0.4s ease;
}

.nb-contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 229, 255, 0.07);
}

.nb-contact-card:hover::before {
    width: 100%;
}

.nb-contact-featured {
    border-color: rgba(0, 229, 255, 0.28);
    background: #051626;
}

.nb-contact-featured::before {
    width: 70px;
}

.nb-contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 13px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nb-contact-icon i {
    font-size: 22px;
    color: #00e5ff;
}

.nb-contact-card:hover .nb-contact-icon {
    background: rgba(0, 229, 255, 0.15);
    transform: rotate(-4deg) scale(1.05);
}

.nb-contact-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0, 229, 255, 0.6);
    margin-bottom: 8px;
}

.nb-contact-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #e6f1ff;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.2s ease;
    word-break: break-all;
}

.nb-contact-value:hover {
    color: #00e5ff;
}

.nb-contact-sub {
    font-size: 12px;
    color: rgba(230, 241, 255, 0.4);
    margin: 0;
}

/* ── Map Block ── */
.nb-map-wrap {
    background: #040f1f;
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nb-map-header {
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(230, 241, 255, 0.7);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.nb-map-iframe {
    flex: 1;
    width: 100%;
    min-height: 280px;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) saturate(0.7);
}

.nb-map-footer {
    padding: 14px 16px;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nb-quick-btn {
    flex: 1;
    min-width: 130px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: #e6f1ff;
    background: rgba(0, 229, 255, 0.05);
    transition: all 0.25s ease;
}

.nb-quick-btn:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.45);
    color: #00e5ff;
}

/* ── Form Block ── */
.nb-form-wrap {
    background: #040f1f;
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 16px;
    padding: 36px 32px;
    height: 100%;
}

.nb-form-header {
    margin-bottom: 28px;
}

.nb-form-title {
    font-size: 20px;
    font-weight: 600;
    color: #e6f1ff;
    margin-bottom: 6px;
    font-family: "Saira", sans-serif;
}

.nb-form-sub {
    font-size: 13px;
    color: rgba(230, 241, 255, 0.45);
    margin: 0;
}

.nb-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(230, 241, 255, 0.6);
    margin-bottom: 7px;
    letter-spacing: 0.03em;
}

.nb-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
    color: #e6f1ff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.nb-input::placeholder {
    color: rgba(230, 241, 255, 0.3);
}

.nb-input:focus {
    border-color: rgba(0, 229, 255, 0.5);
    background: rgba(0, 229, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
}

.nb-input-error {
    border-color: rgba(226, 75, 74, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(226, 75, 74, 0.08) !important;
}

.nb-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300e5ff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.nb-select option {
    background: #040f1f;
    color: #e6f1ff;
}

.nb-textarea {
    resize: vertical;
    min-height: 110px;
}

.nb-error {
    display: none;
    font-size: 11px;
    color: #f09595;
    margin-top: 5px;
}

/* Budget radio pills */
.nb-budget-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.nb-budget-opt {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nb-budget-opt input[type="radio"] {
    display: none;
}

.nb-budget-opt span {
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(0, 229, 255, 0.18);
    color: rgba(230, 241, 255, 0.5);
    background: transparent;
    transition: all 0.2s ease;
    user-select: none;
}

.nb-budget-opt input:checked+span {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.5);
    color: #00e5ff;
}

.nb-budget-opt:hover span {
    border-color: rgba(0, 229, 255, 0.35);
    color: rgba(230, 241, 255, 0.8);
}

/* Submit button */
.nb-submit-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #00b8d4, #00e5ff);
    color: #020c1b;
    font-size: 15px;
    font-weight: 700;
    font-family: "Saira", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.nb-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}

.nb-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Feedback messages */
.nb-success-msg {
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(30, 158, 117, 0.12);
    border: 1px solid rgba(30, 158, 117, 0.3);
    color: #5DCAA5;
    font-size: 14px;
    font-weight: 500;
}

.nb-error-msg {
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(226, 75, 74, 0.1);
    border: 1px solid rgba(226, 75, 74, 0.25);
    color: #f09595;
    font-size: 14px;
    font-weight: 500;
}

.contact-link a,
.contact-detail a.h5 {
    word-break: break-all;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer {
    background: #020c1b !important;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    position: relative;
}

/* Subtle top glow line */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.4), transparent);
}

/* Brand column */
.nb-footer-brand p {
    font-size: 13px;
    color: rgba(230, 241, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Social icons */
.nb-footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nb-footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    background: rgba(0, 229, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(230, 241, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.nb-footer-socials a:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.45);
    color: #00e5ff;
    transform: translateY(-3px);
}

/* Column headings */
.nb-footer-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0, 229, 255, 0.55);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.nb-footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #00e5ff;
    border-radius: 2px;
}

/* Nav links */
.nb-footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nb-footer-links a {
    font-size: 13.5px;
    color: rgba(230, 241, 255, 0.5);
    text-decoration: none;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.nb-footer-links a:last-child {
    border-bottom: none;
}

.nb-footer-links a .nb-link-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.3);
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nb-footer-links a:hover {
    color: #e6f1ff;
    padding-left: 4px;
}

.nb-footer-links a:hover .nb-link-dot {
    background: #00e5ff;
    transform: scale(1.4);
}

/* Contact info items */
.nb-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nb-footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.07);
    text-decoration: none;
    color: rgba(230, 241, 255, 0.5);
    font-size: 13px;
    transition: color 0.2s ease;
    word-break: break-all;
}

.nb-footer-contact a:last-child {
    border-bottom: none;
}

.nb-footer-contact a:hover {
    color: #e6f1ff;
}

.nb-footer-contact .nb-ci {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 229, 255, 0.07);
    border: 1px solid rgba(0, 229, 255, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    color: #00e5ff;
    transition: background 0.2s ease;
}

.nb-footer-contact a:hover .nb-ci {
    background: rgba(0, 229, 255, 0.14);
}

/* Divider */
.nb-footer-divider {
    border: none;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    margin: 40px 0 24px;
}

/* Bottom bar */
.nb-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.nb-footer-copy {
    font-size: 12.5px;
    color: rgba(230, 241, 255, 0.35);
}

.nb-footer-copy a {
    color: rgba(0, 229, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nb-footer-copy a:hover {
    color: #00e5ff;
}

.nb-footer-badge {
    font-size: 12px;
    color: rgba(230, 241, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nb-footer-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1D9E75;
    animation: blink-dot 2s infinite;
}

@keyframes blink-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/*** Footer End ***/

/*** WhatsApp Float Button ***/

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/*** WhatsApp Float Button  ENDS***/

body {
    background-color: #020c1b;
    color: #e6f1ff;
}

.bg-primary {
    background-color: #020c1b !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}


.text-primary {
    color: darkcyan !important;
}

h1 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Saira", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #e6f1ff;
}

.logo-img {
    height: 35px;
    /* control logo size */
    width: auto;
}

.carousel-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(2, 12, 27, 0.95),
            rgba(0, 229, 255, 0.2));
    top: 0;
    left: 0;
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
}

h6,
.h6 {
    color: aqua;
}