﻿/*** Spinner Start ***/

/*** ===== OM Header Redesign Start ===== ***/
:root {
    --om-dark: #3a4650;
    --om-blue: #27aae1;
    --om-cyan: #08a8cb;
    --om-cyan-dark: #0797b5;
    --om-light: #f8fbfd;
    --om-border: #e8eef3;
    --om-text: #2a2a2a;
    --om-muted: #66707a;
}

/* Top White Header */
.om-top-header {
    background: #ffffff;
    border-bottom: 1px solid var(--om-border);
}

.om-top-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Brand */
.om-brand {
    display: inline-flex;
    align-items: center;
}

.om-brand-text {
    font-family: 'Saira', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.3px;
    margin: 0;
}

.om-brand-dark {
    color: var(--om-dark);
}

.om-brand-blue {
    color: var(--om-blue);
    margin-left: 2px;
}

.om-brand:hover .om-brand-dark {
    color: var(--om-dark);
}

.om-brand:hover .om-brand-blue {
    color: #1698d3;
}

/* Contact Right */
.om-header-contact {
    display: flex;
    align-items: center;
    gap: 55px;
}

.om-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.om-contact-icon {
    color: var(--om-blue);
    font-size: 24px;
    line-height: 1;
    margin-top: 4px;
}

.om-contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.om-contact-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--om-text);
}

.om-contact-value {
    font-size: 15px;
    color: var(--om-muted);
    text-decoration: none;
}

    .om-contact-value:hover {
        color: var(--om-blue);
    }

