/**   Extra  ***/


.text-gold{
    color:#D4AF37 !important;
}



/* Site Logo **/

.site-logo{
    width:50px;
    height:50px;
    object-fit:contain;
}


  /* Dark Overlay */
.carousel-item{
    position: relative;
}

.carousel-caption{
    top:70%;
    transform:translateY(-50%);
    bottom:auto;
    z-index:2;
}

.carousel-item::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(9, 24, 45, 0.65);
    z-index:1;
}

.carousel-caption{
    z-index:2;
}

/* Hero Layout */

.hero-modern{
    max-width:900px;
    margin:auto;
    bottom:5%;
    padding-top:180px;
}

/* Badge */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    margin-bottom:25px;

    background:rgba(212,175,55,.12);
    color:#D4AF37;    
    backdrop-filter:blur(12px);

    border-radius:50px;

    font-size:15px;
    font-weight:600;
}

.hero-badge i{
    color:#B8860B;
}

/* Title */

.hero-title{
    font-size:clamp(3rem,6vw,5.5rem);
    font-weight:800;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
}

.hero-title span{
    color:#B8860B;
}

/* Description */

.hero-description{
    max-width:700px;
    margin:0 auto 35px auto;

    color:rgba(255,255,255,.85);
    font-size:1.15rem;
    line-height:1.8;
}

/* Buttons */

.hero-buttons{
    margin-bottom:40px;
}

.hero-btn-primary{
    padding:15px 35px;
    margin-right:15px;
    border-radius:8px;
}

.hero-btn-outline{
    padding:15px 35px;
    border:2px solid #fff;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.hero-btn-outline:hover{
    background:#fff;
    color:#09182d;
}

/* Stats */

.hero-stats{
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

.hero-stats h3{
    color:#fff;
    font-weight:800;
    margin-bottom:5px;
}

.hero-stats span{
    color:rgba(255,255,255,.75);
    font-size:14px;
}



/* About Section */

.hero-badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:10px 20px;
border-radius:50px;
background:rgba(212,175,55,.12);
color:#D4AF37;
font-weight:600;
margin-bottom:20px;
}

.hero-badge i{
color:#B8860B;
}


/* Features */

.feature-item{
transition:all .35s ease;
border:none !important;
}

.feature-item:hover{
transform:translateY(-10px);
}

.feature-img{
width:90px;
height:90px;
background:rgba(255,107,44,.1);
color:#B8860B;
}

.feature-item h4{
font-weight:700;
}

.feature-item p{
color:#6c757d;
line-height:1.8;
}


  /* Track Record Start */
  
  .stat-card{
background:#fff;
border:1px solid #e9ecef;
border-radius:16px;
padding:30px;
display:flex;
align-items:center;
gap:20px;
height:100%;
transition:all .3s ease;
}

.stat-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.stat-icon{
width:70px;
height:70px;
border-radius:12px;
background:rgba(255,107,44,.1);
color:#B8860B;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
}

.stat-card h2{
font-size:2.5rem;
font-weight:700;
color:#08254a;
margin-bottom:5px;
}

.stat-card p{
margin:0;
color:#6c757d;
font-size:16px;
}

.track-link{
color:#B8860B;
text-decoration:none;
font-weight:600;
font-size:18px;
}


/*   End ***/

/* Project Section */

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.project-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s ease;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.1)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:25px;
}

.project-category{
    position:absolute;
    top:20px;
    left:20px;

    background:#D4AF37;
    color:#08254A;

    padding:6px 12px;

    font-size:12px;

    border-radius:20px;
}

.project-filters{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:12px;
}

.project-btn{
border:none;
outline:none;
background:#f4f4f4;
color:#666;
padding:10px 24px;
border-radius:50px;
font-size:14px;
font-weight:600;
transition:all .3s ease;
cursor:pointer;
}

.project-btn:hover{
background:#B8860B;
color:#fff;
transform:translateY(-2px);
}

.project-btn.active{
background:#B8860B;
color:#fff;
box-shadow:0 8px 20px rgba(255,107,44,.25);
}


