/* ISeeVN Theme Custom Styles */

.collapse-style {
  z-index: 100;
  position: fixed;
  top: 145px;
  right: 10px;
  background-color: white;
  border: #ccc 2px solid;
}

.navbar-brand img {
  height: 44px;
  width: auto;
}

.navbar {
  background-color: #fff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding-top: 36px;
  padding-bottom: 10px;
}

.navbar-nav .nav-link {
  color: #003eab !important;
  font-weight: 700;
  font-size: 14px;
  margin: 0 10px;
  text-transform: uppercase;
  font-family: 'Barlow', sans-serif;
}

.navbar-nav .nav-link:hover {
  color: #0d47a1 !important;
}

.btn-logout,
.btn-login {
  background-color: #003eab;
  color: white;
  padding: 8px 20px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  display: block;
  font-family: 'Barlow', sans-serif;
}

.btn-logout:hover,
.btn-login:hover {
  background-color: #69a1f5;
}

.btn-register {
  background-color: rgb(255, 131, 0);
  color: white;
  padding: 8px 20px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  display: block;
  font-family: 'Barlow', sans-serif;
  text-align: center;
}

.btn-register:hover {
  background-color: #e6a35b;
}

.navbar-toggler {
  outline: none;
  margin-left: 16px;
  padding: 6px 3px;
  border: none;
}

.navbar-toggler-icon {
  outline: none;
  height: 12px;
  width: 18px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23003EAB' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 992px) {
  .navbar-toggler {
    margin-left: 0;
  }

  .navbar-nav {
    text-align: center;
  }

  .btn-login {
    display: inline-block;
  }
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: #ff8300;
  padding: 5px 0;
}

.marquee-track {
  animation: scroll-left 30s linear infinite;
  display: inline-block;
  white-space: nowrap;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-20%);
  }
}

.marquee-text {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
}

/* Utilities */
.min-vh-75 {
  min-height: 75vh;
}

/* Hero Banner with Image */
.hero-banner {
  height: auto;
  justify-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
}

.hero-banner p {
  position: absolute;
  bottom: -5%;
  left: 22%;
  font-size: 3px;
  color: white;
  display: none;
}

.hero-image {
  height: auto;
  display: block;
}

/* Hero Section Enhancements */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      var(--wp--preset--color--accent-3) 0%,
      var(--wp--preset--color--accent-1) 100%);
  opacity: 0.9;
  z-index: -1;
}

