/* Mobile Navigation */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #1a1a1a;
    z-index: 9999;
    overflow-y: auto;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.mobile-logo img {
    max-height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav>ul>li>a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav>ul>li>a:hover,
.mobile-nav>ul>li>a.active {
    background: rgba(255, 255, 255, 0.05);
    color: #ffd700;
}

.mobile-nav .menu-item-has-children>a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav .menu-item-has-children>a .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.mobile-nav .sub-menu {
    display: none;
    background: rgba(0, 0, 0, 0.2);
    padding-left: 15px;
}

.mobile-nav .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-nav .sub-menu li a:hover {
    color: #ffd700;
    background: rgba(255, 255, 255, 0.03);
}

.no-background .mobile-social-links {
    padding: 20px;
    /* text-align: center; */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* margin-top: 15px; */
    padding-left: 0;
}

@media (min-width: 992px) {
 .no-background .mobile-social-links {
 display: none;
} 
}


.no-background .mobile-social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.no-background .mobile-social-links .social-icon:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-3px);
}



.mobile-social-links {
    padding: 20px;
    /* text-align: center; */

    /* margin-top: 15px; */
    padding-left: 0;
}


@media (min-width: 992px) {
  .mobile-social-links {
 display: none;
} 
}
.mobile-social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #3d3d3d;
    color: #3d3d3d;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.mobile-social-links .social-icon:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* Mobile Menu Button */
.navbar-toggle {
    border: none;
    background: transparent !important;
    padding: 15px;
    margin: 8px 15px 8px 0;
    float: right;
    display: none;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px;
}

/* Mobile styles */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }

    .navbar-toggle {
        display: block !important;
    }

    .mobile-menu-open {
        overflow: hidden;
    }
}

@media (min-width: 992px) {

    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .custom-grid {
        flex-wrap: wrap;
    }

    .custom-col {
        flex: 1 1 50% !important;
        min-width: 50% !important;
        max-width: 50% !important;
    }

    .hover-card {
        height: 200px;
    }

    .custom-col:hover {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .custom-col:not(:hover) {
        flex: 1 1 40% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .hover-content h3 {
        font-size: 18px;
    }

    .custom-col {
        border-right: 0px solid white;
    }

    .hover-content {
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 13px 20px;
        width: 100%;
        color: #fff;
        transition: all 0.3s ease;
    }

    .hover-card:hover .hover-content h3 {
        font-size: 18px;
    }

    .welcome-section h2 {
        width: 100%;
        text-align: center;
        color: #111;
        font-size: 26px;
        font-weight: 400;
    }

    .welcome-section {
        padding: 40px 0;
    }

    .h-30 {
        height: 3px;
    }

    .welcome-section p {
        width: 100%;

        font-size: 14px;
        line-height: 1.8;

    }

    .padding-100 {
        padding: 40px 0;
    }


    .milestone-section .section-subtitle {
        font-size: 13px;
        color: #666;
        max-width: 90%;
        margin: 0 auto;
        line-height: 1.6;


    }


    .milestone-section .section-title h2 {
        margin-bottom: 10px;

    }

    .milestone-section .section-title {
        margin-bottom: 30px;
    }

    .milestone-icon img {
        height: 42px;
        color: #fbb712;
        transition: all 0.3s ease;
    }




    .video-section {
        height: 30vh;
    }

    .video-content h2 {
        font-size: 2rem;
    }

    .video-content p {
        font-size: 1rem;
    }

    .video-content .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }


    .top-contact-bar {
        display: none;
    }

    nav.navbar.bootsnav.no-background {

        background-color: rgb(0 0 0 / 86%);
    }

    nav.navbar.bootsnav {
        border-bottom: 0;
    }

    .navbar-brand img {
        width: 160px;
    }

    .navbar {

        min-height: auto;

    }

    .testimonials-swiper {
        width: 100%;
        padding: 20px 0 0px;
        overflow: hidden;
    }

    .swiper-navigation-icon {
        height: 14px !important;
    }

    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {

        width: 40px;
        height: 40px;
    }

    .portfolio_item {
        display: block;
        height: 220px;
        width: 100%;
    }

    .brands-section {
        background-color: #93928f1a;
        padding: 40px 0 20px 0;
    }

    .brand-logo img {
        object-fit: contain;
    }

    .copyrights {
        margin-top: 20px;
    }

    .separator {
        display: none;
        height: 1px;
        width: 50px;
        margin: 8px auto;
        background: #333;
    }

    .footer-big-contacts h4 {
        margin: 0;
        font-size: 11px;
        font-weight: 400;
        color: #eee;
        line-height: 1.6;
    }

    .footer-big-contacts span {
        margin-bottom: 0;
    }

    .footer-1 .footerLinks li a {
        color: #999;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .footer-1 {
        text-align: left;
    }

    .footer-1 h4 {
        font-size: 16px;
    }

    .footer-1 h4 {
        margin-top: 0;
    }

    .contact-info {
        margin-top: 20px;
    }

    .breadcrumb-nav {
        position: relative;
        z-index: 1;
        margin-top: 0px;
    }

    .page-title {
        margin-top: 0;
        margin-bottom: 0px;

    }

    .about-image img {
        height: 230px;

    }

    .about-image {
        margin-bottom: 30px;
    }

    .about-section .lead {
        font-weight: 600;
        font-size: 16px;
    }

    p {
        font-size: 14px;
        line-height: 32px;
    }

    .section-title {
        margin-bottom: 15px;
    }

    .approach-image {

        margin-top: 30px;
    }

    .sidebar-widget h3 {
        line-height: 1;
        margin-top: 0;
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .sidebar-widget:last-child {
        margin-bottom: 0;
    }

    .gallery-page .gallery-filter .btn {
        padding: 6px 10px;
        font-size: 12px;
        margin: 0 3px 8px;
    }

    .gallery-page .gallery-img {
        height: 200px;
    }

    .gallery-page .cta-section h2 {
        font-size: 28px;
    }

    .gallery-page .cta-section p {
        font-size: 16px;
    }

    .gallery-page .gallery-section {
        padding: 60px 0 40px 0;
        background-color: #f9f9f9;
    }

    .gallery-page .gallery-box {
        margin-bottom: 15px;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .contactInfo {
        padding: 40px 30px;
    }

    .contactInfo p {
        color: #d1d1d1;
        font-size: 14px;
    }

    .contact-us-page .container {
        padding: 0;
    }

    .input-contact {
        margin-bottom: 20px;

    }

    .contact-us-page h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
}