/* --- Client Solutions --- */
.solutions-hero-section {
    padding: 100px 0 120px 0;
    background: linear-gradient(135deg, #0a2540 0%, #113659 100%); /* Deep Navy Gradient */
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

.solutions-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* --- Matte Gold Badge Style --- */
.gold-badge {
    color: #b38a38 !important;
    background-color: rgba(179, 138, 56, 0.12);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Typography elements */
.solutions-hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin: 20px 0;
}

.solutions-hero-content p {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Buttons System */
.solutions-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.solutions-primary-btn {
    display: inline-block;
    background-color: #b38a38; /* Matte Gold */
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(179, 138, 56, 0.3);
}

.solutions-primary-btn:hover {
    background-color: #96732e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 138, 56, 0.5);
}

.solutions-secondary-btn {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.solutions-secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #b38a38;
}

/* --- Right Side Preview Matrix Box --- */
.solutions-hero-visual {
    display: flex;
    justify-content: flex-end;
}

.solutions-matrix-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Matrix Top Topbar mimicking dashboard windows */
.matrix-header {
    background: rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.matrix-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.red-dot { background-color: #ef4444; }
.yellow-dot { background-color: #f59e0b; }
.green-dot { background-color: #10b981; }

.matrix-header p {
    font-size: 12px;
    color: #94a3b8;
    margin: 0 0 0 auto;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Data Content Row Layouts */
.matrix-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.matrix-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.matrix-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.matrix-label {
    font-size: 14px;
    color: #94a3b8;
}

.matrix-value {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.text-gold {
    color: #b38a38 !important;
}

.badge-secure {
    background-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .solutions-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .solutions-hero-actions {
        justify-content: center;
    }

    .solutions-hero-visual {
        justify-content: center;
    }
    
    .solutions-hero-content h1 {
        font-size: 34px;
    }
}

/* --- Client Solutions Portfolio Section Styles --- */
.solutions-portfolio-section {
    padding: 90px 0;
    background-color: #ffffff; /* Clean White Canvas background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Golden Badge Style Variant --- */
.style-gold-badge {
    color: #b38a38 !important;
    background-color: rgba(179, 138, 56, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.5px;
}

/* Section Main Titles styling */
.solutions-portfolio-section .team-title-wrapper h2 {
    color: #0a2540; /* Navy Main Title */
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0;
}

.solutions-portfolio-section .team-title-wrapper p {
    color: #475569;
    max-width: 600px;
    margin: 0 auto !important;
    line-height: 1.6;
}

/* --- 3-Column Layout Configuration --- */
.portfolio-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 55px;
}

/* --- Premium Individual Portfolio Card --- */
.portfolio-grid-card {
    background: #f8fafc; /* Very soft light gray/blue tint canvas */
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-grid-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    border-color: #b38a38; /* Gold Border Accent on Hover */
    box-shadow: 0 20px 25px -5px rgba(10, 37, 64, 0.05), 0 10px 10px -5px rgba(179, 138, 56, 0.04);
}

/* Inside Header Elements of Card */
.portfolio-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.portfolio-card-icon {
    font-size: 28px;
    width: 55px;
    height: 55px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.portfolio-grid-card:hover .portfolio-card-icon {
    background-color: #0a2540; /* Navy background on icon box when hovered */
    color: #ffffff;
}

.portfolio-card-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #b38a38; /* Gold text marker tag */
}

/* Typography elements */
.portfolio-grid-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a2540; /* Navy heading */
    margin: 0 0 15px 0;
}

.portfolio-grid-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex-grow: 1; /* Aligns footer link perfectly even with short text strings */
}

/* Card Bottom Link */
.portfolio-card-link a {
    font-size: 13px;
    font-weight: 600;
    color: #0a2540;
    text-decoration: none;
    transition: color 0.2s ease;
}

.portfolio-grid-card:hover .portfolio-card-link a {
    color: #b38a38; /* Link transforms to Gold accent */
}

/* --- Mobile Breakpoints CSS adjustments --- */
@media (max-width: 768px) {
    .portfolio-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-grid-card {
        padding: 30px 25px;
    }
}

/* --- Client Solutions Engagement Section Styles --- */
.solutions-engagement-section {
    padding: 40px 0;
    background-color: #f1f5f9; /* Contrast soft background canvas */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Split Layout Configurations --- */
.engagement-split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 55px;
}

/* --- Shared Individual Framework Card Base --- */
.engagement-model-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 15px -3px rgba(10, 37, 64, 0.02);
    transition: all 0.3s ease;
}

.engagement-model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(10, 37, 64, 0.08);
}

.model-accent-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #0a2540; 
}

.model-accent-top.gold-accent {
    background-color: #b38a38;
}


.model-meta {
    margin-bottom: 20px;
}

.model-type {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0a2540;
}

.engagement-model-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a2540;
    margin: 8px 0 0 0;
}

.model-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.model-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1; 
}

.model-feature-list li {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.model-feature-list span {
    color: #b38a38; 
    font-weight: 700;
}


.model-featured-dark {
    background-color: #0a2540; 
    border-color: #0a2540;
}

.text-white { color: #ffffff !important; }
.text-gold { color: #b38a38 !important; }

.desc-light {
    color: #cbd5e1 !important;
}

.list-light li {
    color: #f8fafc !important;
}

/* --- Action Link Buttons System --- */
.model-btn-primary {
    display: inline-block;
    text-align: center;
    width: 100%;
    background-color: transparent;
    color: #0a2540;
    border: 2px solid #0a2540;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.model-btn-primary:hover {
    background-color: #0a2540;
    color: #ffffff;
}

.model-btn-gold {
    display: inline-block;
    text-align: center;
    width: 100%;
    background-color: #b38a38; 
    color: #ffffff;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(179, 138, 56, 0.25);
}

.model-btn-gold:hover {
    background-color: #96732e;
    box-shadow: 0 6px 16px rgba(179, 138, 56, 0.4);
}

/* --- Mobile Adaptability Media Query layers --- */
@media (max-width: 768px) {
    .engagement-split-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .engagement-model-card {
        padding: 35px 30px;
    }
}

/* add new sections */
.solutions-case-studies-section{
   padding:20px 0;
   background:#f8fafc;
}

/* Grid */
.case-studies-grid{
   display:grid;
   grid-template-columns:repeat(3,1fr);
   gap:25px;
   margin-top:50px;
}

/* Card */
.case-card{
   background:#ffffff;
   border:1px solid #e2e8f0;
   border-radius:14px;
   padding:35px;
   transition:0.3s;
   position:relative;
   overflow:hidden;
}

.case-card:hover{
   transform:translateY(-6px);
   border-color:#b38a38;
   box-shadow:0 20px 40px rgba(10,37,64,0.08);
}

/* Tag */
.case-tag{
   display:inline-block;
   font-size:12px;
   font-weight:700;
   color:#b38a38;
   background:rgba(179,138,56,0.1);
   padding:6px 12px;
   border-radius:20px;
   margin-bottom:15px;
   text-transform:uppercase;
   letter-spacing:0.5px;
}

/* Title */
.case-card h3{
   font-size:18px;
   font-weight:700;
   color:#0a2540;
   margin-bottom:10px;
}

/* Text */
.case-card p{
   font-size:14px;
   color:#475569;
   line-height:1.6;
   margin-bottom:20px;
}

/* Result badge */
.case-result{
   display:inline-block;
   font-size:13px;
   font-weight:600;
   color:#ffffff;
   background:#0a2540;
   padding:6px 12px;
   border-radius:8px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px){
   .case-studies-grid{
      grid-template-columns:repeat(2,1fr);
   }
}

@media (max-width: 768px){
   .case-studies-grid{
      grid-template-columns:1fr;
   }

   .solutions-case-studies-section{
      padding:70px 0;
   }
}

/* solution client section */
.solutions-clients-section{
   padding:90px 0;
   background:#ffffff;
}

/* Grid */
.clients-logo-grid{
   display:grid;
   grid-template-columns:repeat(6,1fr);
   gap:20px;
   margin-top:50px;
   align-items:center;
}

/* Logo box */
.client-logo{
   background:#f8fafc;
   border:1px solid #e2e8f0;
   padding:25px 15px;
   text-align:center;
   font-weight:700;
   color:#0a2540;
   border-radius:10px;
   transition:0.3s;
   cursor:default;
}

/* Hover effect */
.client-logo:hover{
   border-color:#b38a38;
   color:#b38a38;
   transform:translateY(-5px);
   box-shadow:0 10px 25px rgba(10,37,64,0.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px){
   .clients-logo-grid{
      grid-template-columns:repeat(3,1fr);
   }
}

@media (max-width: 768px){
   .clients-logo-grid{
      grid-template-columns:repeat(2,1fr);
   }

   .solutions-clients-section{
      padding:70px 0;
   }
}

/* Solutions Process Section Styling */
.solutions-process-section {
    background-color: #0a2540; /* Aapka bataya gaya Dark Blue color */
    padding: 80px 0;
    color: #ffffff;
}

.process-title-wrapper {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b38a38; /* Aapka bataya gaya Gold color */
    border: 1px solid #b38a38;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.process-title-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #ffffff;
}

.process-title-wrapper p {
    font-size: 16px;
    color: #a0aec0;
    line-height: 1.6;
}

/* Steps Grid */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step-card:hover {
    transform: translateY(-5px);
    border-color: #b38a38;
    background: rgba(255, 255, 255, 0.05);
}

.step-number-box {
    margin-bottom: 20px;
}

.step-num {
    font-size: 32px;
    font-weight: 800;
    color: #b38a38; /* Gold Accent */
    position: relative;
}

.process-step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.process-step-card p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
    .process-title-wrapper h2 {
        font-size: 28px;
    }
}
/* solution final */

.solutions-delivery-section{
   padding:100px 0;
   background:#f8fafc;
}

/* Grid */
.delivery-grid{
   display:grid;
   grid-template-columns:repeat(4,1fr);
   gap:25px;
   margin-top:50px;
}

/* Card */
.delivery-step{
   background:#ffffff;
   border:1px solid #e2e8f0;
   border-radius:14px;
   padding:35px;
   text-align:center;
   transition:0.3s;
   position:relative;
}

/* Hover */
.delivery-step:hover{
   transform:translateY(-6px);
   border-color:#b38a38;
   box-shadow:0 20px 40px rgba(10,37,64,0.08);
}

/* Step number */
.step-number{
   width:50px;
   height:50px;
   margin:0 auto 15px;
   border-radius:50%;
   background:#0a2540;
   color:#ffffff;
   display:flex;
   align-items:center;
   justify-content:center;
   font-weight:700;
   border:2px solid #b38a38;
}

/* Text */
.delivery-step h3{
   font-size:16px;
   font-weight:700;
   color:#0a2540;
   margin-bottom:10px;
}

.delivery-step p{
   font-size:13px;
   color:#475569;
   line-height:1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px){
   .delivery-grid{
      grid-template-columns:repeat(2,1fr);
   }
}

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

   .solutions-delivery-section{
      padding:70px 0;
   }
}
/* segment section */
/* Solutions Segments Section Styling */
.solutions-segments-section {
    background-color: #ffffff; /* Is section ko clean white rakha hai taaki dark section ke baad contrast bane */
    padding: 80px 0;
}

.segments-title-wrapper {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.segments-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b38a38; /* Gold Color */
    border: 1px solid #b38a38;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.segments-title-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #0a2540; /* Dark Blue Text */
}

.segments-title-wrapper p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* 6 Card Grid */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.segment-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.segment-card:hover {
    transform: translateY(-5px);
    border-color: #b38a38;
    box-shadow: 0 10px 15px -3px rgba(10, 37, 64, 0.1);
}

.segment-icon-box {
    font-size: 36px;
    color: #b38a38; /* Gold Icon */
    margin-bottom: 20px;
}

.segment-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0a2540; /* Dark Blue Heading */
    margin-bottom: 15px;
}

.segment-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

.segment-link {
    font-size: 15px;
    font-weight: 600;
    color: #0a2540;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.segment-card:hover .segment-link {
    color: #b38a38; /* Hover par link gold ho jayegi */
}

/* Responsive Design */
@media (max-width: 991px) {
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .segments-grid {
        grid-template-columns: 1fr;
    }
    .segments-title-wrapper h2 {
        font-size: 28px;
    }
}
