@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #0f172a; /* Deep Slate */
  --accent-color: #3b82f6; /* Modern Blue */
  --text-main: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: #f8fafc;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Footer Styles */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5rem 0 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-column h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-column p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.social-link:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  outline: none;
}

.newsletter-form button {
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  background: var(--accent-color);
  color: var(--white);
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.875rem;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* About Section */
.about-section {
  padding: 120px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  z-index: 1;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60%;
  height: 60%;
  background: var(--accent-color);
  opacity: 0.1;
  border-radius: 30px;
  z-index: -1;
}

.about-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Educational/Empower Section */
.empower-section {
  padding: 100px 0;
  background-color: #aed9d9; /* Accurate light teal from image */
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: 4rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.feature-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: none; /* Removed for exact match */
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.feature-block h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.feature-block p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 1.15rem;
}

/* Contact Section Styles */
.contact-page-section {
  padding: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.contact-info h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2rem;
}

.contact-info p.lead {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 500px;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.info-item p {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.5;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Added shadow for depth on white */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
