body{
    margin:0;
    font-family:Arial;
    background:#111;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:#000;
    box-shadow:0 0 20px cyan;
}

.logo{
    color:cyan;
    font-size:24px;
    font-weight:bold;
    text-shadow:0 0 10px cyan;
}

.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li{
    margin:0 15px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-size:18px;
    padding:8px 12px;
    transition:0.3s;
}

.nav-links a:hover{
    color:cyan;
    text-shadow:0 0 10px cyan,0 0 20px cyan;
}

.menu-btn{
    display:none;
    color:white;
    font-size:26px;
    cursor:pointer;
}

@media(max-width:768px){
    .nav-links{
        display:none;
        flex-direction:column;
        background:black;
        position:absolute;
        top:60px;
        right:0;
        width:200px;
    }

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

    .menu-btn{
        display:block;
    }
}
/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #203a43, #0f2027);
}

.hero h1 {
    font-size: 48px;
    color: cyan;
    text-shadow: 0 0 15px cyan;
}

.hero p {
    font-size: 20px;
    margin: 15px 0 30px;
    color: #fff;
}

.hero .btn {
    padding: 15px 30px;
    border: none;
    background: cyan;
    color: black;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.hero .btn:hover {
    box-shadow: 0 0 20px cyan;
}

/* Persuasive Paragraphs */
.persuasive {
    text-align: center;
    padding: 50px 20px;
    background: rgba(0,0,0,0.7);
    margin: 20px;
    border-radius: 10px;
}

.persuasive h2 {
    font-size: 36px;
    color: cyan;
    margin-bottom: 20px;
    text-shadow: 0 0 10px cyan;
}

.persuasive p {
    font-size: 18px;
    margin: 15px 0;
    color: #fff;
    line-height: 1.6;
}

/* Available Phones */
.Available {
    padding: 50px 20px;
    text-align: center;
}

.Available h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: cyan;
    text-shadow: 0 0 10px cyan;
}

.phone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.phone-card {
    background: rgba(0,0,0,0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px cyan;
    transition: 0.3s;
}

.phone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px cyan;
}

.phone-card .phone-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.phone-card h3 {
    margin: 10px 0;
    color: #fff;
}

.phone-card p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.phone-card .btn {
    padding: 10px 20px;
    border: none;
    background: cyan;
    color: black;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.phone-card .btn:hover {
    box-shadow: 0 0 15px cyan;
}