* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 20px 40px;
    margin-bottom: 50px; /* Padding for the whole navbar */
}

.company-info h1 {
    font-size: 24px;
}

.company-info p {
    font-size: 14px;
    margin-top: 5px;
}

.nav-links ul {
    list-style-type: none;
    display: flex;
}

.nav-links li {
    margin-left: 60px; /* 60px gap between items */
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 0;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: #575757;
    border-radius: 5px;
    padding: 5px 10px;
}

/* Media Query for mobile and smaller screens */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        align-items: flex-start;
        padding: 20px;
    }

    .company-info h1 {
        padding: 10px;
        font-size: 10px;
    }

    .company-info p {
        font-size: 10px;
    }

    .nav-links ul {
        display: flex; /* Stack the links vertically */
        margin-top: 20px;
    }

    .nav-links li {
        margin-left: 0; /* Remove left margin */
        margin-bottom: 15px; /* Space between items */
    }

    .nav-links a {
        padding: 10px;
        font-size: 10px; /* Smaller text on mobile */
    }
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Four items per row */
    gap: 10; /* Remove gaps so borders touch */
    width: 90%;
    margin-top: 450px;
    max-width: 1200px;
    background: white;
    padding: 0; /* Remove padding around the grid */
    margin: auto; /* Center the grid */
    border: 1px solid #ddd; /* Add a border around the whole grid */
}

.logo-grid a{
    text-decoration: none;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px; /* Add padding inside each item */
    border: 1px solid #ddd; /* Add borders around each item */
    box-sizing: border-box; /* Include padding and border in item size */
}

.logo-item img {
    width: 100px;
    height: auto;
    /* Space between image and text */
}

.logo-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-decoration: none;
}

/* Ensure the last row and last column align properly */
.logo-item:nth-child(5n) {
    border-right: none; /* Remove right border for the last item in each row */
}

.logo-item:nth-last-child(-n+5) {
    border-bottom: none; /* Remove bottom border for the last row */
}

.image-text-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align items */
    text-align: center; /* Center align text */
    width: 300px; /* Adjust width as needed */
    margin: auto;
    margin-left: 40px; /* Center the container horizontally */
    padding: 20px; /* Add some space around the container */
    /* Optional border */
    background-color: #ffffff; /* Optional background */
  /* Optional shadow */
}

.image-text-container img {
    width: 100%; /* Make the image responsive */
    max-width: 200px; /* Set a maximum width for the image */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Add spacing between the image and text */
    border-radius: 8px; /* Optional rounded corners */
}



.image-text-container p {
    font-size: 14px;
    width: 400px  ;
    margin-left: 140px;
    color: #666;
    line-height: 1.5; /* Improve text readability */
}

/* Media Query for Tablets and Below (Max Width 768px) */
@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr); /* Two items per row on smaller screens */
        gap: 15px; /* Increase the gap a bit for better spacing */
    }

    .logo-item {
        padding: 20px; /* Reduce padding to fit smaller screens */
    }

    .logo-item img {
        width: 80px; /* Reduce the image size */
        margin-top: 30px; /* Adjust the top margin */
        margin-bottom: 30px; /* Adjust the bottom margin */
    }

    .image-text-container {
        width: 90%; /* Take up more width on smaller screens */
        margin-left: 0; /* Remove left margin to center the container */
    }

    .image-text-container img {
        max-width: 150px; /* Adjust image max width for smaller screens */
    }
    .image-text-container p {
        font-size: 10px;
        color: #666;
        margin-right: 140px;
        line-height: 1.5; /* Improve text readability */
    }
}

/* Media Query for Mobile Screens (Max Width 480px) */
@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: 1fr; /* One item per row on very small screens */
        gap: 20px; /* Increase gap to make items more spacious */
    }

    .logo-item {
        padding: 15px; /* Reduce padding further */
    }

    .logo-item img {
        width: 60px; /* Make the image smaller for mobile */
        margin-top: 20px; /* Adjust top margin */
        margin-bottom: 20px; /* Adjust bottom margin */
    }

    .image-text-container {
        width: 100%; /* Take up full width */
        margin-left: 0; /* No left margin on mobile */
        padding: 10px; /* Reduce padding to save space */
    }

    .image-text-container img {
        max-width: 120px; /* Further reduce the image size for mobile */
    }

    .image-text-container p {
        font-size: 12px; /* Reduce font size for mobile screens */
    }
}


/* Main Row Container */
.row-container {
    display: flex;
    justify-content: center; /* Center align the row */
    align-items: center; /* Vertically align items */
    gap: 40px; /* Add spacing between items */
    margin: 40px auto; /* Add spacing around the row */
}


.item {
    display: flex;
    flex-direction: row; /* Horizontal layout for image and text */
    align-items: center; /* Center align content vertically */
    text-align: left; /* Align text to the left */
    width: 300px; /* Set a fixed width */
    gap: 15px; /* Space between image and text */
}

/* Image Styling */
.item img {
    width: 100%;
    max-width: 100px; /* Restrict image size */
    height: auto; /* Maintain aspect ratio */
}

/* Text Container for h3 and p */
.item .text {
    display: flex;
    flex-direction: column; /* Stack text vertically */
    justify-content: center; /* Center text vertically */
}

