/* Custom Navbar and Site Styles with Water (Blue) and Nature (Green) Colors */
.navbar {
  background: linear-gradient(90deg, #e3f2fd 0%, #bbdefb 100%) !important; /* Light blue gradient for a "water" feel */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.25rem;
  color: #004d80 !important; /* Darker blue for text contrast */
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 40px;
  max-width: 100px;
  margin-right: 10px;
  transition: height 0.3s ease;
}

/* Responsive adjustments for mobile */
@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 30px;
  }
  .navbar-brand {
    font-size: 1.1rem;
  }
}

/* Link styling with water/nature colors */
.navbar-nav .nav-link {
  color: #004d80 !important; /* Dark blue for links */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #4caf50 !important; /* Green hover for "nature" accent */
}

.navbar-nav .nav-item.active .nav-link {
  color: #00aaff !important; /* Bright blue for active state */
  font-weight: bold;
}

/* Toggler button */
.navbar-toggler {
  border: none;
  outline: none;
  color: #004d80 !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Global button styles to match theme */
.btn-primary {
  background-color: #00aaff !important; /* Water blue for primary actions */
  border-color: #00aaff !important;
}

.btn-primary:hover {
  background-color: #0088cc !important; /* Darker blue on hover */
}

.btn-success {
  background-color: #4caf50 !important; /* Nature green for secondary actions */
  border-color: #4caf50 !important;
}

.btn-success:hover {
  background-color: #388e3c !important; /* Darker green on hover */
}

/* Optional: Hero section and footer accents */
.jumbotron {
  background: linear-gradient(135deg, #e3f2fd 0%, #c8e6c9 100%) !important; /* Blue-to-green gradient for water/nature theme */
  color: #004d80 !important;
}

footer {
  background-color: #f1f8e9 !important; /* Light green for footer */
  color: #2e7d32 !important;
}

/* ABOUT PAGE ONLY CSS (Use with about.html) */

/* Hero Header */
.about-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(227, 242, 253, 0.9) 0%, rgba(200, 230, 201, 0.9) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #004d80;
  margin-bottom: 12px;
}

.about-subtitle {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #1b3b52;
  line-height: 1.6;
  text-align: justify; /* ✅ Justify subtitle also */
}

/* Card Layout */
.about-card,
.mission-card,
.home-about {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Section Typography */
.section-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #004d80;
  margin-bottom: 14px;
}

/* ✅ Justify all paragraph text */
.section-text,
.feature-box p {
  color: #294b5f;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 14px;
  text-align: justify; /* ✅ Justify applied */
}

/* About Image */
.about-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature Boxes */
.feature-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #4caf50;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-box h5 {
  font-weight: 700;
  color: #004d80;
  margin-bottom: 8px;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(90deg, rgba(227, 242, 253, 0.95) 0%, rgba(241, 248, 233, 0.95) 100%);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.cta-box h3 {
  color: #004d80;
  font-weight: 800;
}

.query-form-box h5 {
  color: #004d80;
  font-weight: 800;
}

/* Mobile Improvements */
@media (max-width: 768px) {
  .about-hero {
    padding: 55px 0;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-card,
  .mission-card {
    padding: 22px;
  }
}

.contact-details p {
  line-height: 1.6;
}

/* SERVICES PAGE ONLY CSS */

/* Hero section */
.services-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #c8e6c9 100%);
  color: #004d80;
}

.services-hero p {
  text-align: justify;
}

/* Section Titles */
.section-main-title {
  color: #004d80;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-main-subtitle {
  color: #294b5f;
  text-align: justify;
  line-height: 1.7;
  max-width: 1000px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  height: 100%;
  overflow: hidden;
  background: #ffffff;
}

.service-card .card-title {
  color: #004d80;
  font-weight: 700;
}

.service-card .card-text {
  text-align: justify;
  color: #294b5f;
  line-height: 1.7;
  margin-bottom: 0;
}

.service-badge {
  display: inline-block;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 170, 255, 0.12);
  color: #004d80;
  font-weight: 600;
  margin-bottom: 10px;
}

/* What We Deliver Box */
.deliver-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.deliver-box h5 {
  color: #004d80;
  font-weight: 700;
  margin-bottom: 10px;
}

