/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



    /* Header */
    .header {
        display: flex;
        /* justify-content: space-between; */
        align-items: center;
        padding: 15px 30px;
        background: #f8f9fa;
        border-bottom: 2px solid #ddd;
        position: relative;
        z-index: 1000; /* Ensures navbar stays on top */
    }
    
    .logo img {
        height: 50px;
    }
    nav{
        padding-left:10px;
    }

    /* Navbar */
    .nav-links {
        list-style: none;
        display: flex;
        gap: 20px;
        padding: 0;
        margin: 0;
    }

    .nav-links li {
        display: inline;
    }

    .nav-links li a {
        text-decoration: none;
        color: black;
        font-weight: bold;
    }

    /* Hamburger Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .hamburger div {
        width: 25px;
        height: 3px;
        background: black;
        margin: 5px;
        transition: 0.3s;
    }



    .hero1{

        background: linear-gradient(90deg, rgba(0, 133, 216, 1) 0%, rgb(0 27 29) 100%);
    }


    /* Info Sections */
.info-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    background: #ffffff;
  }
  
  .info-section.reverse {
    flex-direction: row-reverse;
    background: #f9f9f9;
  }
  
  .info-section .text {
    flex: 1;
    padding: 20px;
  }
  
  .info-section .image {

    flex: 1;
    padding: 20px;
  }
  
  .info-section img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    width: 400px;
  }

    /* Responsive Navbar */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #f8f9fa;
            padding: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000; /* Ensures menu is above other content */
        }
        
        .nav-links.active {
            display: flex;
        }

        .hamburger {
            display: flex;
        }
        .header{
            justify-content: space-between;
        }
    }

    /* Hero Section */
    .hero {
        padding: 50px;
        text-align: center;
        /* background: #eef1f5; */
    }

    /* .hero-content1 {
        max-width: 600px;
        margin: 0 auto;
    } */

    /* Info Section */
    .info-section {
        padding: 50px;
        text-align: center;
    }

    .info-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .info-image img {
        max-width: 300px;
    }

    .info-text {
        max-width: 500px;
        text-align: left;
    }

    .btn {
        display: inline-block;
        margin-top: 10px;
        padding: 10px 20px;
        background: #0073e6;
        color: white;
        text-decoration: none;
        border-radius: 5px;
    }

 

    /* Popup Box */
    .popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
        width: 90%;
        max-width: 400px;
        z-index: 1100;
    }

    /* Close Icon */
    .close-icon {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 20px;
        cursor: pointer;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .popup {
            width: 90%;
            max-width: 320px;
            padding: 15px;
        }
        .hero-image {
            position: static; /* Removes absolute positioning */
            display: block;
            margin: auto;
        }
    
        
    }
/* Set body height to ensure the hero section covers the full viewport */
html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Hero section styling */


/* Ensure content is above the overlay */
.hero-content {
    text-align: left;
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 66px;
}

/* Headline styling */
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Subheadline styling */
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Form styling */
.hero-content form {
    justify-content: left;
}

/* Input field styling */
.hero-content input {
    padding: 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    width: 560px;
}

/* Button styling */
.hero-content button {
    margin-left: 30px;
    padding: 10px 20px;
    font-size: 1.3rem;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #0073e6;
    cursor: pointer;
}

/* Button hover effect */
/* .hero-content button:hover {
    background-color: #005bb5;
} */

/* Printer image styling */
.printer-image {
    position: absolute;
    bottom: -100px; /* Moves the image down to make it half inside, half outside */
    right: 150px;
    width: 320px;
    z-index: 1;
}
.brother-image {
    position: absolute;
    bottom: -100px; /* Moves the image down to make it half inside, half outside */
    right: 150px;
    width: 320px;
    z-index: 1;
}

/* Ensure printer image scales properly */
.printer-image img {
    margin-top: 20px;
    width: 100%;
    height: auto;
}

.brother-image img {
    width: 100%;
    height: auto;
}
.hero-image {
    position: absolute;
    bottom: -50px;
    right: 50px;
    width: 320px;
}
.hero-image img {
    width: 250px;
    height: auto;
}
hr{
    margin-top: 20px;
}


/* downloading page */


.hero-content1 {
    margin-left: 215px;
    text-align: center; /* Centers all text */
}

.hero-content1 h1 {
    font-size: 3rem; /* Bigger font size */
    font-weight: bold;
}
.hero-content1 li{
    margin-top:30px;
}
.hero-content1 ol {
    text-align: left;
    margin-top: 20px;


    font-size: 1.5rem; /* Bigger ordered list text */
    list-style-position: inside; /* Keeps numbering aligned */
    padding: 0;
}

.hero-content1 button {
    color: #0073e6; /* Matches the button text color */
    font-size: 2.2rem;
    padding: 12px 24px;
    margin-left: -360px;
    margin-top: 35px;
    border-radius: 24px;
    border-color: #fff;
        cursor: pointer;

}



/* ===== RESPONSIVE DESIGN ===== */

