/* style.css */

:root {
  --font-primary: "Lato", sans-serif;
  --font-heading: "Poppins", sans-serif;

  /* Light Theme */
  --color-bg: #f8f9fa;
  --color-bg-alt: #ffffff;
  --color-text: #212529;
  --color-text-muted: #6c757d;
  --color-border: #dee2e6;
  --color-primary: #0d6efd;
  --color-primary-darker: #0b5ed7;
  --color-light: #f8f9fa;
  --color-dark: #212529;
  --color-success: #198754;
  --color-shadow: rgba(0, 0, 0, 0.075);
  --gradient-hero: linear-gradient(
    135deg,
    #020024 0%,
    #090979 35%,
    #00d4ff 100%
  );
  --gradient-cta: linear-gradient(105deg, #6a11cb, #2575fc);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #121212;
    --color-bg-alt: #1e1e1e;
    --color-text: #e0e0e0;
    --color-text-muted: #a0a0a0;
    --color-border: #333333;
    --color-primary: #4dabf7;
    --color-primary-darker: #228be6;
    --color-light: #f8f9fa;
    --color-dark: #212529;
    --color-success: #40c057;
    --color-shadow: rgba(255, 255, 255, 0.05);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-text);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary-darker);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding: 6rem 0;
}

.bg-light {
  background-color: var(--color-bg-alt);
}
.bg-white {
  background-color: var(--color-bg-alt);
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

/* Header */
.site-header {
  background-color: var(--color-bg-alt);
  box-shadow: 0 2px 10px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo i {
  margin-right: 0.5rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: none;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--color-text);
  cursor: pointer;
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-bg-alt);
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  gap: 1.5rem;
}

.mobile-menu.active {
  display: flex;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
}
.btn-primary:hover {
  background-color: var(--color-primary-darker);
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light {
  background-color: var(--color-light);
  color: var(--color-primary);
}
.btn-light:hover {
  background-color: #e2e6ea;
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: var(--color-light);
  color: var(--color-light);
}
.btn-outline-light:hover {
  background-color: var(--color-light);
  color: var(--color-primary);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
}

.main-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.hero-subheading {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-image-wrapper {
  max-width: 600px;
  width: 100%;
}

/* Headings */
.section-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 4rem;
}

/* Grids */
.grid-4-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Card */
.card {
  background-color: var(--color-bg);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 25px var(--color-shadow);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px var(--color-shadow);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Two Column Layout */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}
.feature-image {
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--color-shadow);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-list i {
  font-size: 1.5rem;
  color: var(--color-success);
  margin-top: 5px;
}

.feature-list h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

/* Testimonials */
.testimonial-card {
  background-color: var(--color-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 25px var(--color-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.quote-icon {
  font-size: 2rem;
  color: var(--color-primary);
  opacity: 0.5;
  margin-bottom: 1rem;
}
.testimonial-text {
  flex-grow: 1;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.author-icon {
  font-size: 3rem;
  color: var(--color-border);
}
.author-name {
  font-weight: 700;
  margin-bottom: 0;
}
.author-meta {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Mission Section */
.mission-content {
  max-width: 800px;
  margin: 0 auto;
}
.mission-icon {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.mission-text {
  font-size: 1.25rem;
  line-height: 1.8;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.team-member {
  text-align: center;
}
.team-icon {
  font-size: 6rem;
  color: var(--color-border);
  margin-bottom: 1rem;
}
.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.team-role {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.team-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* CTA Section */
.cta-banner {
  background: var(--gradient-cta);
  color: #fff;
  padding: 4rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.cta-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
}
.cta-text {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

/* Footer */
.site-footer-main {
  background-color: var(--color-dark);
  color: #a0a0a0;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.footer-logo {
  font-size: 1.5rem;
  color: #fff;
}
.footer-heading {
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: #a0a0a0;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.social-links a {
  font-size: 1.25rem;
  color: #a0a0a0;
}
.social-links a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom .fa-heart {
  color: #e63946;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: 1.5rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}
.cookie-notice.show {
  transform: translateY(0);
}
.cookie-notice p {
  margin-bottom: 0;
  text-align: center;
}
.cookie-notice a {
  color: var(--color-primary);
  font-weight: 600;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cookie-notice {
    flex-direction: row;
  }
  .cookie-notice p {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .nav-links,
  .nav-actions {
    display: flex;
  }
  .mobile-menu-toggle,
  .mobile-menu {
    display: none;
  }
  .hero-container {
    flex-direction: row;
    text-align: left;
  }
  .hero-content {
    text-align: left;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
  .grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col-layout {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .grid-4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-3-cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .section-padding {
    padding: 8rem 0;
  }
  .hero-section {
    padding: 8rem 0;
  }
}
