/* ==========================================================================
   GLOBAL FONT AWESOME ICONS FIX (HAMESHA KE LIYE)
   ========================================================================== */

/* Website ke kisi bhi kone mein agar fas ya fa-solid laga hai, to use ye code chala dega */
[class*="fa-"], 
.fas, 
.fa, 
.far, 
.fab {
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", "FontAwesome", sans-serif !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
}

/* Icon ke background boxes (Jaise srv-port-icon-box ya srv-arch-icon) ko center karne ke liye */
.srv-port-icon-box, 
.srv-arch-icon, 
.icon-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Icons ka standard size aur color set karne ke liye */
.srv-port-icon-box i, 
.srv-arch-icon i {
    font-size: 24px !important;  /* Size aap apne mutabik chhota-bada kar sakte hain */
    color: #b38a38 !important;     /* Aapka standard Navy Blue color */
}






/* --- Services Asymmetrical Extraction Matrix Styles --- */
.srv-extraction-matrix-section {
    padding: 100px 0;
    background-color: #ffffff; /* Clean White Canvas Background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Premium Matte Gold Badge Style --- */
.srv-extraction-matrix-section .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;
}

/* Title Core Typography styling */
.srv-extraction-matrix-section .team-title-wrapper h2 {
    color: #0a2540; /* Navy Header Title */
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0;
}

.srv-extraction-matrix-section .team-title-wrapper p {
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Horizontal Grid Stack --- */
.srv-asym-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 60px;
}

/* --- Individual Row Layout Base --- */
.srv-asym-row-item {
    background-color: #f8fafc; /* Very soft layout gray backdrop canvas split */
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Balanced layout data column split weight */
    gap: 50px;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-asym-row-item:hover {
    transform: scale(1.01);
    border-color: #b38a38; /* Gold border focus transition frame on hover */
    box-shadow: 0 15px 30px -10px rgba(10, 37, 64, 0.08);
}

/* Left Metadata Rail */
.srv-meta-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.srv-node-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b38a38; /* Matte Gold step track nodes */
    letter-spacing: 1px;
}

.srv-asym-row-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a2540; /* Primary Corporate Navy */
    margin: 0;
    line-height: 1.2;
}

.srv-financial-impact {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 5px 0 0 0;
}

.srv-financial-impact strong {
    color: #0a2540;
}

/* Right Details Rail */
.srv-details-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.srv-details-side h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.srv-details-side p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Utility text state helpers */
.text-gold { color: #b38a38 !important; }
.text-white { color: #ffffff !important; }
.gold-text { color: #b38a38 !important; }

/* --- Special Center High Contrast Row Override (Navy focus) --- */
.featured-navy-row {
    background-color: #0a2540 !important; /* Full Navy focus backdrop frame */
    border-color: #0a2540;
}

.featured-navy-row .srv-financial-impact strong {
    color: #ffffff;
}

.text-slate {
    color: #cbd5e1 !important;
}

/* --- Responsive Layout Adjustments for Tablets & Mobile --- */
@media (max-width: 991px) {
    .srv-asym-row-item {
        grid-template-columns: 1fr; /* Flips side-by-side grids into clean vertical stacks */
        gap: 30px;
        padding: 35px;
    }
}

/* --- Services Quad Pillars Section Styles --- */
.srv-quad-pillars-section {
    padding: 100px 0;
    background-color: #f8fafc; /* Soft background layout contrast canvas */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Golden Badge Style --- */
.srv-quad-pillars-section .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;
}

/* Title Core Typography styling */
.srv-quad-pillars-section .team-title-wrapper h2 {
    color: #0a2540;
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0;
}

.srv-jurisdictions-section .team-title-wrapper p {
    max-width: 600px;
    margin: 0 auto !important; 
    text-align: center;
    line-height: 1.6;
}

/* --- 2x2 Layout Grid Container --- */
.quad-pillars-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    margin-top: 60px;
}


/* --- Shared Individual Pillar Card Base --- */
.quad-pillar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quad-pillar-card:hover {
    transform: translateY(-8px);
    border-color: #b38a38;
    box-shadow: 0 25px 40px -15px rgba(10, 37, 64, 0.08);
}

/* Top Meta bar inside cards */
.quad-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.quad-index {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b38a38; /* Gold track markers */
    letter-spacing: 1px;
}

.quad-emoji {
    font-size: 26px;
}

/* Typography elements */
.quad-pillar-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 14px 0;
}

.quad-pillar-card h3.text-business {
    color: white;
}

.quad-pillar-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

/* Sub checklists system inside quadrants */
.quad-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto; /* Pushes content stacks to baseline anchors uniformly */
}

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

