/* style.css - Complete Redesigned Stylesheet */

/* ===== Base Styles ===== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.vigilant-highlight {
  display: block;
  margin-top: 10px;
  color: #FFD700; /* Gold accent */
  font-weight: 700;
}

.vigilant-subhighlight {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 0.95em;
  opacity: 0.9;
}

/* Add to Navbar section */
.nav-link.active {
    color: #ADD8E6 !important;
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ADD8E6;
    border-radius: 3px 3px 0 0;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

a {
  color: #0000CD;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #00008B;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

h5, h6 {
  font-weight: 600;
}

.white {
  color: #ffffff !important;
}

.black {
  color: #000000;
}

.text-center {
  text-align: center;
}

.bg-dark {
  background-color: #121212 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

/* ===== Layout Components ===== */
.container {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*="col-"] {
  padding: 0 15px;
}

.section-padding {
  padding: 100px 0;
}

.sectioner-header {
  width: 70%;
  margin: 0 auto 50px;
}

.sectioner-header h3 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

.line {
  height: 2px;
  width: 50px;
  background: #0000CD;
  display: block;
  margin: 20px auto 30px;
  position: relative;
}

.line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 150px;
  height: 2px;
  border-bottom: 2px dashed #0000CD;
  margin-left: -75px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #0000CD;
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background-color: #00008B;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  width: 100%;
  padding: 15px 0;
  background: transparent;
  z-index: 1030;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 40px;
  transition: all 0.3s ease;
}

.navbar-nav {
  margin-left: auto;
}

.nav-item {
  margin: 0 10px;
}

.nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 0;
  position: relative;
}

.nav-link:hover {
  color: #ADD8E6;
}

.nav-scroll {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-scroll .nav-link {
  color: #fff;
}

/* ===== Banner Section ===== */
.banner {
  background: linear-gradient(135deg, #000000 0%, #0000CD 100%);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/pattern.png);
  opacity: 0.1;
}

.banner-overlay {
  position: relative;
  z-index: 1;
}

.banner-text {
  padding-right: 60px;
}

.banner-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-text h6 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.9;
}

.banner-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.phoneplay-container {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.play-button {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 123, 255, 0.9);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.play-button:hover {
  background-color: #0056b3;
  box-shadow: 0 8px 25px rgba(0,123,255,0.4);
}

/* ===== Solutions Section ===== */
.solutions {
  background-color: #fff;
}

.solution-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-color: #0000CD;
}

.solution-card h4 {
  color: #0000CD;
  margin: 25px 0 15px;
  font-size: 22px;
}

.solution-card p {
  color: #666;
  margin-bottom: 20px;
}

.solution-features {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  text-align: left;
}

.solution-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #555;
}

.solution-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #0000CD;
}

.icon-box {
  margin-bottom: 20px;
}

.icon-box i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0000CD 0%, #000000 100%);
  color: #fff;
  font-size: 30px;
  transition: all 0.3s ease;
}

.solution-card:hover .icon-box i {
  transform: rotateY(180deg);
}

/* ===== Technology Section ===== */
.technology {
  background-color: #121212;
  position: relative;
  overflow: hidden;
}

.technology::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/tech-pattern.png);
  opacity: 0.03;
}

.tech-features {
  margin-top: 50px;
}

.tech-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.tech-icon {
  background: #0000CD;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 24px;
  transition: all 0.3s ease;
}

.tech-feature:hover .tech-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.tech-content h4 {
  color: #007bff;
  margin-bottom: 10px;
  font-size: 22px;
}

.tech-content p {
  color: #ddd;
  margin-bottom: 0;
}

/* ===== Manufacturing Use Cases ===== */
.industry-use-cases {
  background-color: #fff;
}

.use-case-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: #0000CD;
}

.use-case-card h4 {
  color: #0000CD;
  margin-bottom: 15px;
  font-size: 20px;
}

.use-case-card p {
  color: #666;
  margin-bottom: 15px;
}

.use-case-card .impact {
  font-weight: 600;
  color: #000;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
}

.benefit-item {
  text-align: center;
  padding: 20px 10px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #0000CD;
  color: #fff;
  transform: translateY(-5px);
}

.benefit-item i {
  color: #0000CD;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover i {
  color: #fff;
}

/* ===== Partners Section ===== */
.partners {
  background-color: #f8f9fa;
}

.partner-logos {
  padding: 40px 0;
}

.partner-logos img {
  max-height: 80px;
  width: auto;
  margin: 20px auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-cta {
  margin-top: 50px;
}

.partner-cta h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.partner-cta p {
  color: #666;
  margin-bottom: 30px;
  font-size: 18px;
}

/* ===== Team Section ===== */
.team {
  background-color: #f8f9fa;
}

.team-detail {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.team-detail:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-detail img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 5px solid #0000CD;
}

.team-detail h4 {
  color: #000;
  margin-top: 20px;
  font-size: 20px;
  margin-bottom: 5px;
}

.position {
  color: #0000CD;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}

.team-detail p {
  color: #666;
  font-size: 14px;
}

/* ===== Contact Section ===== */
.contact {
  background: linear-gradient(135deg, #000000 0%, #0000CD 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/pattern.png);
  opacity: 0.1;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 30px !important;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-item {
  margin: 25px 0px;
  display: flex;
  align-items: flex-start;
}

.contact-item i {
  font-size: 24px;
  color: #fff;
  margin-right: 15px;
  margin-top: 5px;
}

.contact-item p {
  line-height: 24px;
  margin: 0;
  color: #fff;
}

.contact-item a.text-white:hover {
  color: #ADD8E6 !important;
}

.form-control {
  height: 50px;
  padding: 0 20px;
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
  margin-bottom: 20px;
  border: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

textarea.form-control {
  height: 150px;
  padding: 15px 20px;
}

/* ===== Footer ===== */
.footer-copy {
  background: #000;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-copy p {
  margin-bottom: 0;
  font-size: 14px;
}

.footer-copy a {
  color: #ADD8E6;
}

.footer-copy a:hover {
  color: #fff;
}

/* ===== Animation Classes ===== */
.wow {
  visibility: hidden;
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 1199px) {
  .sectioner-header {
    width: 80%;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    margin-top: 15px;
    border-radius: 5px;
  }
  
  .banner-text {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }
  
  .sectioner-header {
    width: 90%;
  }
  
  .solution-card {
    padding: 30px 20px;
  }
  
  .use-case-card {
    padding: 20px 15px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .banner {
    padding: 150px 0 80px;
  }
  
  .banner-text h2 {
    font-size: 36px;
  }
  
  .banner-text h6 {
    font-size: 18px;
  }
  
  .sectioner-header h3 {
    font-size: 30px;
  }
  
  .line::after {
    width: 100px;
    margin-left: -50px;
  }
  
  .tech-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .tech-icon {
    margin: 0 auto 15px;
  }
  
  .benefit-item {
    padding: 15px 5px;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .banner {
    padding: 130px 0 60px;
  }
  
  .banner-text h2 {
    font-size: 28px;
  }
  
  .sectioner-header h3 {
    font-size: 26px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .play-button {
    padding: 8px 15px;
    font-size: 12px;
  }
  
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}