/* =========================
   RESET & BASE
========================= */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: "Google Sans", sans-serif;
}
body {
    background: #0b0f14;
    color: #fff;
    overflow-x: hidden;
}

/* =========================
   HEADER NAV
========================= */
.ee-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
    position: sticky;
    top: 0;
    background: rgba(11,15,20,0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
}
.ee-header .ee-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ef3838;
}
.ee-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 40px;
    font-weight: 500;
    position: relative;
}
.ee-nav a::after {
    content: '';
    height: 2px;
    width: 0;
    background: #ef3838;
    position: absolute;
    left: 0; bottom: -6px;
    transition: width 0.3s;
}
.ee-nav a:hover::after {
    width: 100%;
}

/* =========================
   HERO SECTION
========================= */
.ee-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 80px;
    position: relative;
}
.ee-hero-content {
    max-width: 650px;
}
.ee-hero h1 {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, #ef3838, #992111);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}
.ee-hero p {
    font-size: 18px;
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 30px;
}
.ee-btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg,#ef3838,#992111);
    color: #000;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.ee-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(239,56,56,0.35);
}

/* HERO ANIMATION ELEMENTS */
.ee-hero-animation .ee-floating-sphere,
.ee-hero-animation .ee-floating-cube,
.ee-hero-animation .ee-floating-lines {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite alternate;
}
.ee-floating-sphere { width: 120px; height: 120px; background: #ef3838; top: 20%; left: 60%; }
.ee-floating-cube { width: 80px; height: 80px; background: #992111; top: 60%; left: 30%; border-radius: 16px; }
.ee-floating-lines { width: 2px; height: 180px; background: #ef3838; top: 40%; left: 50%; }

/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0) rotate(0deg);}
    50% { transform: translateY(-40px) rotate(15deg);}
    100% { transform: translateY(0) rotate(0deg);}
}

/* =========================
   TIMELINE MODULES
========================= */
.ee-modules {
    padding: 120px 60px;
    background: linear-gradient(135deg,#111,#0b0f14);
    position: relative;
}
.ee-modules h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    background: linear-gradient(135deg,#ef3838,#992111);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ee-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 20px 0;
    
}
.ee-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
background: linear-gradient(#ef3838,#00ff7f);    transform: translateX(-50%);
}
.ee-timeline-item {
    position: relative;
    width: 45%;
    padding: 20px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    margin-bottom: 80px;
    backdrop-filter: blur(12px);
    transition: transform 0.5s;
}
.ee-timeline-item.left { left: 0; }
.ee-timeline-item.right { left: 55%; }
.ee-timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px; height: 20px;
    background: #ef3838;
    border-radius: 50%;
    border: 3px solid #0b0f14;
}
.ee-timeline-item.left::before { right: -10px; }
.ee-timeline-item.right::before { left: -10px; }
.ee-timeline-item h3 { margin-bottom: 12px; font-size: 22px; }
.ee-timeline-item p { color: #cfcfcf; line-height: 1.7; }

/* =========================
   CALL TO ACTION
========================= */
.ee-cta {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(135deg,#111,#1a1f25);
}
.ee-cta h2 { font-size: 42px; margin-bottom: 20px; }
.ee-cta p { font-size: 18px; color: #cfcfcf; margin-bottom: 30px; }

/* =========================
   FOOTER
========================= */
.ee-footer {
    background: #0b0f14;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
}
.ee-footer a { color: #ef3838; margin: 0 15px; text-decoration: none; }
.ee-footer a:hover { text-decoration: underline; }
.ee-footer-bottom { margin-top: 30px; font-size: 14px; color: #aaa; }

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1024px){
    .ee-hero { flex-direction: column; padding: 100px 40px; }
    .ee-hero-animation .ee-floating-sphere, .ee-floating-cube { display:none; }
    .ee-timeline-item.left, .ee-timeline-item.right { width: 100%; left: 0; margin-bottom: 60px; }
    .ee-timeline::before { left: 20px; }
}
@media(max-width:600px){
    .ee-hero h1 { font-size: 36px; }
    .ee-hero p { font-size: 16px; }
}
/* =========================
   FOOTER
========================= */
.footer {
    background: radial-gradient(
        circle at top left,
        #2b0a0a,
        #120000 60%
    );
    color: #e6e6e6;
    padding: 100px 20px 40px;
    position: relative;
    overflow: hidden;
}

.footer .container {
    max-width: 1300px;
    margin: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-content > div {
    transition: transform .4s ease;
}

.footer-content > div:hover {
    transform: translateY(-6px);
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo .logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.footer-logo .logo-main {
    font-family: "Google Sans", sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
}

.footer-logo .logo-tag {
    display: block;
    font-size: 13px;
    color: #ffb3b3;
}

.footer-logo p {
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
    max-width: 380px;
}

.footer h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #ff9a9a;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ef3838;
}

.footer-contact p {
    font-size: 15px;
    margin-bottom: 14px;
    color: #d0d0d0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    color: #ef3838;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ef3838, #992111);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #bfbfbf;
}

.footer-bottom span {
    color: #ef3838;
}

.logofooter{
    width: 60px;
}