.content-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Service Items Enhancement */
.service-item {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Statistics Section */
.text-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Testimonials Cards */
.testimonial-card {
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

/* Card Hover Effects */
.card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Button Enhancements */
.header-btn {
  border-radius: 2px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.header-btn:hover {
  transform: translateY(-1px);
}

/* Icon Styling */
.fas,
.fab {
  line-height: 1;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Spacing */
.gap-3 {
  gap: 1rem !important;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }

  .display-5 {
    font-size: 2rem;
  }

  .display-6 {
    font-size: 1.75rem;
  }
}

/* WordPress Block Enhancements */
.wp-block-template-part {
  margin: 0;
}

/* Navigation Styling */
.navbar-brand {
  padding: 0;
  margin: 0;
  font-weight: 700 !important;
  font-size: 1.5rem;
  font-family: 'Barlow', sans-serif;
}

.navbar-nav .nav-link {
  font-weight: 700;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
  font-family: 'Barlow', sans-serif;
}

.navbar-nav .nav-link:hover {
  color: var(--wp--preset--color--accent-3) !important;
}

/* Footer Styling */
.site-footer {
  background: url('/wp-content/themes/ISeeVN/assets/images/background-footer.png');
  background-size: cover;
}

.orange-stripe {
  height: 21px;
}

.footer-info {
  margin: auto;
}

.orange-stripe {
  height: 21px;
}

.font-contact-mobile-details {
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  display: block;
  color: white;
  text-decoration: none;
}

/* Hero Banner Text Overlay */
.hero-text-overlay {
  position: absolute;
  bottom: 42px;
  left: 18px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.hero-abv-item {
  text-align: center;
  min-width: 120px;
}

.abv-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: white;
  text-shadow: 0px 1px 8px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.abv-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;

}

.abv-content .abv-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: white;
  text-shadow: 0px 1px 8px rgba(0, 0, 0, 0.5);
  line-height: 51px;
}

.abv-content .percent {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: white;
  margin-left: 2px;
  text-shadow: 0px 1px 8px rgba(0, 0, 0, 0.5);
  line-height: 34px;
}

/* Mobile UI */
@media (max-width: 768px) {
  .header-btn {
    height: 100%;
    min-width: 90px;
    font-size: 12px;
    padding: 5px;
    text-align: center;
  }

  .font-contact-mobile-details {
    font-size: 12px;
    letter-spacing: -0.02em;
  }

  .marquee-text {
    font-size: 14px;
  }

  .hero-text-overlay {
    bottom: 11px;
    left: 5px;
    row-gap: 8px;
  }

  .hero-abv-item {
    min-width: 33px;
  }

  .abv-title {
    font-size: 3px;
  }

  .abv-content .abv-number {
    font-size: 17px;
    line-height: 14px;
  }

  .abv-content .percent {
    font-size: 10px;
    line-height: 9px;
    margin-left: 1px;
  }
}

/* Tablet UI */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-text-overlay {
    bottom: 32px;
    left: 14px;
    row-gap: 23px;
  }

  .hero-abv-item {
    min-width: 90px;
  }

  .abv-title {
    font-size: 8px;
  }

  .abv-content .abv-number {
    font-size: 48px;
    line-height: 38px;
  }

  .abv-content .percent {
    font-size: 29px;
    line-height: 26px;
    margin-left: 1px;
  }
}

/* Tablet UI */
@media (min-width: 768px) {
  .hero-banner p {
    bottom: -1.5%;
    font-size: 6px;
  }

  .marquee-container {
    height: 44px;
    padding-top: 8px;
  }

  .font-contact-mobile-details {
    font-size: 18px;
  }

  .collapse-style {
    z-index: 100;
    position: fixed;
    right: 50px;
    top: 140px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
  }

  .contact-info {
    margin-top: 50px;
  }

  .orange-stripe {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 20px;
    margin-top: 20px;
    height: 20px;
  }

  .navbar-toggler {
    padding: 7px 3.5px;
  }

  .navbar-toggler-icon {
    height: 21px;
    width: 24px;
  }

  .navbar {
    padding-bottom: 12px;
  }
}

/* Desktop UI */
@media (min-width: 992px) {
  .hero-banner p {
    bottom: 0.4%;
    font-size: 10px;
  }

  .marquee-container {
    height: 48px;
    padding-top: 10px;
  }

  .header-btn {
    font-size: 18px;
  }

  .btn-login {
    padding: 10px 21px;
  }

  .navbar {
    padding: 12px 80px;
  }

  .collapse-style {
    z-index: none;
    position: relative;
    right: 0;
    top: 0;
    background-color: none;
    border: none;
  }

  .navbar-brand img {
    height: 68px;
    width: auto;
  }

  .font-contact-mobile-details {
    font-size: 18px;
  }

  .icon-social-network {
    height: 24px;
    width: 24px;
  }

  .orange-line {
    width: 44px;
  }

  .padding {
    padding-left: 127.5px;
    padding-right: 127.5px;
  }

  .orange-stripe {
    height: 25px;
    margin-top: 30px;
  }
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Accessibility Improvements */
.header-btn:focus,
.nav-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--wp--preset--color--accent-3), 0.25);
  outline: none;
}

/* Print Styles */
@media print {

  .navbar,
  .header-btn,
  .social-links {
    display: none !important;
  }
}