.deliver-box p {
  text-align: justify;
  color: #294b5f;
  line-height: 1.7;
  margin-bottom: 0;
}

/* CTA + Query form section */
.cta-box {
  background: linear-gradient(90deg, rgba(227, 242, 253, 0.95) 0%, rgba(241, 248, 233, 0.95) 100%);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.cta-paragraph {
  text-align: justify;
  color: #294b5f;
  line-height: 1.7;
}

/* Contact details links */
.contact-details a {
  color: #004d80;
  font-weight: 600;
  text-decoration: none;
}

.contact-details a:hover {
  color: #4caf50;
  text-decoration: underline;
}

/* Form box */
.query-form-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.query-form-box label {
  font-weight: 600;
  color: #004d80;
  font-size: 0.95rem;
}

.query-form-box .form-control {
  border-radius: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .services-hero {
    padding: 50px 0;
  }
}

/* Submit Query Button Hover = Green */
.btn-submit-query:hover {
  background-color: #4caf50 !important;
  border-color: #4caf50 !important;
}

/* Core Service Offerings background: Water + Nature gradient */
.services-core-bg {
  background: #dff3f2;
}

/* Optional: better spacing and separation */
.services-core-bg .service-card {
  background: #ffffff;
}

/* Optional: section heading alignment & readability */
.services-core-bg .section-main-title,
.services-core-bg .section-main-subtitle {
  color: #004d80;
}

/* Email Suggestions Dropdown */
.email-suggest-wrap {
  position: relative;
}

.email-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 999;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  margin-top: 6px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  display: none;
}

.email-suggestions .suggest-item {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #004d80;
}

.email-suggestions .suggest-item:hover {
  background: rgba(76, 175, 80, 0.12); /* light green hover */
}

.custom-select {
  border-radius: 10px 0 0 10px;
}

.input-group .form-control {
  border-radius: 0 10px 10px 0;
}

/* Zig-Zag Services Layout */
.service-row {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
}

.service-info-box {
  padding: 10px 10px;
}

.service-title {
  color: #004d80;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-desc {
  color: #294b5f;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 0;
}

.service-image-box {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.05);
}

.service-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* What We Deliver - Icon Cards (No Photos) */
.deliver-icons-bg {
  background: rgba(255, 255, 255, 0.55);
}

/* Card */
.deliver-icon-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.deliver-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.10);
}

/* Icon circle */
.deliver-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.25);
}

.deliver-icon i {
  font-size: 26px;
  color: #004d80;
}

/* Text */
.deliver-icon-card h5 {
  color: #004d80;
  font-weight: 800;
  margin-bottom: 10px;
}

.deliver-icon-card p {
  color: #294b5f;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 0;
}

/* Read More Button */
.btn-read-more {
  background: rgba(0, 77, 128, 0.10);
  color: #004d80;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid rgba(0, 77, 128, 0.20);
  padding: 7px 12px;
  transition: all 0.25s ease;
}

.btn-read-more:hover {
  background: rgba(76, 175, 80, 0.18);
  color: #004d80;
  border-color: rgba(76, 175, 80, 0.35);
}

/* Modal Styling */
.deliver-modal {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.deliver-modal .modal-header {
  background: linear-gradient(90deg, rgba(227, 242, 253, 0.95) 0%, rgba(241, 248, 233, 0.95) 100%);
}

.deliver-modal .modal-title {
  color: #004d80;
  font-weight: 800;
}

.modal-justify {
  text-align: justify;
  color: #294b5f;
  line-height: 1.7;
}

/* Background Blur when Modal Opens */
.modal-backdrop.show {
  opacity: 0.6; /* dim background */
}

/* Blur effect on the page behind modal */
body.modal-open #pageBlurArea {
  filter: blur(6px);
  transition: filter 0.25s ease;
}

/* Smooth default state */
#pageBlurArea {
  transition: filter 0.25s ease;
}

/* PORTFOLIO PAGE ONLY CSS */

/* Hero */
.portfolio-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #c8e6c9 100%);
  color: #004d80;
}

.portfolio-hero p {
  text-align: justify;
}

/* Filter buttons */
.portfolio-filters {
  background: rgba(255,255,255,0.55);
}

