body {
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #fff;
    color: #000;
    height: 100px;
}
.navbar-brand img {
    max-width: 100%;
    height: auto;
    max-height: 80px; /* Adjust height as needed */
}
.navbar-nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.navbar-nav li {
    margin-left: 10px;
}
.navbar-nav li a {
    color: #000;
    text-decoration: none;
    transition: background-color 0.3s;
}
.navbar-nav li a:hover {
    color: #0374d1;
    
}


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Light black background */
    display: none; /* Hide the overlay initially */
    justify-content: center;
    align-items: center;
}

#cardContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; /* Hide the card initially */
}

.cardnewer {
    background: #fff;
    border: 3px dashed #555555cc !important;
    padding: 30px;
    box-shadow: 0 2px 15px inset rgba(0, 0, 0, 0.849);
    border-radius: 8px;
    text-align: center;
    width: 300px;
    position: relative;
    opacity: 0; /* Initially invisible */
    transform: translateY(-100%); /* Start position for animation */
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    
}

.cardnewer.show {
    opacity: 1; /* Make the card visible */
    transform: translateY(0); /* End position for animation */
}

.card-text {
    font-size: 30px; /* Larger text size */
    margin-top: 20px;
    color: #141414dc;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 22px; /* Larger close button */
    cursor: pointer;
    color: #141414dc;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    margin-left: 2px;
    text-align: start;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-toggle::after{
    display: none !important;
}






.section1 {
    text-align: center; /* Center align content horizontally */
    padding: 60px 0; /* Add padding for better spacing */
    background-color: rgba(0, 0, 0, 0.5); /* Add a semi-transparent background overlay */
    background-blend-mode: overlay; /* Blend the background overlay with the image */
    color: #ffffff; /* Set text color to white */
    background-image: url('../images/miner2.jpg'); /* Specify the background image URL */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
}

.section1 h1 {
    font-size: 58px; /* Adjust font size for mobile */
    margin-bottom: 20px; /* Adjust margin for spacing */
    line-height: 1.2;
   
}

.section1 h2 {
    font-size: 45px; /* Adjust font size for mobile */
    margin-bottom: 20px; /* Adjust margin for spacing */
    line-height: 1.2;
    color: #ccdbeb;
    
}

.section1 h3 {
    font-size: 28px; /* Adjust font size for mobile */
    margin-bottom: 20px; /* Adjust margin for spacing */
    color: #ccdbeb;
  
}

.section1 p {
    font-size: 16px; /* Adjust font size for mobile */
    margin-bottom: 20px; /* Adjust margin for spacing */
}
.section1 .row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn11{
    color: #a7cef7 !important;
    background-color: rgba(12, 69, 110, 0.014) !important;
    border: 2px solid #a7cef7 !important;
    border-radius: 0px !important;
    padding: 8px 35px !important;
}
.btn11:hover{
    background-color: #035dd398 !important;
    color: white !important;
    border: 2px solid #ffffff !important;
}



.section2{
    padding: 60px 0; /* Add padding for better spacing */
    background-image: url('../images/minerback4.png'); /* Specify the background image URL */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    border-bottom: 1px solid rgba(0, 0, 0, 0.053);
}

@media (max-width: 700px) {
  .section1 h1 {
    font-size: 38px; 
    margin-bottom: 20px; 
    line-height: 1.2;
   
}
}