/* Title Styling */
.item h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px; /* Spacing below title */
    color: #333;
}

/* Paragraph Styling */
.item p {
    font-size: 14px;
    color: #666;
   
    line-height: 1.5; /* Improve readability */
    margin: 0; /* Remove default margin */
}

/* Separator (Small Line in the Center) */
.separator {
    width: 1px;
    height: 80px;
    background-color: #ccc; /* Line color */
}

/* Media Query for Tablets and Below (Max Width 768px) */
@media (max-width: 768px) {
    .row-container {
        flex-direction: column; /* Stack items vertically on smaller screens */
        gap: 20px; /* Reduce gap between items */
        margin: 20px auto; /* Reduce margin around the row */
    }

    .item {
        width: 80%; /* Make items take up more width */
        gap: 10px; /* Reduce gap between image and text */
    }

    .item img {
        max-width: 80px; /* Make the image a bit smaller */
    }

    .item h3 {
        font-size: 14px; /* Reduce font size for titles */
    }

    .item p {
       display: none; /* Reduce font size for paragraphs */
    }

    .separator {
        height: 60px;
        margin-right: 340px; /* Reduce separator line height for smaller screens */
    }
}

/* Media Query for Mobile Screens (Max Width 480px) */
@media (max-width: 480px) {
    .row-container {
        flex-direction: column; /* Stack items vertically */
        gap: 10px; /* Smaller gap between items */
        margin: 10px auto; /* Small margin around the row */
    }

    .item {
        width: 100%; /* Make items take up full width */
        gap: 8px; /* Smaller gap between image and text */
    }

    .item img {
        max-width: 60px; /* Make image even smaller */
    }

    .item h3 {
        font-size: 12px; /* Reduce font size for titles */
    }

    .item p {
        font-size: 10px; /* Reduce font size for paragraphs */
    }

    .separator {
        height: 50px; /* Reduce separator line height even further */
    }
}


/* About */
/* Centered H1 Tag */
/* Centered Main Title */


/* Content Wrapper */
/* Centered H1 Tag */
/* Centered H1 Tag */
/* Centered Title */
.center-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #2a2a2a;
}

/* Container for Image and Text */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* Increased spacing for better clarity */
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
}

/* Left Side - Image Styling */
.left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.left img {
    width: 100%;
    max-width: 350px; /* Slightly larger image */
    height: auto;
    border-radius: 8px; /* Smooth rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Right Side - Text Styling */
.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
    text-align: left;
}

.right h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.right p {
    font-size: 16px;
    color: #555;
    line-height: 1.8; /* Improved readability */
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        gap: 30px;
    }

    .left img {
        max-width: 70%;
    }

    .right {
        text-align: center;
        max-width: 80%;
    }

    .right h1 {
        font-size: 24px;
    }

    .right p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .center-title {
        font-size: 24px;
    }

    .left img {
        max-width: 90%;
    }

    .right h1 {
        font-size: 20px;
    }

    .right p {
        font-size: 13px;
    }
}


.hero-section {
    background-color: #2a8c5c; /* Improved Green Shade */
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    padding: 60px 20px;
}

/* Main Heading */
.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Divider */
.divider {
    width: 80px;
    height: 2px;
    background-color: #fff;
    margin: 20px auto 30px;
}

/* Feature Section */
.features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Individual Feature */
.feature {
    background: #ffffff20; /* Transparent White for contrast */
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease-in-out;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Description Text */
.description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 20px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .features {
        flex-direction: column;
        gap: 20px;
    }

    .feature {
        max-width: 90%;
    }
}

.footer {
    background-color: #000000; /* Red Background */
    color: #fff; /* White Text */
    padding: 40px 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-section {
    margin: 10px;
  }
  
  .footer-section h2,
  .footer-section h3 {
    margin-bottom: 10px;
  }
  
  .footer-section p {
    margin: 5px 0;
  }
  
  .footer-section .phone-number {
    font-size: 1.2em;
    font-weight: bold;
  }
  
  .footer-section a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    text-decoration: none;
  }
  
  .footer-section ul {
    list-style: none;
    text-decoration: none;
    padding: 0;
  }
  
  .footer-section ul li {
   
    margin: 5px 0;

  }
  
  .social-icons a {
    color: #fff;
    font-size: 1.5em;
    margin-right: 10px;
  }
  
  .social-icons a:hover {
    color: #ccc;
  }
  

.containers {
    width: 80%;
    max-width: 1200px;
    margin: 50px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  header h1 {
    font-size: 36px;
    color: #4CAF50;
  }
  
  .support-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .support-option {
    width: 48%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .support-option h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
  }
  
  .support-option p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #45a049;
  }
  
  .faq {
    margin-top: 40px;
  }
  
  .faq h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .faq ul {
    list-style-type: none;
  }
  
  .faq li {
    margin: 10px 0;
  }
  
  .faq a {
    color: #4CAF50;
    text-decoration: none;
  }
  
  .faq a:hover {
    text-decoration: underline;
  }

  /* Style for Download Now button */
.download-btn {
    background-color: #09081F;
    color: white ;
    padding: 8px 15px !important;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #008fcc;
}

/* Mobile-specific styling */
@media (max-width: 768px) {
    .download-btn {
        font-size: 10px;
        padding: 8px 12px;
    }
}