.filter-btn {
  border-radius: 999px;
  font-weight: 700;
  color: #004d80;
  background: rgba(0, 77, 128, 0.08);
  border: 1px solid rgba(0, 77, 128, 0.16);
  margin: 6px 6px;
  padding: 8px 14px;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  background: rgba(76, 175, 80, 0.18);
  border-color: rgba(76, 175, 80, 0.35);
}

.filter-btn.active {
  background: rgba(76, 175, 80, 0.28);
  border-color: rgba(76, 175, 80, 0.55);
}

/* Card */
.portfolio-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 18px;
  height: 100%;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.10);
}

/* Icon */
.portfolio-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.25);
}

.portfolio-icon i {
  font-size: 28px;
  color: #004d80;
}

.portfolio-card h5 {
  color: #004d80;
  font-weight: 800;
  margin-bottom: 10px;
}

.portfolio-card p {
  color: #294b5f;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 14px;
}

/* View Details button */
.btn-portfolio {
  background: rgba(0, 77, 128, 0.10);
  color: #004d80;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid rgba(0, 77, 128, 0.20);
  padding: 7px 12px;
  transition: all 0.25s ease;
}

.btn-portfolio:hover {
  background: rgba(76, 175, 80, 0.18);
  color: #004d80;
  border-color: rgba(76, 175, 80, 0.35);
}

/* Modal */
.portfolio-modal {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.portfolio-modal .modal-header {
  background: linear-gradient(90deg, rgba(227, 242, 253, 0.95) 0%, rgba(241, 248, 233, 0.95) 100%);
}

.portfolio-modal .modal-title {
  color: #004d80;
  font-weight: 800;
}

.modal-justify {
  text-align: justify;
  color: #294b5f;
  line-height: 1.7;
}

/* Blur background when modal opens */
.modal-backdrop.show {
  opacity: 0.6;
}

body.modal-open #pageBlurArea {
  filter: blur(6px);
  transition: filter 0.25s ease;
}

#pageBlurArea {
  transition: filter 0.25s ease;
}

/* ===================== CLIENTS SECTION ===================== */
.clients-section {
  background: rgba(255, 255, 255, 0.55);
}

.client-heading {
  color: #004d80;
  font-weight: 800;
  margin-bottom: 14px;
}

/* Logo Marquee */
.logo-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 14px 0;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: scrollLogos 18s linear infinite;
}

.logo-marquee.slow .logo-track {
  animation-duration: 26s;
}

.logo-item {
  width: 160px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 242, 253, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.04);
  padding: 10px;
  flex: 0 0 auto;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.95;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* ===================== REVIEWS SECTION ===================== */
.reviews-section {
  background: rgba(255, 255, 255, 0.25);
}

.review-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 18px;
  height: 100%;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.10);
}

.review-stars i {
  color: #4caf50;
  margin-right: 3px;
}

.review-text {
  margin-top: 12px;
  margin-bottom: 14px;
  text-align: justify;
  color: #294b5f;
  line-height: 1.7;
}

.review-footer h6 {
  color: #004d80;
  font-weight: 800;
}

.review-footer small {
  color: #294b5f;
}

/* ===================== AUTO-SCROLLING REVIEWS SLIDER ===================== */

.review-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 10px 0;
}

.review-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollReviews 28s linear infinite;
}

.review-marquee:hover .review-track {
  animation-play-state: paused; /* pause on hover */
}

/* Each slide width */
.review-slide {
  width: 340px;
  flex: 0 0 auto;
}

/* Review card (same style as your portfolio theme) */
.review-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 18px;
  height: 100%;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.10);
}

.review-stars i {
  color: #4caf50;
  margin-right: 3px;
}

.review-text {
  margin-top: 12px;
  margin-bottom: 14px;
  text-align: justify;
  color: #294b5f;
  line-height: 1.7;
}

.review-footer h6 {
  color: #004d80;
  font-weight: 800;
}

.review-footer small {
  color: #294b5f;
}

/* Animation for smooth infinite scroll */
@keyframes scrollReviews {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .review-slide {
    width: 300px;
  }
}

/* CONTACT PAGE ONLY CSS */

/* Hero */
.contact-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #c8e6c9 100%);
  color: #004d80;
}

.contact-hero p {
  text-align: justify;
}

/* Map Box */
.map-box {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}

/* Cards */
.contact-info-card,
.contact-form-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
}

.contact-info-card h3,
.contact-form-card h3 {
  color: #004d80;
  font-weight: 800;
}

