/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #666666;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    font-style: italic;
    color: #121518;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #aa9166;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #aa9166;
    color: #121518;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #aa9166;
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 90px;
    background: #000000;
}

.top-bar .logo {
    padding: 15px 0;
    text-align: left;
    overflow: hidden;
}

.top-bar .logo h1 {
    margin: 0;
    color: #aa9166;
    font-size: 75px;
    line-height: 55px;
    font-weight: 800;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 60px;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 90px;
    padding: 0 20px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text h2 {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 25px;
    margin: 0;
}

.top-bar .text p {
    color: #ffffff;
    font-size: 13px;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 90px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
    font-size: 22px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: #aa9166;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
    
    .top-bar .social {
        display: none;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    padding: 20px 0;
    transition: .3s;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

.nav-bar .navbar {
    height: 100%;
    padding: 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #aa9166;
    transition: none;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #aa9166;
    border-radius: 0;
}

.nav-bar .btn:hover {
    background: #aa9166;
}

@media (min-width: 992px) {
    .nav-bar {
        padding: 20px 60px;
    }
    
    .nav-bar.nav-sticky {
        padding: 10px 60px;
    }
    
    .nav-bar,
    .nav-bar .navbar {
        background: #121518 !important;
    }
    
    .nav-bar .navbar-brand {
        display: none;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {   
    .nav-bar,
    .nav-bar .navbar {
        padding: 3px 0;
        background: #121518 !important;
    }
    
    .nav-bar a.nav-link {
        padding: 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 25px;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    background: #121518;
    border: 2px solid #aa9166;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: #121518;
    background: #aa9166;
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #aa9166;
}

.page-header h2 {
    position: relative;
    color: #121518;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #121518;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #121518;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #121518;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 1;
}

.section-header h2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    left: 0;
    top: 21px;
    background: transparent;
    border-top: 1px solid #aa9166;
    border-bottom: 1px solid #aa9166;
    z-index: -1;
}

.section-header h2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    left: 0;
    bottom: 20px;
    background: transparent;
    border-top: 1px solid #aa9166;
    border-bottom: 1px solid #aa9166;
    z-index: -1;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}

/*******************************/
/******** Top Feature CSS ******/
/*******************************/
.feature-top {
    position: relative;
    background: #121518;
    margin-bottom: 45px;
}

.feature-top .col-md-3 {
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 575.98px) {
    .feature-top .col-md-3:nth-child(1n) {
        border-right: none;
    }
    
    .feature-top .col-md-3:last-child {
        border-bottom: none;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .feature-top .col-md-3:nth-child(2n) {
        border-right: none;
    }
    
    .feature-top .col-md-3:nth-child(3n),
    .feature-top .col-md-3:nth-child(4n) {
        border-bottom: none;
    }
}

@media (min-width: 768px) {
    .feature-top .col-md-3 {
        border-bottom: none;
    }
    
    .feature-top .col-md-3:nth-child(4n) {
        border-right: none;
    }
}

.feature-top .feature-item {
    padding: 30px 0;
    text-align: center;
}

.feature-top .feature-item i {
    color: #aa9166;
    font-size: 35px;
    margin-bottom: 10px;
}

.feature-top .feature-item h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
}

.feature-top .feature-item p {
    color: #999999;
    margin: 0;
    font-size: 18px;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #121518;
}

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    border: 2px solid #aa9166;
    border-radius: 0;
    background: #121518;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #121518;
    background: #aa9166;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    background: #121518;
    margin-bottom: 30px;
}

.service .service-icon {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.service .service-icon i {
    width: 100px;
    height: 100px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    color: #aa9166;
    background: #121518;
    transition: .5s;
}

.service .service-item:hover .service-icon i {
    margin-top: -15px;
}

.service .service-item h3 {
    margin: 0;
    padding: 25px 15px 15px 15px;
    font-size: 30px;
    font-weight: 600;
    color: #aa9166;
}

.service .service-item p {
    margin: 0;
    color: #999999;
    padding: 0 25px 25px 25px;
    font-size: 18px;
}

.service .service-item a.btn {
    position: relative;
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    border: 2px solid #aa9166;
    border-radius: 0;
    background: #121518;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.feature .feature-item {
    margin-bottom: 30px;
}

.feature .feature-icon {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121518;
}

.feature .feature-icon i {
    width: 100px;
    height: 100px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    color: #aa9166;
    background: #000000;
    transition: .5s;
}

.feature .feature-item:hover .feature-icon i {
    margin-right: -15px;
}

.feature .feature-item h3 {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
}

.feature .feature-item h3::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #aa9166;
}

.feature .feature-item p {
    margin: 0;
    font-size: 16px;
}

.feature .feature-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #121518;
}

.feature .feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    margin-bottom: 30px;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    padding: 50px 15px 30px 15px;
    text-align: center;
    background: #121518;
}

.team .team-text h2 {
    font-size: 22px;
    font-weight: 600;
    color: #aa9166;
}

.team .team-text p {
    margin: 0;
    color: #999999;
}

.team .team-social {
    position: absolute;
    width: calc(100% - 60px);
    height: 50px;
    top: -25px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #aa9166;
    font-size: 0;
    transition: .5s;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-social a {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    text-align: center;
    color: #121518;
    transition: .3s;
}

.team .team-social a:last-child {
    margin-right: 0;
}

.team .team-social a:hover {
    color: #ffffff;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .faqs-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #121518;
}

.faqs .faqs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 767.98px) {
    .faqs .faqs-img {
        margin-bottom: 30px;
        height: auto;
    }
}

.faqs .card {
    margin-bottom: 15px;
    padding-top: 15px;
    border: none;
    border-radius: 0;
    border-top: 1px solid #aa9166;
}

.faqs .card:last-child {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #aa9166;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    width: 100%;
    color: #121518;
    font-size: 18px;
    line-height: 40px;
}

.faqs .card-header a span {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center;
    background: #121518;
    color: #aa9166;
    font-weight: 700;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #121518;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #121518;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-body {
    padding: 15px 0 0 0;
    font-size: 16px;
    border: none;
    background: #ffffff;
}

.faqs a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    border: 2px solid #aa9166;
    border-radius: 0;
    background: #121518;
    transition: .3s;
}

