@import url('https://fonts.googleapis.com/css2?family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&display=swap');

/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  background-color: #f0f0f0;
}

.wrapper {
  width: 100%;
  overflow-x: hidden;
}

/* ========== Nav Bar ========== */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #131e3d;
  position: relative;
  height: 80px;
  z-index: 1000;
}

.logo {
  width: 120px;
  height: 50px;
  animation: slideInLeft 1s ease;
}

.sub-head {
  font-size: 32px;
  color: #f8f9ff;
  text-align: center;
  flex: 1;
  animation: slideInLeft 1s ease;
}

.contact-btn {
  background-color: #87cdc3;
  color: #000;
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: bold;
  font-family: sans-serif;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  animation: slideInLeft 1s ease;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #48699d;
}

/* Fixed contact button */
.fixed-contact-btn {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background-color: #7ccabf;
  color: #000;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 12px 12px 0 0;
  font-weight: bolder;

  font-size: 1.5rem;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.fixed-contact-btn:hover {
  background-color: #48699d;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 54rem;
  overflow: hidden;
  animation: slideInLeft 3s ease;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slideInLeft 1s ease;
  display: block;
}

.hero-section .absolute {
  position: absolute;
  inset: 0;
 
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 7%;
}

.hero-section h1 {
  font-size: 3.5rem;
  color: white;
  align-items: left;
  font-weight: 700;

}


/* Container */
.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 1.5rem;
}

h1,
h2,
h3 {
  font-weight: 600;
  color: #244a81;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 2.3rem;
  margin: 1.5rem 0 0.5rem;
}

p {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1.3rem;
}

.how{
  justify-self: center;
}
/* ========== Contact Section & Form ========== */
.contact-section {
  background: #fff;
  display: flex;
  justify-content: center;
  min-height: 50vh;
  box-shadow: 0 2px 28px rgba(64, 60, 232, 0.06);
  padding: 40px 20px;
}

/* Right side (now main container) */
.contact-right {
  flex: 1;
  max-width: 800px;
  padding: 2.5rem 5vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Heading & subheading above form */
.contact-overlay-text {
  text-align: center;
  color: #1c4d7b;
  /* Navy blue */
  margin-bottom: 30px;
}

.contact-overlay-text h2 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: bolder;
}

.contact-overlay-text h3 {
  font-size: 2rem;
  font-weight: 100;
  color: rgb(42, 101, 172);
}

/* Highlighted text style (optional) */
.contact-highlight {
  color: #332a56;
  font-size: clamp(1.6rem, 3.5vw, 1.29rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Contact Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: #d72879;
  outline: none;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input,
.form-row select {
  flex: 1;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 15px;
}

.checkbox-row input {
  margin-top: 4px;
}

.privacy-note {
  font-size: 12px;
  color: #555;
  margin-bottom: 20px;
}

.submit-btn {
  width: 100%;
  background: #255598;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 15px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #557e92;
}

/* ========== Footer ========== */
.site-footer {
  background-color: #131e3d;
  color: #d7d9dd;
  padding: 2rem 1rem;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
  gap: 1rem;
}

.footer-brand {
  flex: 1 1 auto;
  text-align: left;
}

.footer-brand p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #dcdcdc;
}

.footer-logo {
  max-height: 50px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff1a;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background-color: #ffffff33;
  transform: scale(1.1);
}

.footer-social i {
  color: white;
  font-size: 16px;
}

.lastpage {
  text-align: center;
  font-size: 1rem;
  padding-top: 1rem;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 2rem;
  }

}

@media (max-width: 600px) {
  


.footer-info {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.footer-brand {
  text-align: center;
}

.footer-social {
  justify-content: center;
}
}

@media (max-width: 480px) {
  .logo {
    width: 70px;
    height: 20px;
  }
  .nav-bar{
    gap: 1rem;
  }
  .sub-head {
    font-size: 0.9rem;
   

  }

  .contact-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }

  .hero-section {
    height: 31.25rem;
  }

  .hero-section h1 {
    font-size: 2.6rem;
  }

}