body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  background: rgb(4,23,255);
  background: linear-gradient(90deg, rgba(4,23,255,1) 0%, rgba(0,132,255,1) 35%, rgba(0,212,255,1) 100%);
}

#home {
  margin-top: 100px;
  position: relative;
}
#home h3{
  margin-bottom: 10px;
}
header {
  background-color: #f2f2f2;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.top-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
  /* background-color: #0079FF; */
  height: 400px;
  width: 100%;
  /* position: absolute; */
  /* top: 0;
  left: 0;
  display: flex; */
  /* align-items: center; */
  /* margin-top: 50px; */
}

.logo-container {
  width: 50%;
  padding-left: 10%;
}

.logo {
  height: 100px;
  width: auto;
}

.image-container {
  width: 50%;
  padding-right: 10%;
}

.main-image {
  height: 400px;
  width: auto;
}

/* Media Queries for responsiveness */

@media (max-width: 768px) {
  .top-section {
    flex-direction: column;
    height: auto;
    align-items: center;
  }
  
  .logo-container,
  .image-container {
    width: 100%;
    padding: 10px;
  }
  
  .logo {
    height: 100px;
    padding: 10px;
    margin: 30px;
  }
  
  .main-image {
    height: auto;
    max-width: 100%;
  }
}




nav {
  margin-right: 20px;
  padding-right: 20px; /* Add right padding */
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;

}

nav ul li {
  display: inline-block;
  margin-left: 10px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 25px; 
}



.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
  padding: 20px; /* Add padding to sections */
}

h1 {
  text-align: center;
}

.contact-header {
  margin-bottom: 20px;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  width: 80%;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

.active {
  font-weight: bold;
  color:  #45a049;
}

.white-icon {
  color: white;
}

.home-box {
  width: 100%;
  max-width: 1163px;
  /* margin: 0 auto; */
  margin-bottom: 50px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.icon-row {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 20px;
}

.icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-container i {
  font-size: 48px; /* Adjust the size as needed */
}

.icon-container h3 {
  margin-top: 20px;
}

.icon-container .content {
  flex-grow: 1; /* Allow the content to grow and fill remaining space */
  padding: 20px;
}

 @media (max-width: 576px) {
  .home-box {
    padding: 10px;
  }

  .icon-row {
    /* flex-wrap: wrap; */
    justify-content: center;
  }

  .icon-container {
    /* flex-basis: 33%; */
    margin-bottom: 10px; 
    padding: 50px;
  }

  .icon-container h3 {
    text-align: center;
  }
} 

.white-box {
  width: 100%;
  max-width: 1163px;
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex; /* Add flexbox layout */
  align-items: center; /* Center vertically */
}

.white-box img {
  height: 500px;
  width: 50%;
  object-fit: contain;
}

.white-box .content {
  flex-grow: 1; /* Allow the content to grow and fill remaining space */
  padding: 20px;
}

.white-box h3 {
  font-family: Montserrat-ExtraBold;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 20px;
  margin-top: 0;
}

.white-box p {
  font-size: 16px;
}

/* Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
  .white-box {
    flex-direction: column; /* Stack the image and content vertically */
    align-items: flex-start; /* Align items to the start */
  }

  .white-box img {
    width: 100%; /* Take up full width */
    height: auto;
  }

  .white-box .content {
    margin-top: 10px;
  }

  .white-box h3 {
    font-size: 25px; /* Adjust font size for smaller screens */
  }

  .white-box p {
    font-size: 14px; /* Adjust font size for smaller screens */
  }
}




