
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.container1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px; /* Adjust spacing between logos as needed */
}
header {
  color: #fff;
  padding: 1em 0;
}


header h1 {
  margin: 0;
  display: inline-block;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-left: 15px;
}

nav ul li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

nav ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #007bff;
  transition: width 0.3s;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover {
  color: #007bff;
}

.hero {
  background: url("logo1.png") no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 60px; /* Increased font size */
  font-family: "Montserrat", sans-serif; /* Added a modern font */
}

.hero p {
  font-size: 28px; /* Increased font size */
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif; /* Complementary font */
}
.hero h1,
.hero p,
.hero {
  color: #fff; /* Text color changed to white */
}
.content {
  padding: 2em 0;
  text-align: center;
  font-family: "Roboto", sans-serif;
  display: flex;
  font-size: 20px;
  line-height: 1.6;
}

.contact {
  background-color: #d3d3d3;
  padding: 60px 0;
  text-align: center;
}


.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.about-us {
  background: url("about.jpg") no-repeat center center/cover;
  padding: 150px 0px;
  text-align: center;
  position: relative;
}
.about-us h1 {
  margin-bottom: 20px;
  font-size: 60px; /* Increased font size */
  font-family: "Montserrat", sans-serif; /* Added a modern font */
}
.about-us h1,
.about-us {
  color: #fff; /* Text color changed to white */
}
.section {
  padding: 40px 0; /* Adjust top and bottom padding */
  text-align: center;
}

.section h2 {
  font-size: 36px; /* Larger font size for section headings */
  margin-bottom: 10px;
}

.section p {
  font-size: 18px; /* Smaller font size for paragraphs */

  line-height: 1.6;
}

.logos {
  padding: 20px 0;
}

.logo p {
  margin-top: 10px;
  text-align: center;
  font-size: 14px; /* Adjust font size as needed */
  color: #333; /* Adjust text color as needed */
}
.logo {
  flex: 1;
  max-width: 150px; /* Adjust size as needed */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 100%;
  height: auto;
  max-width: 150px; /* Adjust size as needed */
}
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  width: 100%;
  position: absolute;
  bottom: 100;
}
.phone-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.phone-icon img {
    width: 30px;
    height: 30px;
}

.hidden {
    display: none;
}

#phoneNumber {
    margin-left: 10px;
    font-size: 16px;
    color: #333;
}

.no-bullets {
  list-style-type: none;
  padding-left: 0;
}

@media (max-width: 768px) {
 
  .foot {
    font-size: 12px;
  }
  .no-bullets {
    list-style-type: none;
    padding-left: 0;
  }

  .no-bullets li {
    padding: 5px 0;
  }
  .hero h1 {
        font-size: 24px; /* Adjust font size for smaller screens */
        word-break: break-word; /* Break words to prevent overflow */
    }
}

/* new styles add */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-content > img {
  width: 100px;
  aspect-ratio: 1;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.image-container {
  position: relative;
  /* margin: 0 20px; */
}

.contact-image {
  width: 100%;
  display: block;
}

.image-text {
  position: absolute;
  inset: 0;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.89);
  padding: 10px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  text-decoration: none;
  transition: all 150ms ease-in;
}
.image-text::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #007bff;
  transition: width 0.3s;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.image-text:hover::after {
  width: 100%;
}

.image-text:hover {
  color: #007bff;
  background-color: rgba(0, 0, 0, 0.4);
}

.contact-text {
  margin-top: 40px;
}
