/* Base structure */
.header-container {
  background-color: #121212;
  color: #E0E0E0;
  font-family: 'Poppins', sans-serif;
  border-bottom: 4px solid #000000;
}

/* Top bar */
.topbar {
  font-size: 0.9rem;
  text-align: center;
  padding: 0.5rem 1rem;
  background-color: #1E1E1E;
  color: #E0E0E0;
  margin: 0;
}

/* Divider */
.divider {
  border-color: #2A2A2A;
  margin: 0;
}

/* Navbar container */
.navbar-wrapper {
  padding: 1rem 1rem;
}

@media (min-width: 768px) {
  .navbar-wrapper {
    padding: 1rem 2rem;
  }
}

/* Logo */
.site-logo {
  font-size: 1.25rem;
  font-weight: bold;
  color: #2979FF;
  text-decoration: none;
}

/* Nav menu wrapper */
.nav-menu {
  width: 100%;
}



@media (min-width: 992px) {
  .nav-menu {
    width: auto;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    margin-top: 0 !important;
  }
}

/* Nav list */
.nav-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 992px) {
  .nav-list {
    flex-direction: row;
    width: auto;
    align-items: center;
    gap: 1rem;
  }
}

/* Nav items */
.nav-item {
  padding: 0.5rem 0.75rem;
  position: relative;
}

/* Nav links */
.nav-link {
  padding: 0.5rem 1rem;
  position: relative;
  transition: transform 0.2s ease;
}

/* Hover uplift */
.nav-link:hover {
  transform: translateY(-2px);
}

/* Separator between nav items */
.nav-separator {
  display: none;
}

@media (min-width: 992px) {
  .nav-separator {
    display: inline-block;
    height: 1.25rem;
    border-left: 1px solid #333;
    margin: 0 0.5rem;
  }
}

/* Dropdown arrow */
.dropdown-toggle::after {
  content: " ▼";
  font-size: 0.6rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  border: none !important;
}

/* Dropdown menu */
.dropdown-menu {
  background-color: #1E1E1E;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 0.25rem;
  padding: 0.5rem 0;
  margin-top: 0.5rem !important;
  z-index: 1000;
}

.dropdown-menu a {
  color: #E0E0E0;
  padding: 0.5rem 1rem;
  display: block;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #2A2A2A;
  color: #00E676;
}

