/* Background and Section Styles */
.fixed-bg-section {
    background-image: url('bg/wallpaperflare.com_wallpaper\ \(47\).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: auto;
    position: relative;
}

.fixed-bg-section .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}

.about_img {
    background-image: url('bg/wallpaperflare.com_wallpaper\ \(14\).jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Menu/Nav Styles */
.menu-color .nav-link {
    color: white;
    font-size: 18px;
    font-family: "Open Sans", Sans-serif;
}

.menu-color .nav-link:hover {
    color: red;
    cursor: pointer;
}

.menu_list a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.menu_list a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Footer Styles */
.footer_nav li {
    margin-bottom: 25px;
    color: white;
}

.footer_nav a {
    color: white !important;
    text-decoration: none;
    font-size: 18px;
}

.footer_nav a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Responsive Flex Styles */
@media (max-width: 768px) {
    .mbl_flex {
        display: flex;
        justify-content: center;
    }

    .mbl_width {
        width: 75% !important;
    }
}

@media (min-width: 769px) {
    .mbl_flex {
        display: flex;
        justify-content: end;
    }

    .mbl_flex2 {
        display: flex;
        justify-content: center;
    }
}

/* Navbar & Button */
.navbar-toggler {
    background-color: white !important;
    border: 1px solid white !important;
}

.btn-close {
    --bs-btn-close-color: white !important;
}

.contact_overlay {
    background-color: #000;
    opacity: 0.8 !important;
    width: 100%;
    height: 100%;
}

.ourWork {
    background-image: url('bg/wallpapersden.com_greedfall-4k-8k-poster_7680x4320.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: auto;
    position: relative;
}


.service_cards .card {
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
    background-color: #000;
    color: white;
  }
  
.service_cards  .card:hover {
    transform: scale(1.05);
    cursor: pointer;
    background-color: white;
    color: #000;
  }
  
.service_cards .card-body {
    position: relative;
    z-index: 1;
  }
  
.service_cards .card-body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
    transition: background 0.3s ease-in-out;
  }
  
.service_cards .card:hover .card-body::after {
    background: rgba(0, 0, 0, 0.2);
  }
  

  .icon-hover {
    transition: transform 0.3s ease-in-out;
  }
  
  .service_cards .card:hover .icon-hover {
    transform: scale(1.2);
  }
  