@import url(colors.css);

@font-face {
    font-family: 'MyCustomFont';
    src: url('./../fonts/EuclidCircularA-Regular.woff') format('woff');
    src: url('./../fonts/EuclidCircularA-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MyCustomFont';
    src: url('./../fonts/EuclidCircularA-Bold.woff') format('woff');
    src: url('./../fonts/EuclidCircularA-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'MyCustomFont';
    src: url('/fonts/EuclidCircularA-Medium.woff') format('woff');
    src: url('/fonts/EuclidCircularA-Medium.woff2') format('woff2');
    font-weight: 500;
    /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'MyCustomFont';
    src: url('/fonts/EuclidCircularA-SemiBold.woff') format('woff');
    src: url('/fonts/EuclidCircularA-SemiBold.woff2') format('woff2');
    font-weight: 600;
    /* SemiBold */
    font-style: normal;
}

.hero-section-service {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.hero-overlay-service {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-service {
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0.6);
}

.hero-content-service {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-title-service {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-breadcrumb-service {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-section-service {
        font-size: 15px;
    }

    .hero-title-service {
        font-size: 2rem;
    }

    .hero-breadcrumb-service {
        font-size: 1rem;
    }
    
}

@media (max-width: 480px) {
    .hero-section-service {
        height: 40vh;
    }

    .hero-title-service {
        font-size: 1.5rem;
    }

    .hero-breadcrumb-service {
        font-size: 0.9rem;
    }
}


.hero-overlay-service {
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-service {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-title-service {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'MyCustomFont', sans-serif;
}

.hero-breadcrumb-service {
    font-size: 1rem;
    color: #f0f0f0;
    font-family: 'MyCustomFont', sans-serif;
}

.threat-modelling-section-service {
    padding: 60px 20px;
    background-color: #fff;
}

.container-service {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper-service {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px
    
}
.steps-image-service{
    width: 40%;
}
/* Left Side */
.steps-image-service img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Right Side */
.text-content-service {
    flex: 1;
    min-width: 300px;
}

.badge-service {
    background-color: #e5f3f5;
    color: #1883c2;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'MyCustomFont', sans-serif;
}

.heading-service {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    font-family: 'MyCustomFont', sans-serif;
}

.text-content-service p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    font-family: 'MyCustomFont', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper-service {
        flex-direction: column;
        text-align: center;
    }

    .steps-image-service,
    .text-content-service {
        width: 100%;
    }

    .heading-service {
        font-size: 24px;
    }

    .text-content-service p {
        font-size: 15px;
    }
}


.threat-modelling-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.main-heading {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'MyCustomFont', sans-serif;
}

.sub-text {
    text-align: center;
    font-size: 16px;
    max-width: 1100px;
    margin: 0 auto 40px;
    color: #444;
    font-family: 'MyCustomFont', sans-serif;
}

.benefits-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'MyCustomFont', sans-serif;
}

.benefits-title span {
    display: inline-block;
    color: #1883c2;
    background-color: #e5f3f5;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'MyCustomFont', sans-serif;
}

.benefits-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.benefits-list {
    flex: 1 1 60%;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.benefit-item span {
    font-size: 20px;
    color: #d43f3a;
    line-height: 1.5;
}

.benefit-item strong {
    display: block;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
    font-family: 'MyCustomFont', sans-serif;
}

.benefit-item p {
    font-size: 15px;
    color: #555;
    margin: 0;
    font-family: 'MyCustomFont', sans-serif;
}

.benefits-image {
    flex: 1 1 35%;
    text-align: center;
}

.benefits-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .benefits-section {
        flex-direction: column;
        align-items: center;
    }

    .benefits-list,
    .benefits-image {
        flex: 1 1 100%;
    }
}


.threat-deliverables {
    padding: 60px 20px;
    background: #fff;
}

.container-threat-service {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-title-threat-service {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
    font-family: 'MyCustomFont', sans-serif;
}

.card-grid-threat-service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card-threat-service {
    background: linear-gradient(319deg, #2196F3, transparent);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    text-align: left;
}

.card-threat-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-threat-service.active {
    border-bottom: 3px solid #007bff;
}

.icon-threat-service {
    font-size: 28px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-threat-service i{
    font-size: 35px;
}
.icon-threat-service.red-threat-service {
    color: #e74c3c;
}

.icon-threat-service.blue-threat-service {
    color: #3498db;
}

.icon-threat-service.purple-threat-service {
    color: #8e44ad;
}

.card-threat-service h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-family: 'MyCustomFont', sans-serif;
}

.card-threat-service p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    font-family: 'MyCustomFont', sans-serif;
}


.service-faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'MyCustomFont', sans-serif;
}

.service-faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.service-faq {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.service-faq-question {
    background-color: #f9f9f9;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-faq-question:hover {
    background-color: #eee;
}

.service-faq-answer {
    display: none;
    padding: 15px 20px;
    background-color: #fff;
    border-top: 1px solid #ddd;
    line-height: 1.5;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

@media (max-width: 600px) {
    .service-faq-section {
        padding: 15px;
    }

    .service-faq-question,
    .service-faq-answer {
        font-size: 15px;
    }
}