.contact-para {
  color: #294b5f;
  line-height: 1.7;
  text-align: justify;
}

/* Contact links */
.contact-details a {
  color: #004d80;
  font-weight: 700;
  text-decoration: none;
}

.contact-details a:hover {
  color: #4caf50;
  text-decoration: underline;
}

/* Quick action buttons */
.btn-action {
  background: rgba(0, 77, 128, 0.10);
  color: #004d80;
  font-weight: 800;
  border-radius: 12px;
  border: 1px solid rgba(0, 77, 128, 0.20);
  padding: 10px 14px;
  transition: all 0.25s ease;
}

.btn-action:hover {
  background: rgba(76, 175, 80, 0.18);
  color: #004d80;
  border-color: rgba(76, 175, 80, 0.35);
}

/* Form Styling */
.contact-form-card label {
  font-weight: 700;
  color: #004d80;
}

.contact-form-card .form-control {
  border-radius: 10px;
}

.contact-note {
  color: #294b5f;
  text-align: justify;
  line-height: 1.7;
}

/* Submit Query hover green */
.btn-submit-query:hover {
  background-color: #4caf50 !important;
  border-color: #4caf50 !important;
}

/* ============================
   HERO BACKGROUND IMAGE + BLUR
============================ */

.hero-bg-image {
  position: relative;
  overflow: hidden;
}

/* Background image layer */
.hero-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  /* Change image path as per your file */
  background: url("Images/WTP-Banner-Image.jpeg") center center / cover no-repeat;

  /* Slight blur effect */
  filter: blur(6px);

  /* Slight zoom to avoid blur edges */
  transform: scale(1.08);

  /* Light dim for readability */
  opacity: 0.35;

  z-index: 1;
}

/* Keep hero content above background */
.hero-bg-image .container {
  position: relative;
  z-index: 2;
}

/* Optional overlay for better text contrast */
.hero-bg-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: linear-gradient(135deg, rgba(227, 242, 253, 0.85) 0%, rgba(200, 230, 201, 0.85) 100%);
  z-index: 1;
}

.hero-bg-image .hero-subtitle,
.hero-bg-image .hero-contact {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================
   HERO GLASSMORPHISM STYLE
============================ */

.home-hero {
  padding: 80px 0;
}

/* Background image with blur */
.hero-bg-image {
  position: relative;
  overflow: hidden;
}

.hero-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: url("Images/WTP-Banner-Image.jpeg") center center / cover no-repeat;

  filter: blur(7px);
  transform: scale(1.10);
  opacity: 0.55;
  z-index: 1;
}

/* Soft overlay (water + nature tone) */
.hero-bg-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: rgba(255, 255, 255, 0.20);
  z-index: 1;
}

/* Keep content above background */
.hero-bg-image .container {
  position: relative;
  z-index: 2;
}

