/* Base structure */
.header-container {
  background-color: #9e09e0;
  color: #d9600f;
  font-family: 'Poppins', sans-serif;
  border-bottom: 4px solid #000000;
}

/* 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: #FFF;
  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;
  color: #FFF;
}

/* 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: linear-gradient(135deg, #8a08c2 0%, #1f1f1f 100%);
  }
  .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;
  /* Aapka existing shadow */
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05); 
  
  /* Yeh Nayi Line Add Karein */
  border: 1px solid #e9ecef; /* Halka grey border */
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 90px;
  height: 90px;
}

@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 {
  /* FIX 1: Gradient ki jagah solid, near-black color */
  background: #111111; 
  
  /* FIX 2: Border ko aapke brand ke purple color se match kiya */
  border-top: 4px solid #8a08c2; 
  
  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: 40vh;
  background-image: url("../about-hero-bg.png");
  background-size: cover;
  background-position: center;
  
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center;
  color: #fff;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* transparent black layer */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.about-hero h1 {
  font-size: 3.5rem; 
  font-weight: 700;
  margin: 0;
}

/* FIX 5: Naya subheading style */
.hero-subheading {
  font-size: 1.5rem; 
  font-weight: 400;
  opacity: 0.9;
  margin-top: 10px;
  max-width: 600px;
}

/* Mobile screens */
@media screen and (max-width: 768px) {
  .about-hero {
    min-height: 30vh;
  }
  .about-hero h1 {
    font-size: 2.5rem;
  }
  .hero-subheading {
    font-size: 1.1rem;
  }

  .about-hero-overlay {
    position: relative; /* Avoid absolute positioning on mobile */
    padding: 20px;
  }
}

/* ---------- 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;
  }
}






.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;
  }
   .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 */
}
}

@media (max-width: 767.98px) {
  .right-content {
    display: none !important;
  }

  .left-content {
    width: 100% !important;
    position: relative !important;
    height: 100vh; /* Ensure full-screen height for left content */
    padding: 40px 20px;
  }

  #heroCarousel .carousel-inner .carousel-item {
    min-height: 100vh;
  }
}


/* Toast Notification Styles */
    .toast-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1050; /* Above Bootstrap modals if any */
    }
    .toast {
      background-color: #333;
      color: #fff;
      padding: 15px 20px;
      border-radius: 5px;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
      min-width: 250px;
      text-align: center;
    }
    .toast.show {
      opacity: 1;
    }
    .toast.success {
      background-color: #28a745; /* Green for success */
    }
    .toast.error {
      background-color: #dc3545; /* Red for error */
    }
    
/* Hero Text Readability Fix */
#hero .left-content h1,
#hero .left-content p {
  color: #FFFFFF !important; /* Text ko white force karein */
}

/* === Updated Service Section Styles === */

/* 1. Section background ko clean karein */
.diagonal-service-section {
  background: #f0f2f5; /* Stripes ki jagah light grey background */
  border-top: none;
  padding: 60px 0; /* padding ko 0 se reset karein */
}

/* 2. Container ka faltu padding hatayein */
.service-list-container {
  padding-left: 0;
  padding-right: 0;
  border: none;
}

/* 3. Old service-row styles ko hide karein (hum ab 'service-card-new' use kar rahe hain) */
.service-list-container > .service-row,
.service-list-container > hr {
  display: none;
}

/* 4. Hamari Nayi Service Card ki Styling */
.service-card-new {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease-in-out;
  height: 100%; /* Columns ki height barabar rakhega */
  display: flex;
  border-top: 4px solid #8a08c2;
  flex-direction: column;
  align-items: center; /* Content ko center karega */
  text-align: center;
}

.service-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.service-card-new .service-img {
  width: 100px; /* Icon thoda chota kiya */
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.service-card-new .service-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Yeh 'Read More' ko card ke bottom mein push karega */
}

.service-card-new .service-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111;
}

.service-card-new .service-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

/* 5. 'Read More' link ko modern banayein */
.service-card-new .service-readmore a {
  font-weight: 600;
  text-decoration: none;
  color: #8a08c2; 
  border: none;
  padding: 0;
  background: none;
}

.service-card-new .service-readmore a:hover {
  background: none;
  color: #0b5ed7;
}

.service-card-new .service-readmore a::after {
  content: ' →'; /* Ek arrow add karein */
  transition: all 0.2s;
}

.service-card-new .service-readmore a:hover::after {
  padding-left: 4px; /* Hover par arrow ko move karein */
}


/* === Process Section (Vertical Zig-Zag) === */

/* === Process Section (Vertical Zig-Zag) - WHITE BG VERSION === */

.process-section-v2 {
  background-color: #ffffff; /* --- FIX: बैकग्राउंड को सफेद किया --- */
  color: #333; /* --- FIX: डिफ़ॉल्ट टेक्स्ट कलर को डार्क किया --- */
  overflow: hidden;
}

