/*----------------------------------
  Font Imports
----------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;600&display=swap');

/*----------------------------------
  Root Variables
----------------------------------*/
:root {
  --primary-red: #c10000;
  --dark-gray: #333;
  --light-gray: #f2f2f2;
  --text-gray: #666;
  --brushed-metal: url('../img/brushed-metal-light.webp');
  --bg-gray-linear: linear-gradient(145deg, #2a2a2a, #1e1e1e);
}
.brushed-metal {
    background-image: url('../img/brushed-metal-light.webp'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*----------------------------------
  Base Reset & Typography
----------------------------------*/
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
  color: var(--text-gray);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dark-gray);
  letter-spacing: 1px;
}
ul.text-muted {
  list-style: none;
  padding-left: 0;
}

ul.text-muted li {
  position: relative;
  padding-left: 1.5em; /* space for the icon */
}

ul.text-muted li i {
  position: absolute;
  left: 0;
  top: 0.1em;
}

/*----------------------------------
  Section Headers
----------------------------------*/
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h6 {
  color: var(--primary-red);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-header h1 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1a1a1a;
}

/*----------------------------------
  Service Cards
----------------------------------*/
.service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.service-card h4 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card p {
  color: #6c757d;
  font-size: 0.95rem;
}

/*----------------------------------
  Testimonials
----------------------------------*/
.testimonial-item {
  border-left: 5px solid var(--primary-red);
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-style: italic;
  font-size: 16px;
  color: var(--dark-gray);
}

/*----------------------------------
  Icon Utility
----------------------------------*/
.text-primary {
  color: var(--primary-red) !important;
}

/*----------------------------------
  Buttons
----------------------------------*/
.btn-primary {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #a50000;
  border-color: #a50000;
}

.btn-outline-primary {
  color: var(--primary-red);
  border-color: var(--primary-red);
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary-red);
  color: #fff;
}

/*----------------------------------
  Navbar
----------------------------------*/
/* General Navbar and Topbar Styling */
.topbar {
  font-size: 0.9rem;
  border-bottom: 1px solid #ddd;
}

.navbar {
  font-weight: 500;
  z-index: 1030;
}

.navbar-brand img.logo {
  max-height: 60px;
  object-fit: contain;
}

.navbar-light .nav-link {
  color: #333;
  transition: all 0.3s ease-in-out;
}

.navbar-light .nav-link:hover,
.navbar-light .nav-link.active {
  color: #a60000;
  font-weight: 600;
}

/* Contact Button */
.navbar .btn-primary {
  background-color: #a60000;
  border-color: #a60000;
  transition: 0.3s;
}

.navbar .btn-primary:hover {
  background-color: #8e0000;
  border-color: #8e0000;
}

/* Topbar Icon and Text */
.topbar i {
  color: #a60000;
}

.btn-sm.btn-outline-primary {
  width: 32px;
  height: 32px;
  padding: 0;
  line-height: 32px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  border: 1px solid #a60000;
  color: #a60000;
}

.btn-sm.btn-outline-primary:hover {
  background-color: #a60000;
  color: #fff;
}
/* Secondary Buttons */
.btn-secondary {
    background-color: var(--bg-dark-gray);
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 0.3rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #3a3a3a;  /* Slightly darker on hover */
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-secondary:active {
    background-color: #2e2e2e;
    transform: scale(0.98);
}


/*----------------------------------
  Header Banner
----------------------------------*/
.header {
  background: var(--brushed-metal);
  background-size: cover;
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

.header h1 {
  font-size: 60px;
  color: var(--primary-red);
}

.header p {
  font-size: 18px;
  color: #ddd;
}

/*----------------------------------
  Hero Carousel
----------------------------------*/
.hero-slide {
  position: relative;
  width: 100vw;
  height: 100vh;      /* full viewport height */
  overflow: hidden;
  animation: fadeZoom 1s ease-in-out;
  min-height: 100vh;
  background-color: #000; /* or a neutral placeholder */
  
}

.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-shadow: 1px 1px 4px #000;
}
/* Hero text shadow and color */
.hero-overlay h1,
.hero-overlay h2,
.hero-overlay .lead,
.hero-overlay .btn {
  color: #ffffff;           /* ensure pure white text */
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.7),   /* strong dark outline */
    0 0 10px rgba(166, 0, 0, 0.5);     /* subtle red glow */
}