.project-info h5{
    color:#fff;
    margin-bottom:8px;
}

.project-info p{
    color:rgba(255,255,255,.8);
    margin-bottom:0;
    font-size:14px;
}

.project-icons{
    position:absolute;
    right:20px;
    bottom:25px;
}

.project-icons a{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#B8860B;
    color:#fff;

    border-radius:50%;
    text-decoration:none;

    transition:.3s;
}

.project-icons a:hover{
    background:#08254a;
}


/*  Galary View on Project */

.gallery-btn{
width:45px;
height:45px;
border:none;
border-radius:50%;
background:#B8860B;
color:#fff;
cursor:pointer;
transition:.3s;
}

.gallery-btn:hover

.gallery-modal{
display:none;
position:fixed;
z-index:9999;
inset:0;


background:rgba(0,0,0,.95);

justify-content:center;
align-items:center;


}

.gallery-content{
max-width:90%;
max-height:85vh;
border-radius:10px;
}

.gallery-close{
position:absolute;
top:20px;
right:30px;


color:#fff;
font-size:45px;
cursor:pointer;


}

.gallery-prev,
.gallery-next{

position:absolute;
top:50%;
transform:translateY(-50%);

width:60px;
height:60px;

border:none;
border-radius:50%;

background:rgba(255,255,255,.15);

color:#fff;

font-size:28px;

cursor:pointer;

transition:.3s;


}

.gallery-prev:hover,
.gallery-next:hover

.gallery-prev{
left:40px;
}

.gallery-next{
right:40px;
}



/*  Mobile   */


@media (max-width: 576px){

    .carousel-caption{
        top:60%;
    }

    .hero-title{
        font-size:2rem;
    }

    .hero-description{
        font-size:14px;
        line-height:1.6;
    }

    .hero-badge{
        font-size:12px;
        padding:8px 14px;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .hero-btn-primary,
    .hero-btn-outline{
        width:100%;
        margin:0;
    }

    .hero-stats{
        display:none;
    }

    .project-card img{
        height:240px;
    }

    .project-overlay{
        padding:20px;
    }

    .project-info h5{
        font-size:18px;
    }


    .gallery-prev,.gallery-next{

    width:45px;
    height:45px;

    font-size:20px;
    }

    .gallery-prev{
        left:15px;
    }

    .gallery-next{
        right:15px;
    }

    .carousel-control-prev,
    .carousel-control-next{
        display:none;
    }
}

/**   End of Extra ***/



/*** 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 ***/

.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: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.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{
    transition: all .3s ease;
}

.btn.btn-primary:hover{
    background:#B8860B;
    border-color:#B8860B;
    transform:translateY(-2px);
}

.btn-secondary{
    background:#D4AF37;
    border-color:#D4AF37;
    color:#08254A;
}



.btn-secondary:hover{
    background:#B8860B;
    border-color:#B8860B;
    color:#fff;
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary);
}
/*** Topbar End ***/

/*** Navbar ***/
.sticky-top {
    transition: 1s;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    transition: .5s;
    z-index: 99;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

/*
.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid var(--bs-secondary);
    opacity: 0;
    transition: 0.5s;
    z-index: 2 !important;
}
*/
.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

/*
.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}
*/

/* Underlining Active Nav Bar */
.navbar .navbar-nav .nav-link{
    position:relative;
}

.navbar .navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:3px;
    background:#D4AF37;
    transition:.3s ease;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after{
    width:100%;
}


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color:#D4AF37 !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-secondary);
}

.nav-bar .navbar-toggler { 
    color: var(--bs-dark);
    box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar .nav-item .dropdown-menu {
    background: var(--bs-light);
    transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        margin-top: 15% !important;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
        border: 0;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 991px) {
    .navbar .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before {
        display: none;
    }

    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        display: none;

    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item.nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

@media (min-width: 992px) {
    .carousel .carousel-inner .carousel-item img {
        height: 100%;
        object-fit: cover;   
    }
}

@media (max-width: 991px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
    }
    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;    
    }
}

