/* Base Variables and Reset */
:root {
  /* Primary Colors */
  --primary-color: #5b63ff;
  --primary-dark: #4046cc;
  --primary-light: #8a8fff;
  
  /* Split-Complementary Colors */
  --accent1-color: #ff5b7f;
  --accent1-dark: #cc4865;
  --accent1-light: #ff8aa3;
  
  --accent2-color: #5bffb0;
  --accent2-dark: #46cc8c;
  --accent2-light: #8affd0;
  
  /* Neutral Colors */
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  
  /* Shadow Colors */
  --shadow-light: rgba(255, 255, 255, 0.7);
  --shadow-dark: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.05);
  
  /* Typography */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Work Sans', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--spacing-md);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Section Common Styles */
section {
  padding: var(--spacing-lg) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  font-weight: 600;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent1-color));
  margin: var(--spacing-sm) auto 0;
  border-radius: var(--border-radius-full);
}

/* Buttons */
.btn,
button,
input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.btn:hover,
button:hover,
input[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.btn:active,
button:active,
input[type='submit']:active {
  transform: translateY(0);
  box-shadow: 
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
}

.primary {
  background-color: var(--primary-color);
  color: white;
}

.primary:hover {
  background-color: var(--primary-dark);
  color: white;
  text-decoration: none;
}

.secondary {
  background-color: var(--accent1-color);
  color: white;
}

.secondary:hover {
  background-color: var(--accent1-dark);
  color: white;
  text-decoration: none;
}

.tertiary {
  background-color: var(--accent2-color);
  color: var(--dark-color);
}

.tertiary:hover {
  background-color: var(--accent2-dark);
  color: var(--dark-color);
  text-decoration: none;
}

/* Cards */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 
    12px 12px 20px var(--shadow-dark),
    -12px -12px 20px var(--shadow-light);
}

.card-image {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-normal);
  margin: 0 auto;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--spacing-md);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.card-content p {
  color: var(--gray-color);
  margin-bottom: var(--spacing-sm);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px var(--shadow-medium);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo h1 {
  font-size: 2rem;
  margin: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent1-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.desktop-nav ul {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
  margin: 0;
}

.desktop-nav a {
  color: var(--dark-color);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.desktop-nav a:hover {
  color: var(--primary-color);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark-color);
  border-radius: var(--border-radius-full);
  transition: all var(--transition-normal);
}

.mobile-nav {
  display: none;
  background-color: white;
  padding: var(--spacing-sm) 0;
  box-shadow: 0 5px 10px var(--shadow-medium);
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: var(--spacing-sm);
}

.mobile-nav a {
  display: block;
  padding: var(--spacing-xs) 0;
  color: var(--dark-color);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 0;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-lg);
  color: white;
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  color: white;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

/* Mission Section */
.mission {
  position: relative;
  overflow: hidden;
  background-color: var(--light-color);
}

.mission-content {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.mission-image {
  flex: 1;
  text-align: center;
}

.mission-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin: 0 auto;
  transition: transform var(--transition-normal);
}

.mission-image:hover img {
  transform: scale(1.02) rotate(1deg);
}

.mission-text {
  flex: 1;
}

.mission-text h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.mission-progress {
  margin-top: var(--spacing-md);
}

.progress-item {
  margin-bottom: var(--spacing-sm);
}

.progress-item h4 {
  display: inline-block;
  margin-bottom: var(--spacing-xs);
  color: var(--dark-color);
}

.progress-bar {
  height: 10px;
  background-color: var(--light-gray);
  border-radius: var(--border-radius-full);
  overflow: hidden;
  box-shadow: inset 0 2px 4px var(--shadow-dark);
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent1-color));
  border-radius: var(--border-radius-full);
  transition: width 1.5s ease-in-out;
}

.progress-item span {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  color: var(--gray-color);
  margin-top: 2px;
}

/* Insights Section */
.insights {
  background-color: var(--light-color);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

/* Vision Section */
.vision {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(var(--accent2-light) 1px, transparent 1px),
    radial-gradient(var(--accent1-light) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.1;
  z-index: 0;
}

.vision-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.vision-text {
  flex: 1;
}

.vision-text h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.vision-image {
  flex: 1;
  text-align: center;
}

.vision-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin: 0 auto;
  transition: transform var(--transition-normal);
}

.vision-image:hover img {
  transform: scale(1.02) rotate(-1deg);
}

/* Case Studies Section */
.case-studies {
  background-color: var(--light-color);
}

.case-studies-slider {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
}

.slider-container {
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius-lg);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.slide {
  width: 100%;
  display: none;
  animation: fadeIn 1s ease-in-out;
}

.slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--spacing-md);
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin: 0 var(--spacing-md);
}

