/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-blue: #064F80;
    --accent-blue: #1c6ba4;
    --button-orange: #f59f2a;
    --button-hover: #e08e20;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-color: #dcdcdc;
    --button-reset: #e0e0e0;
    --reset-btn-hover:#b3b3b3;
}

body {
    background-color: #f4f7f9;
    color: var(--text-dark);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

h4 {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
}

/* =========================================
   2. HEADER
   ========================================= */
.header {
    background-color: #ffffff;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-left .divider {
    width: 1px;
    height: 35px;
    background-color: #ccc;
}

.logo {
    max-height: 45px;
    width: auto; 
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-graphic {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg-graphic svg, 
.hero-bg-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-tags {
    display: inline-flex;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    column-gap: 15px;
    row-gap: 7px;
    margin-bottom: 30px;
}

.hero-tags span {
    font-size: 13px;
    font-weight: 400;
}

.hero-content h1 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
    color: #FFFFFF;
}

.hero-list {
    list-style: none;
}

.hero-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: #63a4d1;
    border-radius: 50%;
}

.hero-form-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
    flex-shrink: 0;
}

.form-header-container {
    margin-bottom: 20px; 
}

.hero-form-card h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #000;
    padding-right: 80px;
}

.required-text { 
font-size: 11px;
    color: #666;
    margin-bottom: 5px;
    display: block;
    text-align: right;
}

.form-group {
    margin-bottom: 12px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

select.form-control {
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    color: #777;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 12px;
    color: #555;
    cursor: pointer;
    line-height: 1.4;
}

.submit-btn {
    width: 50%;
    background-color: var(--button-orange);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--button-hover);
}


.reset-btn {
    width: 50%;
    background-color: var(--button-reset);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reset-btn:hover {
    background-color: var(--reset-btn-hover);
}


input:focus {
    outline: none;
    border: none;  
}

/* =========================================
   4. THREATS SECTION
   ========================================= */
.threats-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.threats-bg-graphic {
    position: absolute;
    top: -13%; 
    left: -100px;
    width: 120%; 
    height: 120%;
    z-index: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.threats-bg-graphic svg, 
.threats-bg-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;  
}

.threats-inner {
    position: relative;
    z-index: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.threats-header {
    text-align: center; 
    margin-bottom: 30px;
}

.threats-header h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #000;
}

.threats-header p {
    font-size: 16px;
    font-weight: 300;
    color: #363F44;
    line-height: 1.6;
}

.threats-main-media {
    width: 100%; 
    margin-bottom: 80px;
}

.threats-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover; 
}

/* THREATS FEATURES GRID: 6-COLUMN LAYOUT */
.threats-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    width: 100%; 
    margin: 0 auto;
}

.threat-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* TOP ROW: First 3 items span 2 columns each (filling 6 columns total) */
.threat-feature-item:nth-child(1),
.threat-feature-item:nth-child(2),
.threat-feature-item:nth-child(3) {
    grid-column: span 2;
}

/* BOTTOM ROW: Last 2 items span 3 columns each (filling 6 columns total) */
.threat-feature-item:nth-child(4),
.threat-feature-item:nth-child(5) {
    grid-column: span 3;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; 
}

.icon-image {
    max-width: 30px;
    max-height: 30px;
}