/* Main Navbar */
.om-main-navbar {
    background: var(--om-cyan);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

    .om-main-navbar .navbar {
        min-height: 48px;
    }

    .om-main-navbar .navbar-nav {
        padding: 0;
        align-items: center;
    }

    .om-main-navbar .navbar .navbar-nav .nav-link {
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        padding: 14px 16px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

        .om-main-navbar .navbar .navbar-nav .nav-link:hover,
        .om-main-navbar .navbar .navbar-nav .nav-link.active {
            color: #ffffff !important;
            background: var(--om-cyan-dark);
        }

    /* Dropdown */
    .om-main-navbar .dropdown-menu {
        border: none;
        border-radius: 0;
        padding: 8px 0;
        margin-top: 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .om-main-navbar .dropdown-item {
        font-size: 14px;
        font-weight: 500;
        padding: 10px 18px;
        color: #2d2d2d;
    }

        .om-main-navbar .dropdown-item:hover {
            background: #eef9fc;
            color: var(--om-cyan-dark);
        }

    /* Dropdown arrow */
    .om-main-navbar .dropdown-toggle::after {
        border: none;
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        vertical-align: middle;
        margin-left: 6px;
        font-size: 12px;
    }

    /* Toggler */
    .om-main-navbar .navbar-toggler {
        border: none;
        box-shadow: none !important;
        padding: 10px 12px;
    }

    .om-main-navbar .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }

/* Desktop hover dropdown */
@media (min-width: 992px) {
    .om-main-navbar .nav-item.dropdown .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .om-main-navbar .nav-item.dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Tablet and Mobile */
@media (max-width: 991.98px) {
    .om-top-header-inner {
        min-height: auto;
        padding: 16px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .om-header-contact {
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
    }

    .om-main-navbar .navbar-collapse {
        background: var(--om-cyan);
        padding: 8px 0 12px 0;
    }

    .om-main-navbar .navbar .navbar-nav {
        align-items: flex-start;
    }

        .om-main-navbar .navbar .navbar-nav .nav-link {
            width: 100%;
            padding: 12px 14px;
        }

    .om-main-navbar .dropdown-menu {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
}

@media (max-width: 575.98px) {
    .om-brand-text {
        font-size: 26px;
    }

    .om-header-contact {
        gap: 14px;
    }

    .om-contact-item {
        width: 100%;
    }

    .om-contact-label,
    .om-contact-value {
        font-size: 14px;
    }
}
/*** ===== OM Header Redesign End ===== ***/

#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 ***/
/* Logo Styling */
.logo-text {
    font-weight: 800;
    font-size: 28px;
}

.logo-om {
    color: #000000; /* Black (logo match) */
}

.logo-software {
    color: #fff; /* Blue (logo match) */
}


.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: var(--bs-secondary) !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 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;
    }

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }

        .carousel-item img {
            min-height: 500px;
            object-fit: cover;
        }

        .carousel-item h1 {
            font-size: 40px !important;
        }

        .carousel-item p {
            font-size: 16px !important;
        }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }

        .carousel-item img {
            min-height: 400px;
            object-fit: cover;
        }

        .carousel-item h1 {
            font-size: 28px !important;
        }

        .carousel-item p {
            font-size: 14px !important;
        }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) 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 ***/

.btn-om {
    background: linear-gradient(135deg, #00AEEF, #0077B6); /* logo blue shades */
    color: #fff;
    border: none;
    border-radius: 50px;
    transition: 0.3s ease;
}

    .btn-om:hover {
        background: linear-gradient(135deg, #0077B6, #005F8A);
        color: #fff;
        box-shadow: 0 5px 15px rgba(0, 174, 239, 0.4);
    }
/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

    .project-img::before {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        top: 0;
        left: 0;
        background: var(--bs-secondary);
        border-radius: 10px;
        opacity: 1;
        z-index: -1;
        transition: .5s;
    }

    .project-img::after {
        content: "";
        width: 150px;
        height: 150px;
        position: absolute;
        right: 0;
        bottom: 0;
        background: var(--bs-primary);
        border-radius: 10px;
        opacity: 1;
        z-index: -1;
        transition: .5s;
    }

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

    .project-content a {
        display: inline-block;
        padding: 20px 25px;
        background: var(--bs-primary);
        border-radius: 10px;
    }

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project 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 ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

    .team-img img {
        border: 10px solid var(--bs-secondary);
        transition: .5s;
    }

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

    .team-carousel .owl-nav .owl-prev,
    .team-carousel .owl-nav .owl-next {
        width: 56px;
        height: 56px;
        border-radius: 56px;
        margin-left: 15px;
        background: var(--bs-secondary);
        color: var(--bs-white);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .5s;
    }

        .team-carousel .owl-nav .owl-prev:hover,
        .team-carousel .owl-nav .owl-next:hover {
            background: var(--bs-primary);
            color: var(--bs-white);
        }

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

        .team-carousel .owl-nav {
            top: -85px;
            left: 50%;
            right: auto;
            transform: translateX(-50%);
            margin-left: -15px;
        }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

    .testimonial-carousel .owl-dot.active {
        width: 30px;
        background: var(--bs-primary);
    }

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #0d6efd;
}

.contact-form {
    background: #0d6efd;
}

/*** Contact End ***/

.container-fluid.bg-primary {
    background: #0d6efd !important;
}

.container {
    max-width: 1200px; /* 👈 fix width */
    margin: auto;
}
/* ===== OM FOOTER THEME ===== */
.om-footer {
    background: #000c19;
    background-image: radial-gradient(circle at 10% 20%, rgba(16, 195, 215, 0.05) 0%, transparent 40%);
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

    .om-footer .footer-title {
        color: #10c3d7;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }

        .om-footer .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #10c3d7;
        }

    .om-footer .footer-text {
        color: #94a3b8;
        line-height: 1.8;
    }

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 12px;
}

    .footer-link:hover {
        color: #10c3d7;
        padding-left: 8px;
    }

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #cbd5e1;
}

    .footer-contact-item i {
        width: 35px;
        height: 35px;
        background: rgba(16, 195, 215, 0.1);
        color: #10c3d7;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        margin-right: 15px;
        transition: 0.3s;
    }

    .footer-contact-item:hover i {
        background: #10c3d7;
        color: #fff;
    }

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 10px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .footer-social-icon:hover {
        background: #10c3d7;
        transform: translateY(-5px);
        border-color: #10c3d7;
        color: white !important;
    }

.footer-divider {
    border-color: rgba(255, 255, 255, 0.05);
    margin: 40px 0 30px;
}

.footer-bottom {
    padding-bottom: 30px;
    color: #64748b;
    font-size: 0.9rem;
}

.om-brand-light {
    color: #fff;
    font-weight: 800;
    font-size: 1.8rem;
}

.om-brand-teal {
    color: #10c3d7;
    font-weight: 800;
    font-size: 1.8rem;
}

.fact-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .fact-card h1 {
        color: #0d6efd;
        font-size: 40px;
        font-weight: 700;
    }

    .fact-card p {
        color: #555;
        margin-top: 10px;
        font-weight: 500;
    }

    .fact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    }


.footer .btn-square i {
    color: #ffffff !important;
}

/* Border bhi white karna ho toh */
.footer .btn-square {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

    /* Hover effect (premium feel) */
    .footer .btn-square:hover {
        background: #ffffff;
    }

        .footer .btn-square:hover i {
            color: #00AEEF !important; /* hover pe blue */
        }

.contact-card {
    background: #f8fafc;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* center align */
}

    /* Hover effect */
    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    min-width: 280px;
}

