/* Base Styles */
* {
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  scroll-behavior: smooth;
  color: var(--text-color);
  background-color: var(--bg-light);
}

/* Visiting Card (Hidden for Download) */
#visitingCard {
  display: none;
  width: 380px;
  padding: 24px;
  font-family: 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text-color);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  text-align: center;
}

#visitingCard .card-logo {
  width: 60px;
  height: auto;
  margin-bottom: 12px;
}

#visitingCard h2 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: var(--accent-color);
}

#visitingCard p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 6px 0;
}

#visitingCard a {
  color: var(--primary-color);
  text-decoration: none;
}

#visitingCard a:hover {
  text-decoration: underline;
}

/* Download Visiting Card Button */
.contact .download-card-btn {
  margin-top: 20px;
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact .download-card-btn:hover {
  background-color: var(--primary-color);
}


/* Floating Share Button */
.share-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  transition: background 0.3s;
}

.share-float:hover {
  background: #0056b3;
}

.share-options {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.share-options a {
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.3s;
}

.share-options a:hover {
  background: var(--bg-dark);
}

/* Image Gallery */
.image-gallery {
  padding: 60px;
  background: var(--white);
  text-align: center;
}

.image-gallery .gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.image-gallery img {
  width: 260px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

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

/* Lightbox Popup */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
}

.lightbox .close, .lightbox .prev, .lightbox .next {
  position: absolute;
  top: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.lightbox .close {
  right: 20px;
}

.lightbox .prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox .next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Top Bar */
.top-bar {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 60px;
  font-size: 0.9rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.top-contact{
    align-items: center;
    text-align: center;
}
.top-contact a {
  /*display: inline-flex;*/
  align-items: center;     /* vertically centers icon & text */
  margin-right: 10px;         /* spacing between links */
  text-decoration: none;      /* optional */
  white-space: nowrap;        /* prevents breaking into two lines */
  color: var(--white);
  /*margin-left: 20px;*/
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.top-contact a:hover {
  opacity: 0.8;
}

.top-contact i {
  margin-right: 6px;
}

/* Header */
header {
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: linear-gradient(to right, var(--white), var(--bg-dark));
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-img {
  height: 60px;
  width: 60px;
  object-fit: contain;
}
.company-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent-color);
}
.social a {
  margin-left: 12px;
  color: var(--text-color);
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social a:hover {
  color: var(--accent-color);
  transform: scale(1.2);
}

/* About Section */
.about {
  background: var(--bg-dark);
  padding: 60px;
  animation: fadeInUp 1s ease-in;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.about_image {
  flex: 1;
  min-width: 280px;
}
.about_image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.about_text {
  flex: 1.5;
  min-width: 280px;
}
.about_text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}
.about_text h2 .highlight {
  color: var(--accent-color);
}
.about_text .tagline {
  font-style: italic;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
}
.about_text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Services */
.services {
  padding: 60px;
  background: var(--white);
}
.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0;
}
.service-list li {
  background: var(--white);
  padding: 15px 20px;
  border-left: 5px solid var(--accent-color);
  font-size: 1.1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.service-list li:hover {
  transform: scale(1.05);
  background: #eef6ff;
}

/* Image Gallery */
.image-gallery {
  padding: 60px;
  background: var(--white);
  text-align: center;
}
.image-gallery .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}
.image-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}
.image-gallery img:hover {
  transform: scale(1.05);
}

/* Video Gallery */
.video-gallery {
  padding: 60px;
  background: var(--bg-light);
  text-align: center;
}
.video-gallery .videos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.video-gallery iframe {
  width: 300px;
  height: 180px;
  border-radius: 10px;
}

/* Contact */
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  background: var(--bg-dark);
  padding: 60px;
}
.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact .info {
  flex: 1;
  min-width: 280px;
  font-size: 1.1rem;
}
.contact .info a {
  color: var(--accent-color);
  text-decoration: none;
}
.contact .info a:hover {
  text-decoration: underline;
}
.contact .map {
  flex: 1;
  min-width: 280px;
}
.contact-social a {
  margin-right: 15px;
  font-size: 22px;
  color: #555;
  transition: transform 0.3s ease, color 0.3s ease;
}
.contact-social a:hover {
  color: var(--accent-color);
  transform: scale(1.2);
}
.contact .contact-intro {
  font-size: 1rem;
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}
.contact .info p i {
  color: var(--accent-color);
  margin-right: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #f0f0f0;
  font-size: 0.9rem;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


  /* 🌐 Base (Mobile-first) */
header {
  background-color: #fff;
  padding: 20px 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/*.logo-img {*/
/*  max-width: 90%;*/
/*  height: auto;*/
/*}*/

.company-name {
  font-size: 1.2rem;
  font-weight: 700;
  /*color: #8e44ec;*/
  text-align: center;
}

/* Social icons */
.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social a {
  color: #000;
  font-size: 22px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social a:hover {
  color: #8e44ec;
  transform: scale(1.15);
}

/* 🖥 Desktop view */
@media (min-width: 768px) {
  .header-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
  }

  .header-left {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .company-name {
    font-size: 1.4rem;
    text-align: left;
  }

  .social {
    justify-content: flex-end;
    
  }
}
