/* =========================
   GLOBAL RESET
========================= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* =========================
   HEADER STYLE
========================= */
.site-header{
    position: sticky;
    top: 0;
    width: 100%;
    background: #0b1220;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
}

/* Container */
.container{
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LOGO
========================= */
.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo img{
    width: 38px;
    height: 38px;
    border-radius: 8px;
}

/* =========================
   NAV LINKS
========================= */
.nav-links a{
    text-decoration: none;
    color: #cbd5e1;
    margin-left: 18px;
    font-size: 15px;
    transition: 0.3s;
    position: relative;
}

/* Hover effect */
.nav-links a:hover{
    color: #38bdf8;
}

/* Active link */
.nav-links a.active{
    color: #38bdf8;
}

/* underline animation */
.nav-links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #38bdf8;
    transition: 0.3s;
}

.nav-links a:hover::after{
    width: 100%;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px){
    .nav-links{
        display: none; /* simple mobile version for now */
    }
}






/* =========================
   HERO SECTION
========================= */
.hero{
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0b1220, #111c33);
    color: white;
    padding: 60px 20px;
}

/* Layout */
.hero-container{
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Content */
.hero-content{
    flex: 1;
}

.hero-content h1{
    font-size: 48px;
    line-height: 1.2;
}

.hero-content h1 span{
    color: #38bdf8;
}

.hero-content p{
    margin-top: 15px;
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 500px;
}

/* Buttons */
.hero-buttons{
    margin-top: 25px;
}

.btn{
    display: inline-block;
    padding: 12px 18px;
    margin-right: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.primary{
    background: #38bdf8;
    color: #0b1220;
    font-weight: bold;
}

.primary:hover{
    background: #0ea5e9;
}

.secondary{
    border: 1px solid #38bdf8;
    color: #38bdf8;
}

.secondary:hover{
    background: #38bdf8;
    color: #0b1220;
}

/* Tags */
.hero-tags{
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-tags span{
    font-size: 12px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    color: #cbd5e1;
}

/* Image */
.hero-image img{
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
    .hero-container{
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1{
        font-size: 36px;
    }

    .hero-content p{
        margin: auto;
    }

    .hero-buttons{
        display: flex;
        justify-content: center;
    }
}












/* =========================
   ABOUT SECTION
========================= */
.about{
    width: 100%;
    padding: 80px 20px;
    background: #0b1220;
    color: white;
}

.about-container{
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Content */
.about-content{
    flex: 1;
}

.about-content h2{
    font-size: 36px;
    margin-bottom: 20px;
    color: #38bdf8;
}

.about-content p{
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* List */
.about-list{
    margin-top: 15px;
    list-style: none;
}

.about-list li{
    margin-bottom: 10px;
    color: #e2e8f0;
    font-size: 15px;
}

/* Image */
.about-image img{
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
    .about-container{
        flex-direction: column;
        text-align: center;
    }

    .about-content h2{
        font-size: 28px;
    }

    .about-list{
        padding: 0;
    }
}

















/* =========================
   PLATFORMS SECTION
========================= */
.platforms{
    width: 100%;
    padding: 80px 20px;
    background: #0f172a;
    color: white;
}

/* Title */
.section-title{
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2{
    font-size: 36px;
    color: #38bdf8;
}

.section-title p{
    color: #cbd5e1;
    margin-top: 10px;
}

/* Grid */
.platform-grid{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */
.platform-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.platform-card:hover{
    transform: translateY(-5px);
    border-color: #38bdf8;
}

/* Text */
.platform-card h3{
    color: #ffffff;
    margin-bottom: 10px;
}

.platform-card p{
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Button */
.btn{
    display: inline-block;
    padding: 10px 14px;
    background: #38bdf8;
    color: #0b1220;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
}

.btn:hover{
    background: #0ea5e9;
}

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

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


















/* =========================
   TECH SEL SECTION
========================= */
.techsel{
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0b1220, #111c33);
    color: white;
}

.techsel-container{
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Content */
.techsel-content{
    flex: 1;
}

.techsel-content h2{
    font-size: 36px;
    color: #38bdf8;
    margin-bottom: 20px;
}

.techsel-content p{
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* List */
.techsel-list{
    margin-top: 15px;
    list-style: none;
}

.techsel-list li{
    margin-bottom: 10px;
    color: #e2e8f0;
    font-size: 15px;
}

/* Status Box */
.status-box{
    margin-top: 20px;
    display: inline-block;
    padding: 10px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(56,189,248,0.4);
    border-radius: 8px;
    color: #38bdf8;
    font-weight: bold;
}

/* Image */
.techsel-image img{
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
    .techsel-container{
        flex-direction: column;
        text-align: center;
    }

    .techsel-content h2{
        font-size: 28px;
    }
}














/* =========================
   WHY HAPROSEL SECTION
========================= */
.why-haprosel{
    width: 100%;
    padding: 80px 20px;
    background: #0b1220;
    color: white;
}

.why-container{
    max-width: 1200px;
    margin: auto;
}

/* Title */
.section-title{
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2{
    font-size: 36px;
    color: #38bdf8;
}

.section-title p{
    color: #cbd5e1;
    margin-top: 10px;
}

/* Grid */
.why-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card */
.why-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.why-card:hover{
    transform: translateY(-5px);
    border-color: #38bdf8;
}

/* Text */
.why-card h3{
    margin-bottom: 10px;
    color: #ffffff;
}

.why-card p{
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

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

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
















/* =========================
   DEVELOPER VISION SECTION
========================= */
.developer-vision{
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0b1220, #0f172a);
    color: white;
}

.vision-container{
    max-width: 1000px;
    margin: auto;
}

/* Title */
.section-title{
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2{
    font-size: 36px;
    color: #38bdf8;
}

.section-title p{
    color: #cbd5e1;
    margin-top: 10px;
}

/* Box */
.vision-box{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 12px;
}

.vision-box h3{
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 22px;
}

.vision-box p{
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Points */
.vision-points{
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.point{
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 14px;
    border: 1px solid rgba(56,189,248,0.2);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 700px){
    .vision-points{
        grid-template-columns: 1fr;
    }
}













/* =========================
   NAVIGATION LINKS SECTION
========================= */
.navigation-links{
    width: 100%;
    padding: 80px 20px;
    background: #0b1220;
    color: white;
}

.nav-container{
    max-width: 1200px;
    margin: auto;
}

/* Title */
.section-title{
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2{
    font-size: 36px;
    color: #38bdf8;
}

.section-title p{
    color: #cbd5e1;
    margin-top: 10px;
}

/* Grid */
.nav-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card */
.nav-card{
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    color: white;
}

.nav-card:hover{
    transform: translateY(-5px);
    border-color: #38bdf8;
}

/* Text */
.nav-card h3{
    margin-bottom: 8px;
    color: #ffffff;
}

.nav-card p{
    color: #cbd5e1;
    font-size: 14px;
}

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

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











/* =========================
   SEO CONTENT BLOCK
========================= */
.seo-content{
    width: 100%;
    padding: 60px 20px;
    background: #0f172a;
    color: white;
}

.seo-container{
    max-width: 1000px;
    margin: auto;
}

/* Text */
.seo-content h2{
    font-size: 30px;
    color: #38bdf8;
    margin-bottom: 15px;
}

.seo-content p{
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Keywords */
.seo-keywords{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.seo-keywords span{
    font-size: 12px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(56,189,248,0.2);
    border-radius: 20px;
    color: #cbd5e1;
}
















/* =========================
   COMING SOON BANNER
========================= */
.coming-soon{
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0b1220, #111c33);
    color: white;
    text-align: center;
}

/* Box */
.banner-box{
    max-width: 900px;
    margin: auto;
    padding: 30px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(56,189,248,0.3);
}

/* Heading */
.banner-box h2{
    font-size: 28px;
    color: #38bdf8;
    margin-bottom: 15px;
}

/* Text */
.banner-box p{
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Tags */
.status-tags{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.status-tags span{
    font-size: 12px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    color: #cbd5e1;
}

/* Buttons */
.banner-buttons{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn{
    display: inline-block;
    padding: 10px 14px;
    background: #38bdf8;
    color: #0b1220;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.btn:hover{
    background: #0ea5e9;
}

.outline{
    background: transparent;
    border: 1px solid #38bdf8;
    color: #38bdf8;
}

.outline:hover{
    background: #38bdf8;
    color: #0b1220;
}

















/* =========================
   FOOTER
========================= */
.site-footer{
    width: 100%;
    background: #0b1220;
    color: white;
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Container */
.footer-container{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Brand */
.footer-brand{
    flex: 1;
    min-width: 250px;
}

.footer-brand h3{
    font-size: 24px;
    color: #38bdf8;
    margin-bottom: 10px;
}

.footer-brand p{
    color: #cbd5e1;
    line-height: 1.6;
}

/* Links */
.footer-links{
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links h4{
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-links a{
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-links a:hover{
    color: #38bdf8;
}

/* Bottom */
.footer-bottom{
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px){
    .footer-container{
        flex-direction: column;
        text-align: center;
    }

    .footer-links{
        justify-content: center;
    }
}