/* Icon Background Colors */
.icon-blue { background-color: #cddbf3; }
.icon-salmon { background-color: #fca89d; }
.icon-tan { background-color: #f7deb9; }
.icon-green { background-color: #aed1b8; }
.icon-pink { background-color: #fad2e1; }

.feature-text-content {
    flex: 1;
}

.feature-text-content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #000;
}

.feature-text-content p {
    font-size: 14px;
    font-weight: 300;
    color: #363F44;
    line-height: 1.6;
}

/* =========================================
   5. INDUSTRY SECTION
   ========================================= */
.industry-section {
    background-color: #eaeff5; 
    padding: 100px 0;
}

.industry-header {
    text-align: left;
    max-width: 1440px;
    margin: 0 auto 30px auto;
}

.industry-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

.industry-header p {
    font-size: 15px;
    font-weight: 400;
    color: #363F44;
    line-height: 1.6;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
}

.industry-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px); 
}

.card-text-content {
    padding: 30px;
    flex: 1; 
}

.card-text-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.card-text-content p {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

.card-image-wrapper {
    width: 100%;
    height: 350px; 
    position: relative;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* =========================================
   6. TRUSTED LOGOS SECTION
   ========================================= */
.trusted-section {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
    overflow: hidden; 
}

.trusted-section h2 {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    /* margin-bottom: 40px; */
}

.logo-scroller-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-box {
    width: 180px;
    height: 80px; 
    margin: 0 15px; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px; 
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.logo-box img { 
    object-fit: contain;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   7. CTA SECTION
   ========================================= */
.cta-section {
    background-color: #ffffff; 
}

.cta-banner {
    background-color: #03142f; 
    background-image: url('../images/cta.png');     
    background-size: cover;
    background-position: center; 
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-banner h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-banner p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #ffffff;
}

.btn-get-started {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 14px 35px;
    border-radius: 50px; 
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-get-started:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* =========================================
   8. DISCLAIMER / FOOTNOTES 
   ========================================= */
.disclaimer-section {
    background-color: #ffffff;
    padding: 0 0 60px 0; 
}

.disclaimer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    color: #555555;
}

.footnote-asterisk {
    font-size: 12px;
    margin-bottom: 12px;
    font-weight: 400;
}

.footnote-list {
    list-style-type: decimal;
    padding-left: 15px; 
    margin: 0;
}

.footnote-list li {
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* =========================================
   9. FOOTER 
   ========================================= */
.main-footer {
    background-color: #071A2B; 
    text-align: center;
    padding: 25px 20px;
}

.main-footer p {
    color: #ffffff;
    font-size: 12px;
    font-weight: 300;
    margin: 0;
}

/* =========================================
   10. MEDIA QUERIES (CONSOLIDATED)
   ========================================= */

/* Tablets Landscape & Smaller Laptops */
@media (max-width: 1024px) {
    .hero-inner { gap: 30px; }
    .hero-content h1 { font-size: 34px; }
    
    .threats-header h2 { font-size: 32px; }
    
    /* Switch 6-col grid to a 2-col grid for tablets */
    .threats-features-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .threat-feature-item:nth-child(n) {
        grid-column: span 1;
    }
    /* Make 5th item full width to center it nicely */
    .threat-feature-item:nth-child(5) {
        grid-column: span 2;
    }

    .industry-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 25px; 
    }
    .industry-header { text-align: center; }
}

/* Tablets Portrait */
@media (max-width: 860px) {
    .hero-inner {
        flex-direction: column;
        align-items: center;
    }
    .hero-content {
        max-width: 100%;
        text-align: left;
        margin-bottom:0px;
    }
    .hero-tags { justify-content: center; }
    .hero-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-list li {
        text-align: left;
        display: inline-block;
        width: 100%;
        max-width: 500px;
    }
    .hero-bg-graphic { height: 50%; }

    .threats-section { padding: 80px 0; }
    .threats-header h2 { font-size: 28px; }
    
    /* Switch to 1 column for mobile */
    .threats-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    /* Ensure all items span only 1 column */
    .threat-feature-item:nth-child(n) {
        grid-column: span 1;
    }

    .threats-bg-graphic { left: 0; }
    
    .cta-banner { padding: 60px 20px; }
    .cta-banner h2 { font-size: 32px; }
}

/* Large Mobile Devices */
@media (max-width: 768px) {
    .industry-section { padding: 80px 0; }
    .industry-header h2 { font-size: 28px; }
    .industry-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
        max-width: 500px; 
    }
    .industry-section .card-image-wrapper { height: 300px; }
    
    .trusted-section { padding: 60px 0; }
    .trusted-section h2 { font-size: 22px; }
    .logo-box {
        width: 150px;
        height: 70px;
        margin: 0 20px;
    }

    .threats-main-media {
        width: 100%;
        max-width: 100%;
        margin-bottom: 80px;
    }

    .threats-features-grid {  
        max-width: 100%;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }
    .hero-bg-graphic { height: 50%; }
    .hero-content h1 { font-size: 26px; }
    .hero-tags span { font-size: 12px; }
    .hero-form-card { padding: 25px 20px; }
    .hero-form-card h3 {
        padding-right: 0;
        margin-bottom: 25px;
    }
    
    /* Left empty intentionally per user snippet */
    .required-text {}

    .threats-section { padding: 60px 0; }
    .threats-header { margin-bottom: 40px; }
    .threats-header h2 { font-size: 24px; }
    .threats-main-media { margin-bottom: 50px; }
    .threat-feature-item { gap: 15px; }
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    .icon-image {
        max-width: 25px;
        max-height: 25px;
    }
    .feature-text-content h3 { font-size: 15px; }

    .industry-section { padding: 60px 0; }
    .industry-header h2 { font-size: 24px; }
    .card-text-content { padding: 25px 20px; }

    .cta-banner { padding: 50px 15px; }
    .cta-banner h2 { font-size: 26px; }
    .cta-banner p { font-size: 14px; }
    .btn-get-started {
        width: 100%;
        max-width: 250px; 
    }
}
    
    .disclaimer-section { padding: 0 0 40px 0; }
 

.thankyou-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    height:75vh;
}
.thankyou-content h1{
    padding-bottom: 20px;
}
 