/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Navbar Start ***/
/*** Navbar Start ***/
.header-top .topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.header-top .topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 12px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

.header-top {
    height: 125px;
    position: relative;
}

.dropdown-toggle {
    color: #000;
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bs-dark);
    z-index: 1;
}

.header-top .container {
    position: relative;
    z-index: 999;
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: -1;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 80px;
    }

    .navbar {
        justify-content: space-between;
    }

    .header-top .container {
        max-height: 80px;
    }

    .navbar-brand {
        display: none;
    }

    .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 200px;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        z-index: 99;
    }

    .navbar-brand-2::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar-brand-2::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: -20px;
    }

}

.nav-bar .navbar {
    height: 100%;
    background: var(--bs-white);
    position: relative;
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 20px;
    color: #000;
    text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: #000;
    text-transform: uppercase;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: #000;
    text-transform: uppercase;
}

@media (min-width: 992px) {


    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .header-top .navbar-brand {
        position: relative;
        overflow: hidden;
        padding: 40px 50px 40px 0;
        z-index: 99;
    }

}
/* Sticky Header */
.header-top {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Prevent content jump */
body {
  scroll-behavior: smooth;
}

/* Mobile optimization */
@media (max-width: 991px) {
  .header-top {
    position: sticky;
  }

  .topbar {
    display: none !important;
  }
  .navbar-brand span{
    display: none;
  }
  .navbar-toggler{
    margin-left: 111px;
  }
}

/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background-color:#0032C3 ;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    height: 300px;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/
/*** Facts ***/
.facts {
    position: relative;
    background: url('../images/counter.png') center/cover no-repeat;
    overflow: hidden;
}

.facts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 1;
}

.facts .row.position-relative {
    position: relative;
    z-index: 2;
    /* Makes content appear above overlay */
}

.facts .p-5 {
    transition: transform 0.3s, box-shadow 0.3s;
}

.facts .p-5:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.facts i {
    color: #0031c2;
}

.facts .counter {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .facts .p-5 {
        padding: 2rem;
    }

    .facts h3.display-2 {
        font-size: 3rem;
    }
}

/*** PROJECT CAROUSEL ***/
.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px;
}

.cap-card {
    background: #fff;
    border-radius: 16px;
    padding: 60px 25px 35px;
    position: relative;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: transform 0.3s ease;
}

.cap-card:hover {
    transform: translateY(-8px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid blue;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
}

.cap-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cap-card ul li {
    font-size: 15px;
    color: #070606;
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

.cap-card ul li:last-child {
    border-bottom: none;
}

/* Color Themes */
.cap-card.purple .card-title {
    background: linear-gradient(135deg, #0031c2, #0031c2);
}

.cap-card.teal .card-title {
    background: linear-gradient(135deg, #0036c7, #0036c7);
}

/* our products */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* PRODUCT CARD */
.product-card {
    background: #ece9e9;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: 0.6s cubic-bezier(.2, .8, .2, 1);
}

.product-card:hover {
    transform: translateY(-12px);
}

/* SHINE EFFECT */
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 122, 24, 0.25), transparent 70%);
    opacity: 0;
    transition: 0.6s;
}

.product-card:hover::before {
    opacity: 1;
}

/* IMAGE */
.product-img {
    height: 240px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(.2, .8, .2, 1);
}

.product-card:hover img {
    transform: scale(1.15);
}

/* CONTENT */
.product-content {
    padding: 35px 30px;
    position: relative;
}

.product-icon {
    font-size: 30px;
    color: #0036c7;
    margin-bottom: 15px;
    transition: 0.4s;
}

.product-card:hover .product-icon {
    transform: rotate(8deg) scale(1.15);
}

.product-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.product-content p {
    color: #070606;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.explore-btn {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    color: #0036c7;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: 0.4s ease;
}

.explore-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #0036c7;
    transition: 0.4s ease;
}

.explore-btn::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(255, 122, 24, 0.5);
    transition: 0.4s ease;
}

.explore-btn:hover {
    color: #fff;
    background: #0036c7;
}

.explore-btn:hover::before {
    inset: 4px;
}

.explore-btn:hover::after {
    inset: -10px;
    opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {


    .product-img {
        height: 200px;
    }

    .explore-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}

.text-title {
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    margin: 3rem 1rem;
    padding-bottom: 0.6rem;
    background: linear-gradient(90deg, #0036c7, #060605);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShift 3s linear infinite;
}

/* Animate heading text gradient */
@keyframes textShift {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}

/* Animated underline */
.text-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 3px;
    background: linear-gradient(90deg, #0036c7, #0a0a09);
    background-size: 200% 100%;
    animation: underlineShift 2s linear infinite;
}

/* Animate underline gradient */
@keyframes underlineShift {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .text-title {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
    }

    .text-title::after {
        width: 60px;
        height: 3px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .text-title {
        font-size: 1.5rem;
        padding-bottom: 0.5rem;
    }

    .text-title::after {
        width: 50px;
        height: 2.5px;
    }
}

/* why choose us */


/* Footer Base */
.footer {
    background-color: #979696;
    color: #fff;
    padding-top: 60px;
}

.footer h3,
.footer h4 {
    color: #0036c7;
    font-weight: 600;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #0036c7;
}

/* Tick Circle Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #0036c7;
}

.tick-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #0036c7;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

/* Social Icons */
.social-iconss a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #080808;
    color: #fff;
    transition: 0.3s;
}

.social-iconss a:hover {
    background-color: #0036c7;
    color: #fff;
}

/* Copyright */
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    background-color: #111;
    color: #fff;
    font-size: 14px;
}

@media (max-width: 767px) {
    .social-iconss {
        justify-content: start !important;
        margin-top: 15px;
    }

    .copyright {
        text-align: center;
    }
}


/* about us */
.about{
    overflow-x: hidden;
}

/*  */


/* counter */

.counter-div{
    height: 280px;
}
/*  */


/* about us pages csss */



/*  */


/* contact us */

.contact{
  overflow-x: hidden;
}

/*  */



/* heading */

.header-heading{
  text-transform: uppercase;
}
/*  */