body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Footer */
footer {
  background-color: #ff9704;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

/* Footer Container */
footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: black;
  box-sizing: border-box;
}

/* Footer Sections */
footer .footer-container div {
  margin: 10px;
  width: calc(33.33% - 20px); /* 3 sections per row on large screens */
  box-sizing: border-box;
}

/* Section Title */
footer .footer-container h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* List Styles */
footer .footer-container ul {
  list-style-type: none;
  padding: 0;
}

/* List Items */
footer .footer-container ul li {
  margin: 5px 0;
  color: black;
}

footer .footer-container ul li a {
  color: black;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 100px;
}

/* Hover Effect for Links */
footer .footer-container ul li a:hover {
  text-decoration: underline;
}

/* Social Icons */
footer .social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Social Icons Links */
footer .social-icons a {
  margin: 0 10px;
  color: white;
  font-size: 24px;
  text-decoration: none;
}

/* Hover Effect for Social Icons */
footer .social-icons a:hover {
  color: #3498db;
}

/* Footer Bottom */
footer .footer-bottom {
  margin-top: 30px;
  font-size: 12px;
  color: #bdc3c7;
  background-color: #006dc6;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  footer .footer-container {
    justify-content: space-between;
  }

  footer .footer-container div {
    width: calc(50% - 20px); /* 2 sections per row on medium screens */
  }

  footer .social-icons a {
    font-size: 30px; /* Slightly larger social icons on tablets */
  }
}

@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .footer-container div {
    width: 100%; /* 1 section per row on small screens */
    margin-bottom: 20px;
  }

  footer .social-icons {
    margin-top: 20px;
  }

  footer .social-icons a {
    font-size: 32px; /* Increase icon size on smaller screens */
    margin: 10px;
  }

  footer .footer-bottom {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  footer .footer-container h3 {
    font-size: 16px; /* Smaller font size for heading on small devices */
  }

  footer .footer-container ul li {
    font-size: 14px; /* Smaller text for list items */
  }

  footer .social-icons a {
    font-size: 28px; /* Slightly smaller icons for very small screens */
  }

  footer .footer-bottom {
    font-size: 9px; /* Even smaller font size on very small screens */
  }

  footer .footer-container div {
    width: 100%; /* Full width for each section on very small screens */
    text-align: center; /* Center-align content */
  }
}
   






.button{
  background-color: black;
  background-size: 200px;
  font-size: 25px;
  color: white;
  border-radius: 30px;
  margin-left: 500px;
  width: 200px;
  height: 50px;
}

/* Styling for the h1 tag */
.h1 {
  text-align: center;
  color: #006dc6;
  font-weight: bolder;
  font-size: 10vw; /* Responsive font size using viewport width */
  margin: 0; /* To avoid any extra space that might appear */
}

/* Styling for the height class */
.height {
  height: 70vh; /* 70% of the viewport height */
  width: 100vw; /* Full width of the viewport */
  max-width: 100%; /* Remove max-width constraint to ensure it takes full width */
  object-fit: cover; /* Ensures the image covers the entire area without stretching */
}

/* For larger screens, such as 1920px width */
@media (min-width: 1920px) {
  .height {
    height: 70vh; /* You can keep this or adjust for larger screens */
    width: 100vw; /* Full width of the viewport */
    max-width: 100%; /* Ensure no max-width constraint */
  }
}

/* For medium screens, such as tablets and smaller laptops */
@media (max-width: 1024px) {
  .height {
    height: 50vh; /* Reduce height for smaller screens */
    width: 100vw; /* Full width of the viewport */
    max-width: 100%; /* Remove max-width constraint */
  }
}

/* For mobile screens */
@media (max-width: 768px) {
  .height {
    height: 50vh; /* Reduce height for smaller screens */
    width: 100vw; /* Full width of the viewport */
    max-width: 100%; /* Remove max-width constraint */
  }
}



