
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {

  --bg-primary: #F3F4F6;
  --bg-secondary: #EDE9FE;
  --bg-footer: #1E1B2E;
  --text-primary: #111111;
  --text-secondary: #4B5563;
  --text-heading: #1E293B;
  --accent-primary: #7C3AED;
  --accent-hover: #6D28D9;
  --accent-dark: #4C1D95;
  --neutral-dark: #374151;
  --white: #FFFFFF;
  --card-bg: #F9FAFB;
  

  --font-family: 'Inter', 'Helvetica', 'Arial', sans-serif;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 48px;
  

  --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 4px 20px rgba(124, 58, 237, 0.15);
  --shadow-button: 0 2px 8px rgba(124, 58, 237, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}


.glass-effect {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}


html {
  scroll-behavior: smooth;
}


h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.text-secondary {
  color: var(--text-secondary);
}


.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
  border: none;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-button);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent-dark));
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
  color: var(--white);
  text-decoration: none;
}

.btn-secondary {
  background: var(--neutral-dark);
  border: none;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--text-secondary);
  transform: translateY(-1px);
  color: var(--white);
  text-decoration: none;
}


.card-custom {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  border: 1px solid rgba(124, 58, 237, 0.1);
  position: relative;
  overflow: hidden;
}

.card-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-hover), var(--accent-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card-custom:hover::before {
  transform: scaleX(1);
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}


.section-padding {
  padding: 80px 0;
}

.section-bg-primary {
  background-color: var(--bg-primary);
}

.section-bg-secondary {
  background-color: var(--bg-secondary);
}


.navbar-custom {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-custom.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}


.navbar-nav .nav-link {
  color: var(--text-heading) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--accent-primary);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
  left: 10%;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-primary) !important;
  background: rgba(124, 58, 237, 0.05);
}


footer {
  background: var(--bg-footer);
  color: var(--white);
  padding: 60px 0 30px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}


footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--white);
  text-decoration: none;
  transform: translateX(5px);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}


.hero-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}



.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section-home {
  background: url('images/hero.jpg') no-repeat center center/cover;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.55); 
  z-index: 1;
}

.hero-content-home {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  width: 600px;
  height: auto;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 20px;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.hero-about-image{
  width: 460px;
  border-radius: 20px;
}


.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--accent-primary);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-toggle {
  width: 50px;
  height: 24px;
  background: #ccc;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--accent-primary);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(26px);
}


.form-control {
  border: 2px solid rgba(124, 58, 237, 0.1);
  border-radius: 6px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}


.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}
#logo-header{
  width: 150px;
}

#logo-footer{
  width: 150px;
  padding-bottom: 10px;
}

.about-us-image{
  width: 450px;
  border-radius: 20px;
}
.about-us-ofice-image{
width: 500px;
border-radius: 20px;
}
.services-images{
  width: 500px;
  border-radius: 20px
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


@media (max-width: 768px) {
  .hero-section {
    padding: 120px 0 60px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }
  .hero-image-wrapper {
  width: 450px;
}
.services-images{
  
  margin-top: 20px;
}

}

@media (max-width: 576px) {
  .hero-section {
    padding: 160px 0 40px;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  .card-custom {
    padding: 20px;
  }
  
  .section-padding {
    padding: 40px 0;
  }
    .hero-image-wrapper {
  width: 350px;
}
.hero-about-image{
  width: 350px;
}
.about-us-ofice-image{
width: 350px;
}

.about-us-image{
  width: 350px;
  margin-top: 20px;
}

.services-images{
  width: 350px;
  margin-top: 20px;
}
.long-word{
  font-size: 1.5rem;
}
}