.subheading-text {
   font-size: 1.25rem;
  }
.card-light-green{
	background-color: #DFF9F3;
}
.ict-custom-global-container {
  max-width: 1600px;
  margin: 0 auto;    
}

.first-section-main {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.first-section-main {
  background-color: #0f4c45;
  padding: 80px 0;
}

.first-section-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.first-section-content {
  width: 50%;
  color: #ffffff;
}

.first-section-heading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color :white; 
}

.first-section-description {
  font-size: 15px;
  color: #cfe5df;
  margin-bottom: 18px;
  line-height: 1.7;
}

.first-section-button {
  margin-top: 10px;
  padding: 12px 24px;
  background-color: #1ec97f;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.first-section-button:hover {
  background-color: #18a96a;
}

.first-section-image-wrapper {
  width: 45%;
  position: relative;
}

.first-section-image {
  width: 100%;
}

/* Background shape */
.first-section-image-wrapper::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  background: rgba(255,255,255,0.08);
  top: -30px;
  left: -50px;
  border-radius: 50%;
  z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {
  .first-section-container {
    flex-direction: column;
    text-align: center;
  }

  .first-section-content {
    width: 100%;
    margin-bottom: 30px;
  }

  .first-section-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

  .first-section-heading {
    font-size: 30px;
  }
}

.second-section-main {
  background: #f3f5f4;
  padding: 20px 0;
}

.second-section-container {
  width: 90%;
  margin: auto;
}

.second-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1b3f3a;
/*   margin: 0 0 50px 0; */
}

.second-section-flex {
  display: flex;
  gap: 40px;
}

.second-section-left {
  width: 50%;
}

.second-section-text {
  font-size: 15px;
  color: #4f6f6a;
  line-height: 1.8;
  margin-bottom: 20px;
}

.second-section-highlight {
  color: #1ec97f;
  font-weight: 600;
}

/* Card */
.second-section-card {
  width: 45%;
  background: #F2F9F6;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-top: 4px solid #1ec97f;
}

.second-section-card-title {
  margin: 0 0 20px 0;
}

/* Grid */
.second-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.second-section-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  padding: 12px;
  border-radius: 8px;
}

/* Icon */
.second-section-icon {
  width: 40px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f7ef;
  border-radius: 6px;
  font-size: 16px;
}

/* Text */
.second-section-text-small {
  font-size: 13px;
  color: #355f59;
}

/* Responsive */
@media (max-width: 768px) {
  .second-section-flex {
    flex-direction: column;
  }

  .second-section-left,
  .second-section-card {
    width: 100%;
  }

  .second-section-grid {
    grid-template-columns: 1fr;
  }
}