/* Styling for the ms class */
.ms {
  text-align: center;
  color: #006dc6;
  font-weight: bold;
  margin-top: 20px;
  font-size: 4vw; /* Responsive font size */
  font-family: 'Poppins', sans-serif;
}

/* Media Queries for additional responsiveness */
@media (max-width: 768px) {
  .h1 {
    font-size: 12vw; /* Adjust font size for smaller screens */
  }

  .height {
    height: 35vh; /* Slightly smaller height for smaller screens */
  }

  .ms {
    font-size: 5vw; /* Adjust font size for smaller screens */
  }
}

@media (max-width: 480px) {
  .h1 {
    font-size: 15vw; /* Even smaller font size for very small screens */
  }

  .height {
    height: 30vh; /* Reduce height for smaller devices */
  }

  .ms {
    font-size: 6vw; /* Adjust font size further */
  }
}

.size{
  width: 100px;
  height: 100px;
}








/* Basic Body Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Container for layout */
.container {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  box-sizing: border-box; /* Prevent padding from affecting the layout */
}

/* Icons Column */
.icons-column {
  margin-top: 50px;
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  margin-bottom: 20px; /* Add margin for small screens */
  font-family: 'Poppins', sans-serif;
}

/* Icon Items */
.icon-item {
  text-align: center;
  margin-bottom: 20px;
}

.icon-item img {
  width: 70px;
  height: 70px;
}

.icon-item p {
  margin-top: 10px;
  font-weight: bold;
}

/* Table Styling */
table {
  width: 45%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

table th, table td {
  padding: 15px;
  text-align: left;
  border: 1px solid #ddd;
}

table th {
  background-color: #007BFF;
  color: white;
}

table td {
  background-color: #f9f9f9;
}

.table-heading {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

/* Media Queries for smaller screens */

/* For tablets and small screens */
@media (max-width: 1024px) {
  /* Adjust the layout by stacking elements */
  .container {
    flex-direction: column;
    align-items: center;
  }

  /* Icons column will take up 80% of the width */
  .icons-column {
    width: 80%;
  }

  /* Table width becomes full screen */
  table {
    width: 90%;
    margin-left: 0;
  }

  /* Adjust table padding and spacing for small screens */
  table th, table td {
    padding: 12px;
  }

  .table-heading {
    font-size: 16px; /* Adjust table heading font size */
  }

  /* Adjust icon sizes */
  .icon-item img {
    width: 60px;
    height: 60px;
  }

  .icon-item p {
    font-size: 14px; /* Smaller text for icons */
  }
}

/* For mobile screens */
@media (max-width: 768px) {
  .container {
    padding: 20px; /* Reduce padding on mobile */
  }

  /* Icons column will take full width */
  .icons-column {
    width: 100%;
    margin-top: 20px;
  }

  /* Table will also take full width */
  table {
    width: 100%;
    margin-left: 0;
  }

  /* Adjust padding for table cells */
  table th, table td {
    padding: 10px;
  }

  /* Table heading size for smaller devices */
  .table-heading {
    font-size: 14px;
  }

  /* Further decrease icon sizes */
  .icon-item img {
    width: 50px;
    height: 50px;
  }

  .icon-item p {
    font-size: 12px; /* Smaller text size */
  }
}

/* For very small screens (e.g., phones in portrait mode) */
@media (max-width: 480px) {
  .container {
    padding: 10px; /* Smaller padding */
  }

  /* Icons column takes full width with spacing */
  .icons-column {
    width: 100%;
  }

  /* Adjust table to 100% width */
  table {
    width: 100%;
  }

  /* Smaller padding for table cells */
  table th, table td {
    padding: 8px;
  }

  /* Further reduce table heading size */
  .table-heading {
    font-size: 12px;
  }

  /* Reduce icon image size */
  .icon-item img {
    width: 45px;
    height: 45px;
  }

  /* Further adjust text size for icons */
  .icon-item p {
    font-size: 10px; /* Even smaller text */
  }
}


