﻿body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f6f9fc;
}

..header-container {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  background-color: white;
  border-radius: 20px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.top-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.logo-circle {
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 80%;
 
  margin: -50px auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

..logo-circle img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}


.company-info h1 {
  margin: 5px 0 5px;
  font-size: 34px;
  color: #1d3349;
  text-align: center;
}

.tagline {
  color: #d63384;
  font-size: 18px;
  margin-bottom: 5px;
  padding-bottom: -20px;
}

.nav-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.nav-tabs a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding-bottom: 5px;
}

.nav-tabs a.active {
  border-bottom: 2px solid #d63384;
  color: #d63384;
}

.content-container {
  max-width: 600px;
  margin: 10px auto;
  padding: 0 20px;
  background-color: #f6f9fc; /* or white if you prefer */
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.content-container {
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 16px;
}


/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0,0,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
}

<style>
  .scrolling-gallery {
    overflow: hidden;
    position: relative;
    max-width: 100%;
  }

  .gallery-track {
    display: flex;
    width: fit-content;
    animation: scrollGallery 30s linear infinite;
  }

  .gallery-track img {
    height: 150px;
    margin-right: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .gallery-track img:hover {
    transform: scale(1.05);
  }

  @keyframes scrollGallery {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
</style>

.vision-text {
  font-size: 2rem;
  font-weight: bold;
  color: #4169E1; /* Royal Blue */
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .vision-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .vision-text {
    font-size: 1.2rem;
  }
}


