body {
  margin: 0;
  padding: 0;
  background-color: #f4f4f4; /* clean light grey */
  color: #333;
}

.navbar {
  background: #003DA5; /* deep professional blue */
}

.navbar-brand,
.nav-link {
  color: #fff !important;
}

.nav-link:hover {
  color: #FFD100 !important; /* bright yellow hover for visibility */
}

.social-icons a {
  color: #fff !important;
}

.social-icons a:hover {
  color: #FFD100 !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #003DA5, #0056b3); /* blue gradient hero */
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.cta-button {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #FFD100; /* yellow CTA button for energy and focus */
  color: #003366;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #FF8C42; /* warm orange hover for creativity */
  transform: scale(1.05);
}

/* Feature Cards */
.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  font-size: 3rem;
  color: #003DA5; /* deep blue icons for consistency */
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #003DA5; /* brand blue title */
}

.feature-desc {
  font-size: 1.1rem;
  color: #555;
}



/* Gallery */
.gallery img {
  border-radius: 10px;
  width: 100%;
  max-width: 100%; /* ensures no overflow */
  height: 200px; /* increased from 150px for better visual balance */
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Medium devices (tablets) */
@media (min-width: 768px) {
  .gallery img {
    height: 250px; /* increased from 200px */
  }
}

/* Large devices (desktops) */
@media (min-width: 992px) {
  .gallery img {
    height: 300px; /* increased from 250px */
  }
}






/* Footer */
footer {
  background: #003DA5; /* footer in brand blue for consistency */
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer a {
  color: #FFD100; /* yellow links for visibility */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}





/* Swiper Styles */


/* Swiper Gallery Styles */
.myGallery {
  width: 100%;
  padding: 20px 0;
}

.myGallery .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.myGallery img {
  border-radius: 10px;
  width: 100%;
  height: 200px; /* base height */
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.myGallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .myGallery img {
    height: 250px;
  }
}

@media (min-width: 992px) {
  .myGallery img {
    height: 300px;
  }
}


/* Swiper Navigation Styles */
.moving-banner {
  overflow: hidden;
  position: relative;
}
.banner-text {
  display: inline-block;
  white-space: nowrap;
  animation: moveBanner 15s linear infinite;
}
@keyframes moveBanner {
  0% { transform: translateX(100%);}
  100% { transform: translateX(-100%);}
}

.company-footer {
  background: linear-gradient(90deg, #232526 0%, #414345 100%);
  font-size: 1rem;
}
.company-footer h5 {
  color: #ffc107;
  letter-spacing: 1px;
}
.company-footer a.text-white:hover,
.company-footer a.text-white:focus {
  color: #ffc107 !important;
  text-decoration: underline;
}
.company-footer .footer-links li {
  margin-bottom: 0.5rem;
}
.company-footer .bi {
  font-size: 1.2rem;
  vertical-align: middle;
}
.company-footer .mt-3 a {
  transition: color 0.2s;
}
.company-footer .mt-3 a:hover {
  color: #ffc107 !important;
}
.company-footer hr {
  border-top: 1px solid #ffc107;
  opacity: 0.5;
}