/* ============================================
   ETHICAL HACKING WORKSHOP PAGE
   Same brand theme — fresh layout approach
============================================ */

:root {
    --brand: #0174BB;
    --brand-dark: #015d96;
    --brand-light: #e8f4fd;
    --brand-glow: rgba(1, 116, 187, 0.12);
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --border: #daeaf7;
    --text: #1a2535;
    --text2: #3d5166;
    --surface: #ffffff;
}

/* ---- SHARED ---- */
.weh-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 700;
    font-size: 12px;
    border-radius: 99px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-head h2 {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
}

.section-head h2 span {
    color: var(--brand);
}

.section-head p {
    font-size: 16px;
    color: var(--text2);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

/* ============================================
   HERO — split layout with diagonal cut
============================================ */
.weh-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: #011627 url('/image/hack.webp') no-repeat right center;
    background-size: 80%;
    overflow: hidden;
    padding: 50px 20px 80px;
}


.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1, 116, 187, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 116, 187, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(1, 116, 187, 0.2) 0%,
    transparent 70%
  );
  z-index: 99;
}

.weh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #011627 55%, rgba(1, 22, 39, 0.6) 100%);
    z-index: 1;
}

.weh-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: 164px;
    width: 100%;
    max-width: 620px;
}   

.breadcrumb {
    margin-bottom: 20px;
    font-size: 13px;
    opacity: 0.7;
    color: white;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 9px;
    margin: 0 7px;
}

.weh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(1, 116, 187, 0.25);
    border: 1px solid rgba(1, 116, 187, 0.5);
    color: #4db8ff;
    padding: 7px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.weh-hero h1 {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.weh-hero h1 span {
    color: #4db8ff;
}

.weh-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 35px;
    max-width: 560px;
}

.weh-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--brand);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: #4db8ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(1, 116, 187, 0.4);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: white;
}

/* ============================================
   STRIP — 4-column stat bar
============================================ */
.weh-strip {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding: 0 20px;
}

.weh-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--surface);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.weh-strip-item {
    display: flex;
    align-items: center;
    padding: 26px 30px;
    gap: 18px;
    border-right: 1px solid var(--border);
    transition: all 0.3s ease;
}

.weh-strip-item:last-child {
    border-right: 0;
}

.weh-strip-item i {
    font-size: 26px;
    color: var(--brand);
    flex-shrink: 0;
}

.weh-strip-item div span {
    display: block;
    font-size: 12px;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.weh-strip-item div strong {
    font-size: 17px;
    color: var(--text);
    display: block;
    margin-top: 2px;
    font-weight: 800;
}

.weh-strip-item:hover {
    background: var(--brand-light);
    transform: translateY(-4px);
}

/* ============================================
   ABOUT — image left, text right
============================================ */
.weh-about {
    padding: 100px 20px;
    background: #f8fbff;
}

.weh-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.weh-about-img {
    position: relative;
}

.weh-about-img img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 30px 60px var(--brand-glow);
}

.weh-img-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 10px 18px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
}

.weh-img-tag i {
    color: var(--brand);
}

.weh-about-text h2 {
    font-family: var(--font-head);
    font-size: 34px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.25;
}

.weh-about-text h2 span {
    color: var(--brand);
}

.weh-about-text p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 16px;
}

.weh-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.weh-about-tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    transition: all 0.3s ease;
}

.weh-about-tags span i {
    color: var(--brand);
    font-size: 12px;
}

.weh-about-tags span:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

.weh-about-tags span:hover i {
    color: white;
}

/* ============================================
   HIGHLIGHTS — 3-col card grid
============================================ */
.weh-highlights {
    padding: 100px 20px;
    background: white;
}

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

.highlight-card {
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    box-shadow: 0 20px 40px var(--brand-glow);
    background: white;
}

.highlight-icon {
    width: 52px;
    height: 52px;
    background: var(--brand);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.highlight-card h4 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}

/* ============================================
   MODULES — numbered card grid
============================================ */
.weh-modules {
    padding: 100px 20px;
    background: #f8fbff;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.module-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 12px 30px var(--brand-glow);
}

.mod-num {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-light);
    -webkit-text-stroke: 2px var(--brand);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
    min-width: 32px;
}

.mod-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    line-height: 1.35;
}

.mod-info p {
    font-size: 12px;
    color: var(--text2);
    line-height: 1.6;
}

