/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
header {
    background-color: #0077b6; /* Main color from your palette */
    padding: 15px 0;  
    overflow: hidden;

}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-height: 90px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 25px; /* Space between menu items */
}

header nav ul li a {
    color: #caf0f8; /* Light color from your palette */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #48cae4; /* Hover color */
}

.quote-button {
    background-color: #00b4d8; /* Accent color */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.quote-button:hover {
    background-color: #0096c7; /* Darker accent color on hover */
}


/* Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
    margin-right: 20px;
    overflow: hidden;

}

.social-icons a {
    margin-left: 10px; /* Space between icons */
    transition: transform 0.3s ease;
}

.social-icons a img {
    width: 20px; /* Adjust icon size */
    height: 20px;
}

.social-icons a:hover {
    transform: scale(1.2); /* Slightly enlarge icon on hover */
}


/* Adjust for tablets and smaller devices */
@media (max-width: 768px) {
    .header-content {
        display: flex;
        flex-direction: column; /* Stack the content vertically */
        text-align: center;
    }

    header nav ul {
        display: flex;
        justify-content: center; /* Horizontally center the menu */
        flex-direction: row; /* Set navigation links in a horizontal line */
        padding: 0;
        margin: 10px 0;
    }

    header nav ul li {
        margin-left: 15px; /* Adjust spacing between menu items */
    }

    .social-icons {
        display: flex;
        justify-content: center; /* Center the social icons */
        margin-top: 10px;
    }

    .social-icons a {
        margin-left: 10px; /* Spacing between social icons */
    }

    .quote-button {
        margin-top: 15px;
        display: inline-block; /* Ensures the button appears as a block element */
    }
}

/* Adjust for smaller mobile devices (phones) */
@media (max-width: 480px) {
    header .logo img {
        max-height: 70px; /* Smaller logo */
    }

    header nav ul li a {
        font-size: 14px; /* Smaller font size for links */
    }

    .quote-button {
        padding: 8px 15px;
        font-size: 14px;
    }

    .social-icons a img {
        width: 20px; /* Keep icon size smaller on phones */
        height: 20px;
    }
}





/* Download css  */
.body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}


.download-header {
    background: url('img/slider1.jpg') no-repeat center center/cover;
    padding: 150px 0;
    text-align: center;
    color: white;
    background-color: black;
    overflow: hidden;
}

.download-header h2 {
    text-align: center;
    font-size: 2.5em;
    margin: 0;

}

.download-header nav {
    margin-top: 10px;
}

.download-header nav a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}




/* Social Icons Container */
.social-icon {
    position: fixed; /* Keeps the icons fixed on the screen */
    top: 50%; /* Positions the container vertically centered */
    left: 10px; /* Adjust the distance from the left edge */
    transform: translateY(-50%); /* Centers the icons vertically */
    z-index: 1000; /* Ensures the icons stay on top of other elements */
    display: flex;
    flex-direction: column; /* Aligns icons in a vertical column */
    align-items: center;

}

/* Individual Icon Links */
.social-icon a {
    display: block;
    transition: transform 0.3s ease;
    margin: 10px 0; /* Adjust spacing between icons */
}

/* Icons Size */
.social-icon img {
    width: 25px; /* Adjust the size of the icons */
    height: auto;
    display: block;
  
}

.social-icon a:hover {
    transform: scale(1.2); /* Slightly enlarge icon on hover */
}




/* section of downloads-section */
.downloads-section {
    padding: 30px; /* Increased padding for the section */
    background-color: #f9f9f9; /* Light background color */
    text-align: center; /* Center-align content */
    color:  #023e8a;
}

.download-item {
    margin: 20px auto;
    padding: 30px; /* Increased padding for a larger box */
    max-width: 500px; /* Increased width for a larger box */
    background-color: white;
    border: 1px solid #ddd; /* Border for the download box */
    border-radius: 12px; /* Slightly larger rounded corners */
    box-shadow: 0 6px 12px rgba(0,0,0,0.1); /* Deeper shadow for more depth */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.download-item:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.download-item img {
    width: 100%; /* Make image responsive */
    height: auto;
    border-bottom: 1px solid #ddd; /* Divider between image and text */
    border-radius: 12px 12px 0 0; /* Rounded top corners */
}

.download-item  h3 {
    font-size: 1.5em; /* Larger font size for headings */
    margin: 10px 0;
    color:  #023e8a; /* Heading color */
}

.download-item p {
    font-size: 1.1em; /* Larger font size for description */
    margin: 0;
    color:  #023e8a; /* Description text color */
}

.download-item a {
    text-decoration: none; /* Remove underline */
    color: #007bff; /* Link color */
    display: block; /* Make the whole block clickable */
    padding: 10px 0;
    font-size: 1.1em; /* Adjusted font size for links */
}

.download-item a:hover {
    color: #0056b3; /* Darker color on hover */
}




/* Footer General Styles */
footer {
    background-color: #03045e; /* Dark primary color from your palette */
    color: #48cae4;
    padding: 40px 10;
    overflow: hidden;

}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    width: 30%;
    margin-bottom: 20px;


}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #90e0ef; /* Light color from your palette */
}

.footer-section p,
.footer-section a {
    color: #caf0f8; /* Text color */
    font-size: 14px;
    margin: 5px 0;
    text-decoration: none;
}

.footer-section a:hover {
    color: #48cae4; /* Hover effect color */
}

.footer-bottom {
    background-color: #0077b6; /* Darker color for footer bottom */
    text-align: center;
    padding: 15px 0;
}

.footer-bottom p {
    margin: 40;
    font-size: 14px;
    color: white; 
}

/* Scroll Buttons General Styles */
.scroll-buttons {
    position: fixed;
    right: 20px; /* Distance from the right edge of the screen */
    bottom: 20px; /* Distance from the bottom edge of the screen */
    display: flex;
    flex-direction: column;
    z-index: 1000; /* Ensure the buttons are on top of other elements */
}

.scroll-btn {
    background-color: #023e8a; /* Button background color */
    color: #fff;
    border: none;
    padding: 10px;
    margin: 5px 0;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.scroll-btn:hover {
    background-color: #00b4d8; /* Hover color */
}

.scroll-btn:focus {
    outline: none;
}

.scroll-buttons button:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .scroll-btn {
        padding: 8px;
        font-size: 16px;
    }
}

