   body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            width: 100%;
        }
        .navbar-light{
            background-color: #ffffff;
        }
        .navbar-nav {
            margin: auto;
            display: inline-flex;
            background-color: #ffffff;
        }
        .navbar-nav .nav-item {
            text-align: center;
            margin-right: 30px;
            font-size: large;
            font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .navbar-nav .nav-item .nav-link {
            color: rgb(14, 13, 13);
            position: relative;
        }
        .navbar-nav .nav-item .nav-link:hover {
            border-bottom: 1px solid red;
            color: rgb(14, 13, 13); 
            width:100%;
        }
        .background-section {
            position: relative;
            height: 100vh;
            background: linear-gradient(
                          rgba(0, 0, 0, 0.7), 
                          rgba(0, 0, 0, 0.7)
                       ), 
                       url(home.jpg);
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color:#ffffff;
        }
        .overlay-text {
            position: relative;
            z-index: 1; 
            background: rgba(0, 0, 0, 0.0);
            padding: 50px;
            border-radius: 10px;
            bottom: 5%;
        }
        .buy-now-button {
            padding: 10px 30px;
            background-color: #ffffff; 
            color:#000931; 
            border: none;
            border-radius: 5px; 
            font-size: 18px; 
            cursor: pointer; 
            height: 50px;
            transition: background-color 0.3s ease; 
        }

        .buy-now-button:hover {
            background-color: #979494; 
           
        }
        .card-container {
            margin: 0;
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 200%;
        }

        .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            padding: 20px;
            border-radius: 10px;
        }

        .card {
            background-color: #ffffff;
            padding: 20px;
            border: 1px solid #dddddd;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
            text-align: center;
        }

        .background-container {
    background-color:antiquewhite;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    padding-top: 50px; 
}
.container {
    position: relative;
    z-index: 1;
}
.categories {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        .list-box {
            border: 1px solid #ddd;
            padding: 20px;
            border-radius: 8px;
            background-color: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            position: relative;
        }
        .list-box:hover {
            transform: translateY(-5px);
        }
        .list-box:hover .about__item h4::after {
            width: 30%; 
        }
        .about__item h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            position: relative;
            cursor: pointer;
        }
        .about__item h4::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            display: block;
            margin-top: 5px;
            left: 0;
            background: red;
            transition: width 0.3s ease;
            -webkit-transition: width 0.3s ease;
        }
        
        .box {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
       

        .vps {
            transition: box-shadow 0.5s, transform 0.5s;
           
        }
        .vps:hover {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
            transform: scale(1.05);
        }
        .vps-body {
            padding: 20px; 
        }
        .background-container {
            background-color:  #f8f9fa;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            width: 100%;
            height: 350px;
            padding-top: 10px; 
        }
        .container {
            position: relative;
            z-index: 1;
        }
        .gallery img {
            width: 200%;
            height: 200%;
        }
        .py-md-5 {
            padding-top: 3rem !important; 
            padding-bottom: 3rem !important; 
        }
        .col-md-8 {
            margin-bottom: 0.5rem; 
        }
        .footer {
            background:#000931;
            padding-top: 30px;
            color: #ffffff;
        }
        .footer_content h6 {
            color: #ffffff;
        }
        .footer_content ul {
            list-style: none;
            padding: 0;
        }
        .footer_content ul li {
            margin-bottom: 10px;
        }
        .footer_content ul li a {
            color: #ffffff;
            text-decoration: none;
        }
        .footer_content ul li a:hover {
            text-decoration: underline;
        }
        .footer_body ul {
            list-style: none;
            padding: 0;
        }
        .footer_body ul li {
            margin-bottom: 10px;
            color: #ffffff;
        }
        .footer_text {
            font-size: 14px;
        }