body{
  background-color: #e9f7f9;
}

.sky_body {
  background-image: url('https://static.vecteezy.com/system/resources/previews/001/176/927/original/blue-and-white-abstract-background-vector.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
  position: relative;
}

@media (max-width: 768px) {
  .sky_body{
      height: max-content;
      padding: 2rem 1rem;
  }
}

.hero {
  background: linear-gradient(135deg, #bfe9fe, #4eacf4);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

/* Content Wrapper */
.hero-content {
  z-index: 2;
  margin: 0 auto;
}

/* Heading Styling */
.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Paragraph Styling */
.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.5;
}
.hero label{
  text-align: left;
}

/* Background Element (Optional) */
.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  z-index: 1;
  animation: float 8s ease-in-out infinite reverse;
}

/* Float Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}


/* Contact Us Section */
.contact-us-section {
    padding: 40px 20px;
    background-color: #ffffff80;
    border: 2px solid #bfe9fe;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: auto;
    max-width: 800px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-us-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Section Header */
.contact-container h3 {
    text-align: center;
    color: #333;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.contact-container p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

/* Form Container */
.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Form Sides */
.form-left, .form-right {
    flex: 1 1 48%;
}

/* Form Group */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #444;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* Textarea */
.form-group textarea {
    resize: none;
}

/* Button Styles */
.submit-btn {
    display: inline-block;
    padding: 12px 20px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.submit-btn i {
    margin-right: 5px;
}

/* Icons */
.contact-container i {
    color: #007bff;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-left, .form-right {
        flex: 1 1 100%;
    }
}

/*Footer*/

.footer {
    background-color: #0c2e48;
    color: #dfe6e9;
    font-family: Arial, sans-serif;
    padding: 50px 20px;
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
  }

  .footer-logo-section {
    flex: 1;
    margin-bottom: 20px;
  }

  .footer-logo {
    width: 220px;
    margin-bottom: 15px;
    border: 3px solid skyblue;
  }

  .footer-info,
  .footer-links,
  .footer-cta {
    flex: 1;
    margin-bottom: 20px;
  }

  .footer-info h3,
  .footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #bfe9fe;
  }

  .footer-info p,
  .footer-info a,
  .footer-links a {
    margin: 5px 0;
    color: #bfe9fe;
    opacity: 0.6;
    text-decoration: none;
    display: flex;
    align-items: center;
  }

  .footer-info p:hover,
  .footer-info a:hover,
  .footer-links a:hover{
    opacity: 1;
  }

  .footer-info p i,
  .footer-links a i {
    margin-right: 10px;
  }

  .cta-button {
    display: inline-block;
    background-color: #bfe9fe;
    color:#0c2e48;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
    }

    .footer-logo-section,
    .footer-info,
    .footer-links,
    .footer-cta {
      text-align: center;
    }

    .footer-info p,
    .footer-links a {
      justify-content: center;
    }
  }
