/* General Reset and Styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    display: grid;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    transition: background-color 0.3s, color 0.3s;
}


/* Container Styling */
div {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

/* Navigation Links */
a {
    text-decoration: none;
    color: #007bff;
    margin-right: 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

/* Heading Styling */
h2 {
    color: #222;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-transform: uppercase;
}

/* Divider Line */
hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, #007bff, #6c757d);
    margin: 20px 0;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;

    font-size: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
}

th {
    background-color: #007bff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

tr:nth-child(odd) {
    background-color: #e9ecef;
}

tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Table Borders */
th, td {
    border-bottom: 1px solid #dee2e6;
}

tr:hover {
    background-color: #d6e4f0;
    transition: background-color 0.3s ease;
}

/* Dark Mode Styles */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }

    div {
        background-color: #333;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    h2 {
        color: #fff;
    }

    hr {
        
        background: linear-gradient(to right, #007bff, #444);
    }

    table {
        background-color: #222;
        color: #e0e0e0;
    }

    th {
        background-color: #007bff;
        color: #fff;
    }

    tr:nth-child(odd) {
        background-color: #333;
    }

    tr:nth-child(even) {
        background-color: #222;
    }

    tr:hover {
        background-color: #444;
    }

    /* Dark Mode Hyperlink Styling */
    a {
        color: #80bfff; /* Light blue color for dark mode */
    }

    a:hover {
        color: #66a3cc; /* Slightly darker blue on hover */
    }
}
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap'); 

#home,
#home .home-contect{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth; 
}
#home .home-contect{
    min-height: 100vh;
    overflow-x: hidden;
    background-image: url("image/1268195.png");
    background-size: cover;
    background-position: 50% 50%;
    
    margin-bottom: 120px; 
}

#home .home-contect{
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


#home .home-contect img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    
  }
  #home .home-contect img#moon {
    mix-blend-mode: screen;
  }
  
  #home .home-contect img#mountains_front {
    z-index: 10;
  }

  #home .home-contect #text {
    position: absolute;
    right: -350px;
    color: #fff;
    white-space: nowrap;
    font-size: 7.5vw;
    z-index: 9;
  }
  
  #home .home-contect #btn {
    text-decoration: none;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 40px;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    font-size: 1.5em;
    z-index: 9;
    transform: translateY(100px);
  }

  #home .home-contect .sec {
    position: relative;
    padding: 100px;
    background: #d7907e;
  }
  
  #home .home-contect .sec h2 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #fff;
  }
  
  #home .home-contect .sec p {
    font-size: 1em;
    color: #fff;
  }