/* Increase contrast on headings */
.hero-overlay h1 {
  font-weight: 900;
  letter-spacing: 1px;
}

/* Slight glow on buttons */
.hero-overlay .btn {
  background-color: #a60000;
  border-color: #a60000;
  box-shadow: 0 0 8px rgba(166, 0, 0, 0.6);
  transition: box-shadow 0.3s ease;
}

.hero-overlay .btn:hover {
  box-shadow: 0 0 16px rgba(166, 0, 0, 0.8);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .hero-overlay h1,
  .hero-overlay h2 {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }
  .hero-overlay .btn {
    box-shadow: 0 0 6px rgba(166, 0, 0, 0.5);
  }
}

/* Hide desktop/mobile text depending on screen size */
.desktop-text { display: block; }
.mobile-text { display: none; }

@media (max-width: 768px) {
  .hero-slide {
    height: 80vh;
   
  }
  .hero-slide picture,
.hero-slide img.hero-img {
  
  height: 100vh;
  object-fit: cover;  /* crops edges but always fills */
  display: block;
}

  .desktop-text { display: none; }
  .mobile-text { display: block; }
  .hero-overlay h1, .hero-overlay h2 {
    font-size: 1.8rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
  .hero-overlay .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }
}

/* Animation */
@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Set fixed height for the carousel */
.carousel-item {
  height: 500px; /* adjust as needed */
  position: relative;
  overflow: hidden;
}

/* Make sure images fill the container and stay centered */
.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* Prevent caption overlap issues */
.carousel-caption {
  z-index: 10;
}

/* Owl carousel dots */
.owl-theme .owl-dots .owl-dot span {
  background: var(--primary-red);
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
  border: 1px solid var(--primary-red);
}

/* Hero Caption Overlay */
.hero-slide .carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 8px;
}

/*----------------------------------
  Features Section
----------------------------------*/
.features .card {
  border: none;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
  border-top: 4px solid var(--primary-red);
}

.features .card:hover {
  transform: translateY(-5px);
}

