.cert-hero {
  background: url("/static/images/defenceindustry.png") center/cover no-repeat;
  height: 60vh;
  position: relative;
}
.cert-hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.cert-intro h2 {
  color: #ff6b00;
}
.cert-card {
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.cert-card h4 {
  color: #ff6b00;
}
.cert-icon {
  height: 80px;
  object-fit: contain;
}
.cta-section {
  background: #222;
}
.cta-section h2 {
  color: #ff6b00;
}
/* iso_iec27001 */
* {
            font-family: 'Poppins' !important;
        }

:root {
    --primary-blue: #0F2385;
    --primary-green: #006400;
    --light-bg: #f8f9fa;
    --light-blue: #e9f0ff;
    --light-green: #e9ffe9;
}

h2{
    color: #0F2385;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 2.2rem;
    
}



.section-para{
    font-size: small;
}

.headingssss{
    background-color: #0F2385;
    color: white;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
}

.heading{

    background-image: url('/static/images/constructionindustry.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    color: white;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.heading h1{
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
    

    

}

.breadcrumb-item + .breadcrumb-item::before {
    color: white !important;
}

/* Enhanced Gradient Boxes */
.gradiant-box-tiny {
    background: linear-gradient(45deg, #0F2385 0%, #0b7c35 100%);
    color: white;
    padding: 25px 15px;
    border-radius: 12px;
    display: inline-block;
    min-width: 250px;
    text-align: center;
    text-wrap: wrap;
    font-size: small;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 20px rgba(15, 35, 133, 0.15);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.industry-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }


/* Hover effects */
.gradiant-box-tiny:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 30px rgba(15, 35, 133, 0.25);
}

/* Shine effect */
.gradiant-box-tiny::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s;
}

.gradiant-box-tiny:hover::before {
    left: 100%;
}

/* Enhanced typography */
.gradiant-box-tiny b {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
}

.gradiant-box-tiny p:last-child {
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Animation keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure proper spacing on mobile */
@media (max-width: 768px) {
    .section-para {
        gap: 15px !important;
    }
    
    .gradiant-box-tiny {
        min-width: calc(50% - 10px);
        margin-bottom: 0;
    }
}


.section-card {
    
    border: none;
    margin-bottom: 1.5rem;
    overflow: hidden;
    padding-top: 20px;
    
}

        

.principle-box {
    background-color: var(--light-blue);
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    margin-bottom: .7rem;
    border-radius: 0 12px 12px 0;
    font-size: small;
    min-height: 160px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15, 35, 133, 0.1);
    
    
}

.principle-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 35, 133, 0.15);
    border-left-width: 6px;
}

/* Add a subtle background pattern on hover */
.principle-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.6s;
}

.principle-box:hover::before {
    left: 100%;
}