@media (max-width: 576px) {
    .carousel-item .carousel-caption h1 {
        font-size: 36px;
    }

    .carousel-item .carousel-caption p.fs-5 {
        font-size: 15px;
    }
}

.carousel .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.carousel .carousel-indicators {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    z-index: 5;
}

.carousel .carousel-indicators li,
.carousel .carousel-indicators li,
.carousel .carousel-indicators li {
    margin-right: 30px !important;
    width: 10px;
    height: 10px;
    border: 6px solid var(--bs-secondary);
    background: var(--bs-white);
    transition: 0.5s;
}

.carousel .carousel-indicators li.active {
    border: 10px solid var(--bs-primary);
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    background: transparent;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    left: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    right: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}


.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover{

    background:#D4AF37;
    color:#08254A;

    transform:scale(1.08);

    box-shadow:0 10px 25px rgba(212,175,55,.35);
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover i,
.carousel .carousel-control-next .carousel-control-next-icon:hover i{
    color:#08254A !important;
}
/*** Carousel End ***/


/*** About Start ***/
.about .about-item-content-img {

    border:4px solid;

    border-color:
        #D4AF37
        #08254A
        #08254A
        #D4AF37;

    border-radius:10px;

    box-shadow:
        0 8px 20px rgba(0,0,0,.08);

    overflow:hidden;
}

.about .about-item-image {
    position: relative;
    background: var(--bs-light);
    background-image: url(../img/about-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}


.about .about-item-image .img-1 {

    margin-bottom:250px;

    border:4px solid;

     border-color:
        #D4AF37
        #08254A
        #08254A
        #D4AF37;

    box-shadow:
        0 10px 25px rgba(184,134,11,.15);

    z-index:3;
}


.about .about-item-image .img-2 {
    margin-top: 250px; 
    margin-left: 0;
    border: 4px solid;
      border-color:
        var(--bs-light)
        #08254A
        #B8860B
        #B8860B
        #08254A
        var(--bs-light);
       
        box-shadow:
        0 10px 25px rgba(184,134,11,.15);
    z-index: 3;
}

.about .about-item-image::before {
    width: 80%;
    height: 80%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-style: dotted;
    border-color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 2;
}

.about .about-item-image .about-item-image-content {
    width: 55%;
    height: 55%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bs-secondary);
    border: 4px solid var(--bs-primary);
    opacity: 0.9;
    z-index: 4;
}

.about .about-item-image .about-item-image-effect {
    position: absolute;
    top: 0;
    right: 0;
}
/*** About End ***/

/*** Features Start ***/
.feature .feature-item {
    position: relative;
    transition: 0.5s;
}
.feature .feature-item:hover {
    background: var(--bs-white);
    border: 1px solid transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.feature .feature-item:hover a {
    transition: 0.5s;
}

.feature .feature-item:hover a:hover {
    color: var(--bs-secondary);
}

.feature .feature-item .feature-img img {
    border: transparent;
    transition: 0.5s;
} 

.feature .feature-item:hover .feature-img img {
    border: 1px solid var(--bs-secondary);
}  
/*** Features End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.service .service-item .service-content {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%; 
    left: 0; 
    transform: translateY(-50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.service .service-item:hover .service-content {
    opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
    color: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
    color: var(--bs-secondary);
}

.service .service-item .service-title {
    position: absolute;
    width: 100%;
    height: 80px; 
    bottom: 0; 
    right: 0;
    background:#D4AF37;
    display: flex;
    transition: 0.5s;
    z-index: 3;
}

.service .service-item .service-title h4{
    color:#08254A;
}

.service .service-item:hover .service-title {
    margin-right: -100%;
}
/*** Services End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-secondary);
}
/*** Blog End ***/

/*** Contact Start ***/
.contact .contact-map {
    position: relative;
    overflow: hidden;
    padding: 20px;
    z-index: 1;
}

.contact .contact-map::before {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    z-index: -1;
}

.contact .contact-map::after {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bs-secondary);
    z-index: -1;
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 18, 72, 0.9), rgba(0, 18, 72, 1)), url(../img/footer-img.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-secondary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/