.features .card i {
  font-size: 40px;
  color: var(--primary-red);
  margin-bottom: 15px;
}
/* Override Bootstrap .bg-primary to match custom theme */
.bg-primary {
    background-color: var(--primary-red) !important;
    background-image: 
        linear-gradient(
            rgba(51, 51, 51, 0.6), 
            rgba(51, 51, 51, 0.6)
        ), 
        url('../img/brushed-metal-light.webp'),
        linear-gradient(to bottom, #c10000, #a10000);
    background-blend-mode: overlay, multiply;
    background-size: cover;
    background-position: center;
    color: #fff;
}



.bg-gray-linear {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    background-blend-mode: overlay;
    color: #f1f1f1;
    position: relative;
    overflow: hidden;
}
.bg-header {
    background-color: var(--bg-gray-linear) !important;
    background-image: 
        linear-gradient(
            rgba(51, 51, 51, 0.6), 
            rgba(51, 51, 51, 0.6)
        ), 
        url('../img/brushed-metal-light.webp'),
        linear-gradient(to bottom, #c10000, #a10000);
    background-blend-mode: overlay, multiply;
    background-size: cover;
    background-position: center;
    color: #fff;
}
/* Optional: Darker tone for hover states */
.bg-primary-hover:hover {
    background-color: #a10000 !important;
}

/* Make sure .text-primary also reflects the right color */
.text-primary {
    color: var(--primary-red) !important;
}

/* Customize .btn-primary if not already done */
.btn-primary {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: #fff !important;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #a60000 !important;
    border-color: #a60000 !important;
    color: #fff !important;
}

/* Outline buttons */
.btn-outline-primary {
    color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-red) !important;
    color: #fff !important;
}

/* Utility for cards or panels with a brushed-metal background */
.bg-metal {
    background-image: url('../img/brushed-metal-light.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #333;
}

/*----------------------------------
  Contact Form
----------------------------------*/
.contact-form input,
.contact-form textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 12px;
  font-size: 16px;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 5px rgba(193, 0, 0, 0.3);
}

.contact-form button {
  background: var(--primary-red);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #a60000;
}

/*----------------------------------
  Footer
----------------------------------*/
.footer {
  background: var(--dark-gray);
  background-size: cover;
  color: #ddd;
  padding: 40px 0;
  border-top: 2px solid var(--primary-red);
}

.footer a {
  color: #ccc;
  text-decoration: none;
}
footer ul li i {
  min-width: 20px;
}
footer ul li a:hover {
  color: #a60000;
}
.footer-services {
  padding: 30px 0;
  color: #fff;
  text-align: center;
}

.footer-services h5 {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #a60000;
  margin-bottom: 15px;
}

.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services ul li {
  margin: 8px 0;
}

.footer-services ul li a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-services ul li a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-service-links li {
  margin-bottom: 8px;
}

.footer-service-links li a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.2s ease;
}

.footer-service-links li a:hover {
  color: #fff;
  padding-left: 5px;
}
.footer-service-links li {
  margin-bottom: 8px;
}

.footer-service-links li a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-service-links li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Footer menu links */
.footer-menu .footer-link {
  color: #ccc;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-menu .footer-link:hover {
  color: #fff;
}

