/* ========== VARIABLES ========== */
:root {
  /* Primary Colors */
  --primary-color: #4a6bff;
  --primary-dark: #3a54cc;
  --primary-light: #7b94ff;
  
  /* Split-Complementary Colors */
  --accent-color-1: #ff6b4a;
  --accent-color-2: #4aff9e;
  
  /* Neutral Colors */
  --dark: #1a1e2e;
  --medium-dark: #2c3247;
  --medium: #545b75;
  --light: #f0f2f9;
  --white: #ffffff;
  
  /* Shadow Colors */
  --shadow-light: rgba(255, 255, 255, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.15);
  --shadow-darker: rgba(0, 0, 0, 0.25);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-accent-1: linear-gradient(135deg, var(--accent-color-1), #ff4a6b);
  --gradient-accent-2: linear-gradient(135deg, var(--accent-color-2), #4affda);
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--medium-dark));
  
  /* Overlays */
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --overlay-light: rgba(255, 255, 255, 0.1);
  
  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Neumorphism Shadows */
  --nm-shadow-inset: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
  --nm-shadow-outset: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
  --nm-shadow-outset-sm: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: var(--space-sm);
}

/* ========== UTILITIES ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  color: var(--medium);
  font-size: 1.1rem;
}

/* ========== BUTTONS ========== */
.btn,
button,
input[type='submit'] {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--nm-shadow-outset-sm);
  text-align: center;
}

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

.btn:active,
button:active,
input[type='submit']:active {
  transform: translateY(1px);
  box-shadow: var(--nm-shadow-inset);
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

/* ========== HEADER & NAVIGATION ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium);
}

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

.logo {
  display: block;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-list {
  display: flex;
}

.nav-list li {
  margin-left: var(--space-md);
}

.nav-list a {
  color: var(--medium-dark);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
}

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

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

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

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

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-medium);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--overlay-dark), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--white);
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: var(--space-sm);
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* ========== FEATURES SECTION ========== */
.features {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.features-slider {
  position: relative;
  margin: var(--space-md) 0;
  overflow: hidden;
}

.features-track {
  display: flex;
  gap: var(--space-md);
  transition: transform var(--transition-slow);
}

.feature-card {
  min-width: 350px;
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--white);
  box-shadow: var(--nm-shadow-outset);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.card-content {
  padding: var(--space-md);
  text-align: center;
}

.card-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}

.prev-btn, .next-btn {
  background: var(--white);
  color: var(--dark);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: var(--nm-shadow-outset-sm);
}

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

/* ========== PORTFOLIO SECTION ========== */
.portfolio {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.portfolio-item {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-outset);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item .image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.portfolio-item .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.portfolio-item:hover .image-container img {
  transform: scale(1.05);
}

.portfolio-content {
  padding: var(--space-md);
  text-align: center;
}

.portfolio-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

/* ========== VISION SECTION ========== */
.vision {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

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

.vision-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-outset);
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.vision-text {
  flex: 1;
}

.vision-text p {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

/* ========== STATS SECTION ========== */
.stats {
  padding: var(--space-xl) 0;
  background: var(--gradient-dark);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.stat-card {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-medium);
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--white);
  font-family: var(--font-heading);
}

.stat-title {
  font-size: 1.2rem;
  color: var(--light);
}

/* ========== COMMUNITY SECTION ========== */
.community {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

.community-links {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  align-items: center;
}

.link-card {
  flex: 1;
  background-color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow-outset);
}

.link-card h3 {
  margin-bottom: var(--space-md);
  color: var(--dark);
}

.external-links li {
  margin-bottom: var(--space-sm);
}

.external-links a {
  color: var(--primary-color);
  display: inline-block;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.external-links a:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.community-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-outset);
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.community-events {
  background-color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow-outset);
  text-align: center;
}

.community-events h3 {
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

/* ========== INNOVATION SECTION ========== */
.innovation {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

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

.innovation-text {
  flex: 1;
}

.innovation-text h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.innovation-text p {
  margin-bottom: var(--space-md);
}

.innovation-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-outset);
  display: flex;
  justify-content: center;
  align-items: center;
}

.innovation-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* ========== AWARDS SECTION ========== */
.awards {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.award-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-outset);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-card:hover {
  transform: translateY(-5px);
}

.award-card .image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.award-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.award-content {
  padding: var(--space-md);
  text-align: center;
}

.award-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

/* ========== NEWS SECTION ========== */
.news {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.news-card {
  background-color: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-outset);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card .image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.news-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.news-content {
  padding: var(--space-md);
  text-align: center;
}

.news-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.news-date {
  display: block;
  color: var(--medium);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ========== PRESS SECTION ========== */
.press {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

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

.press-track {
  display: flex;
  gap: var(--space-md);
  transition: transform var(--transition-slow);
}

.press-item {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.press-quote {
  max-width: 800px;
  padding: var(--space-lg);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow-outset);
  position: relative;
}

.press-quote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 20px;
  font-size: 8rem;
  font-family: var(--font-heading);
  color: var(--primary-light);
  opacity: 0.2;
  line-height: 1;
}

.press-quote p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.press-source {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.press-source img {
  width: 120px;
  height: 60px;
  object-fit: contain;
}

.press-source span {
  font-weight: 600;
  color: var(--medium);
}

/* ========== FAQ SECTION ========== */
.faq {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-md);
  background-color: var(--light);
  box-shadow: var(--nm-shadow-outset-sm);
  overflow: hidden;
}

.faq-question {
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  max-height: 1000px;
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

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

.contact-info {
  flex: 1;
}

.contact-item {
  margin-bottom: var(--space-md);
}

.contact-item h3 {
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-outset);
  margin-top: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-container {
  flex: 1;
  background-color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow-outset);
}

.contact-form-container h3 {
  margin-bottom: var(--space-md);
  color: var(--dark);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--medium);
  border-radius: var(--radius-md);
  background-color: var(--light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--light);
  border: 1px solid var(--medium);
  border-radius: var(--radius-sm);
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--light);
  border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: var(--space-lg) 0 var(--space-sm);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-info {
  flex: 2;
}

.footer-logo {
  margin-bottom: var(--space-md);
}

.footer-info p {
  opacity: 0.8;
}

.footer-links {
  flex: 1;
}

.footer-links h3,
.footer-social h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-links h3::after,
.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: var(--space-xs);
}

.footer-links ul li a {
  color: var(--light);
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--white);
  opacity: 1;
  padding-left: 5px;
}

