
/* Hero Section */
.hero-split {
   height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding-right:25%;
    
    /* 1. This pulls your local image */
    /* Adjust 'hero-bg.jpg' to match your actual file name exactly */
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9) 30%, rgba(10, 25, 47, 0.2) 100%), 
                url('images/background-home.jpg'); 
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.badge {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--sky-blue);
    margin-bottom: 20px;
    display: block;
}
.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding-left: 25%;
}
.hero-text h1 { 
    font-size: 4rem;
    font-weight: 800; /* Extra bold for the "Forge" look */
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 2px;
 }
.hero-text {
    max-width: 800px; /* Keeps text on the left side */
    width: 100%;
    flex: 1;
    z-index: 2;
}
.text-gradient {
  background: linear-gradient(to right, #ffffff, var(--sky-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-text p { 
    color: var(--slate); 
    max-width: 500px; 
    font-size: 1.1rem; 
    margin-bottom: 40px; 
}

/* Buttons */
.btn-glow {
    background: var(--sky-blue);
    color: var(--navy-deep);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
    transition: 0.3s;
}

.btn-glow:hover { box-shadow: 0 0 35px rgba(0, 210, 255, 0.5); transform: translateY(-3px); }

/* Features */
.features-grid { padding: 100px 0; background: var(--navy-light); }
.container { max-width: 1700px; margin: 0 auto; display: flex; gap: 30px; padding: 0 20px; }

.feature-card {
    background: var(--navy-deep);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    flex: 1;
    transition: 0.3s;
}


.feature-card:hover { border-color: var(--sky-blue); transform: translateY(-10px); }
.feature-card .icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.feature-card h3 { margin-bottom: 15px; color: var(--sky-blue); }
.feature-card h4 { margin-bottom: 15px; color: var(--sky-blue); }


/*-------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------*/

/* Base style for both buttons to ensure identical "shape" */
.btn-glow, .btn-outline {
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px; /* Modern rounded-square look */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-align: center;
    min-width: 180px; /* Ensures they are the same width regardless of text */
    border: 2px solid var(--sky-blue); /* Both need a border for sizing symmetry */
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Primary Button (Filled) */
.btn-glow {
    background: var(--sky-blue);
    color: var(--navy-deep);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.btn-glow:hover {
    background: #5cdfff; /* Slightly lighter on hover */
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.5);
}

/* Secondary Button (Outlined/Support) */
.btn-outline {
    background: transparent;
    color: var(--sky-blue);
}

.btn-outline:hover {
    background: rgba(0, 210, 255, 0.1); /* Subtle glow fill */
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

/* Mobile: Stack them if the screen is too narrow */
@media (max-width: 480px) {
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
    .btn-glow, .btn-outline {
        width: 100%;
    }
}


.general-speach {
    padding: 120px 20px;
    /* This creates a subtle 'layered' look */
    background: linear-gradient(180deg, #0a192f 0%, #112240 100%); 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(0, 210, 255, 0.1);
    border-bottom: 1px solid rgba(0, 210, 255, 0.1);
}

.container-speach {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers everything horizontally */
}

.badge-mini {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--sky-blue);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.general-speach h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--white);
    text-transform: uppercase;
}

.text-glow {
    color: var(--sky-blue);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

.general-speach p {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 30px;
    /* This keeps the text readable and centered */
    max-width: 750px; 
}

/* A cool tech-line under the text */
.tech-divider {
    width: 60px;
    height: 4px;
    background: var(--sky-blue);
    box-shadow: 0 0 15px var(--sky-blue);
    border-radius: 2px;
}