.faqs a.btn:hover {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 0 15px;
    padding: 30px;
    background: #121518;
    overflow: hidden;
}

.testimonial .testimonial-item i {
    position: absolute;
    top: 0;
    right: 0;
    color: #333333;
    font-size: 60px;
    transform: rotate(45deg);
    z-index: 1;
}

.testimonial .testimonial-item .col-12 {
    margin-top: 20px;
}

.testimonial .testimonial-item img {
    width: 100%;
}

.testimonial .testimonial-item h2 {
    color: #aa9166;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial .testimonial-item p {
    color: #999999;
    font-size: 16px;
    margin: 0;
}

.testimonial .owl-nav,
.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #aa9166;
}

.testimonial .owl-dot.active {
    background: #121518;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
    background: #ffffff;
    overflow: hidden;
}

.blog .blog-page .blog-item {
    margin: 0 0 30px 0;
}

.blog .blog-item img {
    width: 100%;
    margin-bottom: 25px;
}

.blog .blog-item h3 {
    font-size: 25px;
    font-weight: 600;
}

.blog .blog-item .meta {
    padding: 0 0 15px 0;
}

.blog .blog-item .meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #999999;
}

.blog .blog-item .meta i {
    margin: 0 2px 0 10px;
}

.blog .blog-item .meta i:first-child {
    margin-left: 0;
}

.blog .blog-item p {
    font-size: 16px;
}

.blog .blog-item a.btn {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    transition: .3s;
}

.blog .blog-item a.btn i {
    margin-left: 10px;
}

.blog .blog-item a.btn:hover {
    color: #121518;
}

.blog .owl-nav,
.blog .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.blog .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #aa9166;
}

.blog .owl-dot.active {
    background: #121518;
}

.blog .pagination .page-link {
    color: #121518;
    border-radius: 0;
    border-color: #aa9166;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #121518;
    background: #aa9166;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/********* Timeline CSS ********/
/*******************************/
.timeline {
    position: relative;
    padding: 45px 0;
}

.timeline .timeline-start {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.timeline .timeline-container {
    padding: 0 15px;
    position: relative;
    background: inherit;
    width: 50%;
    margin-top: -5px;
}

.timeline .timeline-container.left {
    left: 0;
}

.timeline .timeline-container.right {
    left: 50%;
}

.timeline .timeline-container::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 5px;
    background: #aa9166;
    z-index: 1;
}

.timeline .timeline-container.left::before {
    top: 0;
    right: 0;
}

.timeline .timeline-container.right::before {
    bottom: 0;
    left: 0;
}

.timeline .timeline-container::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 5px;
    background: #aa9166;
    z-index: 1;
}

.timeline .timeline-container.left::after {
    bottom: 0;
    right: 0;
}

.timeline .timeline-container.right::after {
    top: 0;
    left: 0;
}

.timeline .timeline-container:first-child::before,
.timeline .timeline-container:last-child::before {
    display: none;
}

.timeline .timeline-container .timeline-content {
    padding: 30px;
    background: #121518;
    position: relative;
    border-right: 5px solid #aa9166;
}

.timeline .timeline-container.right .timeline-content {
    border-left: 5px solid #aa9166;
}

.timeline .timeline-container .timeline-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #aa9166;
}

.timeline .timeline-container .timeline-content h2 span {
    display: inline-block;
    margin-right: 15px;
    padding: 5px 10px;
    color: #121518;
    background: #aa9166;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
}

.timeline .timeline-container .timeline-content p {
    margin: 0;
    font-size: 16px;
    color: #999999;
}

@media (max-width: 767.98px) {
    .timeline .timeline-container {
        width: 100%;
        margin-top: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 30px;
    }
    
    .timeline .timeline-container:last-child {
        padding-bottom: 0;
    }
    
    .timeline .timeline-container.right {
        left: 0%;
    }

    .timeline .timeline-container.left::after, 
    .timeline .timeline-container.right::after,
    .timeline .timeline-container.left::before,
    .timeline .timeline-container.right::before {
        width: 5px;
        height: 35px;
        left: 15px;
    }
    
    .timeline .timeline-container.left .timeline-content,
    .timeline .timeline-container.right .timeline-content {
        border-left: 5px solid #aa9166;
        border-right: none;
    }
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #aa9166;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #121518;
    border: 2px solid #aa9166;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #aa9166;
    color: #121518;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #121518;
    background: #aa9166;
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: .5s;
}

.portfolio .portfolio-item:hover {
    margin-top: -10px;
}

.portfolio .portfolio-wrap {
    position: relative;
    width: 100%;
}

.portfolio img {
    position: relative;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.portfolio figure {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    background: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .0), rgba(0, 0, 0, 1) 90%);
}

