html{
scroll-behavior:smooth;
}
/* ================= HERO (HOME PAGE ONLY) ================= */

.hero{
    background:
    linear-gradient(rgba(2,6,23,0.75), rgba(2,6,23,0.92)),
    url("images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding:140px 20px;
    text-align:center;
    color:white;
}

/* ===== GLOBAL ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(180deg,#0f172a,#020617);
    color:white;
    line-height:1.6;
}

/* ===== NORMAL PAGE HEADERS ===== */

header{
    text-align:center;
    padding:60px 20px 40px;
}

header h1{
    font-size:42px;
}

.tagline{
    color:#94a3b8;
    margin-top:10px;
    font-size:18px;
}

/* ===== NAVBAR ===== */

nav{
    background:#020617;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.menu-toggle{
    display:none;
    font-size:28px;
    padding:15px;
    cursor:pointer;
    color:#38bdf8;
}

.nav-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:28px;
    padding:15px;
}

.nav-links a{
    text-decoration:none;
    color:#38bdf8;
    font-weight:bold;
    transition:0.25s;
}

.nav-links a:hover{
    color:white;
}

/* ===== SECTIONS ===== */

section{
    max-width:900px;
    margin:60px auto;
    padding:0 20px;
}

section h2{
    color:#38bdf8;
    margin-bottom:18px;
}

section p{
    color:#cbd5e1;
    font-size:18px;
}

/* ===== HOME BUTTON CARDS ===== */

a.card{
    display:block;
    background:#111827;
    border-radius:14px;
    margin:20px auto;
    max-width:700px;
    padding:22px;
    text-align:center;
    text-decoration:none;
    color:#38bdf8;
    font-weight:bold;
    font-size:18px;
    box-shadow:0 0 18px rgba(0,0,0,0.5);
    transition:0.35s;
}

a.card:hover{
    transform:translateY(-6px) scale(1.02);
    background:#0f172a;
    color:white;
    box-shadow:
        0 0 20px rgba(56,189,248,0.5),
        0 0 40px rgba(56,189,248,0.35),
        0 0 80px rgba(56,189,248,0.2);
}

/* ===== FORMS ===== */

form{
    max-width:420px;
    margin:30px auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

input, textarea{
    padding:12px;
    border-radius:10px;
    border:1px solid #334155;
    background:#020617;
    color:white;
    font-size:15px;
}

input:focus, textarea:focus{
    outline:none;
    border-color:#38bdf8;
    box-shadow:0 0 8px rgba(56,189,248,0.5);
}

button{
    padding:12px;
    border:none;
    background:linear-gradient(90deg,#38bdf8,#2563eb);
    color:white;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;
    transition:0.2s;
}

button:hover{
    opacity:0.9;
    transform:scale(1.02);
}

/* ===== FOOTER ===== */

footer{
    background:#020617;
    padding:40px 20px;
    text-align:center;
    margin-top:60px;
    color:white;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .menu-toggle{
        display:block;
        text-align:left;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        gap:20px;
        padding-bottom:25px;
        text-align:center;
    }

    .nav-links.active{
        display:flex;
    }

    header h1{
        font-size:34px;
    }

    section{
        margin:40px auto;
    }
}

/* ===== LIST ALIGNMENT ===== */

ul{
    list-style-position:inside;
    padding-left:0;
    margin-top:10px;
}

li{
    margin:8px 0;
    color:#cbd5e1;
    font-size:17px;
}

/* ===== CONTENT ALIGN ===== */

.info-box{
    text-align:left;
}

/* ===== CONTACT PAGE ===== */

.contact-form{
    margin:40px auto;
    text-align:center;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    max-width:420px;
    margin-left:auto;
    margin-right:auto;
}

.contact-form button{
    width:100%;
    max-width:420px;
    margin:0 auto;
    display:block;
}

/* ===== ACCORDION ===== */

.accordion{
    max-width:850px;
    margin:20px auto;
    text-align:left;
}

.accordion-item{
    margin-bottom:12px;
    border:1px solid rgba(56,189,248,0.25);
    border-radius:12px;
    overflow:hidden;
}

.accordion-title{
    background:#0f172a;
    padding:14px 18px;
    cursor:pointer;
    font-weight:bold;
    color:#38bdf8;
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    background:rgba(15,23,42,0.7);
    color:#cbd5e1;
    padding:0 18px;
    transition:max-height .4s ease;
}

.accordion-content p{
    padding:14px 0;
}

.accordion-item.active .accordion-content{
    max-height:300px;
}

/* ===== HERO TEXT ===== */

.hero-title{
    font-size:52px;
    font-weight:bold;
    background:linear-gradient(90deg,#67e8f9,#38bdf8,#22d3ee);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:20px;
}

.hero-subtitle{
    max-width:750px;
    margin:0 auto 35px;
    font-size:20px;
    color:#cbd5e1;
    line-height:1.7;
}

.hero-btn{
    display:inline-block;
    padding:14px 28px;
    background:linear-gradient(90deg,#38bdf8,#2563eb);
    color:white;
    text-decoration:none;
    border-radius:12px;
    font-weight:bold;
    font-size:18px;
    transition:0.3s;
}

.hero-btn:hover{
    transform:scale(1.08);
    box-shadow:
        0 0 15px rgba(56,189,248,0.7),
        0 0 35px rgba(56,189,248,0.5);
}
/* ===== DOMAIN GRID ===== */

.domains{
    padding:80px 20px;
    text-align:center;
}

.domain-title{
    font-size:34px;
    margin-bottom:50px;
    color:#38bdf8;
}

/* grid layout */
.domain-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

/* card */
.domain-card{
    background:rgba(15,23,42,0.7);
    border:1px solid rgba(56,189,248,0.25);
    border-radius:18px;
    padding:30px 25px;
    text-decoration:none;
    color:white;
    transition:0.35s;
    position:relative;
    overflow:hidden;
}

/* glow hover */
.domain-card:hover{
    transform:translateY(-8px) scale(1.03);
    border-color:#38bdf8;
    box-shadow:
        0 0 15px rgba(56,189,248,0.4),
        0 0 40px rgba(14,165,233,0.3),
        0 0 80px rgba(14,165,233,0.25);
}

/* heading */
.domain-card h3{
    color:#67e8f9;
    margin-bottom:15px;
    font-size:22px;
}

/* description */
.domain-card p{
    color:#cbd5e1;
    font-size:15px;
    line-height:1.6;
}
.contact-section{
    text-align:center;
}

.contact-section h2{
    width:100%;
    text-align:center;
    margin-bottom:25px;
}

.contact-section form{
    margin-left:auto;
    margin-right:auto;
}