/* --- FIX: हेडिंग को सेंटर और डार्क किया --- */
.process-section-v2 .section-heading {
  color: #111;
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center; /* --- FIX: सेंटर अलाइन किया --- */
}

/* --- FIX: सब-हेडिंग को सेंटर और डार्क किया --- */
.process-section-v2 .section-subheading {
  color: #555;
  font-size: 1.2em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; /* --- FIX: सेंटर अलाइन किया --- */
}

.v-timeline-wrapper {
  position: relative;
  padding: 40px 0;
}

/* --- सेंट्रल वर्टिकल लाइन (पर्पल) --- */
.v-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: #8a08c2; /* --- FIX: कलर को पर्पल किया --- */
  transform: translateX(-50%);
}

.v-timeline-item {
  position: relative;
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 40px;
}

/* --- स्टेप 1, 3 (Left-Side) --- */
.v-timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 60px;
}

/* --- स्टेप 2, 4 (Right-Side) --- */
.v-timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: 60px;
}

/* --- हॉरिजॉन्टल लाइन (पर्पल) --- */
.v-timeline-item::after {
  content: '';
  position: absolute;
  top: 32px;
  height: 2px;
  width: 40px;
  background-color: #8a08c2; /* --- FIX: कलर को पर्पल किया --- */
}

.v-timeline-item:nth-child(odd)::after {
  right: 0;
}

.v-timeline-item:nth-child(even)::after {
  left: 0;
}

/* --- सेंट्रल लाइन पर डॉट (पर्पल) --- */
.v-timeline-dot {
  position: absolute;
  top: 29px;
  width: 12px;
  height: 12px;
  background-color: #8a08c2; /* --- FIX: कलर को पर्पल किया --- */
  border-radius: 50%;
  z-index: 2;
}

.v-timeline-item:nth-child(odd) .v-timeline-dot {
  right: -6px;
  transform: translateX(50%);
}

.v-timeline-item:nth-child(even) .v-timeline-dot {
  left: -6px;
  transform: translateX(-50%);
}

/* --- कंटेंट स्टाइलिंग (डार्क टेक्स्ट) --- */
.v-step-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
  color: #8a08c2; /* --- FIX: टाइटल को पर्पल किया --- */
}

.v-step-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111; /* --- FIX: टेक्स्ट को डार्क किया --- */
}

.v-timeline-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444; /* --- FIX: टेक्स्ट को डार्क किया --- */
}

/* === Responsive: Mobile === */
@media (max-width: 768px) {
  
  /* सेंट्रल लाइन को बाईं ओर ले जाएं (पर्पल) */
  .v-timeline::before {
    left: 20px;
    background-color: #8a08c2; /* --- FIX: कलर को पर्पल किया --- */
  }

  /* सभी आइटम को एक तरफ (बाईं ओर) दिखाएं */
  .v-timeline-item,
  .v-timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 55px;
    padding-right: 15px;
  }
  
  .v-timeline-item::after,
  .v-timeline-item:nth-child(odd)::after,
  .v-timeline-item:nth-child(even)::after {
    display: none;
  }

  /* डॉट को बाईं ओर की लाइन पर अलाइन करें (पर्पल) */
  .v-timeline-dot,
  .v-timeline-item:nth-child(even) .v-timeline-dot {
    left: 14px;
    transform: none;
    background-color: #8a08c2; /* --- FIX: कलर को पर्पल किया --- */
  }
}


/* === Contact Form Section === */
.contact-form-section {
  background-color: #8a08c2; /* Light grey background */
}

.contact-form-section .section-heading {
  color: #ffffff;
  font-size: 3em;
  font-weight: 700;
}

.contact-form-section .section-subheading {
  color: #f0f0f0;
  font-size: 1.2em;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
}

.form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: #8a08c2; /* Your primary purple color */
  box-shadow: 0 0 0 0.25rem rgba(138, 8, 194, 0.15);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Override existing toast styles for better contrast */
.toast.bg-success {
    background-color: #198754 !important;
}
.toast.bg-danger {
    background-color: #dc3545 !important;
}


/* === Technology Stack Section (White BG Fix) === */

.tech-stack-section {
  /* 1. बैकग्राउंड को सफेद करें */
  background-color: #f0f2f5; 
  padding: 60px 0;
}

/* 2. हेडिंग को डार्क करें */
.tech-stack-section .section-heading {
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  color: #111; /* डार्क कलर */
}

/* 3. सब-हेडिंग को डार्क करें */
.tech-stack-section .section-subheading {
  font-size: 1.2em;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: #555; /* डार्क ग्रे */
}

/* 4. लोगो पर ग्रेस्केल इफ़ेक्ट (यह बहुत प्रोफेशनल लगता है) */
.tech-logo {
  text-align: center;
  padding: 15px;
}