.portfolio figure p {
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
}

.portfolio figure p::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #ffffff;
}

.portfolio figure a {
    font-family: 'EB Garamond', serif;
    color: #aa9166;
    font-size: 25px;
    font-weight: 600;
    font-style: italic;
    transition: .3s;
}

.portfolio figure a:hover {
    text-decoration: none;
    color: #ffffff;
}

.portfolio figure span {
    position: relative;
    color: #999999;
    font-size: 16px;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-info {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    padding: 30px;
    background: #121518;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 2px solid #aa9166;
}

.contact .contact-item i {
    display: inline-block;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #aa9166;
    border: 2px solid #aa9166;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 15px;
}

.contact .contact-text h2 {
    color: #aa9166;
    font-size: 25px;
    font-weight: 600;
}

.contact .contact-text p {
    margin: 0;
    color: #999999;
    font-size: 16px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    margin-bottom: 30px;
}

.contact .contact-form input {
    height: 60px;
    border-radius: 0;
    border-width: 2px;
    border-color: #121518;
}

.contact .contact-form textarea {
    height: 190px;
    border-radius: 0;
    border-width: 2px;
    border-color: #121518;
}

.contact .contact-form .btn {
    padding: 16px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    background: #121518;
    border: 2px solid #aa9166;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 65px 0;
}

.single img {
    margin: 10px 0 15px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}


/*******************************/
/********** Newsletter *********/
/*******************************/
.newsletter {
    position: relative;
    max-width: 900px;
    margin: 45px auto -140px auto;
    padding: 30px 15px;
    background: #aa9166;
    z-index: 1;
}

.newsletter .section-header {
    margin-bottom: 25px;
}

.newsletter .section-header h2::before,
.newsletter .section-header h2::after {
    border-color: #ffffff;
}

.newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #aa9166;
    background: #121518;
    border-radius: 0;
    border: 2px solid #aa9166;
    transition: .3s;
}

.newsletter .btn:hover {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 180px;
    background: #121518;
    color: #ffffff;
}

.footer .footer-about,
.footer .footer-link,
.footer .footer-contact {
    position: relative;
    margin-bottom: 45px;
    color: #999999;
}

.footer .footer-about h2,
.footer .footer-link h2,
.footer .footer-contact h2{
    position: relative;
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 600;
    color: #aa9166;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #999999;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #aa9166;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #aa9166;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    background: #000000;
    font-size: 0;
    text-align: center;
}

.footer .footer-menu .f-menu a {
    color: #999999;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu .f-menu a:hover {
    color: #aa9166;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #aa9166;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}










/* Justify all paragraphs on the website */
p {
    text-align: justify;
    line-height: 1.6; /* Adds better line spacing for readability */
    margin-bottom: 15px; /* Optional: Adds space between paragraphs */
}

/* Headings styling - center-align headings */
h1, h2, h3, h4, h5, h6 {
    text-align: center; /* Adjust the alignment based on your need */
    margin-bottom: 20px; /* Adds spacing below headings */
}

/* Make the website fully responsive */
@media only screen and (max-width: 768px) {
    /* Adjust text alignment on smaller screens */
    p {
        text-align: left; /* On mobile, we can keep left alignment */
    }

    /* Optionally, reduce heading size for smaller devices */
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.6em;
    }
    h3 {
        font-size: 1.4em;
    }

    /* Adjust margins for better mobile readability */
    p {
        margin-bottom: 10px; /* Reduce space between paragraphs */
    }

    /* Add padding to ensure text isn't touching the edges */
    .container {
        padding: 0 15px;
    }
}

/* Add font sizes and styles for better readability */
body {
    font-family: 'Arial', sans-serif;
    font-size: 16px; /* Default font size */
    line-height: 1.6;
    color: #333; /* Dark color for better readability */
}

/* Add space between different sections for better layout */
section {
    margin-bottom: 40px;
}

/* Responsive text inside buttons, headers, and other elements */
button, .btn, .call-to-action {
    font-size: 16px;
    padding: 10px 20px;
    background-color: #4CAF50; /* Green color */
    border: none;
    color: #fff;
    text-align: center;
    display: inline-block;
    margin-top: 15px;
}

/* Ensure consistent spacing for links */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #4CAF50; /* Green on hover */
}

/* Adjust text for better readability on mobile */
@media only screen and (max-width: 600px) {
    body {
        font-size: 14px; /* Reduce font size on small screens */
    }
}


.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.about .btn {
  background: #c8a45d;
  color: #000;
  padding: 10px 22px;
  font-weight: 600;
  margin-top: 10px;
}


.service-card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s;
  height: 100%;
}

.service-card h4 {
  color: #2d3e50;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #777;
}

.service-card a {
  color: #3f51b5;
  font-weight: 500;
  text-decoration: none;
}

.service-card:hover {
  background: #3f51b5;
  color: #fff;
  transform: translateY(-5px);
}

.service-card:hover h4,
.service-card:hover p,
.service-card:hover a {
  color: #fff;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h4 {
  color: #2d3e50;
  font-weight: 600;
  margin-bottom: 12px;
  min-height: 50px; /* FIX alignment */
}

.service-card p {
  font-size: 14px;
  color: #777;
  min-height: 60px; /* FIX alignment */
}