/* RIGHT */
.footer-right {
    flex: 1;
    min-width: 280px;
}

.footer-right {
    text-align: left;
}

.footer-contact-item {
    align-items: flex-start;
}


left: 200px; @media (max-width: 768px) {
    .container;

{
    padding: 0 15px;
}

.footer-flex {
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.footer-left,
.footer-right {
    flex: 100%;
}

.footer-contact-item {
    justify-content: center;
    text-align: left;
}

.footer-left .d-flex {
    justify-content: center;
}

}

.row.g-4 {
    align-items: stretch; /* sab cards same height */
}

/* Icon circle */
.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0; /* 🔥 important (icon move nahi hoga) */
}

.contact-card h5 {
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: center;
}

.contact-card p {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    flex-grow: 1;
}


/* Icon */
.contact-icon i {
    font-size: 22px;
    color: #38bdf8;
}

/* Active icon (blue filled like image) */
.contact-icon.active {
    background: #38bdf8;
}

    .contact-icon.active i {
        color: #fff;
    }

/* Title */
.contact-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.contact-card p {
    font-size: 14px;
    color: #64748b;
}


/* Contact page font control */

/* Headings */
.contact-form-box h4 {
    font-size: 20px;
}

/* Input fields */
.contact-form-box .form-control {
    font-size: 14px;
    padding: 10px 12px;
}

    /* Placeholder text */
    .contact-form-box .form-control::placeholder {
        font-size: 13px;
    }

/* Button */
.contact-form-box .btn {
    font-size: 14px;
}

/* Contact cards */
.contact-card h5 {
    font-size: 16px;
}

.contact-card p {
    font-size: 13px;
}


.whatsapp-btn {
    position: fixed;
    bottom: 90px; /* back-to-top ke upar */
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366; /* WhatsApp green */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

    /* hover */
    .whatsapp-btn:hover {
        transform: scale(1.1);
    }

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    background: #10c3d7; /* sky blue theme */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

    /* remove bootstrap default spacing issue */
    .back-to-top i {
        font-size: 18px;
    }

    /* hover effect */
    .back-to-top:hover {
        background: #0da8ba;
    }




#quotationModal .modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

#quotationModal .modal-header {
    background: linear-gradient(135deg, #10c3d7 0%, #0da8ba 100%);
    padding: 30px 40px;
    border-bottom: none;
    position: relative;
}

#quotationModal .modal-title {
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 1.5rem;
}

#quotationModal .modal-body {
    padding: 40px;
    background: #fff;
}

/* Modern Input Styling */
.form-floating > .form-control {
    border-radius: 12px;
    border: 2px solid #f0f3f5;
    padding-left: 15px;
    transition: all 0.3s ease;
    background-color: #f8fbff;
}

    .form-floating > .form-control:focus {
        border-color: #10c3d7;
        box-shadow: 0 0 0 4px rgba(16, 195, 215, 0.1);
        background-color: #fff;
    }

.form-floating > label {
    padding-left: 15px;
    color: #8898aa;
}

/* Button Styling */
#btnSend {
    background: linear-gradient(135deg, #10c3d7 0%, #0da8ba 100%);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 195, 215, 0.3);
}

    #btnSend:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(16, 195, 215, 0.4);
    }

.btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

    .btn-close-white:hover {
        opacity: 1;
    }

/* Decorative Circle */
.modal-header::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -30px;
    pointer-events: none;
}


/* Quotation Button Style */
.quote-btn {
    background: linear-gradient(135deg, #10c3d7, #0da8ba);
    color: #fff !important;
    padding: 8px 18px !important;
    border-radius: 6px;
    margin-left: 15px;
    font-weight: 600;
    margin-left: 150px;
    transition: 0.3s;
}

    /* Hover */
    .quote-btn:hover {
        background: linear-gradient(135deg, #0da8ba, #10c3d7);
        color: #fff !important;
    }

/* Navbar alignment fix */
.navbar-nav {
    align-items: center;
}

/* Mobile fix */
@media (max-width: 991px) {
    .quote-btn {
        margin: 10px 0;
        display: inline-block;
        text-align: center;
    }
}

/* Brand color fix (GLOBAL) */
.text-brand-primary {
    color: #10c3d7 !important;
    font-weight: 700;
}


/* Text Span */

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000c19;
    margin-bottom: 15px;
}

    .section-title span {
        color: #10c3d7;
    }
