
:root {
  --primary-bg: #121212;
  --secondary-bg: #1E1E1E;
  --card-bg: #242424;
  --primary-text: #FFFFFF;
  --secondary-text: #CCCCCC;
  --muted-text: #999999;
  --primary-accent: #7E57C2;
  --secondary-accent: #4FC3F7;
  --tertiary-accent: #2E7D32;
  --button-gradient: linear-gradient(135deg, #7E57C2 0%, #4FC3F7 100%);
  --hover-bg: rgba(126, 87, 194, 0.2);
  --error: #CF6679;
  --success: #4CAF50;
  --border-color: #333333;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary-bg);
  color: var(--primary-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--primary-text);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--secondary-accent);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--secondary-text);
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

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

.text-gradient {
  background: var(--button-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


button {
  background: var(--button-gradient);
  color: var(--primary-text);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
}


.btn {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--primary-text);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: var(--primary-text);
}

.btn:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--secondary-accent);
  color: var(--secondary-accent);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
}

.btn-secondary:hover {
  background: rgba(79, 195, 247, 0.1);
  color: var(--secondary-accent);
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.8rem 0;
  background-color: rgba(18, 18, 18, 0.98);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--primary-text);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--button-gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--primary-text);
  transition: all 0.3s ease;
}


.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--secondary-text);
}


.features {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--button-gradient);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-accent);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.services {
  padding: 6rem 0;
  background-color: var(--secondary-bg);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}


.stats {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(18, 18, 18, 0.9)), url('../images/analytics-dashboard.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 1.2rem;
  color: var(--secondary-text);
}


.news {
  padding: 6rem 0;
}

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

.news-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}


.contact {
  padding: 6rem 0;
  background-color: var(--secondary-bg);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--secondary-accent);
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
}

.contact-form {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--secondary-text);
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--primary-text);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-accent);
  background-color: rgba(255, 255, 255, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

.form-submit {
  width: 100%;
}


.map-container {
  height: 400px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
}


.footer {
  background-color: var(--secondary-bg);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--secondary-accent);
  transform: translateY(-3px);
}

.social-icon i {
  color: var(--primary-text);
  font-size: 1.2rem;
}

.footer-links h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--secondary-text);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-accent);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--muted-text);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--card-bg);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-settings {
  cursor: pointer;
  color: var(--secondary-accent);
  text-decoration: underline;
}


.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.cookie-modal-content {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-modal-header h3 {
  margin-bottom: 0;
}

.cookie-close {
  background: none;
  border: none;
  color: var(--primary-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
  border-bottom: none;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.category-header h4 {
  margin-bottom: 0;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: .4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--secondary-accent);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}


.team {
  padding: 6rem 0;
  background-color: var(--secondary-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-content {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--secondary-accent);
  font-size: 1rem;
  margin-bottom: 1rem;
}


.case-studies {
  padding: 6rem 0;
}

.case-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.case-header {
  background: var(--secondary-bg);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.case-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.case-category {
  color: var(--secondary-accent);
  font-size: 1rem;
}

.case-content {
  padding: 1.5rem;
  flex: 1;
}

.case-details {
  margin-top: 1.5rem;
}

.case-item {
  display: flex;
  margin-bottom: 1rem;
}

.case-label {
  font-weight: 500;
  min-width: 150px;
  color: var(--secondary-text);
}

.case-value {
  color: var(--primary-text);
}


.results {
  padding: 6rem 0;
  background-color: var(--secondary-bg);
}

.results-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.result-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.result-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--secondary-accent);
}

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


.policy-content {
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--secondary-text);
}

.policy-date {
  text-align: right;
  margin-top: 3rem;
  color: var(--muted-text);
  font-style: italic;
}


.thank-you {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


@media (max-width: 991px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--primary-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: all 0.5s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .stats-container {
    flex-direction: column;
  }

  .stat-item {
    margin-bottom: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .cookie-modal-content {
    padding: 1.5rem;
  }
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-in-up {
  animation: slideInUp 1s ease forwards;
}

.pulse {
  animation: pulse 2s infinite;
}


.sticky-block {
  position: sticky;
  top: 100px;
  z-index: 10;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.sticky-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--button-gradient);
  border-radius: 10px 0 0 10px;
}


[data-aos="custom-fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition-property: transform, opacity;
}

[data-aos="custom-fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="custom-fade-in"] {
  opacity: 0;
  transition-property: opacity;
}

[data-aos="custom-fade-in"].aos-animate {
  opacity: 1;
}


.owl-carousel .owl-stage-outer {
  padding: 20px 0;
}

.owl-nav {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.owl-prev, .owl-next {
  width: 50px;
  height: 50px;
  background-color: var(--card-bg) !important;
  color: var(--primary-text) !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
  background-color: var(--secondary-accent) !important;
}

.owl-dots {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.owl-dot {
  width: 12px;
  height: 12px;
  background-color: var(--border-color) !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dot.active {
  background-color: var(--secondary-accent) !important;
}


:focus {
  outline: 2px solid var(--secondary-accent);
  outline-offset: 2px;
}

.screen-reader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}