.footer-social {
  flex: 1;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.social-links li a {
  color: var(--light);
  display: inline-block;
  padding: var(--space-xs) 0;
  opacity: 0.8;
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 30px;
}

.social-links li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.social-links li:nth-child(1) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f0f2f9'%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");
}

.social-links li:nth-child(2) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f0f2f9'%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");
}

.social-links li:nth-child(3) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f0f2f9'%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-12zm-2 16h-2v-6h2v6zm-1-6.891c-.607 0-1.1-.496-1.1-1.109 0-.612.492-1.109 1.1-1.109s1.1.497 1.1 1.109c0 .613-.493 1.109-1.1 1.109zm8 6.891h-1.998v-2.861c0-1.881-2.002-1.722-2.002 0v2.861h-2v-6h2v1.093c.872-1.616 4-1.736 4 1.548v3.359z'/%3E%3C/svg%3E");
}

.social-links li a:hover {
  color: var(--white);
  opacity: 1;
  transform: translateY(-3px);
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ========== SUCCESS PAGE ========== */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--light);
  text-align: center;
  padding: var(--space-md);
}

.success-icon {
  font-size: 5rem;
  color: var(--accent-color-2);
  margin-bottom: var(--space-md);
}

.success-title {
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.success-message {
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

/* ========== PRIVACY & TERMS PAGES ========== */
.content-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
  background-color: var(--light);
}

.content-container {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow-outset);
  padding: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.content-title {
  margin-bottom: var(--space-md);
  color: var(--dark);
  text-align: center;
}

.content-section {
  margin-bottom: var(--space-lg);
}

.content-section h3 {
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

/* ========== MEDIA QUERIES ========== */
@media screen and (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vision-content,
  .innovation-content,
  .community-links,
  .contact-content {
    flex-direction: column;
  }
  
  .vision-image,
  .vision-text,
  .innovation-image,
  .innovation-text,
  .link-card,
  .community-image,
  .contact-info,
  .contact-form-container {
    flex: auto;
    width: 100%;
  }
  
  .features-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
  }
  
  .feature-card {
    scroll-snap-align: start;
  }
  
  .slider-controls {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .nav-list {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .portfolio-grid,
  .awards-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer-info,
  .footer-links,
  .footer-social {
    flex: auto;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 13px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* ========== SPECIAL EFFECTS ========== */
.btn, .feature-card, .portfolio-item, .award-card, .news-card, .stat-card {
  position: relative;
  overflow: hidden;
}

.btn::after, 
.feature-card::after, 
.portfolio-item::after, 
.award-card::after, 
.news-card::after, 
.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

/* Particle animation effect */
@keyframes particle-animation {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--x), var(--y));
  }
}

.section-title, 
.hero-title, 
.hero-subtitle {
  animation: pulse 2s infinite;
}

/* Make images in cards centered properly */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image-container img {
  margin: 0 auto;
}

html,body{
  overflow-x: hidden;
}
.nav.active .nav-list{
  display: block;
}