:root {
  --orange: #F36F21;
  --dark-orange: #D95E18;
  --navy: #3C3E4A;
  --light-grey: #F3F2EF;
  --dark-text: #2B2B2B;
  --blue: #1E90FF;
}

/* General */
body {
  font-family: 'Segoe UI', Calibri, sans-serif;
  background-color: #fff;
  color: var(--dark-text);
}

h1, h2, h5 {
  font-weight: 700;
}
.text-orange { color: var(--orange); }

/* Navbar */
/* Navbar Styling */
.navbar {
  position: relative;
    z-index: 9999 !important;
      color: #000 !important;
}
.navbar .dropdown-menu {
    position: absolute;
    z-index: 9999 !important;
  color: #000 !important;   /* black menu text */
}


.navbar-brand img {
  height: 48px;
   
  transition: transform 0.3s ease;
}
.navbar-brand img:hover {
  transform: scale(1.08);
}


  
 .navbar-nav .nav-link {
  color: #000 !important;   /* black menu text */
 margin-left: 12px;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-item {
  color: black;   /* black menu text */
 
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--orange) !important;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
 /* background-color: var(--orange);*/
  transition: width 0.3s ease;
  
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/*.navbar-nav .nav-link:hover {
  color: var(--orange) !important;
}*/

/* Dropdowns */
.dropdown-menu {
  background-color: #1E1F23;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0;
  animation: fadeIn 0.3s ease-in-out;
}
.dropdown-item {
  color: #ffffff;
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.dropdown-item:hover {
  background-color: var(--orange);
  color: #fff;
  padding-left: 1.2rem;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive navbar icon */
.navbar-toggler {
  border-color: var(--orange);
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar .dropdown-menu {
    position: absolute;
    z-index: 9999 !important;
}
main, section, img, .banner, .hero-section {
    position: relative;
    z-index: 1;
}


/* Hero Section */
.hero-section {
  background-color: var(--light-grey);
  padding: 80px 0;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: var(--dark-text);
}
.hero-section p {
  color: #555;
  margin: 15px 0 25px;
  max-width: 400px;
}
.hero-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  max-width: 420px;
  margin: 0 auto;
}
.hero-card h2 {
  color: var(--dark-text);
  font-weight: 700;
  font-size: 1.8rem;
}
.hero-card p {
  color: #555;
  font-size: 0.95rem;
}
.btn-orange {
  background-color: var(--orange);
  color: #fff;
  border: none;
}
.btn-orange:hover {
  background-color: var(--dark-orange);
}
.btn-blue {
  background-color: var(--blue);
  color: #fff;
  border: none;
}
.btn-blue:hover {
  background-color: #0d6efd;
}

/* Products */
.products {
  background-color: #fff;
}
.product-card {
  border-radius: 10px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  background-color: var(--navy);
  color: #fff;
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}
html {
  scroll-behavior: smooth;
}
/* 🔹 Solutions Grid */
.solution-card {
  height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Ensure all images are uniform */
.solution-image {
  height: 260px;
  width: 100%;
  object-fit: cover; /* keeps all images same size */
  transition: transform 0.5s ease, filter 0.5s ease;
}

.solution-card:hover .solution-image {
  transform: scale(1.08);
  filter: brightness(0.75);
}

/* Overlay Styling */
.solution-overlay {
  position: absolute;
  inset: 0;
  background: rgba(70, 130, 180, 0.7); /* steel blue overlay */
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.solution-card:hover .solution-overlay {
  opacity: 1;
}

.solution-overlay h5 {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.solution-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Section Title */
.section-title {
  color: #4A4E69;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
/* 🔹 Team Card */
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  border-radius: 14px;
  overflow: visible;
  position: relative;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* 🔹 Image & Overlay */
.team-img {
  position: relative;
  overflow: hidden;
 }

.team-image {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    margin-top: 20px;
}

.team-card:hover .team-image {
    transform: none !important;
    filter: none !important;
}

.team-card .card-body {
    height: auto !important;
}

.team-card p {
    white-space: normal !important;
    overflow: visible !important;
}

/* 🔹 Social Overlay */
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 14px;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

/* 🔹 Social Icons */
.social-icon {
  color: #fff;
  font-size: 1.6rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

.social-icon.linkedin:hover {
  color: #0A66C2;
}

.social-icon.instagram:hover {
  color: #E4405F;
}

.social-icon.twitter:hover {
  color: #1DA1F2;
}
/* 🔹 Product Card Styles */
.product-card {
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* 🔹 Image Section */
.product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.product-image {
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.10) translateY(-5px) rotate(1deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* 🔹 Overlay (for PDF view/download) */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}


/* 🔹 PDF Button Styling */
.product-overlay .btn {
  border-radius: 30px;
  font-size: 0.9rem;
  padding: 6px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* 🔹 Headings */
h5.fw-bold {
  letter-spacing: 0.4px;
}

p.text-muted {
  font-size: 0.92rem;
  line-height: 1.5;
}
 .footer-section {
   background-color: var(--navy);
  color: #fff;
  position: relative;
}





.company-title {
  color: #FFFFFF;
  letter-spacing: 0.5px;
}



/* Headings */
.section-title {
  color: #F7F7F7;
  border-bottom: 2px solid #4682B4;
  display: inline-block;
  padding-bottom: 4px;
}

/* Links */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #D0D0D0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #C65D3B;
  transform: translateX(5px);
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.4rem;
  color: #D0D0D0;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #4682B4;
  transform: scale(1.2);
}


.text-accent-orange {
  color: #C65D3B;
  font-weight: bold;
}

/* Divider */
.footer-section hr {
  border-color: rgba(255, 255, 255, 0.2);
  opacity: 0.3;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .footer-section {
    text-align: center;
  }

  .footer-links a {
    display: inline-block;
  }

  .social-icons {
    justify-content: center;
  }
}
.product-overlay {
  pointer-events: none; 
}
.product-overlay a {
  pointer-events: auto; 
}
/* Make entire row unclickable */
    .inactive-row td {
        pointer-events: none !important;
    }

    /* But keep last Actions column clickable (if you want) */
    .inactive-row td:last-child {
        pointer-events: auto !important;
    }

    /* Styling for visibility */
    .inactive-row {
        opacity: 0.5;
        background-color: #f0f0f0 !important;
    }

    /* Optional: style disabled links */
    .inactive-row a {
        color: #6c757d !important;
        text-decoration: none !important;
        cursor: not-allowed !important;
    }
    
    