/* Responsive styling for mobile */
@media (max-width: 576px) {
  .footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer p, 
  .footer a {
    font-size: 0.9rem;
  }

  .footer-service-links li a {
    font-size: 0.9rem;
  }

  .footer-menu {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .footer .btn-social {
    margin: 0 auto;
  }
}



/*----------------------------------
  Back to Top Button
----------------------------------*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 12px 16px;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.back-to-top:hover {
    background-color: #a50000;
}

/*----------------------------------
  Responsive Adjustments
----------------------------------*/
@media (max-width: 768px) {
  .header h1 {
    font-size: 40px;
  }

  .header p {
    font-size: 16px;
  }
  .hero-slide h1 {
    font-size: 2rem;
  }

  .hero-slide p {
    font-size: 1.1rem;
  }

  .hero-slide .carousel-caption {
    padding: 20px;
  }

  .features .card i {
    font-size: 30px;
  }
}
.badge-section {
  
  border-top: none;
  border-bottom: 2px solid #666;
}

.badge-row img.badge-logo {
  max-height: 80px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(100%) brightness(0.9);
}

.badge-row img.badge-logo:hover {
  transform: scale(1.1);
  filter: none;
}
.work-gallery-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.2s ease-in-out;
}
.work-gallery-item:hover {
  transform: scale(1.03);
}
/* ----------------------------------
  Map Area
---------------------------------- */
.map-area {
    
    color: #ddd;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.map-wrapper {
    background: linear-gradient(135deg, #2b2b2b, #1a1a1a);
    border: 1px solid #444;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.7);
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-wrapper iframe:hover {
    filter: grayscale(0%) contrast(1.2);
}
/* ------- Header Styline ------- */
.page-header {
    background-position: center center;
    background-size: cover;
    position: relative;
    min-height: 250px;
    border-bottom: 1px solid #444;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.6); /* dark overlay */
}

.page-header-inner {
    height: 100%;
    padding: 4rem 1rem;
}
.pg-header h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}


@media (max-width: 576px) {
    .page-header {
        min-height: 220px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
.testimonial-box {
  border-left: 5px solid #a50000;
  transition: all 0.3s ease;
}

.testimonial-box:hover {
  background-color: #f8f9fa;
  border-left-color:  #a50000;
}

.text-muted {
  color: #6c757d !important;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-size: 60% 60%;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-inner img {
    border-radius: 0.5rem;
    border: 3px solid #dee2e6;
}
/* Set a consistent height for all carousel items */
.fixed-carousel-height {
    height: 350px; /* Adjust height to fit your layout */
    overflow: hidden;
}

/* Ensure all images fill their container equally */
.carousel-img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.custom-caption {
    background: rgba(0, 0, 0, 0.65); /* semi-transparent black for readability */
    padding: 1rem 1.5rem;
    border-radius: 8px;
    bottom: 30px;
    left: 20px;
    right: auto;
    text-align: left;
    border-left: 4px solid var(--primary-red);
    position: absolute;
    z-index: 10;
    max-width: 400px; /* limit width for better readability */
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #f8f9fa; /* light text for contrast */
    backdrop-filter: blur(5px); /* optional: adds a blur effect to the background */
    -webkit-backdrop-filter: blur(5px); /* for Safari */
    transition: all 0.3s ease;
    /* Optional: add a subtle shadow for depth */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.custom-caption h5,
.custom-caption p {
    color: #f8f9fa; /* light text for contrast */
}

.custom-caption h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.8px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
blockquote {
  position: relative;
  background: #f8f9fa; /* Light gray background for contrast */
  border-left: 5px solid #a60000; /* Bootstrap primary color */
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  font-style: italic;
  color: #333;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

blockquote:hover {
  background: #e9ecef;
  border-left-color: #a60000;
}

blockquote::before {
  content: "“";
  font-size: 3rem;
  color: #a60000;
  position: absolute;
  top: -20px;
  left: 10px;
  line-height: 1;
}

blockquote footer {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #555;
  text-align: right;
}
.footer-cta {
  background-color: #a60000; /* Override default primary if needed */
}

.footer-cta h4,
.footer-cta p {
  color: #fff;
}

.footer-cta .btn-light {
  color: #a60000;
  background-color: #fff;
  border: none;
  transition: all 0.3s ease-in-out;
}

.footer-cta .btn-light:hover {
  background-color: #eaeaea;
  color: #000;
}
/*----------------------------------
  Footer Menu 
----------------------------------*/
.footer-link {
  color: #f8f9fa; /* Light gray text */
  font-size: 0.9rem;
  text-decoration: none;
  padding: 5px 10px;
  transition: all 0.2s ease;
  border-radius: 5px;
}

.footer-link:hover,
.footer-link:focus {
  color: #ffffff; /* Pure white text on hover */
  background-color: #a60000; /* Deep red background */
  text-decoration: none;
}
.footer-link.active {
  color: #ffffff; /* Pure white text for active link */
  background-color: #a60000; /* Deep red background for active link */
}
.text-deepred {
  color: #a60000 !important;
}
/*----------------------------------
  flexbox utility
----------------------------------*/
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
}

.gallery-item {
    flex: 1 0 25%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover {
    z-index: 10;
    transform: scale(1.05);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-item {
        flex: 1 0 33.333%;
    }
}
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 0 50%;
    }
}
@media (max-width: 576px) {
    .gallery-item {
        flex: 1 0 100%;
    }
}

/* Modal Styling */
.modal-content {
    background-color: #111;
    border: none;
}

.carousel-item img {
    object-fit: contain;
    max-height: 80vh;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(166, 0, 0, 0.8);
    border-radius: 50%;
    padding: 10px;
}
/* Project Card Styling */
.project-card {
  background-color: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.project-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.project-info {
  color: #ddd;
  padding-bottom: 1rem;
}

.project-info h5 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-info p {
  color: #aaa;
  margin-bottom: 0.5rem;
}

/* Remove bullet points and add spacing */
.project-info ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}

.project-info li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.3rem;
  color: #ccc;
  font-size: 0.95rem;
   list-style: none;
}

/* Optional: Adjust check icon spacing */
.project-info li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #a60000; /* Your theme red */
  font-size: 0.9rem;
}


.project-info {
  padding: 1rem;
}

.project-info h5 {
  color: #a60000;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.project-info p,
.project-info ul {
  font-size: 0.9rem;
  color: #ccc;
}

.project-info ul {
  padding-left: 1rem;
  list-style-type: disc;
}
/* Style for service header section */
.page-header {
  background: url('../images/bg-services.jpg') center center / cover no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-inner {
 background-image: 
    linear-gradient(to right, #2e2e2e, #cccccc),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 5px);
  background-blend-mode: overlay;
  color: white;
}


/* Service section */
.service-details img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Checkmark icon with spacing */
.list-check i {
  color: #a60000;
  margin-right: 8px;
}

/* Gallery grid styling */
.service-gallery .col-md-4 {
  padding: 10px;
}

.service-gallery img {
  object-fit: cover;
  width: 100%;
  height: 220px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-gallery img:hover {
  transform: scale(1.03);
}

/* Section headings */
h2, h3 {
  font-weight: 600;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .service-details .row {
    flex-direction: column-reverse;
  }
}
/* Style for navbar dropdown link */
.navbar .dropdown-menu {
  background-color: #333; /* dark gray background */
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-top: 0;
}

.navbar .dropdown-item {
  color: #ddd;
  padding: 10px 20px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: #a60000;
  color: #fff;
}

/* Arrow on hover (optional subtle effect) */
.navbar .dropdown-toggle::after {
  vertical-align: middle;
  border-top-color: #ccc;
}

/* Active or open state for dropdown */
.navbar .nav-item.dropdown.show > .nav-link {
  color: #fff;
  background-color: #a60000;
}

/* Mobile view tweaks */
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    background-color: #111;
    border-top: 1px solid #333;
  }
}
/* Container and image styles */
.project-sidebar-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.2); /* subtle glow */
  transition: transform 0.2s ease-in-out;
}

.project-sidebar-thumb:hover {
  transform: scale(1.05);
}

/* Badge styles to match dark theme */
.badge-secondary {
  background-color: #444;
  color: #fff;
  font-size: 0.7rem;
  padding: 0.3em 0.5em;
  border-radius: 0.3rem;
}

/* Link hover styling */
.project-sidebar-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.project-sidebar-link:hover {
  color: #a60000; /* Deep red on hover */
}

/* Optional: Add border or hover bg to each item */
.sidebar-project-item {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}
.project-highlight ul {
  padding-left: 1rem;
  list-style: none;
}


/* -------------------------
   Project Spotlight Styling
-------------------------- */

.project-highlight {
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
}

.project-highlight h1,
.project-highlight h2,
.project-highlight p,
.project-highlight ul {
  color: #ddd;
}

.project-highlight .text-danger {
  color: #a60000 !important;
}

.spotlight-img-wrapper {
  overflow: hidden;
}

.overlay-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.spotlight-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
  border-radius: 10px;
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(166, 0, 0, 0.6);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

.overlay-container:hover .spotlight-img {
  transform: scale(1.05);
}

.overlay-container:hover .img-overlay {
  opacity: 1;
}
.img-overlay i {
  color: #fff;
  font-size: 2rem;
}
.img-overlay span {
  color: #fff;
  font-size: 1.2rem;
  margin-left: 10px;
  font-weight: 600;
} 

/*----------------------------------
  Honeypot for spam prevention
----------------------------------*/
.honeypot-field {
  display: none !important;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
  left: -9999px;
  top: -9999px; 
  opacity: 0;
  pointer-events: none;
}
.honeypot {
  display: none !important;
  visibility: hidden;
  height: 0;
}