/* Medium Screens (Tablets) */
@media screen and (max-width: 1024px) {
    .hero {
        height: auto; /* Allow height to adjust */
        padding: 50px 20px;
        text-align: center; /* Center text */
        display: block; /* Remove flex layout */
    }
    .hero-content1 button {
        margin-left: 0px;
    }

    .hero-content1{
        text-align: left;
    }
    .hero-content {
        max-width: 90%;
        padding: 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content form {
        display: block; /* Stack items */
        text-align: center;
    }

    .hero-content input {
        width: 100%;
        max-width: 400px;
        margin-bottom: 10px;
    }

    .hero-content button {
        /* width: 100%; */
        max-width: 400px;
        margin-left: 0; /* Remove margin-left */
        display: block;
        margin: auto;
    }

    .printer-image {
        position: absolute;
        bottom: -70px; /* Moves it half inside, half outside */
        right: 50%;
        transform: translateX(50%);
        width: 250px;
    }

    .brother-image {
        position: absolute;
        bottom: -70px; /* Moves it half inside, half outside */
        right: 50%;
        transform: translateX(50%);
        width: 120px;
    }
}

/* Small Screens (Phones) */
@media screen and (max-width: 768px) {
    .hero {
        padding: 40px 10px;
        text-align: center;
    }
   
    .footer-bottom {
        padding-left: 20px;
      }
    /* .popup {
height: 450px;

    } */

    
    .popup input {
        padding: 12px;
    margin-top: 12px;

    }
    .popup form {
        padding: 0px !important;
    }

    .popup button {
        font-size: 16px;

    }

    .hero-content1 {
        margin-left: 0px !important;
        text-align: center; /* Centers all text */
    }

    .error-header h2 {
        margin-top: 89px;
    

    }
    .hero-content {
        text-align: left;
        padding: 20px;
    }
   
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content1 button {
        margin-left: 0px;
    }
    .hero-content p {
        font-size: 1rem;
    }

    .hero-content form {
        display: block;
    }
    .error-header {
        margin-top: 31px;
    
    }
    .hero-content input {
        width: 300px;
        /* max-width: 300px; */
        margin-bottom: 10px;
    }

    .hero-content button {
        /* width: 100%; */
        max-width: 400px;
        margin-left: 0;
        display: block;
        margin: auto;
    }
    .hero-image {
        position: static !important; /* Removes absolute positioning */
        display: block;
        margin: auto;
    }

    .hero-image img{

        display: none;
    }
    .printer-image {
        position: absolute;
        bottom: -66px; /* Moves it half inside, half outside */
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
    }

    .hero-content1 button {

        margin-left:0px;
    }

}

label {
    font-weight: bold;
    margin-top: 5px;
    text-align: left !important; /* Ensures text is aligned to the left */
    width: 100%; /* Takes full width for consistency */
}
.downloadForm label{
    text-align: left !important;
}

input {
    padding: 8px;
    width: 100%; /* Makes inputs take full width */
    border: 1px solid #ccc;
    border-radius: 5px;
}
   /* Popup styling */
   .popup {
    display: none;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    width: 400px; /* Increase width */
    /* height: 400px; */
}

/* Close icon styling */
.close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
}

.close-icon:hover {
    color: red;
}

.popup h2 {
    margin-bottom: 10px;
}
.popup input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.popup button {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    background: #0073e6;
    color: white;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}
.popup button:hover {
    background: #005bb5;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}








/* Extra Small Screens (Narrow Phones) */
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-content input {
        width: 320px;
        /* max-width: 250px; */
    }

    .printer-image {
        position: absolute;
        bottom: -66px; /* Moves it half inside, half outside */
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
    }


    .hero-image img {
        margin-right: -311px;
        width: 38%;
        height: 30%;
    }
    .hero-content1 h1 {
        font-size: 2rem;
        
    }
    .hero-content1 button {
        font-size: 1.4rem;
        margin-left: 0; /* Remove the negative margin */
        display: block;
       


    }
    .hero-content1 button {
        cursor: pointer;
    }
    .footer-text {
        margin-left: 0px !important;
    }

   

/* Footer Styling */
footer {
    background-image: linear-gradient(45deg, rgba(9, 1, 75, 0.84), rgba(0, 22, 47, 0.9)), url(./img/footer.jpg);
    color: #fff;
    padding-top: 30px;
    /* padding-bottom: 50px; */
    background-size: cover;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    margin: 10px;
    min-width: 250px;
  }
  
  .footer-section h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  
  .footer-section p, .footer-section ul {
    margin: 0 0 10px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin: 5px 0;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #555;
    color: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
  }
  
  .social-icon:hover {
    background-color: #777;
  }
  
  .footer-section form {
    display: flex;
    gap: 5px;
  }
  
  .footer-section input[type="email"] {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 3px;
  }
  
  .footer-section button {
    padding: 8px 12px;
    border: none;
    background-color: #555;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
  }
  
  .footer-section button:hover {
    background-color: #777;
  }
  
  .footer-bottom {
    padding-top: 15px;
    padding-bottom: 15px;
    background: #0c124a;
  }
  

  .footer-bottom {
    padding-left: 20px;
  }
}


/* Footer Styling */
footer {
    background-image: linear-gradient(45deg, rgba(9, 1, 75, 0.84), rgba(0, 22, 47, 0.9)), url(./img/footer.jpg);
    color: #fff;
    padding-top: 30px;
    /* padding-bottom: 50px; */
    background-size: cover;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    margin: 10px;
    min-width: 250px;
  }
  
  .footer-section h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  
  .footer-section p, .footer-section ul {
    margin: 0 0 10px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin: 5px 0;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #555;
    color: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
  }
  
  .social-icon:hover {
    background-color: #777;
  }
  
  .footer-section form {
    display: flex;
    gap: 5px;
  }
  
  .footer-section input[type="email"] {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 3px;
  }
  
  .footer-section button {
    padding: 8px 12px;
    border: none;
    background-color: #555;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
  }
  
  .footer-section button:hover {
    background-color: #777;
  }
  
  .footer-bottom {
    padding-top: 15px;
    padding-bottom: 15px;
    background: #0c124a;
  }
  .footer-text{

    margin-left: 100px;
  }
  a {
    text-decoration: none;
    color: white;
  }