/* Glass panel */
.hero-glass {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 38px 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Title + text */
.hero-title {
  font-weight: 900;
  color: #004d80;
  margin-bottom: 14px;
  font-size: 2.6rem;
}

.hero-subtitle {
  color: #294b5f;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 18px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

/* Points */
.hero-points {
  margin-top: 14px;
  display: inline-block;
  text-align: left;
}

.hero-point {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 700;
  color: #004d80;
}

.hero-point i {
  color: #4caf50;
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Buttons */
.hero-buttons .btn {
  border-radius: 12px;
  font-weight: 800;
  padding: 10px 18px;
}

/* Contact line */
.hero-contact {
  font-weight: 800;
  color: #004d80;
}

.hero-contact a {
  color: #004d80;
  text-decoration: none;
  font-weight: 900;
}

.hero-contact a:hover {
  color: #4caf50;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .home-hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.0rem;
  }

  .hero-glass {
    padding: 28px 18px;
  }

  .hero-points {
    width: 100%;
  }
}

/* ============================
   MODERN FOOTER
============================ */
.site-footer {
  background: linear-gradient(135deg, rgba(227, 242, 253, 0.95) 0%, rgba(200, 230, 201, 0.95) 100%);
  padding: 55px 0 20px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

.site-footer h5 {
  font-weight: 900;
  color: #004d80;
  margin: 0;
}

.footer-text {
  color: #294b5f;
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 0;
}

.footer-title {
  color: #004d80;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #004d80;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: #4caf50;
  text-decoration: underline;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #294b5f;
}

.footer-contact i {
  color: #004d80;
  min-width: 18px;
}

.footer-contact a {
  color: #004d80;
  font-weight: 800;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #4caf50;
  text-decoration: underline;
}

/* Footer Buttons */
.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-btn {
  background: rgba(0, 77, 128, 0.12);
  border: 1px solid rgba(0, 77, 128, 0.20);
  color: #004d80;
  font-weight: 900;
  border-radius: 12px;
  padding: 9px 14px;
  transition: all 0.25s ease;
}

.footer-btn:hover {
  background: rgba(76, 175, 80, 0.18);
  border-color: rgba(76, 175, 80, 0.35);
  color: #004d80;
}

.footer-btn-green {
  background: rgba(76, 175, 80, 0.22);
  border-color: rgba(76, 175, 80, 0.35);
}

/* Bottom bar */
.footer-line {
  margin: 26px 0 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #294b5f;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #004d80;
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(76, 175, 80, 0.22);
  border-color: rgba(76, 175, 80, 0.35);
  color: #004d80;
}

/* Resume Upload */
.resume-upload-box {
  background: rgba(227, 242, 253, 0.40);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 14px;
  padding: 16px;
}

.btn-upload {
  width: 100%;
  background: rgba(0, 77, 128, 0.10);
  border: 1px solid rgba(0, 77, 128, 0.20);
  color: #004d80;
  font-weight: 900;
  border-radius: 12px;
  padding: 10px 14px;
  transition: all 0.25s ease;
}

.btn-upload:hover {
  background: rgba(76, 175, 80, 0.18);
  border-color: rgba(76, 175, 80, 0.35);
  color: #004d80;
}

/* Fresher Alert */
.fresher-alert {
  border-radius: 12px;
  font-weight: 700;
}

/* Upload status spacing */
.upload-status .alert {
  border-radius: 12px;
}

/* Flatpickr Calendar Styling */
.flatpickr-calendar {
  border-radius: 14px !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14) !important;
}

body.modal-open #pageBlurArea {
  filter: blur(6px);
}
/* Premium Modal */
.premium-modal {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  animation: modalFadeIn 0.4s ease;
}

.success-icon i {
  font-size: 55px;
  color: #28a745;
  animation: popScale 0.5s ease;
}

.countdown-text {
  font-size: 14px;
  color: #6c757d;
}

/* Background Blur */
body.modal-open #pageBlurArea {
  filter: blur(6px);
  transition: 0.3s ease;
}

/* Animations */
@keyframes popScale {
  0% { transform: scale(0.3); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================================
   INDUSTRIAL SERVICE PAGE STYLING
====================================== */

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #2c3e50;
  background-color: #f8f9fa;
  line-height: 1.7;
}

/* Main Container */
.container {
  max-width: 1100px;
}

/* Main Heading */
h1 {
  font-size: 34px;
  font-weight: 700;
  color: #0d3b66;
  margin-bottom: 25px;
  border-left: 6px solid #007bff;
  padding-left: 15px;
}

/* Section Headings */
h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1d3557;
  margin-top: 35px;
  margin-bottom: 15px;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #007bff;
  margin-top: 8px;
}

/* Paragraph Styling */
p {
  font-size: 16px;
  color: #495057;
}

/* Lists */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Buttons */
.btn {
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #007bff;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.btn-success {
  background-color: #28a745;
  border: none;
}

.btn-success:hover {
  background-color: #1e7e34;
  transform: translateY(-2px);
}

/* CTA Section */
.bg-light {
  background-color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.bg-light h3 {
  font-weight: 600;
  color: #0d3b66;
}

/* Footer */
footer {
  font-size: 14px;
  background-color: #e9ecef;
}

/* Breadcrumb look if added */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
}

/* Responsive Improvements */
@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
  }

  .btn-lg {
    font-size: 14px;
    padding: 8px 18px;
  }
}

/* Professional Hover Card Effect (Optional future sections) */
.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.industrial-hero {
  background: linear-gradient(135deg, #0d3b66, #007bff);
  color: white;
  padding: 70px 20px;
}

.industrial-hero h1 {
  color: white;
  border: none;
  padding-left: 0;
}