
/*** Spinner Start ***/
/*** Spinner ***/
#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 ***/

.logo-img {
    height: 100px;      /* ideal navbar height */
    width: auto;       /* keeps aspect ratio */
}

@media (max-width: 768px) {
    .logo-img {
        height: 38px;  /* smaller on mobile */
    }
}


.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    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: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: #fff !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 100px;
}

.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: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background:#ed4339;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 2px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background:#000000;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background:#b1b3b7;
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {

    /* Remove extra gap above slider */
    .carousel-header {
        margin-top: 0;
        height: auto !important;
    }

    /* Let slide height be driven by content */
    .carousel-header .carousel-inner .carousel-item {
        min-height: auto;
        position: relative;
    }

    /* Make image follow content height */
    .carousel-header .carousel-inner .carousel-item img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Caption defines the height */
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        position: relative;
        height: auto;
        min-height: 100vh;              /* hero feel */
        padding: 90px 15px 50px;        /* navbar-safe */
        align-items: center;
        justify-content: center;
    }

    /* Text tuning */
    .carousel-caption h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .carousel-caption h4 {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .carousel-caption p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Hide arrows on mobile */
    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
}


/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgb(19 53 123 / 14%), rgb(19 53 123 / 30%)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgb(19 53 123 / 39%), rgb(19 53 123 / 20%)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

/***imagecategory below slider *****/

.category-card {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-text {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.15));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
}

.category-text h4 {
    font-size: 28px;
    font-weight: 700;
}

.category-text p {
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 9999;
}

.whatsapp-icon {
    margin-top: 13px;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.05);
    transition: 0.3s;
}


.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #0d6efd;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 9999;
}

.call-icon {
    margin-top: 16px;
}

.call-float:hover {
    color: #fff;
    transform: scale(1.05);
    transition: 0.3s ease;
}


<style>
.video-box {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.video-box img {
    width: 100%;
    height: 533px;
    object-fit: cover;
}

.video-box::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 8px 22px;
}
</style>


.card img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.info-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-box img {
    max-height: 160px;
    object-fit: cover;
    width: 100%;
    border-radius: 6px;
}

.info-box h5 {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-box ul li {
    font-size: 15px;
    padding: 4px 0;
}

.info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}


.gallery-row {
    row-gap: 20px;          /* vertical gap */
}

.gallery-img {
    padding: 8px;           /* space around image */
    background: #fff;       /* optional (nice separation) */
    border-radius: 8px;
}

.gallery-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}


.hero-video{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.hero-video video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    z-index:5;
}

.hero-title{
    line-height:1.2;
}

.hero-subtitle{
    font-size:30px;
    font-weight:300;
    background:linear-gradient(90deg,#ffffff,#ffc107);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.location-box{
    display:inline-block;
    padding:12px 22px;
    border-radius:10px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.2);
    font-weight:600;
    color:#fff;
}

.glass-card{
    position:relative;
    padding:35px;
    border-radius:25px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.18);
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.feature-box{
    background:rgba(255,255,255,.10);
    border-radius:18px;
    padding:25px;
    text-align:center;
    transition:.35s;
}

.feature-box:hover{
    transform:translateY(-8px);
    background:rgba(255,193,7,.15);
}

.feature-box i{
    font-size:38px;
    color:#ffc107;
    margin-bottom:15px;
}

.feature-box p{
    color:#fff;
    font-weight:700;
    margin:0;
}

.gold-glow{
    width:140px;
    height:140px;
    position:absolute;
    right:-30px;
    bottom:-30px;
    background:#ffc107;
    opacity:.35;
    border-radius:50%;
    filter:blur(55px);
}

@media(max-width:991px){

.hero-content{
padding-top:120px;
padding-bottom:80px;
position:relative;
}

.hero-title{
font-size:42px;
}

.hero-subtitle{
font-size:22px;
}

.glass-card{
margin-top:40px;
}

}

/* ================================
   PRODUCT SECTION HEADING
================================ */

.product-section{
    background:#f8f9fa;
    padding:80px 0;
}

.product-tag{
    display:inline-block;
    padding:10px 28px;
    background:#ffc107;
    color:#fff;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.product-heading{
    display:block;
    font-size:48px;
    font-weight:700;
    color:#1b1b1b;
    text-transform:uppercase;
    margin:15px 0;
    line-height:1.2;
}

.product-subtitle{
    max-width:700px;
    margin:0 auto 50px;
    color:#666;
    font-size:18px;
    line-height:28px;
}


/* ================================
   PRODUCT CARD
================================ */

.product-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s ease;
    height:100%;
    border:1px solid #ececec;
}

.product-image{
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.6s;
}

.product-body{
    padding:30px;
}

.product-body h4{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:12px;
}

.product-desc{
    color:#777;
    margin-bottom:20px;
    line-height:26px;
}

.feature-list{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.feature-list li{
    color:#555;
    margin-bottom:10px;
    font-size:15px;
}

.explore-btn{
    color:#c89b3c;
    font-weight:700;
    transition:.4s;
}

.explore-btn span{
    transition:.4s;
    margin-left:8px;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    border-color:#c89b3c;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-card:hover .explore-btn span{
    margin-left:18px;
}


/* ================================
   MOBILE
================================ */

@media(max-width:991px){

.product-heading{
    font-size:34px;
}

.product-subtitle{
    font-size:16px;
}

.product-image img{
    height:220px;
}

}



/* ===== LIGHTBOX FIX ===== */

.lightbox{
    position: fixed !important;
    left:0 !important;
    top:0 !important;
    width:100% !important;
    height:100% !important;
    z-index:999999 !important;
    text-align:center;
}

.lightbox .lb-image{
    width:auto !important;
    height:auto !important;
    max-width:95vw !important;
    max-height:85vh !important;
    display:block !important;
    margin:auto !important;
    border:none !important;
}

.lightbox .lb-outerContainer{
    margin:auto !important;
}

.lightboxOverlay{
    z-index:999998 !important;
}