.tech-logo img {
  max-height: 60px;
  width: auto;
  
  filter: grayscale(0%); /* शुरू में ग्रे */
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.tech-logo img:hover {
  filter: grayscale(0%); /* होवर पर असली रंग */
  opacity: 1;
  transform: scale(1.1);
}


.page-about .services-section {
    background-color: #ffffff;
}

/* 2. 'How We Bring...' सेक्शन को हल्का ग्रे (Light Grey) करें */
/* (ताकि यह ऊपर वाले 'Why Partner' के सफेद रंग से अलग दिखे) */
.page-about .process-section-v2 {
    background-color: #f8f9fa; /* यह Bootstrap का स्टैंडर्ड हल्का ग्रे है */
}



/* === Simple Page Hero (Services, etc.) === */
.page-hero-simple {
  padding: 4rem 0;
  /* Aapke brand ka purple gradient */
  background: linear-gradient(135deg, #8a08c2 0%, #5f0488 100%); 
  text-align: center;
  color: #ffffff;
}

.page-hero-simple .about-hero-overlay {
  background: none;
  position: static;
  padding: 0;
  display: block;
  text-align: center;
}

.page-hero-simple h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

/* === Service Alternating Blocks === */
.service-details-stacked {
  padding: 40px 0;
  background-color: #ffffff;
}

.service-block-alt {
  padding: 60px 0;
  /* Blocks ko alag karne ke liye halki border */
  border-bottom: 1px solid #e9ecef; 
}

/* Aakhri block ke neeche border na dikhayein */
.service-details-stacked .container > .service-block-alt:last-child {
  border-bottom: none;
  padding-bottom: 20px;
}

/* YEH NYA CSS AAPKE PARTIALS KE ANDAR KE TAGS KO STYLE KAREGA 
*/

/* 1. Partial ke H2 aur P tags */
.service-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #8a08c2; /* Title ko brand purple karein */
  margin-bottom: 1rem;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
}

/* 2. Partial ke andar ka '.key-services' section */
.service-content .key-services {
  margin-top: 20px;
}

.service-content .key-services h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 8px;
}

/* 3. Partial ke andar ka '.service-block' (Flex layout) */
.service-content .service-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.service-content .service-block .service-img {
  flex: 0 0 50px; /* Icon ka size fix karein (pehle 80px tha) */
}

.service-content .service-block .service-img img {
  width: 50px;
  height: auto;
}

.service-content .service-block .service-content {
  flex: 1;
}

/* 4. Partial ke andar ka '.service-block' ka content */
.service-content .service-block h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
}

.service-content .service-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 5. Mobile par text ko seedha karein */
@media (max-width: 991.98px) {
  .service-image {
    margin-bottom: 30px;
    text-align: center;
  }
  .service-content,
  .service-content .service-block .service-content {
    text-align: left;
  }
}

/* Nya Code*/
/* =========================================
   Service Details Page Specific Styles
   ========================================= */

.service-details-stacked .service-block-alt {
    padding: 60px 0; /* Add more vertical spacing for blocks */
    margin-bottom: 30px; /* Space between blocks */
}

@media (min-width: 992px) {
    .service-details-stacked .service-block-alt .service-image {
        padding: 0 30px; /* Spacing for image on large screens */
    }
    .service-details-stacked .service-block-alt .service-content {
        padding: 0 30px; /* Spacing for text content on large screens */
    }
    /* Reverse layout specific spacing */
    .service-details-stacked .service-block-alt.flex-row-reverse .service-image {
        padding-right: 0;
        padding-left: 30px;
    }
    .service-details-stacked .service-block-alt.flex-row-reverse .service-content {
        padding-left: 0;
        padding-right: 30px;
    }
}


.service-details-stacked h2 {
    color: #333; /* Darker heading for content */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.service-details-stacked p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-details-stacked .key-services {
    margin-top: 40px;
}

.service-details-stacked .key-services h3 {
    font-size: 1.8rem;
    color: #8a08c2; /* Brand Purple */
    margin-bottom: 25px;
    font-weight: 600;
}

.service-details-stacked .key-services .service-block {
    display: flex;
    align-items: flex-start; /* Align icon and text at the top */
    margin-bottom: 25px; /* Spacing between individual service blocks */
}

.service-details-stacked .key-services .service-block:last-child {
    margin-bottom: 0; /* No margin for the last item */
}

.service-details-stacked .key-services .service-img {
    flex-shrink: 0; /* Prevent icon from shrinking */
    width: 60px; /* Icon container size */
    height: 60px;
    margin-right: 20px;
    background-color: #f7f7f7; /* Light background for icons */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-details-stacked .key-services .service-img img {
    width: 32px; /* Actual icon size */
    height: 32px;
}

.service-details-stacked .key-services .service-content {
    flex-grow: 1;
}

.service-details-stacked .key-services .service-content h4 {
    font-size: 1.4rem;
    color: #444;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-details-stacked .key-services .service-content p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Page Hero Specific for Services */
.page-hero-simple .hero-subheading {
    font-size: 1.5rem;
    font-weight: 500;
    color: #eee;
    margin-top: 20px;
}