.quad-sub-list span {
    color: #b38a38; /* Gold ticks on standard light nodes */
    font-weight: 700;
}

/* --- Quadrant 1 Override Variant (Deep Navy Focus Background) --- */
.focus-navy-quad {
    background-color: #0a2540 !important; /* Solid Navy */
    border-color: #0a2540;
}

.focus-navy-quad .quad-sub-list span {
    color: #b38a38;
}

/* --- Quadrant 4 Override Variant (Matte Gold Focus Background) --- */
.focus-gold-quad {
    background-color: #b38a38 !important; /* Full Gold block backdrop */
    border-color: #b38a38;
}

.tag-dark-navy {
    color: white !important;
}

.focus-gold-quad .quad-sub-list span {
    color: white; /* Navy check ticks on gold background */
}

/* Helper color utility state overrides */
.text-white { color: #ffffff !important; }
.text-gold { color: #b38a38 !important; }
.text-navy { color: #0a2540 !important; }
.text-navy-muted { color: white !important; }
.text-slate { color: #cbd5e1 !important; }

.list-slate li { color: #cbd5e1 !important; }
.list-navy li { color: white !important; }

/* --- Mobile Viewport Adjustments --- */
@media (max-width: 991px) {
    .quad-pillars-container {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    
    .quad-pillar-card {
        padding: 35px 30px;
    }
}


/* --- CLEAN & SMALL BUTTONS CODE --- */

/* 1. Sabhi buttons ka size small aur alignment left karne ke liye */
.quad-pillar-card .quad-card-btn {
    display: inline-flex !important;    
    align-items: center !important;
    justify-content: center !important;
    width: max-content !important;        
    min-width: 130px !important;        
    padding: 8px 18px !important;       
    font-size: 14px !important;          
    font-weight: 600 !important;
    border-radius: 4px !important;
    margin-top: 20px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

/* 2. Portfolio 01: White Button */
.quad-pillar-card .btn-white {
    background-color: #ffffff !important;
    color: #0a2540 !important;
}

/* 3. Portfolio 02 aur 03: Dark Navy Button (#0a2540) */
.quad-pillar-card .btn-navy {
    background-color: #0a2540 !important;
    color: #ffffff !important;
}

/* 4. Portfolio 04: Gold Button */
.quad-pillar-card .btn-gold {
    background-color: #d4af37 !important; /* Aapka exact gold color code */
    color: #0a2540 !important;
}

/* Portfolio 01 ke liye (White Button) */
.btn-white {
    background-color: #ffffff;
    color: #0a2540;
}

/* Portfolio 02 aur 03 ke liye (Dark Navy Button) */
.btn-navy {
    background-color: #0a2540;
    color: #ffffff;
}

/* Portfolio 04 ke liye (Gold Button) */
.btn-gold {
    background-color: #d4af37; /* ya jo bhi aapka gold color code ho */
    color: #0a2540;
}

/* Portfolio 02 aur Portfolio 03 ke buttons ka background color */
.btn-navy {
    background-color: #0a2540;
    color: #ffffff;            /* Button ke andar ke text ka color (White) */
    display: inline-block;
    padding: 10px 24px;
    margin-top: 20px;
    border-radius: 4px;        /* Corner round karne ke liye */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease; /* Smooth hover effect ke liye */
}

/* Hover effect: Jab mouse button par jaye to color thoda change ho */
.btn-navy:hover {
    background-color: #0c3154; /* Navy ka thoda light version */
    color: #ffffff;
}


/* --- Services Closing CTA Section Styles --- */
.srv-closing-cta-section {
    padding: 100px 0;
    background-color: #ffffff; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Main Deep Navy Box Layout Container --- */
.srv-cta-premium-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Asymmetric data row balance weight */
    gap: 60px;
    align-items: center;
    background-color: #0a2540; /* Primary Deep Navy Focus Background */
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 30px 60px -15px rgba(10, 37, 64, 0.25);
}

/* --- Left Side Information Alignment --- */
.gold-text-badge {
    color: #b38a38 !important; /* Matte Gold Badge Text */
    background-color: rgba(179, 138, 56, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.5px;
}

.srv-cta-text-rail h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin: 20px 0;
    line-height: 1.25;
}

.srv-cta-text-rail p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Security Lock Points Elements Configuration */
.srv-cta-security-locks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lock-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lock-icon {
    font-size: 18px;
}

.lock-item p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

/* --- Right Side Input Form Box Elements Configuration --- */
.srv-cta-form-rail {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.srv-onboarding-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row-group label {
    font-size: 13px;
    font-weight: 600;
    color: #0a2540; 
}

.form-row-group input, 
.form-row-group select {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    color: #334155;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.form-row-group input:focus, 
.form-row-group select:focus {
    outline: none;
    border-color: #b38a38; 
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(179, 138, 56, 0.15);
}


.srv-submit-action-btn {
    background-color: #b38a38; 
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.srv-submit-action-btn:hover {
    background-color: #96732e; 
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(179, 138, 56, 0.3);
}


@media (max-width: 991px) {
    .srv-cta-premium-box {
        grid-template-columns: 1fr; 
        padding: 40px;
        gap: 40px;
    }
    
    .srv-cta-text-rail {
        text-align: center;
    }
    
    .srv-cta-security-locks {
        align-items: center;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .srv-cta-form-rail {
        padding: 25px;
    }
}
/* --- Services Jurisdictions Data Section Styles --- */
.srv-jurisdictions-section {
    padding: 100px 0;
    background-color: #f8fafc; /* Subtle grey contrast canvas framework */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Premium Golden Badge Style --- */
.srv-jurisdictions-section .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;
}


.srv-jurisdictions-section .team-title-wrapper h2 {
    color: #0a2540; 
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0;
}

.srv-jurisdictions-section .team-title-wrapper p {
    max-width: 600px;
    margin: 0 auto;       /* ब्लॉक को बीच में रखने के लिए */
    text-align: center;   /* इसके अंदर के टेक्स्ट को बीच में रखने के लिए */
    line-height: 1.6;
    
}
/* --- 3-Column Layout Base Container --- */
.jurisdictions-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* --- Shared Individual Authority Block Base --- */
.data-authority-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.data-authority-card:hover {
    transform: translateY(-8px);
    border-color: #b38a38; /* Gold boundary frame highlight */
    box-shadow: 0 20px 30px -10px rgba(10, 37, 64, 0.05);
}

/* Top Meta Row info labels alignment inside cards */
.authority-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.auth-country-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b38a38; /* Matte Gold accent tags */
    letter-spacing: 0.5px;
}

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

/* Green Live Active Tracker Point Status Indicator Dot */
.auth-dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
}

.bg-gold-pulse {
    background-color: #b38a38 !important; /* Gold Pulse marker variant */
}

/* Typography elements */
.data-authority-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a2540; /* Navy Heading */
    margin: 0 0 14px 0;
}

.data-authority-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}


.dark-navy-hub-card {
    background-color: #0a2540 !important; 
    border-color: #0a2540;
}

.text-white { color: #ffffff !important; }
.text-slate { color: #cbd5e1 !important; }

@media (max-width: 991px) {
    .jurisdictions-data-grid {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    .data-authority-card {
        padding: 35px 30px;
    }
}

/* add new sections */
/* Services Architecture Section Styling */
.srv-architecture-section {
    background-color: #0a2540; /* Dark Blue */
    padding: 80px 0;
    color: #ffffff;
}

.srv-arch-title-wrapper {
    margin-bottom: 60px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.srv-arch-title-wrapper p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* 4 Column Architecture Layout */
.srv-arch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}

.srv-arch-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.srv-arch-column:hover {
    transform: translateY(-5px);
    border-color: rgba(179, 138, 56, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

/* Header inside columns */
.srv-arch-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.srv-arch-icon {
    font-size: 28px;
    color: #b38a38; /* Gold Icons */
    margin-bottom: 15px;
}

.srv-arch-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 8px;
    height: 50px; /* Keeps headings aligned */
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-arch-count {
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    padding: 3px 10px;
    border-radius: 4px;
}

.srv-arch-count.emphasis {
    color: #b38a38;
    background: rgba(179, 138, 56, 0.12);
}

/* List Items Styling */
.srv-arch-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.srv-arch-list li {
    font-size: 13.5px;
    color: #cbd5e1;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.srv-arch-list li:last-child {
    margin-bottom: 0;
}

.srv-arch-list li i {
    color: #b38a38; /* Gold small arrows */
    font-size: 13px;
    margin-top: 2px;
}

/* Flat 4th column styling */
.srv-flat-vertical {
    border: 1px dashed rgba(179, 138, 56, 0.3);
}

.flex-grow-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.srv-flat-desc {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.srv-flat-tag {
    align-self: center;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background-color: #b38a38;
    padding: 6px 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive Structural Adjustments */
@media (max-width: 1199px) {
    .srv-arch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .srv-arch-header h3 {
        height: unset;
    }
}

@media (max-width: 767px) {
    .srv-arch-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .srv-arch-title-wrapper h2 {
        font-size: 28px;
    }
}


/* Services Infrastructure Section Styling */
.srv-infrastructure-section {
    background-color: #ffffff; /* Clean white background for rhythm balance */
    padding: 80px 0;
}

.srv-infra-title-wrapper {
    margin-bottom: 55px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

/* 3 Column Infra Grid */
.srv-infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.srv-infra-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.srv-infra-card:hover {
    transform: translateY(-5px);
    border-color: #b38a38; /* Gold Hover Highlight */
    box-shadow: 0 12px 20px -3px rgba(10, 37, 64, 0.06);
}

.srv-infra-icon-box {
    font-size: 32px;
    color: #b38a38; /* Gold Icon */
    margin-bottom: 25px;
}

.srv-infra-card h3 {
    font-size: 21px;
    font-weight: 600;
    color: #0a2540; /* Dark Blue Heading */
    margin-bottom: 15px;
    line-height: 1.4;
}

.srv-infra-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Keeps footer tag alignments uniform */
}

/* Internal Micro-Tags for databases used */
.srv-infra-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.srv-infra-tags li {
    font-size: 12px;
    font-weight: 600;
    color: #0a2540;
    background: rgba(10, 37, 64, 0.05);
    padding: 4px 12px;
    border-radius: 4px;
}

/* Responsive Structural Layouts */
@media (max-width: 991px) {
    .srv-infra-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
        gap: 35px;
    }
}

@media (max-width: 575px) {
    .srv-infra-title-wrapper h2 {
        font-size: 28px;
    }
}


/* Core Services Portfolios Section Styling */
.srv-portfolios-section {
    background-color: #0a2540; /* Dark Blue */
    padding: 80px 0;
    color: #ffffff;
}

.srv-port-title-wrapper {
    margin-bottom: 60px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.srv-port-title-wrapper p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* 4 Column Portfolio Grid Layout */
.srv-port-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}

.srv-port-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.srv-port-card:hover {
    transform: translateY(-5px);
    border-color: #b38a38; /* Gold Highlight */
    background: rgba(255, 255, 255, 0.04);
}

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

.srv-port-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.srv-port-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Nested Sublists for inner categories */
.srv-port-sublist {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1; /* Pushes the detail link button uniformly to bottom */
}

.srv-port-sublist li {
    font-size: 13.5px;
    color: #cbd5e1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.srv-port-sublist li:last-child {
    margin-bottom: 0;
}

.srv-port-sublist li i {
    color: #b38a38; /* Gold mini markers */
    font-size: 11px;
}

/* Link Button at Bottom */
.srv-port-link {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.srv-port-card:hover .srv-port-link {
    color: #b38a38; /* Link transforms to Gold on card hover */
}

/* Responsive Structural Controls */
@media (max-width: 1199px) {
    .srv-port-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .srv-port-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .srv-port-title-wrapper h2 {
        font-size: 28px;
    }
}

/* Services Methodology Section Styling */
.srv-methodology-section {
    background-color: #ffffff; /* Clean white contrast layout */
    padding: 80px 0;
}

.srv-meth-title-wrapper {
    margin-bottom: 60px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

/* Horizontal Steps Layout Row */
.srv-meth-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Connecting track line behind step items */
@media (min-width: 992px) {
    .srv-meth-row::before {
        content: '';
        position: absolute;
        top: 27px; /* Aligns center with circles */
        left: 50px;
        right: 50px;
        height: 2px;
        background: rgba(10, 37, 64, 0.06);
        z-index: 1;
    }
}

.srv-meth-step-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.srv-meth-circle {
    width: 56px;
    height: 56px;
    background: #0a2540; /* Dark Blue Background */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 18px;
    font-weight: 700;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(10, 37, 64, 0.1);
    transition: all 0.3s ease;
}

.srv-meth-step-item:hover .srv-meth-circle {
    background: #b38a38; /* Transforms to Gold on item hover */
    box-shadow: 0 4px 15px rgba(179, 138, 56, 0.3);
}

.srv-meth-step-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 12px;
}

.srv-meth-step-item p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    padding: 0 10px;
}

/* Responsive Adaptive Structure */
@media (max-width: 991px) {
    .srv-meth-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .srv-meth-row {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .srv-meth-title-wrapper h2 {
        font-size: 28px;
    }
}


.quad-emoji .fas {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

/* --- LOCK & SHIELD ICONS FIX --- */


.lock-icon {
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", sans-serif !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
}


.lock-icon .fa-lock,
.lock-icon .fa-shield-alt {
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", sans-serif !important;
    font-weight: 900 !important;
    font-size: 20px !important; 
    color: #f1f3f5 !important; 
}


/* --- ARCH SEARCH PLUS ICON FIX --- */
.srv-arch-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.srv-arch-icon .fa-search-plus {
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", sans-serif !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-size: 24px !important;   /* Icon ka perfect size */
    color: #b38a38 !important;   /* Aapka Navy Blue color */
    display: inline-block !important;
}

.banner-description{
    width: 700px !important;
    max-width: 90% !important;
    margin: 20px auto !important;
    text-align: center !important;
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    display: block;
}

/* new code */

/* मुख्य ग्रिड कंटेनर - जो स्क्रीन के हिसाब से 3 कॉलम बनाएगा */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* हमेशा 3 कॉलम में रखेगा */
    gap: 30px; /* कार्ड्स के बीच की दूरी */
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* मोबाइल और टैबलेट के लिए रेस्पॉन्सिव डिज़ाइन */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* टैबलेट पर 2 कॉलम */
    }
}
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* मोबाइल पर 1 कॉलम */
    }
}

/* मुख्य कार्ड का स्टाइल */
/* मुख्य कार्ड को ऊपरी कोनों से गोल करने के लिए */
.service-card {
    display: block; /* लिंक को ब्लॉक बनाने के लिए */
    background-color: #ffffff; /* कार्ड का बैकग्राउंड सफेद */
    border: 1px solid #e2e8f0; /* हल्का ग्रे बॉर्डर जिससे कार्ड की आउटलाइन दिखे */
    border-radius: 16px; /* चारों कोने गोल करने के लिए */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); /* बहुत ही हल्की और प्रोफेशनल शैडो */
    overflow: hidden;
    transition: all 0.3s ease; /* होवर इफेक्ट को स्मूथ (धीमा) बनाने के लिए */
}

/* इमेज बॉक्स को भी साथ में सपोर्ट देने के लिए */
.card-image-box {
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
    overflow: hidden !important;
}


/* होवर करने पर कार्ड का इफ़ेक्ट */
.service-card:hover {
    transform: translateY(-5px); /* कार्ड को थोड़ा ऊपर उठाने के लिए (left की बजाय सिर्फ ऊपर अच्छा लगेगा) */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* होवर होने पर शैडो गहरी हो जाएगी */
    border-color: #cbd5e1; /* होवर पर बॉर्डर का रंग थोड़ा गहरा होगा */
}

/* इमेज बॉक्स का स्टाइल */


.card-image-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;     /* यह इमेज को पूरे डिब्बे में जबरदस्ती फैला देगा */
    object-position: center !important; /* यह इमेज के मुख्य हिस्से को बीच में रखेगा */
    max-width: 100% !important;
    display: block !important;
}

/* नीचे टेक्स्ट बॉक्स का स्टाइल */
.card-text-box {
    text-align: center;         /* टेक्स्ट को हॉरिजॉन्टली बीच में लाने के लिए */
    padding: 15px 10px;        /* ऊपर, नीचे और साइड्स में सही गैप देने के लिए */
    font-size: 16px;           /* फॉन्ट का साइज सही रखने के लिए (वैकल्पिक) */
    font-weight: 500;          /* टेक्स्ट को थोड़ा सा बोल्ड लुक देने के लिए */
    display: flex;             /* वर्टिकल अलाइनमेंट के लिए */
    justify-content: center;   /* फ्लेक्स बॉक्स के अंदर सेंटर करने के लिए */
    align-items: center; 
    color: #0a2540; /* डार्क कलर टेक्स्ट */
}

/* एक्सप्लोर बटन का स्टाइल */
.explore-btn-container {
    text-align: center;
    margin-bottom: 50px;
}

.explore-more-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #b8860b; /* इमेज में दिख रहे गोल्डन-ब्राउन 'Get Started' बटन जैसा थीम कलर */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.explore-more-btn:hover {
    background-color: #966f0a;
}

.services-heading-box {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 0 15px;
    font-family: sans-serif; 
}


.services-tagline {
    display: inline-block;
    color: #b5893d; 
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* मुख्य बड़ी हेडिंग */
.services-title {
   display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b38a38;
    border: 1px solid #b38a38;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

/* नीचे का छोटा विवरण */
.services-subtitle {
    font-size: 16px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto !important;
    line-height: 1.6;
}

/* new services section */
/* पूरे स्क्रीन वाले सेक्शन के लिए */
.services-grid-section-full {
    width: 100% !important;
    background-color: #f8fafc;
}

/* फुल विड्थ कार्ड स्टाइल */
.service-card-new-full {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    width: 100% !important; /* विड्थ पूरी करने के लिए */
    max-width: 100% !important; /* किसी भी लिमिटेशन को हटाने के लिए */
    display: flex;
    flex-direction: column;
}

/* होवर इफेक्ट */
.service-card-new-full:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.1);
}

/* इमेज सेटिंग्स */
.service-image-box {
    width: 100%;
    height: 240px; /* फुल स्क्रीन पर बेहतर दिखने के लिए हाइट थोड़ी बढ़ाई है */
    overflow: hidden;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* कंटेंट और लिस्ट का स्टाइल */
.service-content-box {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-main-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

.service-main-title a {
    color: #0a2540;
    text-decoration: none;
}

.sub-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-category-list li {
    padding: 10px 0; /* फुल स्क्रीन लेआउट में थोड़ा ज़्यादा गैप अच्छा लगेगा */
    border-bottom: 1px dashed #e2e8f0;
}

.sub-category-list li:last-child {
    border-bottom: none;
}

.sub-category-list li a {
    color: #475569;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.sub-category-list li a::before {
    content: "›";
    font-size: 18px;
    margin-right: 8px;
    color: #0a2540;
    font-weight: bold;
}

.sub-category-list li a:hover {
    color: #0a2540;
    padding-left: 5px;
}

/* heading */
/* ===================== SERVICES SECTION HEADINGS ===================== */

.services-section-heading {
    text-align: center;
    margin-bottom: 50px;
}



/* मुख्य हेडिंग (Our Services) */
/* मुख्य हेडिंग (Our Services) */
/* .services-section-heading {
    display: table; 
    margin: 40px auto 15px auto; 
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b38a38;
    border: 1px solid #b38a38;
    padding: 5px 15px;
    border-radius: 50px;
    text-align: center;
} */
/* मुख्य हेडिंग (Our Services) */
.main-heading {
    display: table; /* इसे बीच में (Center) लाने के लिए */
    margin: 40px auto 15px auto; /* ऊपर 40px, दाएं-बाएं से Center, नीचे 15px स्पेस */
    font-size: 14px !important; /* फॉन्ट साइज 14px */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b38a38 !important; /* गोल्डन-ब्राउन कलर */
    border: 1px solid #b38a38; /* बॉर्डर */
    padding: 6px 18px; /* बटन के अंदर का स्पेस */
    border-radius: 50px; /* कैप्सूल गोल डिज़ाइन के लिए */
    text-align: center;
}



/* हेडिंग के नीचे छोटा डेकोरेटिव लाइन */
/* .services-section-heading .heading-divider {
    width: 200px;
    height: 3px;
    background: #0a2540;
    margin: 0 auto;
    border-radius: 2px;
} */
