/* Header */
.header {
  background: #fff;
  color: #222;
  /* padding: 15px 30px; */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* makes it wrap on smaller screens */
}
/* Page Wrapper */
.page-wrapper {
  width: 1920px;
  margin: 0 auto;
  background: #fff;
}
html {
  scroll-behavior: smooth;
}

/* General Body */
body {
  background: #f1f1f1;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  gap: 10px;
  margin-left: 130px;
}
.logo-text {
  display: flex;
  flex-direction: column; /* stack Rehabilitate and Punjab 2025 */
}

.logo-main {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  color: #222;
  font-weight: bold;
}

.logo-sub {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #222;
  font-weight: 600;
  margin-top: -8px; /* small spacing below main text */
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-left: 5px;
}
.logo-img {
  width: 63px;
  height: 63px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0; /* prevents squishing */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: "Montserrat", sans-serif;
  align-items: center;
}

/* Default nav links */
.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  padding: 8px 14px;
  transition: 0.3s ease;
}

/* Gradient button specifically for Contact Us */
.nav-links li a.contact-btn {
  color: #fff;
  background: linear-gradient(90deg, #2f46bc, #e43d54);
  padding: 17px 26px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  width: 137px;
  height: 54px;
}

/* Hover effect */
.nav-links li a.contact-btn:hover {
  background: linear-gradient(90deg, #e43d54, #2f46bc);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hover effect */
/* .nav-links li a:hover {
  background: linear-gradient(90deg, #2f46bc, #e43d54);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
} */

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}
/* Hero Section */
.hero {
  background: url("./images/Group 34 1.png") no-repeat center center/cover;
  height: 730px; /* full screen height */
  display: flex;
  align-items: center;
  padding: 0 50px;
  color: #fff;
}

.hero-content {
  max-width: 600px;
  margin-left: 95px;
}

.hero-title {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.hero-one {
  font-size: 34px;
  font-weight: 100;
  margin-top: -50px;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
}
.hero-line {
  display: flex; /* keep in one line */
  align-items: center; /* vertical align */
  white-space: nowrap; /* prevent wrapping */
  gap: 12px; /* space between */
}

.hero-two,
.no-gradient {
  display: inline-block; /* important: prevents gradient clipping */
  font-family: "Montserrat", sans-serif;
  font-size: 68px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.2; /* give more vertical breathing room */
  padding-right: 6px; /* fix text cut-off at right side */
  font-style: italic; /* italic text */
}

.hero-two {
  display: inline-block;
  background: linear-gradient(90deg, #2f46bc, #e43d54);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  font-family: "Montserrat", sans-serif;
  font-size: 68px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.2;

  padding-right: 12px; /* ✅ extra breathing room */
  margin-right: 4px; /* ✅ avoid overlap */
  overflow: visible; /* ✅ prevent clipping */
  margin-left: -13px;
}

.no-gradient {
  color: transparent;
  -webkit-text-stroke: 1px #fff; /* outlined white text */
}
.hero-subtitles {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  color: #ffffff;
  font-weight: 500;
  margin-left: 22px;
  font-style: italic; /* <-- Add this for italics */
}
.hero-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  color: FFFFFF;
}
.hero-btn {
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: linear-gradient(90deg, #2f46bc, #e43d54);
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-actions {
  display: flex;
  align-items: center; /* vertically align everything */
  gap: 40px; /* spacing between button and stats */
}

.stats {
  display: flex;
  align-items: center; /* align stats and divider vertically */
  gap: 20px; /* spacing between stat and divider */
}

.stat h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.stat p {
  margin: 5px 0 0 0;
  font-size: 0.95rem;
  color: #cdcccb;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.divider {
  width: 2px;
  background-color: #969696;
  height: 60px; /* adjust based on your stat height */
  margin-right: 11px;
}

/* Impact Section */
.impact-section {
  padding: 40px 20px;
  text-align: center;
}

.impact-section h2 {
  font-size: 54px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #000; /* default black for text */
  text-align: start;
  margin-left: 160px;
}

.gradient-text {
  background: linear-gradient(90deg, #2f46bc, #e43d54);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.impact-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px; /* space between images */
  flex-wrap: wrap; /* for mobile responsiveness */
}

.impact-img {
  width: 838px; /* each image takes roughly half width */
  height: auto;
  object-fit: contain;
  height: 900px;
}

/* About Section */
.about-section {
  /* padding: 80px 50px; */
  background: #fff;
}

.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image img {
  width: 582px;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  height: 749px;
  margin-left: 155px;
}

.about-content {
  width: 50%;
  margin-right: 200px;
  margin-top: -43px;
}

.about-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-left: -10px;
}

.black-text {
  color: #000; /* black */
  font-size: 54px;
  font-family: Open Sans;
}

.gradient-text {
  background: linear-gradient(90deg, #2f46bc, #e43d54);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 54px;
  font-weight: bold;
  font-family: Open Sans;
}

.about-content h3 {
  font-size: 22px;
  margin: 15px 0 10px;
  color: #f39c12;
  margin-top: 3px;
}

.about-content p {
  /* margin-bottom: 20px; */
  color: #444;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  margin-top: -2px;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 20px; /* space between each stat box */
  flex-wrap: wrap; /* responsive */
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon {
  width: 60px; /* adjust icon size if needed */
  height: auto;
  margin-bottom: 5px; /* reduce gap below image */
}

.stat-box h2 {
  font-size: 1.5rem;
  margin: 2px 0; /* reduce gap above and below number */
}

.stat-box p {
  margin: 0; /* remove extra gap below number */
  font-size: 0.95rem;
  color: #555;
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
}

/* Full Image Section */
.image-section {
  padding: 60px 0;
  text-align: center;
  background: #f4f4f4; /* light background to separate sections */
}

.full-image {
  width: 100%; /* fill parent container */
  max-width: none; /* remove the 1200px limit */
  border-radius: 0; /* optional: remove rounded corners for full width */
  box-shadow: none; /* optional: remove shadow */
  object-fit: cover;
}

.image-sectionone {
  padding: 60px 0;
  text-align: center;
  background: #f4f4f4; /* light background to separate sections */
}

.full-imageone {
  width: 100%; /* fill parent container */
  max-width: none; /* remove the 1200px limit */
  border-radius: 0; /* optional: remove rounded corners for full width */
  box-shadow: none; /* optional: remove shadow */
  object-fit: cover;
}
/* Contact Section */
/* Contact Section */
.contact-section {
  background: #f9f9f9;
  padding: 80px 50px;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: stretch; /* make both boxes same height */
  gap: 40px;
  flex-wrap: wrap;
}

/* Contact Box (form & info) */
.contact-box {
  /* flex: 1; */
  width: 600px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
}
.contact-boxone {
  /* flex: 1; */
  width: 600px;
  /* background: #fff; */
  padding: 30px;
  border-radius: 12px;
  /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
}
/* Heading */
.contact-box h3,
.contact-box h4 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #222;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Row for Name + Email */
.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

/* Inputs & Textarea */
.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  /* background: #fafafa; */
  outline: none;
  transition: border 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2f46bc;
}

/* Button */
.contact-form button {
  padding: 14px;
  background: linear-gradient(90deg, #2f46bc, #e43d54);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #e43d54, #2f46bc);
}

/* Contact Info Box */
.contact-box img.contact-icon {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto 15px;
}

.contact-box p {
  font-size: 16px;
  color: #444;
  text-align: center;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

.hotline-icon {
  width: 50px; /* adjust size as needed */
  height: 50px;
  margin-bottom: 15px; /* space between image and text */
  object-fit: contain; /* keeps image proportion */
}
/* Footer */
.footer {
  background: #222;
  color: #fff;
  padding: 40px 50px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

/* .footer-links a:hover {
  color: #f39c12;
} */

.footer p {
  font-size: 14px;
  color: #ccc;
  font-family: "Poppins", sans-serif;
}
.transparency-section {
  padding: 80px 50px;
  text-align: center;
  background: #f9f9f9; /* light background to separate sections */
}

.transparency-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 54px;
  font-weight: bold;
  color: #000; /* default black */
}

.gradient-text {
  background: linear-gradient(90deg, #2f46bc, #e43d54);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.transparency-section p {
  font-size: 22px;
  margin-bottom: 40px;
  color: #555;
}

.transparency-image {
  width: 100%;
  max-width: 800px; /* keeps image responsive */
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}
.mission-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}

.mission-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}
/* .mission-list strong {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  font-weight: 600;
} */
.contact-image-section {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 40px 0;  */
}

.contact-image-section img {
  width: auto;
  max-width: 1200px; /* adjust max width */
  height: auto;
  object-fit: contain;
  margin-top: -95px;
}

.contact-image-section-2 {
  width: 100%;
  overflow: hidden;
}

.contact-image-section-2 img {
  width: 100%;
  height: auto;
  display: block; /* important to remove bottom margin from inline images */
  object-fit: cover;
  position: static; /* remove absolute positioning */
}
.gradient-heading {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;

  background: linear-gradient(90deg, #2f46bc, #e43d54);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.new-image-section {
  width: 100%;
  margin: 0; /* remove default margin */
  padding: 0; /* remove padding */
}

.new-image-section img {
  display: block; /* removes extra inline spacing */
  width: 100%; /* full width */
  height: auto; /* maintain aspect ratio */
  object-fit: cover;
  margin-top: 56px;
}
/* Generic section with no gap */
.no-gap-section {
  margin: 0; /* remove default margin */
  padding: 0; /* remove padding */
  width: 100%;
}

.no-gap-section img {
  display: block; /* remove inline spacing */
  width: 100%; /* full width */
  height: auto; /* maintain aspect ratio */
  object-fit: cover; /* cover container */
}