/* === HERO SECTION STYLES === */
/* Gradient backgrounds (only for desktop) */
@media (min-width: 992px) {
  .gradient-bg-1 {
    background: repeating-linear-gradient(135deg, #f3d8bb 0px, #f3d8bb 6px, #e8bf96 6px, #e8bf96 12px);
  }
  .gradient-bg-2 {
    background: repeating-linear-gradient(135deg, #f3d8bb 0px, #f3d8bb 6px, #e8bf96 6px, #e8bf96 12px);
  }
  .gradient-bg-3 {
    background: repeating-linear-gradient(135deg, #f3d8bb 0px, #f3d8bb 6px, #e8bf96 6px, #e8bf96 12px);
  }
  .left-content p {
  position: relative;
  padding: 12px 16px;
  z-index: 0; /* base layer */
  color: white; /* text color remains white */
}

.left-content p::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* black overlay */
  z-index: -1; /* behind the text */
  border-radius: 4px; /* optional: for rounded look */
}

}
/* Mobile: remove background lines */
@media (max-width: 991.98px) {
  .left-content {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    position: absolute;
    z-index: 10;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .right-content img {
    height: 100vh;
    object-fit: cover;
  }
}

/* === MOBILE RESPONSIVE STYLE === */
@media (max-width: 768px) {
    .content-row {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
    }

    .right-panel {
        display: none; /* Hide the right panel on mobile */
    }

    .step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        margin-bottom: 24px;
        background: #f9f9f9;
        padding: 16px;
        border-radius: 8px;
    }

    .step-item::before, 
    .border-line {
        display: none; /* remove vertical lines or borders */
    }

    .step-icon {
        display: none; /* Hide small icon, optional */
    }

    .step-details {
        width: 100%;
    }

    .step-details h3.step-name {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .step-details p.step-description {
        font-size: 14px;
    }

    /* Display step image above text */
    .step-item::before {
        content: '';
        display: none;
    }

    .step-item img.step-image-mobile {
        width: 100%;
        max-height: 200px;
        border-radius: 8px;
        object-fit: cover;
    }
}

/* === Animations === */
.animate-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s forwards;
}

.animate-text.delay-1 {
  animation-delay: 0.3s;
}
.animate-text.delay-2 {
  animation-delay: 0.6s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide content reset for animation */
.carousel-item .animate-text {
  opacity: 0;
  transform: translateY(20px);
}
.carousel-item.active .animate-text {
  animation-play-state: running;
}

/* === Right Side of Hero Section === */

.right-content {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.right-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
/* Optional: Add slight zoom effect on hover (desktop only) */
@media (min-width: 992px) {
  .right-content img:hover {
    transform: scale(1.02);
  }
}

/* services.css */
.services-section {
  background-color: #eee;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 50px;
  height: 50px;
}

@media (max-width: 767.98px) {
  .services-section .row.g-3 .col-12 img {
    width: 75% !important;
  }
}

/* Fix for service section text contrast */
.services-section h2,
.services-section h5 {
  color: #212529 !important; /* Dark grey, almost black */
}

.services-section p {
  color: #333 !important; /* High contrast grey */
}

.text-muted {
  color: #6c757d !important; /* OPTIONAL: you can darken it if needed */
}

.fw-bold {
	color: #212529
}

/* Team Images Section */
.team-images-col {
  height: 650px; /* Adjust this height as needed */
  /* You might also want to set overflow if content can exceed this height */
  overflow: hidden;
  position: relative;
}

.team-images-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Make it fill the height of its parent (.team-images-col) */
  overflow: hidden;
}

.team-img {
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  position: absolute;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.team-img-1 {
  width: 250px;
  bottom: 25%;
  left: 0;
  z-index: 1;
}

.team-img-2 {
  width: 250px;
  top: 0;
  right: 0;
  z-index: 1;
}

.team-img-3 {
  width: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -10%);
  z-index: 2;
}

/* Mobile View: Stack images in grid */
@media (max-width: 991.98px) {
  .team-images-wrapper {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-content: center;
  }

  .team-img {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }

  .team-img-3 {
    grid-column: span 2;
    justify-self: center;
  }
}

.diagonal-service-section {
  background: repeating-linear-gradient(135deg, #f3d8bb 0px, #f3d8bb 2px, #e8bf96 2px, #e8bf96 6px);
  padding: 60px 20px;
  color: #111;
  border-top: 3px solid #cc704b;
}

.section-intro {
  margin-bottom: 40px;
}
.challenge-title {
  font-size: 2.5rem;
  font-weight: 700;
}
.service-tagline {
  font-size: 1.1rem;
  color: #333;
  margin-top: 8px;
}

.service-list-container {
  border-radius: 8px;
  padding: 6px;
  padding-left: 25px;
  padding-right:25px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 6px 0;
  flex-wrap: wrap;
}

.service-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-info {
  flex: 1;
  min-width: 250px;
}
.service-info h4 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 600;
}
.service-info p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.service-readmore a {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid #5c4033;
  border-radius: 50px;
  color: #5c4033;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-readmore a:hover {
  background-color: #5c4033;
  color: #fff;
}


/* === Responsive === */
@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-img {
    margin-bottom: 10px;
  }

  .service-arrow {
    margin-top: 10px;
  }
}

/* General Layout */
.empowering-skills-section {
    padding: 50px 0; /* Adjust as needed */
    background-color: #fff; /* Or your desired background */
}

.container {
    max-width: 1200px; /* Or your desired max-width */
    margin: 0 auto;
    padding: 0 20px;
}

.section-heading {
    font-size: 3em; /* Adjust size and font family */
    color: #333;
    text-align: left;
    margin-bottom: 10px;
}

.section-subheading {
    font-size: 1.2em;
    color: #666;
    text-align: left;
    margin-bottom: 40px;
}

.content-row {
    display: flex;
    gap: 40px; /* Space between left and right panels */
    align-items: flex-start; /* Align items to the top */
}

.left-panel {
    flex: 1; /* Takes up available space */
    display: flex;
    flex-direction: column;
}

.right-panel {
    flex: 1; /* Takes up available space */
    position: relative; /* For positioning the overlay */
}

.displayed-image {
    max-width: 100%;
    height: auto;
    display: block; /* Removes extra space below image */
}

/* Activity Overlay (as seen in your image) */
.activity-overlay {
    position: absolute;
    top: 20px; /* Adjust as needed */
    left: 20px; /* Adjust as needed */
    background-color: rgba(0, 0, 0, 0.8); /* Dark background with transparency */
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Further styling for the text and chart image within */
}


/* Step Item Styling */
.step-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 20px;
    cursor: pointer;
    position: relative; /* For the border-line positioning */
}

.step-item.active .border-line {
    background-color: #a4e601; /* Yellow/green color for active border */
    width: 6px; /* Width of the border */
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.border-line {
    width: 0; /* Initially no width for inactive */
    height: 100%;
    background-color: transparent; /* Default for inactive */
    transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.step-item:hover .border-line {
    background-color: #ddd; /* Light grey on hover for inactive, or a subtle color */
    width: 3px;
}


.step-icon {
    width: 40px; /* Adjust icon size */
    height: 40px;
    margin-right: 15px;
}

.step-details {
    flex-grow: 1;
}

.step-name {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.step-description {
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
}

/* Active State for Step Item (Visual) */
.step-item.active {
    /* Styles for the actively selected step */
    background-color: #f0f0f0; /* Light background for active step */
    border-radius: 5px;
}

.step-item.active .step-name {
    color: #000; /* Darker text for active step */
}

.step-item.active .step-description {
    color: #333;
}

/* Parallax diagonal background */
/* Section with diagonal striped parallax background */
.get-in-touch-section {
  position: relative;
  height: 45vh;
  background-image: repeating-linear-gradient(
    215deg,
    #f3d8bb 0px,
    #f3d8bb 2px,
    #e8bf96 2px,
    #e8bf96 6px
  );
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Transparent black overlay */
.get-in-touch-overlay {
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Centered content */
.get-in-touch-content {
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  padding: 20px;
}

.get-in-touch-content h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.get-in-touch-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Button styling */
.get-in-touch-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00c853;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.get-in-touch-btn:hover {
  background-color: #00b342;
}

.site-footer {
  border-top: 4px solid #5c4033; /* or choose any from earlier suggested */
  background: linear-gradient(to right, #222, #000); /* dark gradient */
  color: #ffffff;
  padding: 40px 20px 0;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #fbbc04;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 0.95rem;
  border-top: 1px solid #333;
}

/* ---------- About Page ---------- */

.about-hero {
  position: relative;
  width: 100%;
  height: 25vh;
  background-image: url("../about-hero-bg.png");
  background-size: cover;
  background-position: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* transparent black layer */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 80px;
  box-sizing: border-box;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

.about-hero p {
  font-size: 1.1rem;
  margin: 5px 0 0;
  max-width: 600px;
}

/* Mobile screens */
@media screen and (max-width: 600px) {
  .about-hero {
    height: auto; /* Let it adjust to content on small screens */
    padding-top: 60px; /* Optional spacing */
    padding-bottom: 60px;
  }

  .about-hero-overlay {
    position: relative; /* Avoid absolute positioning on mobile */
    padding: 20px;
  }

  .about-hero h1 {
    font-size: 1.6rem;
  }

  .about-hero p {
    font-size: 0.95rem;
    width: 100%;
  }
}

/* ---------- About Us Section ---------- */
.about-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-us .container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-us h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0a0a0a;
  text-align: center;
}

.about-us p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

/* Responsive Tweaks */
@media screen and (max-width: 768px) {
  .about-us h2 {
    font-size: 1.8rem;
  }

  .about-us p {
    font-size: 1rem;
    text-align: left;
  }
}


/* Sticky Tabs */
.sticky-tabs {
  position: sticky;
  margin-top: 0px;
  background: #1e1e1e;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.tab-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.tab-menu li {
  margin: 0 8px;
}

.tab-menu a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: #007bff;
  color: white;
  transition: 0.3s;
  display: inline-block;
}

.tab-menu .active a,
.tab-menu li a.active {
  background: #fff;
  color: #007bff;
  border: 2px solid #007bff;
}

/* Content */
.tab-content {
  padding: 30px 20px;
  max-width: 1000px;
  margin: auto;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .tab-menu {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .tab-menu li {
    flex: 1 1 30%;
    margin: 5px;
  }

  .tab-menu a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}

.key-services {
  margin-top: 40px;
  padding: 0 20px;
}

.key-services h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.service-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.service-img {
  flex: 0 0 80px;
}

.service-img img {
  display: block;
  width: 80px;
  height: auto;
}

.service-content {
  flex: 1;
}

.service-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #007bff;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .service-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-img {
    margin-bottom: 10px;
  }

  .service-content h4 {
    font-size: 1.1rem;
  }

  .service-content p {
    font-size: 0.95rem;
  }
}


.project-intro p {
  /* text-align: center; */
  font-size: 1.05rem;
  max-width: 800px;
  margin: 40px auto;
  color: #555;
}

.project-feature {
  padding: 40px 20px;
}

.project-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.project-row.reverse {
  flex-direction: row-reverse;
}

.project-img {
  flex: 1;
  min-width: 280px;
}

.project-img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.project-desc {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.project-desc h3 {
  font-size: 1.6rem;
  color: #007bff;
  margin-bottom: 15px;
}

.project-desc p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .project-row {
    flex-direction: column;
  }

  .project-row.reverse {
    flex-direction: column;
  }

  .project-desc h3 {
    text-align: center;
  }

  .project-desc p {
    text-align: center;
  }
}


.blog-listing {
  padding: 60px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0a0a0a;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-card {
  background: #ddd;
  border-radius: 25px;
  overflow: hidden;
  width: 320px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  width: 100%;
  height: auto;
  border-radius: 25px;  
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-date {
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.25rem;
  color: #1a1a1a;
}

.blog-excerpt {
  font-size: 1rem;
  color: #444;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
}


.blog-single {
  padding: 60px 20px;
  background: #ffffff;
}

.blog-detail {
  max-width: 900px;
  margin: auto;
}

.blog-feature-img {
  width: 50%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.blog-date {
  color: #777;
  font-size: 0.9rem;
}

.blog-title {
  font-size: 2rem;
  margin-top: 10px;
  margin-bottom: 20px;
}

.blog-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.not-found {
  text-align: center;
  color: red;
  font-size: 1.2rem;
}

/* Base Styling */
/* ===== Industries Section Wrapper ===== */
.industries-section {
  display: flex;
  align-items: center;
  height: 140px;
  width: 100%;
  background: url('assets/bg-image.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  padding: 0 10px;
}

/* ===== Left Image Container ===== */
.industries-left {
  width: 20%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.industries-left img {
  max-height: 100%;
  max-width: 80%;  
  object-fit: contain;
}

/* ===== Marquee Text ===== */
.industries-right {
  width: 80%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee {
  display: flex;
  gap: 50px;
  animation: scroll-marquee 30s linear infinite;
  width: fit-content;
}

.clone {
  position: absolute;
  top: 0;
  left: 100%;
  animation: scroll-marquee 30s linear infinite;
}

/* ===== Each Industry Item ===== */
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 0.9rem;
  min-width: 100px;
}

.industry-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 5px;
}

/* ===== Animation Keyframes ===== */
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* ===== Responsive: Tablet & Below ===== */
@media (max-width: 768px) {
  .industries-section {
    flex-direction: column;
    height: auto;
    padding: 20px 10px;
    text-align: center;
  }

  .industries-left, .industries-right {
    width: 100%;
  }

  .marquee {
    animation-duration: 40s;
    gap: 30px;
  }

  .industry-item img {
    width: 28px;
    height: 28px;
  }
  
  .industry-item {
    font-size: 0.8rem;
  }
}

/* ===== Responsive: Mobile XS ===== */
@media (max-width: 480px) {
  .marquee span {
    font-size: 0.8rem;
  }
}

