/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

/* Header Styling */
header {
  background:#22b9ff43;
  color:blue;
  padding: 20px 0;
  text-align: right;
  
}

header h1 {
  font-size: 36px;
  font-weight: bold;
  color: blue;
  text-align:left;
}

nav {
  margin-top: 10px;
}

nav .nav-items {
  list-style: none;
}

nav .nav-items li {
  display: inline;
  margin-left: 20px;
}

nav .nav-items a {
  color:black;
  text-decoration: none;
  font-size: 18px;
}

nav .nav-items a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 10%;
  background:#22b9ff47;
  color: rgb(80, 78, 78);
}

.hero .info {
  max-width: 50%;
}

.hero .info h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2273ff;
}

.hero .info p {
  font-size: 16px;
  margin-bottom: 25px;
}

.hero button {
  background-color: #ff5722;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
}

.hero button:hover {
  background-color: #3419e6;
}

.hero img {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
}

/* Offers Section */
.offers {
  display: flex;
  justify-content: space-around;
  padding: 50px 10%;
  background: #f4f4f4;
}

.offer {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 30%;
}

.offer i {
  font-size: 40px;
  color: #2290ff;
  margin-bottom: 20px;
}

.offer strong {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}

/* About Section */
.about {
  display: flex;
  justify-content: space-between;
  padding: 50px 10%;
  background-color: #eeeeee;
}

.about img {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
}

.about div {
  max-width: 45%;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.about p {
  font-size: 16px;
  margin-bottom: 20px;
}

.about button {
  background-color: #2273ff;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 18px;
  cursor: pointer;
}

.about button:hover {
  background-color: #e64a19;
}

/* More About Section */
.more-about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 10%;
   background-color: #22c8ff6b;
}

.more-about img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
}

.more-about .info {
  max-width: 45%;
 
  text-align: center;
}

.more-about h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2922ffb1;
}

.more-about p {
  font-size: 16px;
  margin-bottom: 20px;
  
}

.more-about button {
  background-color: #ff5722;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 18px;
  cursor: pointer;
}

.more-about button:hover {
  background-color: #e64a19;
}

/* Services Section */
.services {
  text-align: center;
  padding: 50px 10%;
  background-color: #ffffff;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.services-container {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.service {
  width: 30%;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service i {
  font-size: 40px;
  color: #ff5722;
  margin-bottom: 20px;
}

.service h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service p {
  font-size: 16px;
}

.services button {
  background-color: #2229ff;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
}

.services button:hover {
  background-color: #e64a19;
}

/* Contact Section */
.contact {
  background: #f4f4f4;
  padding: 50px 10%;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info form {
  width: 50%;
}

.contact-info input {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 2px solid #ccc;
  border-radius: 5px;
}

.contact-info .feedback {
  height: 150px;
}

.contact-info .send-btn {
  background-color: #3c22ff;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 18px;
  cursor: pointer;
}

.contact-info .send-btn:hover {
  background-color: #e64a19;
}

.contact-info iframe {
  width: 45%;
  height: 300px;
  border: 0;
  border-radius: 10px;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 16px;
}