.principle-box h5 {
    color: var(--primary-blue);
    font-weight: bolder;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.principle-box:hover h5 {
    color: var(--primary-blue);
}

.gradiant-box{
    background: linear-gradient(45deg, #0F2385 0%, #0b7c35 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    min-width: 19%;
    text-wrap: wrap;
    font-size: small;
    align-items: center;    
    
}

.block-gradiant-box-card{
    
    
    border-color: #0F2385;
    background: linear-gradient(45deg, #0F2385 0%, #0b7c35 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    min-width: 19%;
    text-wrap: wrap;
    font-size: small;
    align-items: center;    
}

@media (max-width: 1400px) {
    .block-gradiant-box-card {
        min-height: 250px;
    }
}





.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

.benefit-card {
    background: var(--light-bg);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #0F2385;
    width: 250px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 35, 133, 0.2);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #0F2385;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Exclude Font Awesome icons from Poppins */
.fas, .far, .fab, .fa,
.benefit-card .card-icon,
.benefit-card .card-icon * {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif !important;
}

.benefit-card h3 {
    color: #0F2385;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.benefit-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.pdca-section-card {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: none;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.pdca-cycle {
            display: flex;
            justify-content: space-between;
            margin: 1rem 0;
            flex-wrap: wrap;
        }
        
.pdca-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 1.5rem 1rem;
    margin: 0.5rem;
    border-radius: 8px;
    background-color: var(--light-blue);
    border: 2px solid var(--primary-blue);
}

.pdca-step h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: bolder;
}

@media (max-width: 768px) {
    .pdca-cycle {
        flex-direction: column;
    }
    
    .pdca-step {
        margin: 0.5rem 0;
    }
}

 /* Custom Accordion Styles */
        .custom-accordion {
            width: 100%;
            margin: 20px 0;
        }

        .accordion-item {
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 8px;
            overflow: hidden;
            background-color: var(--primary-blue);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .accordion-header {
            background-color: var(--primary-blue);
            padding: 0;
            margin: 0;
            border-bottom: 1px solid transparent;
            color: white;
        }

        .accordion-button {
            width: 100%;
            text-align: left;
            background-color: var(--primary-blue);
            border: none;
            padding: 16px 20px;
            font-size: small;
            font-weight: bold;
            font-weight: 600;
            color: var(--primary-blue);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .accordion-button:hover {
            background: linear-gradient(45deg, #0F2385 0%, #0b7c35 100%);
            color: white;
        }

        .accordion-button:after {
            content: '+';
            font-size: 20px;
            font-weight: 400;
            transition: transform 0.3s;
        }

        .accordion-button.active:after {
            content: '-';
            transform: rotate(0deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: #fff;
        }

        .accordion-body {
            padding: 0 20px;
            
        }

        .accordion-body p {
            margin: 20px 0;
            font-size: small;
            line-height: 1.6;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px; /* Adjust based on your content */
            background-color: var(--light-bg);
        }

        .accordion-item.active .accordion-button {
            background: linear-gradient(45deg, #0F2385 0%, #0b7c35 100%);
            color: white;
        }




 /* Modern Accordion Styles */
        .question-accordion {
            width: 100%;
            margin: 20px 0;
        }

        .question-accordion-item {
            border-radius: 10px;
            margin-bottom: 5px;
            overflow: hidden;
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #eaeaea;
            transition: all 0.3s ease;
        }

        .question-accordion-item:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .question-accordion-header {
            padding: 0;
            margin: 0;
        }

        .question-accordion-button {
            width: 100%;
            text-align: left;
            background: linear-gradient(135deg, #1a3c6e 0%, #2a6fb5 100%);
            border: none;
            padding: 20px 25px;
            font-size: small;
            font-weight: 600;
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .question-accordion-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s;
        }

        .question-accordion-button:hover:before {
            left: 100%;
        }

        .question-accordion-button:hover {
            background: linear-gradient(135deg, #2a6fb5 0%, #1a3c6e 100%);
        }

        .question-accordion-button i {
            font-size: small;
            transition: transform 0.3s ease;
        }

        .question-accordion-button.active i {
            transform: rotate(180deg);
        }

        .question-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            background-color: #f9fbfd;
        }

        .question-accordion-body {
            padding: 0 25px;
        }

        .question-accordion-body p {
            margin: 25px 0;
            font-size: small;
            line-height: 1.7;
            color: #444;
            padding-left: 15px;
            border-left: 4px solid #2a6fb5;
        }

        .question-accordion-item.active .question-accordion-content {
            max-height: 500px;
        }

        .question-accordion-item.active .question-accordion-button {
            background: linear-gradient(135deg, #2a6fb5 0%, #1a3c6e 100%);
            box-shadow: 0 4px 12px rgba(42, 111, 181, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section {
                padding: 20px;
            }
            
            .section-heading h2 {
                font-size: small;
            }
            
            .question-accordion-button {
                padding: 16px 20px;
                font-size: small;
            }
            
            .question-accordion-body p {
                font-size: small;
            }
        }

        @media (max-width: 480px) {
            .section-heading h2 {
                font-size: small;
            }
            
            .question-accordion-button {
                padding: 14px 16px;
                font-size: small;
            }
            
            .question-accordion-body {
                padding: 0 16px;
            }
            
            .question-accordion-body p {
                font-size: small;
                padding-left: 10px;
            }
        }





/* Gradiant Accordion Styles */
        .gradiant-accordion {
            width: 100%;
            margin: 20px 0;
        }

        .gradiant-accordion-item {
            border-radius: 10px;
            margin-bottom: 5px;
            overflow: hidden;
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #eaeaea;
            transition: all 0.3s ease;
        }

        .gradiant-accordion-item:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .gradiant-accordion-header {
            padding: 0;
            margin: 0;
        }

        .gradiant-accordion-button {
            width: 100%;
            text-align: left;
            background: linear-gradient(135deg, #0F2385 0%, #0b7c35 100%);
            border: none;
            padding: 20px 25px;
            font-size: small;
            font-weight: 600;
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .gradiant-accordion-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s;
        }

        .gradiant-accordion-button:hover:before {
            left: 100%;
        }

        .gradiant-accordion-button:hover {
            
            background: linear-gradient(135deg, #0b7c35 0%, #0F2385 100%);
        }

        .gradiant-accordion-button i {
            font-size: small;
            transition: transform 0.3s ease;
        }

        .gradiant-accordion-button.active i {
            transform: rotate(180deg);
        }

        .gradiant-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            background-color: #f9fbfd;
        }

        .gradiant-accordion-body {
            padding: 0 25px;
        }

        .gradiant-accordion-body p {
            margin: 25px 0;
            font-size: small;
            line-height: 1.7;
            color: #444;
            padding-left: 15px;
            border-left: 4px solid #2a6fb5;
        }

        .gradiant-accordion-item.active .gradiant-accordion-content {
            max-height: 500px;
        }

        .gradiant-accordion-item.active .gradiant-accordion-button {
            background: linear-gradient(135deg, #0b7c35 0%, #0F2385 100%);
            box-shadow: 0 4px 12px rgba(42, 111, 181, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section {
                padding: 20px;
            }
            
            .section-heading h2 {
                font-size: small;
            }
            
            .gradiant-accordion-button {
                padding: 16px 20px;
                font-size: small;
            }
            
            .gradiant-accordion-body p {
                font-size: small;
            }
        }

        @media (max-width: 480px) {
            .section-heading h2 {
                font-size: small;
            }
            
            .gradiant-accordion-button {
                padding: 14px 16px;
                font-size: small;
            }
            
            .gradiant-accordion-body {
                padding: 0 16px;
            }
            
            .gradiant-accordion-body p {
                font-size: small;
                padding-left: 10px;
            }
        }




.box-big{
    
    color: #0F2385;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    width: 100%;
    text-wrap: wrap;
    font-size: small;
    font-weight: bold;
    align-items: center;   
    border-color: #0F2385; 
    border-style: dotted;
    
}





/* Process Section Styling */
.process {
    padding: 4rem 0;
    padding-top: .5rem !important;
    background: #f8fafc;
}

.process-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.process-heading h2 {
    color: #0F2385;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}



/* Process Chart Layout */
.process-chart {
    position: relative;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step .text p {
    font-weight: bold;
    color: #0F2385;
    font-size: small;
}

/* Button Styling */
.step .button {
    position: relative;
    background: #0F2385;
    color: white;
    padding: 1rem 0.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #0F2385;
}

.button p{
    margin-bottom: 0px;
}

.step .button:hover {
    background: linear-gradient(45deg, #0F2385 0%, #0b7c35 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Popup Styling */
.step .button .popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    color: #0b7c35;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-align: left;
}

.step .button .popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: white;
}

.step .button .popup h4 {
    color: #0b7c35;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.step .button .popup p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 0.8rem;
}

/* Show popup on hover */
.step .button:hover .popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-15px);
}

/* Top and Bottom Row Specific Styles */
.top {
    margin-bottom: 4rem;
}

.bottom {
    position: relative;
}

/* Connector Lines (Optional) */
.top::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #cbd5e1;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step .button .popup {
        width: 200px;
        
        transform: translateX(0) translateY(-10px);
    }
    
    .step .button .popup::after {
        left: 20px;
        transform: translateX(0);
    }
    
    .step .button:hover .popup {
        transform: translateX(0) translateY(-15px);
    }
}


/* Table Styling */



/* Add decorative dividers between sections 
.section {
    position: relative;
    padding: 60px 0;
}

.section:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

/*--------------------------------

/* Add alternating background colors */


/*



.section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

*/



/* Create a timeline effect 
.section {
    position: relative;
    padding: 40px 0 40px 80px;
    margin-bottom: 40px;
}

.section::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3498db, #2ecc71);
}

.section::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3498db;
    border: 5px solid white;
    box-shadow: 0 0 0 3px #3498db;
}

.section:last-child::before {
    height: 20px;
}




/* Add subtle background patterns */
/*
.section:nth-child(odd) {
    background-color: #dde0e2;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(46, 204, 113, 0.05) 0%, transparent 20%);
    padding: 50px 0;
}

.section:nth-child(even) {
    background-color: white;
    background-image: 
        radial-gradient(circle at 90% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 10% 80%, rgba(46, 204, 113, 0.05) 0%, transparent 20%);
    padding: 50px 0;
}
    */


/* Add alternating background colors */
.section:nth-child(odd) {
    background-color: #ffffff;
    padding: 10px 0;
    margin: 0;
}

.section:nth-child(even) {
    background-color: #f2f5ff;
    padding: 10px 0;
    margin: 0;
}

/* Ensure content stays centered */
.section > .container {
    padding: 20px 15px;
}