/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header styles */
.header-container {
    position: fixed;
    left: 50%; /* Move to the center of the viewport */
    transform: translateX(-50%); /* Adjust position to center */
    width: 80%; /* Smaller width */
    max-width: 800px; /* Maximum width */
    background-color: rgba(245, 241, 241, 0.8); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blurry effect */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 20px 0; /* Vertical margin */
    padding: 10px 20px; /* Padding inside the container */
    text-align: center; /* Center align text */
    font-size: 18px;
    font-family: 'Roboto Slab', serif;
    
  }

/* Navigation styles */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    height: 50px; /* Adjust the height as needed */
    margin-right: 20px; /* Space between logo and nav links */
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #007BFF;
}

/* Blank11 Styling */
.blank11 {
    height: 200px;
    background: linear-gradient(to bottom, #6ca2b8, white);
    width: 100%;
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    flex-direction: column; /* Stack items vertically */
  }

.main-content {
    width: 80%;
    max-width: 1200px;
    background: #fafafa;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(10, 10, 10, 0.3);
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid rgb(185, 184, 184);
}



/* Heading Styles */
.h1 {
    color: #188897;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.h2 {
    color: #555555;
    font-size: 1.5em;
    margin-bottom: 30px;
}
.h4{
    text-align: center;
}

/* Content Container */
.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Content Container */
.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px; /* Reduced margin */
}

.text-container {
    display: flex;
    flex-direction: column;
    padding-left: 200px;
}

.text-container p {
    color: #020202;
    font-size: 25px;
    margin-bottom: 10px; /* Reduced margin */
}

/* Image Styles */
.app-image {
    border-radius: 30px;
    border: 6px solid black;
    margin-top: 20px; /* Reduced margin */
    margin-right: 170px;
}

/* Button Styles */
.download-button {
    font-size: 1.2em;
    padding: 15px 30px;
    border-radius: 30px;
    background-color: #35911a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #143f04;
}

/* Instructions Styles */
.instructions-heading {
    color: #188897;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.para {
    border: 1px solid #2b2a2a;
    background: #e9f0f0;
    width: 90%;
    font-size: 24px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.footer-container {
    width: 100%;
    background-color: #f1f1f1;
    padding: 10px 0;
   
    bottom: 0;
    left: 0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1); /* Shadow on the top */
}
  
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
  
.footer-left {
    font-size: 14px;
}
  
.footer-right {
    display: flex;
    gap: 10px;
}
  
.social-icon {
    width: 24px;
    height: 24px;
}
  
/* Media Query for Tablets */
@media (max-width: 768px) {
    .card {
        width: 80%; /* Adjust width to 80% of the viewport */
        padding: 15px; /* Reduce padding */
    }

    .card h1 {
        font-size: 20px; /* Slightly reduce font size */
    }

    .card .date {
        font-size: 11px; /* Reduce font size for date */
    }
}

/* Media Query for Mobile Phones */
@media (max-width: 480px) {

 
    .header-container{
      width: 95%;
      padding: 10px;
      font-size: 11px;
    }
    .main-content {
        width: 90%;
        padding: 20px;
    }

    .content-container {
        flex-direction: column;
        align-items: center;
    }

    .text-container {
        padding-left: 0;
        text-align: center;
    }

    .app-image {
        margin: 0 0 20px 0;
        width: 80%;
    }

    .download-button {
        width: 100%;
        padding: 10px;
        margin-bottom: 30px;
    }

    .text-container p {
        font-size: 18px;
    }

    .h1 {
        font-size: 2em;
    }

    .h2 {
        font-size: 1.2em;
    }

    .para{
        width: 80%;
        font-size: 18px;
    }
}