
@font-face {
  font-family: 'Mkhedruli_bold';
  src: url('mtavruli_bold.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: Mkhedruli_bold;
  color: #1f2937;
  background-color: #ffffff;
  line-height: 1.6;
}

section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #1976D2;
}

/* 1. The QR Code Animation (Vertical Floating) */
.qr-image {
  width: 280px;
  height: 280px;
  object-fit: contain;
  /* Make sure this name matches the keyframes below */
  animation: floatQR 3s ease-in-out infinite; 
}

@keyframes floatQR {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

#hero {
  background: linear-gradient(135deg, #1976D2 0%, #263238 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  animation: initialPeek 4s ease-in-out infinite;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@keyframes initialPeek {
  0% { transform: translateY(0); }
  40% { transform: translateY(-100px); }
  70% { transform: translateY(0); }
  100% { transform: translateY(0); }
}
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none; /* Allows clicks to pass through if necessary */
}

.arrow {
  width: 15px;
  height: 15px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin-top: 10px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

.company-name {
  font-size: 5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#about {
  background-color: #ffffff;
}

.mission-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#capabilities {
  background-color: #f9fafb;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.capability-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(20, 184, 166, 0.15);
}

.capability-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.capability-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1976D2;
  margin-bottom: 0.75rem;
}

.capability-card p {
  color: #6b7280;
  line-height: 1.6;
}

#links {
  background-color: #ffffff;
}

.partner-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-link {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 2px solid 1976D2;
  border-radius: 12px;
  width: 120px;
  text-decoration: none;
  color: #1976D2;
  transition: all 0.3s ease;
}

.partner-link:hover {
  background: #1976D2;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(20, 184, 166, 0.3);
}

.partner-link i {
  font-size: 2.5rem;
}

.partner-link span {
  font-weight: 600;
  font-size: 0.875rem;
}
.partner-link img {
  width: 100px;
  height: 70px;
  object-fit: contain;
}

#gallery {
  background-color: #f9fafb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 200px;
  height: 400px;
  object-fit: contain;
  display: block;
}

#contact {
  background-color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column; /* Stacks the two groups vertically */
  align-items: center;
  gap: 3rem; /* Space between the info row and the social row */
  max-width: 1100px;
  margin: 0 auto;
}

.contact-group {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping on mobile */
  justify-content: center;
  gap: 4rem; /* Space between Email and Phone */
  width: 100%;
}

.contact-group.socials {
  display: flex;
  justify-content: center;
  gap: 100px; /* Space between the two icons */

}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  text-align: left;
}

.social-only a i {
  font-size: 60px !important; /* Force the size change */
  width: auto !important;     /* Remove any fixed width constraints */
  height: auto !important;    /* Remove any fixed height constraints */
  line-height: 1;             /* Prevents extra vertical spacing */
  display: inline-block;
  color: #1976D2;
  transition: transform 0.3s ease;
}

.social-only i:hover {
  transform: scale(1.05);
  color: #1565C0; 
}

/* Text Styling */
.contact-item i {
  font-size: 2.5rem;
  color: #1976D2;
}

.contact-item h3 {
  font-size: 1.25rem;
  color: #1976D2;
  margin: 0;
}

.contact-item p {
  margin: 0;
  color: #6b7280;
}

.contact-item a {
  color: #1976D2;
  text-decoration: none;
}

footer {
  background: linear-gradient(135deg, #1976D2 0%, #263238 100%);
  color: #ffffff;
  text-align: center;
  padding: 2rem;
  font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-group {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .contact-item {
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-group.socials {
    flex-direction: row; /* Keeps icons side-by-side even on mobile */
    gap: 2.5rem;
  }
}