.service-card a {
  color: #3f51b5;
  font-weight: 500;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.service-card:hover {
  background: #3f51b5;
  color: #fff;
  transform: translateY(-5px);
}

.service-card:hover h4,
.service-card:hover p,
.service-card:hover a {
  color: #fff;
}

.service-card {
  border-radius: 6px;
}

.service-section h2 {
  font-family: 'Playfair Display', serif;
}

.service-section p {
  text-align: center;
}


.carousel-caption h1 {
  font-size: 42px;
  font-weight: 700;
}

.carousel-caption p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-btns .btn {
  margin: 5px;
  padding: 10px 20px;
  font-weight: 600;
}

.btn-call {
  background: #c8a96a;
  color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-call:hover {
  background: #b89655;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}


.top-bar {
    background: #0b0f1a !important; /* Dark premium */
}

.top-bar {
    background: #0b0f1a !important; /* Dark premium */
}

.nav-bar {
    background: #0f172a !important;
}

.footer {
    background: #020617 !important;
}

/* Header */
.top-bar {
    background: #020617;
}

/* Navbar */
.nav-bar {
    background: #0f172a;
}

/* Footer */
.footer {
    background: #020617;
}

background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(image.jpg);

background: linear-gradient(rgba(10,25,50,0.75), rgba(10,25,50,0.75)), url(img/slider-law.jpg);
background-size: cover;
background-position: center;

/* GLOBAL FONT SYSTEM */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* SECTION SPACING FIX */
.section-header {
    margin-bottom: 40px;
    text-align: center;
}



/* HERO TEXT ALIGNMENT */
.carousel-caption {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* BUTTON SPACING */
.carousel-caption .btn {
    margin: 10px;
    padding: 12px 30px;
}

/* SERVICES GRID FIX */
.service .row {
    row-gap: 25px;
}

/* CARD ALIGNMENT */
.service-item {
    text-align: center;
    padding: 25px;
}

/* TEAM SECTION */
.team .team-item {
    text-align: center;
}

/* FOOTER SPACING */
.footer {
    padding: 60px 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .carousel-caption h1 {
        font-size: 24px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .carousel-caption .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }

    .service-item {
        margin-bottom: 20px;
    }

    .team .col-lg-3 {
        margin-bottom: 20px;
    }
}

/* Dropdown Base */
.navbar .dropdown-menu {
    background: #000; /* black bg like JTS */
    border: none;
    padding: 0;
}

/* Dropdown Items */
.navbar .dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

/* Hover Effect (IMPORTANT) */
.navbar .dropdown-menu .dropdown-item:hover {
    background: #c9a14a;  /* golden highlight */
    color: #000;
}

/* Active Item (current page) */
.navbar .dropdown-menu .dropdown-item.active {
    background: #c9a14a;
    color: #000;
}
.navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #000 transparent;
}

/* Heading */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #121518;
}

/* Body */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-style: normal; /* ? italic hata diya */
    color: #121518;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: none; /* clean rakho */
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
}


h1, h2 {
  text-align: center;
  font-weight: 700;
  color: #0b1c3a;
  margin-bottom: 10px;
  position: relative;
}

h1::after,
h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a14a;
  margin: 10px auto 0;
}

.carousel-caption p {
  line-height: 1.6;
}


.service-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-icon {
  width: 55px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.service-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

.service-card a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
  color: #2d3e9f;
  text-decoration: none;
}

.service-card:hover {
  background: #0b2e4f;
  color: #fff;
  transform: translateY(-6px);
}

.service-card:hover p {
  color: #ddd;
}

