/* Color Variables - Logo Blue Theme */
:root {
  --primary-blue: #2E86AB;
  --secondary-blue: #A23B72;
  --accent-blue: #F18F01;
  --dark-blue: #1B4965;
  --light-blue: #BEE9E8;
  --text-dark: #212529;
  --text-light: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.navbar-custom {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  padding: 1rem 0;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  transition: all 0.3s ease-in-out;
}
.navbar-custom .navbar-brand {
  font-size: 1.75rem;
  font-weight: bold;
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}
.navbar-custom .navbar-brand:hover {
  transform: scale(1.05);
}
.navbar-custom .navbar-brand .logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.navbar-custom .navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.navbar-custom .navbar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.navbar-custom .navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.3);
}
.navbar-custom .navbar-toggler {
  border: none;
  color: white;
}
.navbar-custom .navbar-toggler:focus {
  box-shadow: none;
}

.hero-section {
  background: url("../images/inkovate_printing_background.png") center/cover no-repeat, linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 25%, var(--secondary-blue) 50%, var(--accent-blue) 75%, var(--primary-blue) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section .hero-content {
  color: white;
  text-align: center;
}
.hero-section .hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out;
}
.hero-section .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero-section .hero-content .btn-hero {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  transition: all 0.3s ease-in-out;
  animation: fadeInUp 1s ease-out 0.6s both;
}
.hero-section .hero-content .btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
}

.contact-hero-section {
  background: url("../images/contact_us_background.jpg") center/cover no-repeat, linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.contact-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.contact-hero-section .container {
  position: relative;
  z-index: 2;
}
.contact-hero-section .hero-content {
  color: white;
  text-align: center;
}
.contact-hero-section .hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}
.contact-hero-section .hero-content p {
  font-size: 1.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.section {
  padding: 5rem 0;
}
.section.bg-light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.section.bg-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: white;
}
.section .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  color: var(--primary-blue);
}
.section .section-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 0.25rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border-radius: 0.5rem;
}

.card-custom {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.card-custom .card-header {
  background: linear-gradient(135deg, #ff6b35 0%, #1a759f 100%);
  color: white;
  border: none;
  padding: 1.5rem;
}
.card-custom .card-header h5 {
  margin: 0;
  font-weight: 600;
}
.card-custom .card-body {
  padding: 2rem;
}

.about-content h3 {
  color: var(--primary-blue);
  font-weight: 600;
}

.text-primary-custom {
  color: var(--primary-blue) !important;
}

/* Custom accordion styling */
.accordion-button:not(.collapsed) {
  background-color: var(--primary-blue) !important;
  color: white !important;
  border-color: var(--primary-blue) !important;
}

.accordion-button:focus {
  border-color: var(--primary-blue) !important;
  box-shadow: 0 0 0 0.25rem rgba(46, 134, 171, 0.25) !important;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.about-image img {
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
  transform: scale(1.02);
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border: none;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  color: white;
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
}

.btn-custom {
  border-radius: 1rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: none;
}
.btn-custom.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: white;
}
.btn-custom.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
}
.btn-custom.btn-secondary-custom {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
  color: white;
}
.btn-custom.btn-secondary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-section .hero-content p {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content h1 {
    font-size: 2rem;
  }
  .hero-section .hero-content p {
    font-size: 1rem;
  }
  .section {
    padding: 3rem 0;
  }
}