/* ============================================
   PLAN — 4-column horizontal cards
============================================ */
.weh-plan {
    padding: 100px 20px;
    background: white;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.plan-card {
    background: linear-gradient(135deg, #011627 0%, #013d6e 100%);
    border-radius: 20px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(1, 22, 39, 0.25);
}

.plan-icon {
    width: 52px;
    height: 52px;
    background: rgba(1, 116, 187, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #4db8ff;
    margin: 0 auto 18px;
}

.plan-card h4 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-card p {
    font-size: 18px;
    font-weight: 800;
    color: white;
    font-family: var(--font-head);
}

/* ============================================
   PAY SECTION — single prominent CTA box
============================================ */
.weh-pay {
    padding: 80px 20px;
    background: #f8fbff;
}

.pay-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px var(--brand-glow);
}

.pay-box-content h2 {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.pay-box-content h2 span {
    color: var(--brand);
}

.pay-box-content p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.7;
    max-width: 500px;
}

.pay-btn-main {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 30px;
    background: var(--brand);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 260px;
}

.pay-btn-main:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(1, 116, 187, 0.25);
}

.pay-btn-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.pay-btn-text strong {
    display: block;
    font-size: 16px;
}

.pay-btn-text span {
    font-size: 12px;
    opacity: 0.75;
}

.pay-arrow {
    margin-left: auto;
    font-size: 16px;
    opacity: 0.8;
}

/* ============================================
   OTHER WORKSHOPS — 4-col card grid
============================================ */
.weh-other {
    padding: 100px 20px;
    background: white;
}

.other-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.other-card {
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 26px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.other-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    box-shadow: 0 20px 40px var(--brand-glow);
    background: white;
}

.other-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.other-card h4 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.other-card p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.other-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
}

.other-card:hover .other-icon {
    background: var(--brand);
    color: white;
}

/* ============================================
   ENQUIRY FORM — 2-column layout
============================================ */
.weh-enquiry {
    padding: 100px 20px;
    background: #f8fbff;
}

.enquiry-outer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.enquiry-info h2 {
    font-family: var(--font-head);
    font-size: 34px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 18px;
    line-height: 1.25;
}

.enquiry-info h2 span {
    color: var(--brand);
}

.enquiry-info>p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 30px;
}

.enquiry-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 35px;
}

.enq-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text2);
    font-weight: 500;
}

.enq-feat i {
    color: var(--brand);
    font-size: 15px;
    flex-shrink: 0;
}

.enquiry-contact-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pill-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pill-item i {
    color: var(--brand);
}

.pill-item:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

.pill-item:hover i {
    color: white;
}

/* ---- FORM CARD ---- */
.enquiry-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 40px 80px var(--brand-glow);
}

.enquiry-card .card-head {
    margin-bottom: 28px;
}

.enquiry-card .card-head h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
}

.enquiry-card .card-head p {
    color: var(--text2);
    font-size: 14px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fdfdfd;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-light);
    background: white;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    padding: 14px;
    background: #f1f5f9;
    border-radius: 12px;
}

.captcha-box .equation {
    font-weight: 800;
    font-size: 17px;
    color: var(--brand);
    white-space: nowrap;
}

.captcha-box .equation span {
    color: var(--brand);
}

.captcha-box input {
    width: 70px;
    text-align: center;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    background: white;
    box-sizing: border-box;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--brand);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
}

.submit-btn:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(1, 116, 187, 0.2);
}

.form-error {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .weh-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .weh-strip-item:nth-child(2) {
        border-right: 0;
    }

    .weh-strip-item:nth-child(3) {
        border-top: 1px solid var(--border);
    }
}

@media (max-width: 992px) {

    .weh-about-grid,
    .enquiry-outer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .other-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pay-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }

    .pay-btn-main {
        width: 100%;
        justify-content: center;
    }

    .weh-hero {
        background-size: 0;
    }
}

@media (max-width: 768px) {
    .weh-hero h1 {
        font-size: 32px;
    }

    .section-head h2 {
        font-size: 28px;
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .weh-strip-inner {
        grid-template-columns: 1fr;
    }

    .weh-strip-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .weh-strip-item:last-child {
        border-bottom: 0;
    }

    .enquiry-features {
        grid-template-columns: 1fr;
    }

    .enquiry-card {
        padding: 25px;
    }
    .weh-hero-inner {
    position: relative;
    z-index: 2;
        margin-left: 10px;
    width: 100%;
    max-width: 620px;
}
}

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

    .plan-cards {
        grid-template-columns: 1fr;
    }

    .other-grid {
        grid-template-columns: 1fr;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }
}