.service-card:hover a {
  color: #ffd700;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}



.service-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.service-box {
  display: block;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: #f1f1f1;
  transition: 0.3s;
  text-decoration: none;
  color: #000;
}

.service-box img {
  width: 60px;
  margin-bottom: 10px;
}

.service-box span {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.service-box:hover {
  background: #2bbf6a;
  color: #fff;
  transform: translateY(-5px);
}

.service-box:hover img {
  filter: brightness(0) invert(1);
}

.service-box.active {
  background: #2bbf6a;
  color: #fff;
}

.service-box img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.service-box {
  padding: 20px;
  border-radius: 14px;
  background: #f1f1f1;
  text-align: center;
  transition: 0.3s;
  height: 140px; /* FIX HEIGHT */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ICON BOX CREATE */
.service-box img {
  width: 70px;
  height: 70px;
  object-fit: cover; /* ?? IMPORTANT CHANGE */
  margin-bottom: 8px;
}

/* TEXT */
.service-box span {
  font-size: 13px;
  font-weight: 600;
}

/* HOVER */
.service-box:hover {
  background: #2bbf6a;
  color: #fff;
  transform: translateY(-4px);
}

.service-box:hover img {
  filter: brightness(0) invert(1);
}

.service-box {
  height: 130px;
  border-radius: 16px;
  background: #eeeeee;
}

.service-box img {
  width: 65px;
  height: 65px;
}

.service-box {
  background: #eeeeee; /* ya white bhi kar sakte ho */
  color: #000;
}

.service-box:hover {
  background: #2bbf6a;
  color: #fff;
}

.service-box:hover img {
  filter: none;
}

.team-text {
  text-align: center;
  padding: 15px 10px;
}

.team-text h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-text p {
  font-size: 14px;
  color: #777;
}


.testimonial-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  height: 100%; /* ?? equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.testimonial-top img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-item h2 {
  font-size: 16px;
  margin: 0;
}

.testimonial-item p {
  font-size: 14px;
  color: #666;
  flex-grow: 1; /* ?? text stretch */
}

.testimonial-item i {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #caa75b;
}


.owl-carousel .testimonial-item {
  height: 100%;
}


.testimonial-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.testimonial-item h3 {
  font-size: 14px;
  color: #caa75b;
  margin-bottom: 5px;
}

.testimonial-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.testimonial-item p {
  font-size: 14px;
  color: #666;
}

.testimonial-item i {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #caa75b;
}


.blog-section {
  padding: 70px 0;
  background: #f8f9fa;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-category {
  font-size: 12px;
  color: #caa75b;
  font-weight: 600;
}

.blog-content h3 {
  font-size: 18px;
  margin: 10px 0;
}

.blog-content p {
  font-size: 14px;
  color: #666;
}

.read-btn {
  display: inline-block;
  margin-top: 10px;
  color: #007bff; /* ?? BLUE */
  font-weight: 600;
  text-decoration: none;
}

.read-btn:hover {
  text-decoration: underline;
}



/* TEAM SECTION IMPROVE */
.team {
  padding: 80px 0;
}

/* HEADING */
.section-header h2 {
  font-size: 40px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* CARD */
.team-item {
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background: #fff;
}

/* HOVER EFFECT ?? */
.team-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* IMAGE FIX */
.team-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* TEXT */
.team-text {
  text-align: center;
  padding: 20px 15px;
}

.team-text h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-text p {
  font-size: 14px;
  color: #777;
}


/****************************************/
/******** MOBILE RESPONSIVE FIX *********/
/****************************************/

html,
body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Prevent bootstrap row overflow */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Container fix */
.container,
.container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/****************************************/
/******** TOP BAR MOBILE FIX ************/
/****************************************/

@media (max-width: 991px) {

    .top-bar {
        height: auto;
        padding: 10px 0;
    }

    .top-bar .logo {
        text-align: center;
        margin-bottom: 10px;
    }

    .top-bar .top-bar-right {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .top-bar .text {
        height: auto;
        border: none;
        padding: 5px 0;
    }

    .top-bar .text h2 {
        font-size: 16px !important;
    }

    .top-bar .text p {
        font-size: 12px !important;
    }

    .top-bar .social {
        display: flex !important;
        justify-content: center;
        height: auto;
        margin-top: 10px;
    }

    .top-bar .social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .top-bar .btn {
        margin-top: 10px;
        font-size: 14px;
        padding: 8px 16px;
    }
}


/****************************************/
/******** CLEAN FINAL MOBILE FIX ********/
/****************************************/

html,
body{
    overflow-x:hidden !important;
    width:100%;
    max-width:100%;
}

*{
    box-sizing:border-box;
}

/* REMOVE EXTRA SPACE */
.container,
.container-fluid{
    padding-top:0 !important;
    padding-bottom:0 !important;
}

/* REMOVE ROW OVERFLOW */
.row{
    margin-left:0 !important;
    margin-right:0 !important;
}

/****************************************/
/******** MOBILE ONLY FIX ***************/
/****************************************/

@media(max-width:768px){

/* TOP HEADER */
.top-bar{
    padding:15px 0;
    height:auto !important;
}

/* NAVBAR */
.nav-bar{
    padding:0 !important;
}

/* =========================================================
   FINAL RESPONSIVE + DROPDOWN FIX
   Updated: 06-05-2026
   Planet Lex Website Final Stable Version
========================================================= */

/****************************************/
/******** HERO SLIDER FIX ***************/
/****************************************/

.carousel{
    height:100vh !important;
    min-height:100vh !important;
    overflow:hidden;
}

.carousel-inner,
.carousel-item{
    height:100vh !important;
}

.carousel-item img{
    width:100%;
    height:100vh !important;
    object-fit:cover;
}

/****************************************/
/******** CAPTION FIX *******************/
/****************************************/

.carousel-caption{
    position:absolute !important;

    top:58% !important;
    left:50% !important;

    transform:translate(-50%, -50%) !important;

    width:100%;
    padding:20px 18px;

    display:block !important;
    text-align:center;

    bottom:auto !important;
}

/* MAIN HEADING */
.carousel-caption h1{
    font-size:34px !important;
    line-height:1.2 !important;
    margin-bottom:15px !important;
    color:#fff !important;
}

/* SUB HEADING */
.carousel-caption h2{
    font-size:18px !important;
    line-height:1.4 !important;
    margin-bottom:15px !important;
    color:#fff !important;
}

/* PARAGRAPH */
.carousel-caption p{
    font-size:14px !important;
    line-height:1.7 !important;
    margin-bottom:16px !important;
    color:#fff !important;
}

/****************************************/
/******** BUTTON FIX ********************/
/****************************************/

.hero-btns{
    display:flex;
    flex-direction:column;
    gap:10px;
    width:100%;
}

.hero-btns .btn,
.carousel-caption .btn{
    width:100%;
    margin:0 !important;
    padding:12px 18px !important;
    font-size:14px !important;
}

/****************************************/
/******** SECTION HEADING FIX ***********/
/****************************************/

.section-header h2{
    white-space:normal !important;
    font-size:28px !important;
    line-height:1.3 !important;
}

/****************************************/
/******** EXTRA FIX *********************/
/****************************************/

/* REMOVE FLEX CONFLICT */
.carousel .carousel-caption{
    align-items:unset !important;
    justify-content:unset !important;
}

/* =========================================
   FINAL MOBILE RESPONSIVE FORCE FIX
========================================= */

/* GLOBAL FIX */
*{
    box-sizing:border-box;
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
    margin:0;
    padding:0;
    font-family:'Poppins', sans-serif !important;
}

/* REMOVE HORIZONTAL SCROLL */
.container,
.container-fluid,
.row,
.col,
[class*="col-"]{
    max-width:100%;
}

/* FIX BOOTSTRAP ROW OVERFLOW */
.row{
    margin-left:0 !important;
    margin-right:0 !important;
}

/* WRAPPER */
.wrapper{
    width:100%;
    max-width:100%;
    overflow:hidden;
}

/* IMAGES */
img{
    max-width:100%;
    height:auto;
    display:block;
}

/* HEADINGS */
h1,h2,h3,h4,h5,h6{
    font-family:'Playfair Display', serif !important;
    text-align:center;
    word-break:break-word;
}

/* PARAGRAPH */
p{
    text-align:justify;
    line-height:1.7;
}

/* =========================================
   MOBILE FIX
========================================= */

@media only screen and (max-width:991px){

    html,
    body{
        overflow-x:hidden !important;
    }

    /* TOP BAR */
    .top-bar{
        height:auto;
        padding:15px 10px;
        text-align:center;
    }

    .top-bar .logo{
        text-align:center;
        margin-bottom:10px;
    }

    .top-bar .logo img{
        margin:auto;
        max-height:70px;
    }

    .top-bar-right{
        flex-direction:column;
        justify-content:center !important;
        align-items:center !important;
        gap:12px;
    }

    .top-bar .text{
        border:none !important;
        padding:0 !important;
        height:auto !important;
    }

    .top-bar .social{
        display:flex !important;
        justify-content:center;
        height:auto;
    }

    .top-bar .social a{
        width:42px;
        height:42px;
        border:none;
        font-size:18px;
    }

    /* NAVBAR */
    .nav-bar{
        padding:0 !important;
        width:100%;
        overflow:hidden;
    }

    .navbar{
        padding:8px 15px !important;
    }

    .navbar-toggler{
        border:none;
        outline:none;
        box-shadow:none !important;
    }

    .navbar-collapse{
        background:#121518;
        padding:10px 15px;
    }

    .navbar-nav{
        width:100%;
    }

    .navbar-nav .nav-link{
        padding:10px 0 !important;
        border-bottom:1px solid rgba(255,255,255,0.08);
        text-align:left;
    }

    /* HERO SLIDER */
    .carousel{
        height:auto !important;
        min-height:auto !important;
    }

    .carousel .carousel-item{
        min-height:520px;
    }

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

    .carousel .carousel-caption{
        width:100%;
        left:0;
        right:0;
        padding:20px;
        height:100%;
    }

    .carousel .carousel-caption h1{
        font-size:28px !important;
        line-height:1.25 !important;
        margin-bottom:15px !important;
    }

    .carousel .carousel-caption h2{
        font-size:18px !important;
        line-height:1.5 !important;
    }

    .carousel .carousel-caption p{
        font-size:14px !important;
        line-height:1.7 !important;
        text-align:center;
    }

    /* HERO BUTTONS */
    .hero-btns{
        display:flex;
        flex-direction:column;
        gap:12px;
        width:100%;
    }

    .hero-btns .btn,
    .carousel .btn{
        width:100%;
        max-width:100%;
        font-size:14px !important;
        padding:12px 15px !important;
        margin:0 !important;
    }

    /* ABOUT SECTION */
    .about{
        padding:40px 15px;
    }

    .about .about-img{
        margin-bottom:25px;
    }

    .about-text p{
        text-align:justify !important;
        font-size:15px;
    }

    /* FOOTER */
    .footer{
        overflow:hidden;
        text-align:center;
    }

    .footer .footer-contact,
    .footer .footer-link,
    .footer .footer-about{
        margin-bottom:30px;
    }

    .footer .footer-social{
        text-align:center;
    }

    /* BACK TO TOP */
    .back-to-top{
        right:12px !important;
        bottom:12px !important;
        z-index:9999;
    }

    /* SECTION HEADERS */
    .section-header h2{
        font-size:32px !important;
        white-space:normal !important;
        line-height:1.3;
    }

    .section-header h2::before,
    .section-header h2::after{
        display:none;
    }

}

/* EXTRA SMALL DEVICES */
@media only screen and (max-width:575px){

    .carousel .carousel-caption h1{
        font-size:24px !important;
    }

    .carousel .carousel-caption h2{
        font-size:16px !important;
    }

    .carousel .carousel-caption p{
        font-size:13px !important;
    }

    .section-header h2{
        font-size:28px !important;
    }

    p{
        font-size:14px;
    }

}

/* MOBILE MENU TOGGLER IMPROVEMENT */

.custom-toggler{
    display:flex;
    align-items:center;
    gap:10px;
    border:none !important;
    box-shadow:none !important;
    outline:none !important;
    padding:10px 14px;
    background:#121518;
    border-radius:6px;
}

.custom-toggler:focus{
    outline:none !important;
    box-shadow:none !important;
}

.menu-text{
    color:#ffffff;
    font-size:14px;
    font-weight:600;
    letter-spacing:0.5px;
    text-transform:uppercase;
}

.navbar-toggler-icon{
    width:24px;
    height:24px;
}

@media(min-width:992px){
    .menu-text{
        display:none;
    }
}

/* =========================================================
   FINAL CLEAN DESKTOP DROPDOWN FIX
========================================================= */

@media(min-width:992px){

    .nav-item.dropdown{
        position:relative;
    }

    .navbar .dropdown-menu{
        display:none;
        position:absolute !important;
        top:100%;
        left:0;
        min-width:280px;
        background:#121518 !important;
        border:none !important;
        border-radius:0 !important;
        padding:8px 0;
        z-index:99999 !important;
        margin-top:0 !important;
    }

    .nav-item.dropdown:hover .dropdown-menu{
        display:block;
    }

    .navbar .dropdown-menu .dropdown-item{
        color:#fff !important;
        background:#121518 !important;
        padding:10px 18px;
        font-size:14px;
        transition:0.3s;
    }

    .navbar .dropdown-menu .dropdown-item:hover{
        background:#aa9166 !important;
        color:#121518 !important;
    }

}

/* =====================================================
   FINAL MOBILE RIGHT SCROLL FIX ONLY
   Updated: 06-05-2026
===================================================== */

@media only screen and (max-width: 768px){

    html,
    body{
        overflow-x:hidden !important;
        width:100% !important;
        max-width:100% !important;
    }

    /* REMOVE ALL EXTRA WIDTH */
    .wrapper,
    .container,
    .container-fluid,
    .row,
    [class*="col-"]{
        width:100% !important;
        max-width:100% !important;
        overflow-x:hidden !important;
    }

    /* FIX MAIN CAUSE */
    .testimonial .testimonials-carousel,
    .blog .blog-carousel,
    .timeline .timeline-start{
        width:100% !important;
        left:0 !important;
        right:0 !important;
        margin:0 !important;
    }

    /* CONTACT PAGE FIX */
    .contact,
    .contact-info,
    .contact-item,
    .contact-form{
        width:100% !important;
        overflow:hidden !important;
    }

    .contact .contact-item{
        flex-direction:column !important;
        align-items:center !important;
        text-align:center !important;
        padding:20px 15px !important;
    }

    .contact .contact-text{
        padding-left:0 !important;
        margin-top:15px !important;
        width:100% !important;
    }

    /* FOOTER MENU FIX */
    .footer .footer-menu .f-menu{
        display:flex !important;
        flex-wrap:wrap !important;
        justify-content:center !important;
        gap:10px !important;
        padding:15px 10px !important;
    }

    .footer .footer-menu .f-menu a{
        margin:0 !important;
        padding:0 8px !important;
        border-right:none !important;
        font-size:14px !important;
    }

    /* PREVENT ANY IMAGE OVERFLOW */
    img,
    iframe{
        max-width:100% !important;
        height:auto !important;
    }

}



/* =========================================
   FINAL MOBILE OVERFLOW FIX
   Date: 06-05-2026
========================================= */

@media only screen and (max-width:768px){

    html,
    body{
        overflow-x:hidden !important;
        width:100% !important;
        max-width:100% !important;
    }

    /* MAIN FIX */
    .testimonial .testimonials-carousel,
    .blog .blog-carousel,
    .timeline .timeline-start{
        width:100% !important;
        left:0 !important;
        right:0 !important;
        margin:0 !important;
    }

    /* REMOVE EXTRA WIDTH */
    .wrapper,
    .container,
    .container-fluid,
    .row,
    [class*="col-"]{
        max-width:100% !important;
        overflow-x:hidden !important;
    }

    /* CONTACT PAGE FIX */
    .contact .contact-item{
        flex-direction:column !important;
        text-align:center !important;
        align-items:center !important;
        padding:20px 15px !important;
    }

    .contact .contact-text{
        width:100% !important;
        padding-left:0 !important;
        margin-top:15px !important;
    }

    /* FOOTER MENU FIX */
    .footer .footer-menu .f-menu{
        display:flex !important;
        flex-wrap:wrap !important;
        justify-content:center !important;
        gap:8px !important;
        padding:15px 10px !important;
    }

    .footer .footer-menu .f-menu a{
        border:none !important;
        margin:0 !important;
        padding:0 5px !important;
        font-size:14px !important;
    }

}


/* =========================================
   CONTACT PAGE MOBILE FIX
   Date: 06-05-2026
========================================= */

@media only screen and (max-width:768px){

    html,
    body{
        overflow-x:hidden !important;
    }

    /* CONTACT FORM TABLE FIX */
    .contact-form table{
        width:100% !important;
        max-width:100% !important;
        display:block !important;
    }

    .contact-form table tr,
    .contact-form table td{
        display:block !important;
        width:100% !important;
    }

    .contact-form input,
    .contact-form textarea{
        width:100% !important;
        max-width:100% !important;
        box-sizing:border-box !important;
    }

    /* GOOGLE MAP FIX */
    .contact-form iframe{
        width:100% !important;
        max-width:100% !important;
        margin-top:20px !important;
    }

    /* CONTACT BOX FIX */
    .contact .contact-item{
        flex-direction:column !important;
        align-items:center !important;
        text-align:center !important;
        padding:20px 15px !important;
    }

    .contact .contact-text{
        width:100% !important;
        padding-left:0 !important;
        margin-top:15px !important;
    }

}

/* =================================
   FINAL DESKTOP NAVBAR ALIGNMENT
================================= */

@media (min-width: 992px) {

    .nav-bar .navbar-collapse{
        display:flex !important;
        justify-content:flex-end !important;
    }

    .nav-bar .navbar-nav{
        margin-left:auto !important;
        margin-right:25px !important;
        display:flex;
        align-items:center;
    }

    .nav-bar .navbar-nav .nav-item{
        margin-left:8px;
    }

    .nav-bar .navbar-nav .nav-link{
        font-size:15px;
        font-weight:500;
        padding:10px 12px !important;
    }

}


/* =====================================
   MOBILE MENU WHITE BACKGROUND FIX
===================================== */

@media (max-width: 991px){

    .nav-bar{
        background:#121518 !important;
    }

    .nav-bar .navbar{
        background:#121518 !important;
    }

    .navbar-collapse{
        background:#121518 !important;
        padding:12px 15px !important;
        border-top:1px solid rgba(255,255,255,0.08);
    }

    .navbar-nav{
        background:#121518 !important;
    }

    .navbar-nav .nav-link{
        color:#fff !important;
        background:#121518 !important;
    }

    .navbar-toggler{
        background:#121518 !important;
    }

    /* IMPORTANT FIX */
    .nav-bar.nav-sticky{
        background:#121518 !important;
    }

    .nav-bar.nav-sticky .navbar{
        background:#121518 !important;
    }

}

body{
    background:#121518;
}


/* =====================================
   MOBILE MENU WHITE GAP FINAL FIX
===================================== */

@media only screen and (max-width:768px){

    /* NAVBAR AREA */
    .nav-bar,
    .nav-bar .container-fluid,
    .nav-bar .navbar,
    #navbarCollapse{
        background:#121518 !important;
    }

    /* REMOVE WHITE GAP */
    .nav-bar{
        margin-bottom:0 !important;
        padding-bottom:0 !important;
    }

    /* FORCE MENU HEIGHT */
    .navbar-collapse{
        min-height:auto !important;
        height:auto !important;
    }

    /* REMOVE EMPTY SPACE */
    .navbar{
        align-items:flex-start !important;
    }

    /* IMPORTANT FIX */
    .nav-bar + *{
        margin-top:0 !important;
    }

}


@media only screen and (max-width:768px){

    .wrapper{
        background:#121518 !important;
    }

}

/* =========================================
   FINAL CLEAN MOBILE UI FIX
   ABOUT + FOOTER SAFE VERSION
========================================= */

/* DESKTOP SAME RAHE */
body{
    background:#ffffff;
}

/* =========================================
   MOBILE ONLY FIX
========================================= */

@media only screen and (max-width:768px){

    /* BODY */
    body,
    .wrapper{
        background:#f7f7f7 !important;
    }

    /* ABOUT SECTION */
    .about{
        background:#f7f7f7 !important;
        padding:40px 18px !important;
    }

    /* ABOUT IMAGE */
    .about .about-img{
        background:#ffffff !important;
        padding:8px !important;
        margin-bottom:25px !important;
        border-radius:10px;
        overflow:hidden;
    }

    .about .about-img img{
        border-radius:8px;
    }

    /* ABOUT HEADING */
    .about .section-header h2{
        font-size:34px !important;
        line-height:1.3 !important;
        color:#0b1c3a !important;
        white-space:normal !important;
    }

    /* ABOUT TEXT */
    .about .about-text p{
        font-size:15px !important;
        line-height:1.9 !important;
        text-align:justify !important;
        color:#444 !important;
        margin-bottom:18px !important;
        word-spacing:1px;
    }

    /* BUTTON */
    .about .btn{
        width:100%;
        padding:14px 18px !important;
        font-size:15px !important;
        text-align:center;
    }

    /* GENERAL SECTION BG */
    .service,
    .team,
    .testimonial,
    .blog,
    .contact{
        background:#f7f7f7 !important;
    }

    /* TEAM CARD */
    .team-item{
        background:#ffffff !important;
        border-radius:14px;
        overflow:hidden;
    }

    .team-text{
        background:#08142e !important;
        padding:18px 12px !important;
    }

    .team-text h2{
        color:#caa75b !important;
        font-size:20px !important;
    }

    .team-text p{
        color:#dcdcdc !important;
        font-size:14px !important;
        text-align:center !important;
    }

    /* TESTIMONIAL */
    .testimonial-item{
        background:#08142e !important;
        border-radius:14px !important;
    }

    .testimonial-item h3,
    .testimonial-item h4{
        color:#caa75b !important;
    }

    .testimonial-item p{
        color:#d8d8d8 !important;
        text-align:justify !important;
        font-size:14px !important;
    }

    /* BLOG */
    .blog-card{
        background:#ffffff !important;
        border-radius:14px;
        overflow:hidden;
    }

    /* SECTION HEADINGS */
    .section-header h2{
        color:#0b1c3a !important;
    }

    /* =========================================
       FOOTER FIX
       DESKTOP COLOR SAME
    ========================================= */

    .footer{
        background:#020617 !important;
        padding-top:60px !important;
        text-align:center;
    }

    .footer .footer-about,
    .footer .footer-link,
    .footer .footer-contact{
        color:#bfc4cf !important;
    }

    .footer h2{
        color:#caa75b !important;
        font-size:28px !important;
    }

    .footer a{
        color:#d6d6d6 !important;
    }

    .footer .footer-menu .f-menu{
        background:#000000 !important;
        padding:15px 10px !important;
    }

    .footer .footer-menu .f-menu a{
        color:#d6d6d6 !important;
        font-size:14px !important;
    }

    .footer .copyright{
        background:#020617 !important;
        padding-bottom:25px !important;
    }

    .footer .copyright p{
        text-align:center !important;
        color:#bfc4cf !important;
        font-size:14px !important;
    }

}