:root {
  --primary: #f0f8ff;
  --primary-light: #cf7fb7;
  --secondary: #9f7aea;
  --accent: #38b2ac;
  --success: #48bb78;
  --warning: #ed8936;
  --error: #f56565;
  --light: #f7fafc;
  --white: #ffffff;
  --gray-light: #e2e8f0;
  --gray-medium: #718096;
  --gray-dark: #2d3748;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --rounded-sm: 0.25rem;
  --rounded-md: 0.5rem;
  --rounded-lg: 1rem;
  --rounded-xl: 1.5rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --section-padding: 6rem 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #212121;
}

p {
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: normal;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  background: url("../img/pumates.jpg") center center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
}

/* Overlay Layer */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.397); /* Black overlay */
  z-index: 1;
}

/* Ensure content appears above overlay */
.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--rounded-md);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  gap: 0.5rem;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  box-shadow: var(--shadow-md);
  border-radius: 0;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  padding: 0.875rem 2.75rem;
}

.btn-primary:hover {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  box-shadow: var(--shadow-lg);
}

/* About Section */
.about {
  padding: var(--section-padding);
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: #fff5ef;
  color: #f58488;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Responsive for smaller devices */
@media (max-width: 991px) {
  .grid-cols-2 {
    grid-template-columns: 1fr; /* 1 column in smaller screen */
  }

  .about-image img {
    height: auto; /* allow image to shrink naturally */
  }

  .about-content {
    text-align: center;
  }
}

.about-image {
  border-radius: var(--rounded-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 460px;
  display: block;
  transition: var(--transition);
  object-fit: cover;
}

.about-image:hover img {
  transform: scale(1.03);
}

.highlight {
  background: #fb9fa211;
  border-left: 4px solid #f58488;
  padding: 1.5rem;
  border-radius: var(--rounded-md);
  margin-top: 2rem;
}

/* Features Section */
.features {
  padding: var(--section-padding);
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--rounded-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: #fff5ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f58488;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Application Section */
.application {
  padding: var(--section-padding);
  background: var(--white);
  padding-bottom: 0;
}

.application-container {
  display: grid;
  gap: 3rem;
}

.application-info {
  background: #fff5ef;
  color: var(--white);
  padding: 3rem;
  border-radius: var(--rounded-xl);
  position: relative;
  overflow: hidden;
}

.application-info h2 {
  color: #f58488;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  font-weight: 600;
}

.application-info p {
  color: #3c3c3c;
  position: relative;
  z-index: 2;
}

.application-info ul {
  list-style: none;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.application-info li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: #3c3c3c;
}

.application-info li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success);
}

.application-form {
  background: var(--light);
  padding: 3rem;
  border-radius: var(--rounded-xl);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-dark);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--rounded-md);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

.btn-submit {
  background: #212121;
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  border-radius: 0;
  width: auto; /* Default width for larger screens */
  min-width: 200px;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .btn-submit {
    width: 100%;
  }
}


.btn-submit:hover {
  background-color: white;
  border: 1px solid #212121;
  color: #212121;
  box-shadow: var(--shadow-md);
}

.section-head {
  font-size: 10px;
  line-height: 32.4px;
}

.section-para {
  font-size: 18px;
  line-height: 32.4px;
}

.feature-heading h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

h3.form-title {
  margin-bottom: 20px;
}

.fake-recaptcha {
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  max-width: 300px;
  background-color: #f9f9f9;
  margin-top: 15px;
  font-family: "Raleway", sans-serif;
  margin-bottom: 50px;
}

.fake-recaptcha input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 10px;
}

.fake-recaptcha label {
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  flex-grow: 1;
}

.captcha-logo {
  height: 30px;
}
