/********** Template CSS **********/
:root {
    --primary: #009CFF;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99998;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

a.btn-square:hover {
    color: #f7f7f7 !important; /* text/icon color turns black */
  }

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
    
}

.fact-item:hover {
    margin-top: -10px;
    background-color: #000000;   /* black background */
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-radius: 12px;         /* rounded corners */
    color: #fff;                 /* optional: make text white */
}

.fact-item:hover h5,
.fact-item:hover h1,
.fact-item:hover i {
    color: #ffffff !important;
}



/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
    overflow: hidden;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #010101;
}

/* Image container */
.service-img {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Overlay styles */
.service-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;  /* center horizontally */
    align-items: center;      /* center vertically */
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-img:hover .overlay {
    opacity: 1;
    
    
}

/* Button animation */
.service-img .overlay .btn {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
    
}

.service-img:hover .overlay .btn {
    opacity: 1;
    transform: scale(1);

}



/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}

.project-item {

    background-color:#009CFF;
    color: #fff;
}

.project-item h6 {

 color: #fff;
}

.project-item:hover {

    background-color:#000000;
    color: #f7f7f7;
}



/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;

}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* DARK MODE CODE */

  /* Light mode (default) */
.light-mode {
    background: #ffffff;
    color: #000000;
  }

.light-mode h1 {
     color: #000000;
}

.light-mode h2 {
     color: #000000;
}

.light-mode h3 {
     color: #000000;
}

.light-mode h4 {
     color: #000000;
}

.light-mode h5 {
     color: #000000;
}

.light-mode h6 {
     color: #000000;
}


.light-mode p {
     color: #000000;
}

.light-mode .footer p {
     color: #ffffff;
}

.light-mode .footer .footer-links a {
     color: #ffffff;
}


  

  /* Dark mode */
.dark-mode {
    background: #121212;
    color: #ffffff;
  }

.dark-mode h1,h6,h1,h2,h3,h4,h5 {
     color: #ffffff;
}

.dark-mode p {
     color: #ffffff;
}

.dark-mode .footer p {
     color: #ffffff;
}

.dark-mode .footer .footer-links a {
     color: #ffffff;
}

.dark-mode .testimonial-item p {
     color: #000000;
}

.dark-mode .testimonial-item h5 {
     color: #000000;
}

.dark-mode .testimonial-item span {
     color: #000000;
}
  
  

  .toggle-btn {
  
    top: 10px;
    right: 10px;
    font-weight: 400;
    padding: 8px 14px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background-color: #040404;
    color: #F8F8F8;
  }

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    display: none;
    top: 0;
    left: -40500px;
    width: 100%;
    height: 100%;
    background-color: #007bff;
    color: #fff;
    z-index: 1050;
    transition: left 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu .nav-link {
    color: #fff;
    margin-bottom: 15px;
    text-decoration: none;
    font-size: 18px;
}

.mobile-menu .nav-link:hover {
    color: #ffd700;
}

.mobile-menu.active {
    left: 0;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}

/* Close button */
.close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    align-self: flex-end;
    cursor: pointer;
}

.submenu-open .arrow {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
    
}

.mobile-submenu.submenu-open .submenu {
      display: block;
}

/* Hide desktop collapse on mobile */
@media (max-width: 992px) {
    .navbar-collapse.d-lg-flex {
        display: none !important;
    }
}

.submenu-toggle {
    background-color: transparent;
    border: 0px;
}

.submenu-items {
  display: none;
  flex-direction: column;
}

.mobile-submenu.submenu-open .submenu-items {
  display: flex;
}

.arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.submenu-open .arrow {
  transform: rotate(180deg);
}


/* Container for the dark background image */

.page-header {
    position: relative;
    background: url('../img/computer-repair-header-area.jpg') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
}



.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
}


.page-header2 {
    position: relative;
    background: url('../img/network-solution-header-area.jpg') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.page-header2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header2 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header2 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header2 h1 {
        font-size: 2rem;
    }
}



.page-header2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header2 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header2 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header2 h1 {
        font-size: 2rem;
    }
}


.page-header3 {
    position: relative;
    background: url('../img/cybersec-header-area.jpg') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.page-header3 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header3 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header3 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header3 h1 {
        font-size: 2rem;
    }
}



.page-header4 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header4 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header4 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header4 h1 {
        font-size: 2rem;
    }
}


.page-header4 {
    position: relative;
    background: url('../img/cloud-technology-heder-area.jpg') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.page-header4 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header4 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header4 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header4 h1 {
        font-size: 2rem;
    }
}



.page-header4 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header4 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header4 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header4 h1 {
        font-size: 2rem;
    }
}


.page-header4 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header4 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header4 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header4 h1 {
        font-size: 2rem;
    }
}


.page-header5 {
    position: relative;
    background: url('../img/smart-home-header-area.jpg') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.page-header5 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header5 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header5 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header5 h1 {
        font-size: 2rem;
    }
}



.page-header5 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header5 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header5 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header5 h1 {
        font-size: 2rem;
    }
}



.page-header6 {
    position: relative;
    background: url('../img/email-solu-header-area.jpg') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.page-header6 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header6 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header6 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header6 h1 {
        font-size: 2rem;
    }
}



.page-header6 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

.page-header5 {
    position: relative;
    background: url('../img/smart-home-header-area.jpg') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.page-header5 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header5 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header5 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header5 h1 {
        font-size: 2rem;
    }
}



.page-header5 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header5 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header5 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header5 h1 {
        font-size: 2rem;
    }
}



.page-header7 {
    position: relative;
    background: url('../img/about-header.jpg') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.page-header7 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header7 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header7 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header7 h1 {
        font-size: 2rem;
    }
}



.page-header7 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content on top of overlay */
.page-header7 .content {
    position: relative;
    z-index: 2;
}

/* Responsive text (optional) */
.page-header6 h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .page-header6 h1 {
        font-size: 2rem;
    }
}

/* sub menu */

/* Container for the dropdown */
.nav-item.dropdown {
    position: relative;
}

/* Style for the main dropdown toggle link */
.nav-link.dropdown-toggle {
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

/* Hover effect for dropdown toggle */
.nav-link.dropdown-toggle:hover {
    color: #00aaff;
}

/* Dropdown menu styles */
.dropdown-menu {
    background-color: #000000;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 250px;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Each item inside the dropdown */
.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.2s ease;
}

/* Hover effect for dropdown items */
.dropdown-menu .dropdown-item:hover {
    background-color: #f2f2f2;
    color: #00aaff;
}

/* Optional: arrow on hover */
.dropdown-menu .dropdown-item::after {
    content: "→";
    float: right;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
}

/* Reveal arrow on hover */
.dropdown-menu .dropdown-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive fix (optional if Bootstrap is loaded) */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 100%;
    }
}

.mobile-menu .nav-link i {
    margin-right: 10px;
    min-width: 20px;
    text-align: center;
}

.fixed-bg-section {
    background-image: url('../img/client-area-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.fixed-bg-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Optional overlay */
    z-index: -1;
}

.about .fact-item {
    transition: .5s;
    background-color: #c3bfbf;   /* black background */
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-radius: 12px;    
    
}

.about .fact-item:hover {
    margin-top: -10px;
    background-color: #000000;   /* black background */
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-radius: 12px;         /* rounded corners */
    color: #fff;                 /* optional: make text white */
}

.about .fact-item:hover h5,
.about .fact-item:hover h1,
.about .fact-item:hover i {
    color: #ffffff !important;
}

select {
    background-color: #f7f7f7;
}