.third-section {
  padding: 20px 20px;
  background: #ffffff;
  text-align: center;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.demo-title {
  color: #1a3c34; /* Dark Teal/Green */
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.demo-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.card {
  flex: 1;
  justify-content: center;
  max-width: 350px;
  height: 85px;
  border-radius: 12px; /* Thoda kam round image ke hisab se */
  display: flex;
  align-items: start;
  padding: 0 25px;
  border: 1px solid transparent;
}

/* Card Specific Colors and Borders */
.card-capacity {
  background-color: #e0f2f7; /* Light blue-ish */
  border-color: #b3e5f2;
}

.card-constraint {
  background-color: #ede7f6; /* Light purple */
  border-color: #d1c4e9;
}

.card-sequencing {
  background-color: #fff3e0; /* Light orange */
  border-color: #ffe0b2;
}

.card-content {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.icon-box {
  background: white;
  width: 30%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card-icon {
  font-size: 1.8rem;
}

.card-title {
  color: #2c4e44;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

.demo-button {
  background: #008a4e; /* Matching the green in image */
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 40px;
  border: none;
  border-radius: 6px; /* Square-ish rounded corners */
  cursor: pointer;
  transition: opacity 0.2s;
}

.demo-button:hover {
  opacity: 0.9;
}

/* Mobile Friendly */
@media (max-width: 992px) {
  .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 100%;
  }
}

.fourth-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.fourth-section .demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fourth-section .main-title {
    text-align: center;
    color: #1a4d33; /* Dark Green */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
}

.fourth-section .content-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left Column Styling */
.fourth-section .left-col {
    flex: 1;
}

.fourth-section .description {
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.preserves-card {
    background-color: #f4f7f6;
    border-left: 5px solid #00a651;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
}

.preserves-card h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #1a4d33;
}

.preserves-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preserves-card li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 14px;
}

/* Custom Checkmark for Preserves */
.preserves-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00a651;
    font-weight: bold;
}

.fourth-section .cta-button {
    background-color: #00a651;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.fourth-section .cta-button:hover {
    background-color: #008541;
}

/* Right Column Card Styling */
.fourth-section .right-col {
    flex: 1.2;
}

.fourth-section .pain-points-card {
    background-color: #f4f7f6;
    border-top: 8px solid #00a651;
    padding: clamp(20px, 4vw, 40px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.fourth-section .pain-points-card h3 {
    font-size: 22px;
    color: #1a4d33;
    margin: 0 0 20px 0;
}

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

.fourth-section .check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

/* Green Checkmarks */
.fourth-section .check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #00a651;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive for Mobile */
@media (max-width: 991px) {
    .fourth-section .content-grid {
        flex-direction: column;
    }
    .fourth-section {
    padding: 25px 0;}
}

.fifth-section {
    background-color: #0b4a35; /* Deep Green */
    padding: 50px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fifth-section .container {
    margin: 0 auto;
}

.fifth-section .title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.fifth-section .subtitle {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 50px;
    text-align: center;
}

/* Feature Cards */
.fifth-section .features-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.fifth-section .feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    flex: 1;
    text-align: left;
    min-height: 160px;
}

.fifth-section .card-headers {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.fifth-section .icon-box {
    background: #f0fdf4;
    width: 55px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

.fifth-section .feature-card h3 {
    font-size: 16px;
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
}

.fifth-section .feature-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Testimonial Card */
.fifth-section .testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    max-width: 850px;
    margin: 0 auto 50px auto;
    text-align: left;
}

.fifth-section .stars {
    color: #f39c12;
    font-size: 24px;
    margin-bottom: 20px;
}

.fifth-section .quote-text {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

.fifth-section .testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fifth-section .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fifth-section .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.fifth-section .user-name {
    display: block;
    font-weight: 700;
    color: #1a4a35;
    font-size: 16px;
}

.fifth-section .user-role {
    font-size: 13px;
    color: #777;
}

.fifth-section .quote-icon {
    font-size: 60px;
    color: #d1fae5;
    font-family: serif;
    line-height: 0;
    transform: rotate(180deg);
}

/* Buttons */
.fifth-section .button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.fifth-section .btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.fifth-section .btn-primary {
    background: #10b981;
    color: white;
    border: none;
}

.fifth-section .btn-outline {
    background: transparent;
    color: white;
    border: 1px solid #ffffff;
}

.fifth-section .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .fifth-section .features-grid {
        flex-direction: column;
    }
    .fifth-section .button-group {
        flex-direction: column;
        align-items: center;
    }
    .fifth-section{
        padding: 25px 20px;
    }

}

.sixth-section {
    padding: 20px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    color: #333;
}

.sixth-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.sixth-section .main-title {
    color: #1a4d33;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center; 
}

.sixth-section .intro-text, 
.sixth-section .sub-text {
    max-width: 1280px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
    color: #555;
    text-align: center; 
}

.sixth-section .sub-text {
    margin-bottom: 60px;
}

/* Grid Layout */
.sixth-section .cards-grid {
    display: flex;
    gap: 30px;
    text-align: left;
    align-items: stretch;
}

.sixth-section .info-card {
    flex: 1;
    background-color: #f4f7f6; /* Very light grey/green tint */
    padding: clamp(20px, 4vw, 40px);
    border-radius: 12px;
}

/* Card Titles */
.sixth-section .info-card h3 {
    font-size: 18px;
    color: #1a4d33;
    margin: 0 0 15px 0;
    font-weight: 700;
}

/* Border Accent for Business Card */
.sixth-section .business-card {
    border-left: 6px solid #00a651;
    border-radius: 12px 12px 12px 12px;
}

/* Check List Styling */
.sixth-section .check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sixth-section .check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

/* Custom Green Checkmark */
.sixth-section .check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #00a651;
    font-weight: bold;
    font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .sixth-section .cards-grid {
        flex-direction: column;
    }
    
    .sixth-section{
        padding: 25px 20px;
    }

}

.seventh-section {
    background-color: #e0f2f1; /* Very Light Teal Background */
    padding: 40px 20px;
}

.seventh-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.seventh-section .main-title {
    text-align: center;
    color: #1a4d33;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 50px 0;
}

.seventh-section .layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Column Styling */
.seventh-section .intro-p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.seventh-section .small-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #00a651;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.seventh-section .small-card h3,
.seventh-section .large-card h3 {
    font-size: 18px;
    color: #1a4d33;
    margin: 0 0 10px 0;
    font-weight: 700;
}

/* Right Column (Large Card) Styling */
.seventh-section .large-card {
    background: #ffffff;
    border-radius: 15px;
    border-top: 5px solid #00a651;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.seventh-section .image-header img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    padding: 15px 15px 0 15px; /* Padding inside card for image */
    border-radius: 25px;
}

.seventh-section .card-body {
    padding: 30px;
    background-color: white;
}

/* Common Check-list Styling */
.seventh-section .check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seventh-section .check-list li {
    position: relative;
    padding-left: 30px;
  margin: 0 0 12px 10px;
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.seventh-section .check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00a651;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 991px) {
    .seventh-section .layout-grid {
        grid-template-columns: 1fr;
    }
    .seventh-section{
        padding: 25px 20px;
    }
}

.eighth-section {
    padding: 30px 20px;
}

.eighth-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.eighth-section .main-title, 
.eighth-section .benefits-title {
    text-align: center;
    color: #1a4d33;
    font-weight: 700;
    margin: 0 0 50px 0;
}

.eighth-section .main-title { font-size: 28px; }
.eighth-section .benefits-title { font-size: 24px; margin-top: 0px; margin-bottom: 10px; }

/* Top Grid Layout */
.eighth-section .integration-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.eighth-section .left-col, 
.eighth-section .right-col {
    flex: 1;
}

.eighth-section .description {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Align Card (Left) */
.eighth-section .aligns-card {
    background: #f8faf9;
    border-left: 5px solid #00a651;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* Key Points Card (Right) */
.eighth-section .key-points-card {
    background: #f8faf9;
    border-top: 5px solid #00a651;
    padding: clamp(20px, 4vw, 40px);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.eighth-section h3 {
    margin: 0 0 10px 0;
}

/* Check List Styling */
.eighth-section .check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.eighth-section .check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #444;
}

.eighth-section .check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00a651;
    font-weight: bold;
}

/* Benefits Grid (Bottom Cards) */
.eighth-section .benefits-grid {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
}

.eighth-section .benefit-card {
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    border-radius: 12px;
    min-height: 100px;
    text-align: left;
}

.eighth-section .benefit-card p {
    margin: 0;
    font-size: 14px;
    color: #2c4e44;
    font-weight: 500;
    line-height: 1.4;
}

.eighth-section .icon-box {
    background: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Benefit Colors */
.eighth-section .card-blue { background-color: #e0f2f7; }
.eighth-section .card-purple { background-color: #f0ebff; }
.eighth-section .card-orange { background-color: #fff0e0; }

/* Mobile View */
@media (max-width: 600px) {
    .eighth-section .benefit-card {
        width: 100%;
    }
}
@media (max-width: 991px) {
    .eighth-section .integration-grid, 
    .eighth-section .benefits-grid {
        flex-direction: column;
    }
    .eighth-section{
        padding: 25px 20px;
    }
    .eighth-section .benefits-title{
        margin-top: 0px;
    }
}

.nineth-section {
    padding: 30px 20px;
    text-align: center;
}

.nineth-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.nineth-section .main-title {
    color: #1a4d33;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: center;
}

.nineth-section .intro-text, 
.nineth-section .sub-text {
    max-width: 950px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.nineth-section .sub-text {
    margin-bottom: 60px;
}

/* White Box Container with Green Top Border */
.nineth-section .flexibility-box {
    background: #ffffff;
    border-top: 6px solid #00a651;
    border-radius: 12px;
    padding: clamp(20px, 4vw, 40px);
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
}

.nineth-section .box-title {
    font-size: 20px;
    color: #1a3c34;
    margin-bottom: 30px;
    font-weight: 700;
    margin: unset;
    padding-bottom: 15px;
}

/* Grid Layout */
.nineth-section .grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 0 15px 0;
}

/* Individual Grid Items */
.nineth-section .grid-item {
    background-color: #f4f7f6; /* Very light grey */
    padding: 20px;
    border-radius: 8px;
    font-size: 13.5px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/* Numbering inside items */
.nineth-section .grid-item span {
    color: #00a651;
    font-weight: 700;
    font-size: 15px;
}

/* Responsive for Mobile */
@media (max-width: 991px) {
    .nineth-section .grid-3-col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .nineth-section .grid-3-col {
        grid-template-columns: 1fr;
    }
    
    .nineth-section {
        padding: 25px 20px;
    }
}

/* Container & Background */
.tenth-section {
    background-color: #014337;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.tenth-section .ts-container {
    max-width: 1250px; /* Thoda aur space diya hai */
    margin: 0 auto;
}

/* White Card Area */
.tenth-section .ts-card-wrapper {
  display: grid;
  gap: 15px;
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: clamp(20px, 4vw, 40px);
    text-align: left;
    color: #014337;
    margin-bottom: 40px;
    border-top: 10px solid #00a651;
}

.tenth-section .ts-group-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* Row & Grid Items - Fixed for Perfect Alignment */
.tenth-section .ts-row {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap; 
    overflow-x: visible; 
}

.tenth-section .ts-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    flex-direction: row; /* Side by side layout */
    align-items: center; /* Vertically exact center */
    justify-content: flex-start;
    flex: 0 0 auto; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-height: 65px; /* Standard height fix */
}

.tenth-section .ts-number {
    color: #00a651;
    font-weight: 700;
    font-size: 14px;
    background: #e6f6ee;
    width: 38px; /* Fixed width */
    height: 38px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 15px;
    flex-shrink: 0; /* Number box kabhi chota nahi hoga */
}

.tenth-section .ts-text {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    color: #444;
    white-space: nowrap; /* Hamesha ek line */
    display: block;
    line-height: 1; /* Text ki extra height khatam karega */
}

/* Buttons Container */
.tenth-section .ts-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Image ke hisab se gap maintain kiya hai */
    margin-top: 30px;
}

/* Base Button Style */
.tenth-section .ts-btn {
    padding: 14px 32px; /* Button ki height aur width balance karne ke liye */
    border-radius: 10px; /* Exact rounded corners as per image */
    text-decoration: none;
    font-weight: 600;
    font-size: 16px; /* Font size matching the image */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 50%; /* Dono buttons ki width symmetric dikhne ke liye */
}

/* Primary Button (Our Leadership) */
.tenth-section .ts-btn-primary {
    background-color: #00a651; /* Bright green from image */
    color: #ffffff;
    border: 1px solid #00a651;
}

/* Outline Button (Book a Meeting) */
.tenth-section .ts-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff; /* White border as seen in screenshot */
}

/* Hover Effects */
.tenth-section .ts-btn-primary:hover {
    background-color: #008f45;
    border-color: #008f45;
}

.tenth-section .ts-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.tenth-section .ts-title{
    color: white;
}

.tenth-section .ts-subtitle{
    color: white;
}

/* Responsive */
@media (max-width: 1100px) {
    .tenth-section .ts-row {
        flex-wrap: wrap;
    }
    .tenth-section .ts-item {
        flex: 1 1 calc(50% - 15px);
    }
    .tenth-section .ts-text {
        white-space: normal; /* Choti screen par wrap allow karega */
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .tenth-section .ts-item {
        flex: 1 1 100%;
    }
    .tenth-section{
        padding: 25px 20px;
    }
}

/* Section Container */
.fifteenth-section {
    padding: 100px 20px;
    background-color: #ffffff; /* Outer background white */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

/* Light Grey Inner Card */
.fifteenth-section .fs-card {
    background-color: #f4f4f4; /* Off-white / Light grey background */
    border-radius: 20px;
    padding: 35px 40px;
    max-width: 1270px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

/* Title Styling */
.fifteenth-section .fs-title {
    color: #014337; /* Dark Green matching the image */
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Description Styling */
.fifteenth-section .fs-description {
    line-height: 1.8;
    margin: 0 auto 35px auto;
    opacity: 0.8;
}

/* Button Styling */
.fifteenth-section .fs-btn {
    display: inline-block;
    background-color: #009651; /* Vibrant green button */
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.fifteenth-section .fs-btn:hover {
    background-color: #017a42;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fifteenth-section .fs-card {
        padding: 40px 20px;
    }
    
    .fifteenth-section{
        padding: 40px 20px;
    }
}

/* Section Wrapper */
.thirteenth-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #333333;
}

.thirteenth-section .tr-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.thirteenth-section .tr-main-title {
    text-align: center;
    color: #014337;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0px;
}

/* Grid Layout */
.thirteenth-section .tr-content-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left Column Text */
.thirteenth-section .tr-left-col {
    flex: 1;
    min-width: 300px;
}

.thirteenth-section .tr-desc {
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555555;
}

/* Right Column Card */
.thirteenth-section .tr-right-col {
    flex: 1;
    min-width: 350px;
}

.thirteenth-section .tr-roi-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: clamp(20px, 4vw, 40px);
    border-left: 6px solid #00a651; /* Green left accent */
    position: relative;
    width: 100%;
	margin: 30px 0;
}

.thirteenth-section .tr-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.thirteenth-section .tr-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #014337;
    margin: 0;
}

.thirteenth-section .tr-badge {
    background-color: #00a651;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Checklist Styling */
.thirteenth-section .tr-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thirteenth-section .tr-checklist li {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
}

/* Checkmark Icon using CSS */
.thirteenth-section .tr-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00a651;
    font-weight: bold;
    font-size: 18px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .thirteenth-section .tr-content-grid {
        flex-direction: column;
    }
    .thirteenth-section{
    padding: 25px 20px;}
    .thirteenth-section .tr-main-title{
        margin-bottom: 0px;
    }
}

/* Container & Layout */
.fourteenth-section {
    background-color: #e6f7f4; /* Light Cyan Background */
    padding: 10px 20px;
    margin-top: 30px;
}

.fourteenth-section .fr-container {
    max-width: 1500px;
    margin: 0 auto;
}

.fourteenth-section .fr-main-title {
    color: #014337;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.fourteenth-section .fr-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left Column */
.fourteenth-section .fr-left-content {
    flex: 1.2;
    min-width: 300px;
}

.fourteenth-section .fr-sub-link {
    color: #3b82f6; /* Blue link color */
    font-size: 18px;
    margin: 0 0 20px 0;
}

.fourteenth-section .fr-text {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Inner Tech Stack Card */
.fourteenth-section .fr-tech-stack-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    border-left: 5px solid #00a651;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.fourteenth-section .fr-stack-title {
    color: #014337;
    margin: 0 0 10px 0;
}

.fourteenth-section .fr-check-list {
    list-style: none;
    padding: 0;
}

.fourteenth-section .fr-check-list li {
    font-size: 13px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.fourteenth-section .fr-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00a651;
    font-weight: bold;
}

/* Right Side Card */
.fourteenth-section .fr-right-card-area {
    flex: 0.8;
    min-width: 320px;
}

.fourteenth-section .fr-beta-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.fourteenth-section .fr-placeholder-img {
    height: 200px;
    background: #eeeeee repeating-linear-gradient(45deg, #f5f5f5, #f5f5f5 10px, #eeeeee 10px, #eeeeee 20px);
}

.fourteenth-section .fr-card-body {
    padding: 30px;
}

.fourteenth-section .fr-card-title {
    font-size: 20px;
    color: #014337;
    margin: 0 0 10px 0;
}

.fourteenth-section .fr-tech-label {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.fourteenth-section .fr-tech-val {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
}

.fourteenth-section .fr-stat-bar {
    background: #e6f7f1;
    color: #00a651;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 500;
}

/* Button */
.fourteenth-section .fr-btn-green {
    display: inline-block;
    background: #00a651;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin: 20px 0;
}

/* Mobile */
@media (max-width: 768px) {
    .fourteenth-section .fr-content-wrapper {
        flex-direction: column;
    }
    .fourteenth-section{
        padding: 25px 20px;
    }
}



.eleventh-section {
    padding: 30px 20px;
}

.eleventh-section .es-container {
    max-width: 1500px;
    margin: 0 auto;
}

.eleventh-section .es-main-title {
    color: #014337;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 50px;
}

.eleventh-section .es-section-title {
    text-align: center;
    color: #014337;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Top Layout */
.eleventh-section .es-top-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.eleventh-section .es-info-text {
    flex: 2;
}

.eleventh-section .es-info-text p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.eleventh-section .es-calculator-card {
    flex: 3;
    background: #ffffff;
    border-radius: 15px;
    min-height: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 30px;
}

.eleventh-section .es-calc-title {
    color: #014337;
    font-size: 18px;
    font-weight: 700;
	margin: 0 0 10px 0;
}

/* Cost Factors Grid */
.eleventh-section .es-factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.eleventh-section .es-factor-item {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.eleventh-section .es-icon {
    background: #e6f6ee;
    padding: 10px;
    border-radius: 8px;
    font-size: 20px;
}

.eleventh-section .es-factor-item p {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: #444;
}

/* Timeline Layout */
.eleventh-section .es-timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    padding-top: 20px;
	gap: 20px;
}

.eleventh-section .es-timeline-row::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f0f0f0;
    z-index: 1;
}

.eleventh-section .es-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eleventh-section .es-step-num {
    background: #00a651;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 25px;
}

.eleventh-section .es-step-box {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    width: fit-content;
    color: #444;
    line-height: 1.5;
    display: flex;
    flex-direction: column;   /* 🔥 important */
}

.es-step-box strong {
  margin: 0;
}
    
/* Responsive */
@media (max-width: 991px) {
    .eleventh-section .es-factors-grid { grid-template-columns: 1fr 1fr; }
    .eleventh-section .es-top-flex { flex-direction: column; }
}

@media (max-width: 768px) {
    .eleventh-section .es-factors-grid { grid-template-columns: 1fr; margin-bottom: 40px; }
    .eleventh-section .es-timeline-row { flex-direction: column; gap: 30px; }
    .eleventh-section .es-timeline-row::before { display: none; }
    .eleventh-section{
        padding: 25px 20px;
    }
    .eleventh-section .es-main-title
    {
        margin-bottom: 0px;
    }
    .eleventh-section .es-section-title{
        margin-bottom: 25px;
    }
}


.tabled-new-section {
    background-color: #f9f9f9; /* Light grey background as per image */
    padding: 50px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.tabled-new-section .tn-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabled-new-section .tn-title {
    color: #014337; /* Dark Teal/Green */
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.tabled-new-section .tn-subtitle {
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

/* Large White Card */
.tabled-new-section .tn-main-card {
    background-color: #ffffff;
    border-radius: 12px;
    min-height: 450px; /* Large height as seen in layout */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    width: 100%;
}

/* Summary Box with Side Border */
.tabled-new-section .tn-summary-wrapper {
    display: flex;
    justify-content: center;
}

.tabled-new-section .tn-summary-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px 40px;
    max-width: 600px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #00a651; /* Green accent border */
    position: relative;
}

.tabled-new-section .tn-summary-title {
    color: #014337;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    margin: unset;
}

.tabled-new-section .tn-summary-text {
    color: #444444;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .tabled-new-section {
        padding: 25px 15px;
    }
    
}

@media (max-width: 768px) {
    .second-section-main {
        padding: 20px 0;
    }
    .second-section-title{
        margin-bottom: unset;
    }
    .third-section{
        padding: 25px 20px;
    }
    .demo-title{
        line-height: 40px;
    }
    .first-section-main{
        padding: 25px 0;
    }
}
.page-landscape{
    display: flex;
    justify-content: center;
    margin: 0 auto;
  width: 80%;
    max-width: 1140px;
}

.page-box-img{
    position: relative;
    border: 2px solid #9e9e9e;
    border-radius: 15px;
    height: auto;
    display: block;
    object-fit: contain;
}

.ecs-container {
        max-width: 1000px;
        margin: 30px auto;
        padding: 0 20px;
    }

    /* ==================================================
       EXPERTISE CREDIBILITY STRIP
       ================================================== */
    .ecs-credibility-strip {    
        background-color: white;
        border-radius: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 3rem 0;
        margin-bottom: 2.5rem;
        box-shadow: 0 10px 30px rgba(11, 28, 44, 0.15);
    }

    .ecs-stat-block {
        flex: 1;
        text-align: center;
        padding: 0 20px;
        border-right: 1px solid rgba(20, 184, 166, 0.3); 
    }

    .ecs-stat-block:last-child {
        border-right: none;
    }

    .ecs-stat-value-container {
        display: flex;
        justify-content: center;
        align-items: baseline;
        margin-bottom: 0.5rem;
        color: #00a651;
        font-weight: 700;
        font-size: 2.75rem;
        line-height: 1;
    }

    .ecs-counter {
        display: inline-block;
    }

    .ecs-suffix {
        font-size: 1.5rem;
        margin-left: 4px;
        font-weight: 600;
    }

    .ecs-stat-label {
        color: #00a651;
        font-size: 0.80rem;
        font-weight: 500;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        opacity: 0.9;
    }

    /* Responsive Design for Mobile */
    @media (max-width: 768px) {
        .ecs-credibility-strip {
            flex-direction: column;
            padding: 2rem 0;
        }

        .ecs-stat-block {
            width: 100%;
            border-right: none;
            border-bottom: 1px solid rgba(20, 184, 166, 0.3);
            padding: 2rem 0;
        }

        .ecs-stat-block:last-child {
            border-bottom: none;
        }
    }

    .dlop-section {
  padding: 60px 20px;
  background: #f5f7f6;
  font-family: Arial, sans-serif;
}

.dlop-container {
  max-width: 1200px;
  margin: auto;
}

.dlop-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.dlop-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.dlop-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  background: #e5e5e5;
  cursor: pointer;
}

.dlop-btn.active {
  background: #0b7d4f;
  color: white;
}

.dlop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.dlop-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.dlop-img {
  position: relative;
}

.dlop-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.dlop-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0b7d4f;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

.dlop-content {
  padding: 20px;
}

.dlop-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.dlop-label {
  font-size: 12px;
  font-weight: bold;
  color: #0b7d4f;
  margin-top: 10px;
}

.dlop-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.dlop-tags {
  margin-top: 15px;
}

.dlop-tags span {
  display: block;
  background: #e6f4ee;
  color: #0b7d4f;
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 5px;
  font-size: 13px;
}

.dlop-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 13px;
}

.dlop-footer a {
  color: #0b7d4f;
  text-decoration: none;
  font-weight: bold;
}

.dlop-cta {
  text-align: center;
  margin-top: 40px;
}

.dlop-cta button {
  background: #0b7d4f;
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .dlop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dlop-grid {
    grid-template-columns: 1fr;
  }
}

.ict-wrapper {
  color: #333;
  line-height: 1.6;
  margin: 0 auto;
}

.ict-intro-section h2 {
  margin-bottom: 1rem;
}

.ict-intro-section p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Hide Radios entirely */
input[name="ict_audience_tab"] {
  display: none;
}

/* Pills Container */
.ict-toggle-pills {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 2rem 0;
  background: #f4f6f9;
  padding: 10px;
  border-radius: 50px;
}

/* Individual Pill */
.ict-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 40px;
  background-color: transparent;
  color: #6c757d;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  user-select: none;
}

.ict-pill svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: fill 0.3s ease;
}

/* Hover State for Inactive Pills */
.ict-pill:hover {
  background-color: #e9ecef;
  color: #495057;
}

/* Active State Logic via CSS + Sibling Selector */
#ict-tab-fleet:checked ~ .ict-toggle-pills label[for="ict-tab-fleet"],
#ict-tab-service:checked ~ .ict-toggle-pills label[for="ict-tab-service"],
#ict-tab-it:checked ~ .ict-toggle-pills label[for="ict-tab-it"] {
  background-color: #024430;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(11, 46, 89, 0.2);
}

#ict-tab-fleet:checked ~ .ict-toggle-pills label[for="ict-tab-fleet"] svg,
#ict-tab-service:checked ~ .ict-toggle-pills label[for="ict-tab-service"] svg,
#ict-tab-it:checked ~ .ict-toggle-pills label[for="ict-tab-it"] svg {
  fill: #ffffff;
}

/* Panel Containers */
.ict-panels-container {
  background: #ffffff;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.ict-panel {
  display: none;
  animation: fadeUp 0.4s ease forwards;
}

/* Show Panel based on checked radio */
#ict-tab-fleet:checked ~ .ict-panels-container #ict-panel-fleet,
#ict-tab-service:checked ~ .ict-panels-container #ict-panel-service,
#ict-tab-it:checked ~ .ict-panels-container #ict-panel-it {
  display: block;
}

/* Panel Internal Styling */
.ict-panel h3 {
  margin-top: 0;
  border-bottom: 2px solid #eef0f3;
  padding-bottom: 10px;
}

.ict-panel h4 {
  margin-top: 1.5rem;
  color: #2b3a4a;
}

.ict-panel ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.ict-panel li {
  margin-bottom: 0.5rem;
}

/* Infographic Callout Placeholder */
.ict-infographic-placeholder {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  color: #64748b;
  text-align: center;
  padding: 2rem 1rem;
  margin: 1.5rem 0;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Smooth entry animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive: Collapse to "Dropdown" layout on Mobile */
@media (max-width: 768px) {
  .ict-toggle-pills {
    flex-direction: column;
    border-radius: 12px;
    gap: 5px;
  }
  
  .ict-pill {
    border-radius: 8px;
    justify-content: flex-start;
    padding: 15px 20px;
  }

  .ict-panels-container {
    padding: 1.5rem;
  }
}



.tms-label-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
    color: #1a4d3a;
    font-weight: 500;
}

.tms-label-content span {
    font-size: 1.4em;
    flex-shrink: 0;
}

.tms-counter-display {
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    color: #1a4d3a;
}

.tms-cta-container {
    display: none;
    margin-top: 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tms-cta-container.visible {
    display: block;
    opacity: 1;
}

.tms-cta-callout {
    font-size: 1.2em;
    color: #fff;
    font-weight: 600;
    background-color: #0d3b30;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tms-cta-button {
    display: inline-block;
    background-color: #8ac0ac;
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tms-cta-button:hover {
    background-color: #1a4d3a;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.zkp-pipeline-wrapper {
  background-color: #0A192F;
  padding: 3rem 1.5rem;
  border-radius: 12px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.zkp-pipeline-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.zkp-node {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(20px);
  animation: zkpFadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--delay);
}

.zkp-node.zkp-accent {
  background: #00E5FF;
  border-color: #00E5FF;
  color: #0A192F;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  position: relative;
}

.zkp-arrow {
  color: rgba(255, 255, 255, 0.3);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: zkpFadeIn 0.4s ease forwards;
  animation-delay: var(--delay);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, filter 0.3s ease;
}

.zkp-arrow svg {
  width: 100%;
  height: 100%;
}

.zkp-arrow:hover {
  color: #00E5FF;
  transform: scale(1.35);
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
}

@keyframes zkpFadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zkpFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media (max-width: 850px) {
  .zkp-pipeline-container {
    flex-direction: column;
    gap: 8px;
    padding: 1rem 0;
  }

  .zkp-node {
    width: 200px;
    text-align: center;
  }

  .zkp-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }

  .zkp-arrow:hover {
    transform: rotate(90deg) scale(1.35);
  }
}

/* Container */
.nx-co-dev-columns {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Divider line in middle */
.nx-co-dev-columns::after {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 50%;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
    z-index: 10;
}

/* Left panel */
.nx-panel-offload {
    background-color: #182F5B; /* Dark Navy */
    color: #fff;
    flex: 1;
    padding: 3rem 3rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* Right panel */
.nx-panel-enable {
    background-color: #E6FAFF; /* Light pastel cyan */
    color: #0B3948; /* Dark teal/navy */
    flex: 1;
    padding: 3rem 3rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* Icon backgrounds */
.nx-co-dev-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.nx-panel-offload .nx-co-dev-icon {
    background-color: rgba(24, 47, 91, 0.3); /* Slightly transparent dark navy */
    color: #A0B2D8;
}

.nx-panel-enable .nx-co-dev-icon {
    background-color: rgba(0, 184, 217, 0.15); /* Light teal pastel */
    color: #00B8D9;
}

/* Icon SVG size */
.nx-co-dev-icon svg {
    width: 28px;
    height: 28px;
}

/* Title styling */
.nx-co-dev-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* List styles */
.nx-co-dev-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: inherit;
}

.nx-panel-offload .nx-co-dev-list li::before {
    content: '✓';
    margin-right: 0.5rem;
    color: #A0B2D8;
    font-weight: bold;
}

.nx-panel-enable .nx-co-dev-list li::before {
    content: '✦';
    margin-right: 0.5rem;
    color: #00B8D9;
    font-size: 1.2rem;
    position: relative;
    top: 2px;
}

/* Footer with timeline */
.nx-co-dev-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nx-timeline-motif {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.nx-timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00B8D9;
    box-shadow: 0 0 0 5px rgba(0, 184, 217, 0.15);
}

.nx-timeline-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00B8D9, transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .nx-co-dev-columns {
        flex-direction: column;
    }
    
    .nx-co-dev-columns::after {
        display: none;
    }
    
    .nx-panel-offload,
    .nx-panel-enable {
        padding: 2rem 2rem;
    }
    
    .nx-co-dev-footer {
        margin-top: 2rem;
        font-size: 0.85rem;
    }
}

.caseSt-ctaContainer {
  text-align: center;
  margin-top: 40px;
}

.caseSt-primaryBtn {
  display: inline-block;
  background-color: #0f7a3a;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Segoe UI", sans-serif;
  transition: all 0.3s ease;
}

/* hover */
.caseSt-primaryBtn:hover {
  background-color: #0c6530;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* active/click */
.caseSt-primaryBtn:active {
  transform: scale(0.98);
}

.tms-section {
    padding: 60px 0;
}

/* CARD STYLE (same as right side in image) */
.tms-card {
    background: #f7f9fb;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e3e6ea;
}

.t-page-landscape {
    display: flex;
    width: 67%;
    justify-content: center;
    margin: 0 auto;
}

.t-page-box-img {
    position: relative;
    border: 2px solid #9e9e9e;
    border-radius: 15px;
    box-shadow: 0 0 5px #9e9e9e, 0 0 10px #7d7d7d, 0 0 15px #6e6e6e, 0 4px 8px rgba(0, 0, 0, .4);
    transition: all 0.3s ease;
    max-width: 95%;
    height: auto;
    display: block;
    object-fit: contain;
  margin: 0 0 25px 0;
}

.fifth-section .ts-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Image ke hisab se gap maintain kiya hai */
    margin-top: 30px;
}

.fifth-section .ts-btn-primary {
    background-color: #00a651; /* Bright green from image */
    color: #ffffff;
    border: 1px solid #00a651;
}

.fifth-section .ts-btn-primary:hover {
    background-color: #008f45;
    border-color: #008f45;
}

.fifth-section .ts-btn {
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.first-section-main .ts-buttons {
    display: flex;
    gap: 20px; /* Image ke hisab se gap maintain kiya hai */
    margin-top: 30px;
}

.first-section-main .ts-btn-primary {
    background-color: #00a651; /* Bright green from image */
    color: #ffffff;
    border: 1px solid #00a651;
}

.first-section-main .ts-btn-primary:hover {
    background-color: #008f45;
    border-color: #008f45;
}

.first-section-main .ts-btn {
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

/* Mobile */
@media (max-width: 768px) {
    .first-section-main .ts-btn {
        display: flex;
        margin: 0 auto;
    }
}
/* Button Styling */
.dlop-section .fs-btn {
    display: inline-block;
    background-color: #009651; /* Vibrant green button */
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.dlop-section .fs-btn:hover {
    background-color: #017a42;
}

.dlop-section .fs-action{
  text-align: center;
    margin-top: 20px;
}
  
.left-col-2 {
  flex: 2;
}
  
.right-col-3 {
  flex: 3;
}

/* Interactive Checklist CSS */
    /* Progress Bar */
    .tms-card {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        max-width: 650px;
        width: 100%;
        border: 1px solid #e2e8f0;
    }

    .tms-card h3 {
        margin: 0 0 10px 0;
        color: #0f172a;
        font-size: 1.4rem;
}

    .tms-card p {
        color: #64748b;
        font-size: 0.95rem;
        margin: 0 0 10px 0;
        line-height: 1.5;
    }

    /* Progress Bar */
    .progress-container {
        width: 100%;
        height: 8px;
        background-color: #f3f4f6;
        /* neutral-light */
        border-radius: 10px;
        margin-bottom: 20px;
        overflow: hidden;
    }

    .progress-fill {
        height: 100%;
        width: 0%;
        background-color: #10b981;
        /* primary-color */
        border-radius: 10px;
        transition: width 0.4s ease, background-color 0.4s ease;
    }

    /* Dynamic Status Banner */
    .status-banner {
        padding: 15px 20px;
        border-radius: 8px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        background-color: #f3f4f6;
        /* neutral-light */
        color: #6b7280;
        /* neutral-color */
        border: 1px solid #e5e7eb;
        /* border-color */
    }

    .status-banner.ready {
        background-color: #ecfdf5;
        color: #059669;
        /* primary-dark */
        border-color: #a7f3d0;
    }

    /* List Items & Toggles */
    .checklist-items {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .check-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        background-color: #fff;
        border: 1px solid #e5e7eb;
        /* border-color */
        border-radius: 8px;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .check-item:hover {
        border-color: #9ca3af;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }

    .check-item.active {
        border-color: #10b981;
        /* primary-color */
        background-color: #f8fafc;
    }

    .item-text {
        font-size: 1rem;
        font-weight: 500;
        padding-right: 20px;
        flex: 1;
        line-height: 1.4;
    }

    /* Custom Toggle Switch CSS */
    .toggle-switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 28px;
        flex-shrink: 0;
    }

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #d1d5db;
        /* toggle-bg */
        transition: .4s;
        border-radius: 34px;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    input:checked+.slider {
        background-color: #10b981;
        /* primary-color */
    }

    input:checked+.slider:before {
        transform: translateX(22px);
    }

    /* CTA Button */
    .cta-container {
        margin-top: 35px;
        text-align: center;
        display: none;
        /* Hidden by default */
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .cta-container.visible {
        display: block;
        opacity: 1;
        animation: slideUp 0.4s ease forwards;
}

    .btn-submit {
        background-color: #10b981;
        /* primary-color */
        color: white;
        border: none;
        padding: 16px 36px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.2s, transform 0.1s;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        width: 100%;
    }

    .btn-submit:hover {
        background-color: #059669;
        /* primary-dark */
        transform: translateY(-2px);
    }

    @keyframes slideUp {
        from {
            transform: translateY(10px);
        }

        to {
            transform: translateY(0);
        }
    }

    /* Mobile Responsiveness */
    @media (max-width: 600px) {
        .check-item {
            padding: 15px;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .toggle-switch {
            align-self: flex-end;
        }

        .item-text {
            padding-right: 0;
        }
    }

.p-architecture-card {
    width: 100%;
}

.p-architecture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.p-architecture-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);

    display: flex;
    align-items: center;   /* vertical center */
    gap: 10px;             /* icon aur text ke beech space */
    text-align: left;
}

/* Tablet */
@media (max-width: 1024px) {
    .p-architecture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .p-architecture-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* START: Cascading Cards Effect (Horizontal in desktop, vertical in mobile) */
.ic-acc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ic-acc-container ul {
    margin: 0 0 0 30px;
}

/* === Common Elements === */
.ic-acc-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #135C58;
    opacity: 0.5;
    line-height: 1;
    transition: opacity 0.4s ease, color 0.4s ease;
}

/* * UNIVERSAL HEADING STYLES 
 * Targets all H1-H6 tags inside the card, 
 * <strong> tags acting as paragraph leads,
 * and a fallback class.
 */
.ic-acc-wrapper :is(h1, h2, h3, h4, h5, h6, .ic-acc-inner > p:first-child > strong, .ic-acc-heading-text) {
    font-size: 1.25rem !important;
    font-weight: 700;
    color: #0F4C45;
    margin: 0 0 8px 0;
    display: block; /* Forces inline tags to stack cleanly */
    line-height: 1.3;
    word-wrap: break-word !important;
    overflow-wrap: break-word;
}

.ic-acc-wrapper p {
    font-size: 0.95rem;
    font-weight: 400;
    color: #135C58;
    margin: 0;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* =========================================
    DESKTOP VIEW: HORIZONTAL CASCADE (> 1024px)
   ========================================= */
@media (min-width: 1025px) {
    .ic-acc-wrapper {
        display: flex;
        gap: 15px;
        width: 100%;
        align-items: stretch;
    }

    .ic-acc-card {
        flex: 1; 
        background: #FFFFFF;
        border: 1px solid rgba(15, 76, 69, 0.15);
        border-radius: 16px;
        overflow: hidden;
        padding: 30px 20px;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
    }

    .ic-acc-tab {
        min-width: 45px;
        display: flex;
    }

    .ic-acc-inner {
        width: 100%; 
        min-width: 250px; 
        display: flex;
        flex-direction: column;
        opacity: 0;
        height: 0; /* [FIXED] Removes the physical height of invisible text */
        overflow: hidden; /* [FIXED] Prevents ghost text from expanding the card */
        pointer-events: none; /* Stops hidden links from being clicked */
        transform: translateX(-15px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Desktop Active State (Driven by JS logic now) */
    .ic-acc-card.active {
        flex: 6; 
        border-color: #00A651;
        box-shadow: 0 15px 35px rgba(0, 166, 81, 0.1);
    }

    .ic-acc-card.active .ic-acc-num {
        opacity: 1;
        color: #00A651;
    }

    .ic-acc-card.active .ic-acc-inner {
        opacity: 1;
        height: auto; /* [FIXED] The active card dictates the new row height */
        overflow: visible; /* Allows the text to slide in smoothly */
        pointer-events: auto;
        transform: translateX(0);
        transition: opacity 0.5s ease 0.1s, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
    }
}

/* =========================================
    TABLET & MOBILE VIEW: SPLIT-PANE TABS (<= 1024px)
   ========================================= */
@media (max-width: 1024px) {
    .ic-acc-wrapper {
        display: grid;
        grid-template-columns: 65px minmax(0, 1fr);
        gap: 10px 20px;
        position: relative;
    }

    .ic-acc-card {
        display: contents; /* Allows children to flow naturally into the grid */
    }

    .ic-acc-tab {
        grid-column: 1; /* Automatically stacks sequentially */
        height: 60px;
        background: #FFFFFF;
        border-left: 1px solid rgba(15, 76, 69, 0.15);
        border-right: 1px solid rgba(15, 76, 69, 0.15);
        border-bottom: 1px solid rgba(15, 76, 69, 0.08);
        align-self: start;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }

    /* Dynamic Border Radius (Replaces the 1 through 7 hardcoded limits) */
    .ic-acc-card:first-child .ic-acc-tab {
        border-top: 1px solid rgba(15, 76, 69, 0.15);
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .ic-acc-card:last-child .ic-acc-tab {
        border-bottom: 1px solid rgba(15, 76, 69, 0.15);
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    /* Active Tab Styles */
    .ic-acc-card.active .ic-acc-tab {
        background: #0F4C45;
        border-color: #0F4C45;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .ic-acc-card.active .ic-acc-num {
        color: #FFFFFF;
        opacity: 1;
    }

    .ic-acc-card.active .ic-acc-tab::after {
        content: '';
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: #0F4C45;
        z-index: 10;
        border-radius: 2px;
    }

    .ic-acc-inner {
        grid-column: 2; /* Automatically pairs beside its respective tab */
        width: 100%;
        background: #FFFFFF;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        max-height: 0;
        opacity: 0;
        padding: 0 25px;
        overflow: hidden;
        border: 1px solid transparent;
        transform: translateX(10px);
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
    }

    .ic-acc-card.active .ic-acc-inner {
        max-height: 800px;
        opacity: 1;
        padding: 25px;
        border-color: #00A651;
        box-shadow: 0 10px 30px rgba(0, 166, 81, 0.1);
        transform: translateX(0);
        margin-bottom: 8px;
    }
}

/* Extra safety for very small phones */
@media (max-width: 400px) {
    .ic-acc-wrapper {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 10px;
    }

    .ic-acc-inner {
        padding: 20px;
    }

    .ic-acc-wrapper p {
        font-size: 0.9rem;
    }
}
/* END: Cascading Cards Effect (Horizontal in desktop, vertical in mobile) */

/* new css without parent Added By Divya 15-4-2026 */

/* White Card Area */
.ts-card-wrapper {
  display: grid;
  gap: 15px;
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: clamp(20px, 4vw, 40px);
    text-align: left;
    color: #014337;
    margin-bottom: 40px;
    border-top: 10px solid #00a651;
}

.ts-group-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* Row & Grid Items - Fixed for Perfect Alignment */
.ts-row {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap; 
    overflow-x: visible; 
}

.ts-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    flex-direction: row; /* Side by side layout */
    align-items: center; /* Vertically exact center */
    justify-content: flex-start;
    flex: 0 0 auto; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-height: 65px; /* Standard height fix */
}

.ts-number {
    color: #00a651;
    font-weight: 700;
    font-size: 14px;
    background: #e6f6ee;
    width: 38px; /* Fixed width */
    height: 38px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 15px;
    flex-shrink: 0; /* Number box kabhi chota nahi hoga */
}

 .ts-text {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    color: #444;
    white-space: nowrap; /* Hamesha ek line */
    display: block;
    line-height: 1; /* Text ki extra height khatam karega */
}

/* Buttons Container */
.ts-buttons {
    display: flex;
/*     justify-content: center; */
    gap: 20px; /* Image ke hisab se gap maintain kiya hai */
    margin-top: 30px;
}

/* Base Button Style */
.ts-btn {
    padding: 14px 32px; /* Button ki height aur width balance karne ke liye */
    border-radius: 10px; /* Exact rounded corners as per image */
    text-decoration: none;
    font-weight: 600;
    font-size: 16px; /* Font size matching the image */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 50%; /* Dono buttons ki width symmetric dikhne ke liye */
}

/* Primary Button (Our Leadership) */
.ts-btn-primary {
    background-color: #00a651; /* Bright green from image */
    color: #ffffff;
    border: 1px solid #00a651;
}

/* Outline Button (Book a Meeting) */
.ts-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff; /* White border as seen in screenshot */
}

/* Hover Effects */
.ts-btn-primary:hover {
    background-color: #008f45;
    border-color: #008f45;
}

.ts-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ts-title{
    color: white;
}

.ts-subtitle{
    color: white;
}

/* Responsive */
@media (max-width: 1100px) {
   .ts-row {
        flex-wrap: wrap;
    }
    .ts-item {
        flex: 1 1 calc(50% - 15px);
    }
    .ts-text {
        white-space: normal; /* Choti screen par wrap allow karega */
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .ts-item {
        flex: 1 1 100%;
    }
}


/* Benefits Grid (Bottom Cards) */
.benefits-grid {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
}

.benefit-card {
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    border-radius: 12px;
    min-height: 100px;
    text-align: left;
}

.benefit-card p {
    margin: 0;
    font-size: 14px;
    color: #2c4e44;
    font-weight: 500;
    line-height: 1.4;
}

.icon-box {
    background: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Benefit Colors */
.card-blue { background-color: #e0f2f7; }
 .card-purple { background-color: #f0ebff; }
 .card-orange { background-color: #fff0e0; }

/* Mobile View */
@media (max-width: 600px) {
     .benefit-card {
        width: 100%;
    }
}
@media (max-width: 991px) {
    .integration-grid, 
    .benefits-grid {
        flex-direction: column;
    }
    .eighth-section{
        padding: 25px 20px;
    }
    .benefits-title{
        margin-top: 0px;
    }
}


.pain-points-card {
    background-color: #f4f7f6;
    border-top: 8px solid #00a651;
    padding: clamp(20px, 4vw, 40px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.pain-points-card h3 {
    font-size: 22px;
    color: #1a4d33;
    margin: 0 0 20px 0;
}

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

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

/* Green Checkmarks */
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #00a651;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive for Mobile */
@media (max-width: 991px) {
    .content-grid {
        flex-direction: column;
    }
    .fourth-section {
    padding: 25px 0;}
}

/* White Box Container with Green Top Border */
.flexibility-box {
    background: #ffffff;
    border-top: 6px solid #00a651;
    border-radius: 12px;
    padding: clamp(20px, 4vw, 40px);
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
}

.box-title {
    font-size: 20px;
    color: #1a3c34;
    margin-bottom: 30px;
    font-weight: 700;
    margin: unset;
    padding-bottom: 15px;
}

/* Grid Layout */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 0 15px 0;
}

/* Individual Grid Items */
.grid-item {
    background-color: #f4f7f6; /* Very light grey */
    padding: 20px;
    border-radius: 8px;
    font-size: 13.5px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/* Numbering inside items */
.grid-item span {
    color: #00a651;
    font-weight: 700;
    font-size: 15px;
}

/* Responsive for Mobile */
@media (max-width: 991px) {
    .grid-3-col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .grid-3-col {
        grid-template-columns: 1fr;
    }
    
    .nineth-section {
        padding: 25px 20px;
    }
}


/* Cost Factors Grid */
.es-factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.es-factor-item {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.es-icon {
    background: #e6f6ee;
    padding: 10px;
    border-radius: 8px;
    font-size: 20px;
}

.es-factor-item p {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: #444;
}


/* For Custom Widget of How Our Modern Fleet Management System Can Remove The Growth Bottleneck of Your T&L Business */

  /* Scoped Variables */
  .fleet-module-widget {
    /* Light Mode Colors */
    --surface-color: #fff !important;
    --secondary-surface: #f1f3f5 !important;
    --text-color: #1a202c !important;
    --secondary-text-color: #6a6e7c !important;
    --border-color: #e2e8f0 !important;

    /* Category Colors */
    --blue: #378ADD !important;
    --blue-bg: #E6F1FB !important;
    --blue-text: #0C447C !important;

    --amber: #BA7517 !important;
    --amber-bg: #FCF3E5 !important;
    --amber-text: #BA7517 !important;

    --red: #E24B4A !important;
    --red-bg: #FCEBEA !important;
    --red-text: #E24B4A !important;

    --green: #1D9E75 !important;
    --green-bg: #E9F6F1 !important;
    --green-text: #1D9E75 !important;

    /* Styling Constants */
    --border-radius-pill: 20px !important;
    --border-radius-panel: 12px !important;
    --font-family: 'Inter', sans-serif !important;

    /* Widget Base Styling */
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    font-family: var(--font-family) !important;
    color: var(--text-color) !important;
  }

  /* Dark Mode Support Scoped to Widget */
  @media (prefers-color-scheme: dark) {
    .fleet-module-widget {
      --surface-color: #2d3748 !important;
      --secondary-surface: #4a5568 !important;
      --text-color: #f7fafc !important;
      --secondary-text-color: #cbd5e0 !important;
      --border-color: #4a5568 !important;

      --blue-bg: #0C447C !important;
      --blue-text: #B5D4F4 !important;
      --amber-bg: #BA7517 !important;
      --amber-text: #FBEBD4 !important;
      --red-bg: #E24B4A !important;
      --red-text: #FDE8E8 !important;
      --green-bg: #1D9E75 !important;
      --green-text: #DFF9F1 !important;
    }
  }

  /* Scoped Elements */
  .fleet-module-widget .legend {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
    color: var(--secondary-text-color) !important;
    font-size: 12px !important;
  }

  .fleet-module-widget .legend-item {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
  }

  .fleet-module-widget .grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 24px !important;
  }

  .fleet-module-widget .btn {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    background-color: var(--surface-color) !important;
    border: 0.5px solid var(--border-color) !important;
    border-radius: var(--border-radius-pill) !important;
    color: var(--secondary-text-color) !important;
    cursor: pointer !important;
    font-size: 13px !important;
    padding: 8px 14px !important;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s !important;
  }

  .fleet-module-widget .btn:hover {
    background-color: var(--secondary-surface) !important;
  }

  .fleet-module-widget .btn.active {
    background-color: var(--bg-cat-tint) !important;
    border-color: var(--cat-accent) !important;
    border-width: 1.5px !important;
    color: var(--cat-text) !important;
    font-weight: 500 !important;
  }

  .fleet-module-widget .dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: var(--dot-cat) !important;
  }

  .fleet-module-widget .panel {
    background-color: var(--surface-color) !important;
    border: 0.5px solid var(--border-color) !important;
    border-radius: var(--border-radius-panel) !important;
    padding: 20px 24px !important;
    min-height: 160px !important;
    display: flex !important;
    flex-direction: column !important;
    transition: opacity 180ms !important;
  }

  .fleet-module-widget .panel.fading {
    opacity: 0 !important;
  }

  .fleet-module-widget .placeholder {
    text-align: center !important;
    color: var(--secondary-text-color) !important;
    margin: auto !important;
  }

  .fleet-module-widget .header-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
  }

  /* Target Heading strictly through the panel */
    .fleet-module-widget .panel h2,
    .fleet-module-widget .panel h3 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: var(--text-color) !important;
  }

  /* Target P tags strictly through the panel */
  .fleet-module-widget .panel p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: var(--secondary-text-color) !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
  }

  .fleet-module-widget .badge {
    display: inline-flex !important;
    background-color: var(--bg-cat-tint) !important;
    color: var(--cat-text) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    border-radius: var(--border-radius-pill) !important;
    padding: 4px 10px !important;
  }

  .fleet-module-widget .tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .fleet-module-widget .tag {
    background-color: var(--secondary-surface) !important;
    border: 0.5px solid var(--border-color) !important;
    border-radius: var(--border-radius-pill) !important;
    color: var(--secondary-text-color) !important;
    font-size: 12px !important;
    padding: 4px 10px !important;
  }

  /* === How iCommuneTech Offloads Section === */

    .how-ic-heading {
        text-align: center !important;
        font-size: 2rem !important;
        font-weight: 700 !important;
        margin-bottom: 50px !important;
        line-height: 1.3 !important;
        color: #ffffff !important;
    }

    .how-ic-container {
        max-width: 1200px !important;
        margin: 0 auto !important;
    }

    /* === Interactive Stats Row === */
    .how-ic-stats-wrapper {
        display: flex !important;
        justify-content: center !important;
        gap: 40px !important;
        margin-bottom: 60px !important;
        flex-wrap: wrap !important;
    }

    .how-ic-stat-box {
        text-align: center !important;
        padding: 20px 30px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 12px !important;
        border-bottom: 3px solid transparent !important;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
        min-width: 200px !important;
    }

    .how-ic-stat-box:hover {
        transform: translateY(-8px) !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-bottom: 3px solid #00a651 !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    }

    .how-ic-stat-num {
        line-height: 4rem !important;
        display: block !important;
        font-size: 3rem !important;
        font-weight: 800 !important;
        color: #00a651 !important;
        margin-bottom: 5px !important;
    }

    .how-ic-stat-text {
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        color: #e0e0e0 !important;
    }

    /* === Content Grid (Cards) === */
    .how-ic-content-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
        margin-bottom: 50px !important;
    }

    .how-ic-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 40px !important;
        border-radius: 16px !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }

    .how-ic-card:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25) !important;
        border: 1px solid rgba(0, 166, 81, 0.3) !important;
    }

    .how-ic-card h3,
     .how-ic-card strong {
        font-size: 1.5rem !important;
        margin-top: 0 !important;
        margin-bottom: 25px !important;
        color: #ffffff !important;
        border-left: 4px solid #00a651 !important;
        padding-left: 15px !important;
    }

    .how-ic-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .how-ic-list li {
        position: relative !important;
        padding-left: 30px !important;
        margin-bottom: 15px !important;
        font-size: 1.1rem !important;
        color: #d1d5db !important;
        line-height: 1.5 !important;
        transition: color 0.2s ease !important;
    }

    .how-ic-list li:hover {
        color: #ffffff !important;
    }

    /* Custom Checkmark */
    .how-ic-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 0;
        color: #00a651 !important;
        font-weight: bold !important;
        font-size: 1.2rem !important;
    }

    .how-ic-subtext {
        margin-top: 25px !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-style: italic !important;
        color: #a7f3d0 !important;
        line-height: 1.6 !important;
    }

    /* === Call To Action === */
    .how-ic-cta-group {
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
        margin-top: 20px !important;
    }

    .how-ic-btn {
        display: inline-block !important;
        padding: 14px 32px !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        font-size: 1.1rem !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }

    .how-ic-btn-solid {
        background-color: #00a651 !important;
        color: #ffffff !important;
        border: 2px solid #00a651 !important;
    }

    .how-ic-btn-solid:hover {
        background-color: #008b44 !important;
        border-color: #008b44 !important;
        transform: scale(1.05) !important;
        color: #ffffff !important;
    }

    .how-ic-btn-outline {
        background-color: transparent !important;
        color: #ffffff !important;
        border: 2px solid #ffffff !important;
    }

    .how-ic-btn-outline:hover {
        background-color: #ffffff !important;
        color: #0b4a35 !important;
        transform: scale(1.05) !important;
    }

    /* === Responsive Design === */
    @media (max-width: 768px) {
        .how-ic-content-grid {
            grid-template-columns: 1fr !important;
        }

        .how-ic-cta-group {
            flex-direction: column !important;
            align-items: center !important;
        }

        .how-ic-btn {
            width: 100% !important;
            text-align: center !important;
            max-width: 300px !important;
        }
    }
  /* === How iCommuneTech Offloads Section end === */

/* Code Added By Divya 29-4-2026*/

/* Evaluating Inventory Management Software section Start */
.ict-static-layout {
    background-color: #024430; /* Deep Background */
    color: #FFFFFF;
    padding: clamp(0rem, 5vw, 2rem) 20px;
    border-left: 6px solid #00A651; /* Accent Green */
    border-radius: 4px;
    font-family: inherit;
}

.ict-static-layout h2 {
    color: #FFFFFF;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Emphasize the intro text */
.ict-static-layout .ict-lead {
    color: #00A651; /* Accent Green */
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 clamp(2rem, 4vw, 3rem) 0;
    max-width: 85ch;
}

/* Fluid intrinsic grid for the dense paragraphs */
.ict-static-layout .ict-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 30vw, 350px), 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ict-static-layout .ict-panel {
    background-color: #0F4C45; /* Primary Dark */
    border: 1px solid #135C58; /* Secondary Teal */
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.ict-static-layout .ict-panel p {
    color: #FFFFFF;
    opacity: 0.9;
    margin: 0;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
}

/* Callout styling for the conclusion */
.ict-static-layout .ict-footer-note {
    background-color: #135C58; /* Secondary Teal */
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: 6px;
    border-left: 4px solid #00A651; /* Accent Green */
}

.ict-static-layout .ict-footer-note p {
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    font-weight: 600;
}
/* Evaluating Inventory Management Software section End */

/* Advanced Inventory Controls Section Start */
.ict-bento-grid {
    background-color: #024430; /* Deep Background */
    padding: 1px 20px 32px 20px;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ict-bento-grid .ict-bento-header p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #00A651; /* Accent Green */
    margin-bottom: 3rem;
    max-width: 80ch;
    font-weight: 500;
}

/* Bento Grid Architecture */
.ict-bento-grid .ict-bento-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

/* Individual Bento Cards */
.ict-bento-grid .ict-bento-card {
    background-color: #0F4C45; /* Primary Dark */
    border: 1px solid #135C58; /* Secondary Teal */
    padding: clamp(1.25rem, 3vw, 2rem);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ict-bento-grid .ict-span-8 { grid-column: span 8; }
.ict-bento-grid .ict-span-4 { grid-column: span 4; }

/* Technical UI Tags */
.ict-bento-grid .ict-card-status {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #00A651;
    margin-bottom: 1rem;
    padding-left: 12px;
    position: relative;
    text-transform: uppercase;
}

.ict-bento-grid .ict-card-status::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #00A651;
}

.ict-bento-grid .ict-bento-card p {
    margin: 0;
    line-height: 1.6;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.9);
}

.ui-cta-card:hover p {
    color: #ffffff;
}

/* Specialty Styling for the Conclusion Card */
.ict-bento-grid .ict-highlight-card {
    border: 1px solid #00A651;
    background-color: #135C58; /* Secondary Teal */
}

.ict-bento-grid .ict-highlight-card p {
    font-weight: 600;
    color: #FFFFFF;
}

/* Fluid Responsiveness for Mobile */
@media (max-width: 992px) {
    .ict-bento-grid .ict-span-8, 
    .ict-bento-grid .ict-span-4 {
        grid-column: span 12;
    }
    
    .ict-bento-grid .ict-bento-container {
        gap: 1rem;
    }
}
/* Advanced Inventory Controls Section End */

/* Essential Features Demonstrated section Start */
.ict-static-feature-wrap {
    padding: clamp(1rem, 5vw, 0rem) 0px;
    color: #333333;
    line-height: 1.6;
}

/* Typography Hierarchy */
.ict-static-feature-wrap h2 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ict-static-feature-wrap .ui-intro-text {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: #135C58;
    margin-bottom: 4rem;
    max-width: 80ch;
    font-weight: 500;
}

/* 2x2 Feature Grid */
.ict-static-feature-wrap .ui-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Static Card Design (No Hover) */
.ict-static-feature-wrap .ui-grid-card {
    padding: 2rem;
    border-left: 6px solid #00A651; /* Accent Green Border */
    background-color: #F8FBFB;
    display: flex;
    flex-direction: column;
}

.ict-static-feature-wrap .ui-grid-card p {
    margin: 0;
    font-size: 1.1rem;
    color: #444444;
}

.ict-static-feature-wrap .ui-grid-card a {
    color: #00A651;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.ict-static-feature-wrap .ui-grid-card a:hover {
    border-bottom: 1px solid #00A651;
}

/* Summary Footer */
.ict-static-feature-wrap .ui-summary-box {
    background-color: #0F4C45; /* Primary Dark */
    padding: 2.5rem;
    color: #FFFFFF;
    border-radius: 2px;
}

.ict-static-feature-wrap .ui-summary-box p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Fluid Adjustments for Mobile */
@media (max-width: 768px) {
    .ict-static-feature-wrap .ui-feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ict-static-feature-wrap .ui-grid-card {
        padding: 1.5rem;
    }
}
/* Essential Features Demonstrated section End */

  /* Deployment Types in Inventory section Start */
  .ict-matrix-wrapper {
   margin-top: 40px;
    color: #333333;
  }

  /* Split Layout Logic */
  .ict-matrix-layout {
    display: flex;
    gap: 4rem;
    align-items: stretch;
    margin-bottom: 60px;
  }

  /* Sidebar (Context Column) */
  .ict-matrix-sidebar {
    flex: 0 0 30%;
    background-color: #024430; /* Deep Background */
    color: #FFFFFF;
    padding: 3rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .ict-matrix-sidebar h2 {
    color: #FFFFFF;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
  }

  .ict-matrix-sidebar p {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.9;
  }

  .ict-sidebar-quote {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 166, 81, 0.4);
    font-style: italic;
    color: #00A651; /* Accent Green */
    font-size: 0.95rem;
  }

  /* Main Grid Column */
  .ict-matrix-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ict-grid-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Card Components */
  .ict-spec-card {
    background: #FFFFFF;
    border: 1px solid #E0E6E5;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
  }

  .ict-spec-card:hover {
    border-color: #00A651;
    box-shadow: 0 15px 40px rgba(15, 76, 69, 0.08);
    transform: translateY(-5px);
  }

  .ict-spec-header {
    margin-bottom: 1.25rem;
  }

  .ict-spec-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #00A651;
    display: block;
    margin-bottom: 0.5rem;
  }

  .ict-spec-card h3 {
    margin: 0;
    color: #0F4C45;
    font-size: 1.4rem;
    font-weight: 800;
  }

  .ict-spec-card h3 a {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid transparent;
  }

  .ict-spec-card h3 a:hover {
    border-bottom-color: #00A651;
  }

  .ict-spec-card p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
  }

  /* Matrix Bottom Summary */
  .ict-matrix-conclusion {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-bottom: 4px solid #135C58;
  }

  .ict-matrix-conclusion p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F4C45;
    margin: 0;
  }

  /* Responsive Logic for Smaller Screens */
  @media (max-width: 1200px) {
    .ict-matrix-layout {
      flex-direction: column;
      gap: 2.5rem;
    }
    .ict-matrix-sidebar {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .ict-grid-inner {
      grid-template-columns: 1fr;
    }
    .ict-matrix-sidebar {
      padding: 2rem;
    }
    .ict-spec-card {
      padding: 1.5rem;
    }
  }
 /* Deployment Types in Inventory section End */

 /* What to Expect From an Inventory Section Start */
  .ict-wide-feature {
    color: #333333;
    background-color: transparent; /* Site default White */
   margin-top: 40px; 
  }

  /* Header Section */
  .ict-wide-header {
    margin-bottom: 3rem;
  }

  .ict-wide-header p {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    color: #555555;
    max-width: 1000px;
    line-height: 1.6;
  }

  /* 1600px Horizontal Grid */
  .ict-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
  }

  /* Item Styling */
  .ict-grid-item {
    background-color: #F4F9F8; /* Subtle Teal Tint */
    padding: 3rem 2rem;
    border-top: 4px solid #E0E6E5;
    transition: all 0.3s ease;
  }

  .ict-grid-item:hover {
    background-color: #FFFFFF;
    border-top-color: #00A651; /* Accent Green */
    box-shadow: 0 20px 40px rgba(15, 76, 69, 0.05);
  }

  .ict-item-status {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #00A651;
    margin-bottom: 1.5rem;
    display: inline-block;
    border-bottom: 2px solid #00A651;
  }

  .ict-grid-item h3 {
    color: #0F4C45;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.3;
  }

  .ict-grid-item p {
    font-size: 1rem;
    color: #555555;
    margin: 0;
    line-height: 1.7;
  }

  /* Wide Footer Logic */
  .ict-wide-footer {
    border-top: 2px solid #E0E6E5;
    padding-top: 0rem;
  }

  .ict-wide-footer p {
    font-size: 1.1rem;
    color: #0F4C45;
    font-weight: 500;
    max-width: 1200px;
  }

  .ict-wide-footer span {
    color: #135C58; /* Secondary Teal */
    font-weight: 700;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 166, 81, 0.2) 60%);
  }

  /* Mobile Adjustments */
  @media (max-width: 768px) {
    .ict-wide-header {
      padding-left: 1.5rem;
      margin-bottom: 2.5rem;
    }
    
    .ict-grid-item {
      padding: 2rem 1.5rem;
    }
    
    .ict-wide-footer {
      text-align: center;
    }
  }
 /* What to Expect From an Inventory Section End */