.dot {
  width: 12px;
  height: 12px;
  background-color: var(--light-gray);
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.prev-slide, .next-slide {
  background-color: var(--light-color);
  color: var(--dark-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 
    4px 4px 8px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
}

.prev-slide:hover, .next-slide:hover {
  background-color: var(--primary-light);
  color: white;
}

/* Customer Stories Section */
.customer-stories {
  background-color: var(--light-color);
}

.stories-carousel {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
}

.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-item {
  width: 100%;
  display: none;
  animation: fadeIn 1s ease-in-out;
}

.carousel-item.active {
  display: block;
}

.carousel-item .card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-item .card-image {
  width: 150px;
  height: 150px;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  margin: var(--spacing-md) auto;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.carousel-item .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating {
  display: flex;
  gap: 4px;
  margin-bottom: var(--spacing-sm);
}

.star {
  color: gold;
  font-size: 1.2rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--spacing-md);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  margin: 0 var(--spacing-md);
}

.prev-item, .next-item {
  background-color: var(--light-color);
  color: var(--dark-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 
    4px 4px 8px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
}

.prev-item:hover, .next-item:hover {
  background-color: var(--primary-light);
  color: white;
}

/* Research Section */
.research {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.research-content {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.research-text {
  flex: 1;
}

.research-text h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.research-image {
  flex: 1;
  text-align: center;
}

.research-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin: 0 auto;
  transition: transform var(--transition-normal);
}

.research-image:hover img {
  transform: perspective(800px) rotateY(5deg);
}

/* External Resources Section */
.external-resources {
  background-color: var(--light-color);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.resource-link {
  display: inline-block;
  margin-top: var(--spacing-sm);
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  padding-right: 1.5rem;
}

.resource-link::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.resource-link:hover {
  color: var(--primary-dark);
}

.resource-link:hover::after {
  transform: translate(5px, -50%);
}

/* Team Section */
.team {
  background-color: var(--light-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.team-grid .card-image {
  width: 250px;
  height: 250px;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  margin: var(--spacing-md) auto 0;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.team-grid .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

/* Contact Section */
.contact {
  background-color: var(--light-color);
}

.contact-content {
  display: flex;
  gap: var(--spacing-lg);
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.contact-info ul {
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.contact-info li {
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  color: var(--gray-color);
}

.contact-info i {
  margin-right: var(--spacing-sm);
  color: var(--primary-color);
}

.map-container {
  margin-top: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.map-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.contact-form-container {
  flex: 1;
}

.contact-form-container h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--dark-color);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius-md);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 
    inset 2px 2px 4px var(--shadow-dark),
    inset -2px -2px 4px var(--shadow-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 
    inset 2px 2px 4px var(--shadow-dark),
    inset -2px -2px 4px var(--shadow-light),
    0 0 0 2px rgba(91, 99, 255, 0.1);
}

.submit-btn {
  align-self: flex-start;
  margin-top: var(--spacing-sm);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: var(--spacing-lg) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.footer-logo h2 {
  font-size: 2rem;
  margin: 0 0 var(--spacing-xs) 0;
  color: white;
}

.footer-logo p {
  color: var(--light-gray);
  font-size: 0.9rem;
}

.footer-links h3,
.footer-legal h3,
.footer-social h3 {
  color: white;
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.footer-links ul,
.footer-legal ul,
.footer-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-legal li,
.footer-social li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a,
.footer-legal a,
.footer-social a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-social a:hover {
  color: white;
  text-decoration: none;
}

.footer-social a {
  display: flex;
  align-items: center;
}

.footer-social a::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: var(--spacing-xs);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-social a:hover::before {
  opacity: 1;
}

.footer-social a[href*="facebook"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm3 8h-1.35c-.538 0-.65.221-.65.778v1.222h2l-.209 2h-1.791v7h-3v-7h-2v-2h2v-2.308c0-1.769.931-2.692 3.029-2.692h1.971v3z'/%3E%3C/svg%3E");
}

.footer-social a[href*="twitter"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm6.066 9.645c.183 4.04-2.83 8.544-8.164 8.544-1.622 0-3.131-.476-4.402-1.291 1.524.18 3.045-.244 4.252-1.189-1.256-.023-2.317-.854-2.684-1.995.451.086.895.061 1.298-.049-1.381-.278-2.335-1.522-2.304-2.853.388.215.83.344 1.301.359-1.279-.855-1.641-2.544-.889-3.835 1.416 1.738 3.533 2.881 5.92 3.001-.419-1.796.944-3.527 2.799-3.527.825 0 1.572.349 2.096.907.654-.128 1.27-.368 1.824-.697-.215.671-.67 1.233-1.263 1.589.581-.07 1.135-.224 1.649-.453-.384.578-.87 1.084-1.433 1.489z'/%3E%3C/svg%3E");
}

.footer-social a[href*="instagram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm6.066 9.645c.183 4.04-2.83 8.544-8.164 8.544-1.622 0-3.131-.476-4.402-1.291 1.524.18 3.045-.244 4.252-1.189-1.256-.023-2.317-.854-2.684-1.995.451.086.895.061 1.298-.049-1.381-.278-2.335-1.522-2.304-2.853.388.215.83.344 1.301.359-1.279-.855-1.641-2.544-.889-3.835 1.416 1.738 3.533 2.881 5.92 3.001-.419-1.796.944-3.527 2.799-3.527.825 0 1.572.349 2.096.907.654-.128 1.27-.368 1.824-.697-.215.671-.67 1.233-1.263 1.589.581-.07 1.135-.224 1.649-.453-.384.578-.87 1.084-1.433 1.489z'/%3E%3C/svg%3E");
}

.footer-bottom {
  text-align: center;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  width: 90%;
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-color);
  transition: color var(--transition-fast);
}

.close-modal:hover {
  color: var(--dark-color);
}

.modal-btn {
  margin-top: var(--spacing-md);
}

/* Additional Pages */
.privacy-page, 
.terms-page {
  padding-top: 100px;
}

.privacy-page .container,
.terms-page .container {
  max-width: 800px;
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-content {
  max-width: 600px;
  padding: var(--spacing-lg);
}

/* Media Queries */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .mission-content,
  .vision-content,
  .research-content,
  .contact-content {
    flex-direction: column;
  }
  
  .mission-image,
  .mission-text,
  .vision-text,
  .vision-image,
  .research-text,
  .research-image,
  .contact-info,
  .contact-form-container {
    flex: auto;
    width: 100%;
  }
  
  .mission-image,
  .vision-image,
  .research-image {
    margin-bottom: var(--spacing-md);
  }
  
  .vision-content {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav.show {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .insights-grid,
  .team-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
  }
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-up {
  animation: slideUp 1s ease-in-out;
}

.slide-in-left {
  animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
  animation: slideInRight 1s ease-in-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 3D Effect Classes */
.tilt-effect {
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.tilt-effect:hover {
  transform: perspective(500px) rotateX(5deg) rotateY(5deg) scale(1.05);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-sm {
  margin-bottom: var(--spacing-sm) !important;
}

.mb-md {
  margin-bottom: var(--spacing-md) !important;
}

.mb-lg {
  margin-bottom: var(--spacing-lg) !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-sm {
  margin-top: var(--spacing-sm) !important;
}

.mt-md {
  margin-top: var(--spacing-md) !important;
}

.mt-lg {
  margin-top: var(--spacing-lg) !important;
}

.py-sm {
  padding-top: var(--spacing-sm) !important;
  padding-bottom: var(--spacing-sm) !important;
}

.py-md {
  padding-top: var(--spacing-md) !important;
  padding-bottom: var(--spacing-md) !important;
}

.py-lg {
  padding-top: var(--spacing-lg) !important;
  padding-bottom: var(--spacing-lg) !important;
}

.px-sm {
  padding-left: var(--spacing-sm) !important;
  padding-right: var(--spacing-sm) !important;
}

.px-md {
  padding-left: var(--spacing-md) !important;
  padding-right: var(--spacing-md) !important;
}

.px-lg {
  padding-left: var(--spacing-lg) !important;
  padding-right: var(--spacing-lg) !important;
}