*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatHero {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:white;
}

.logo img{
    height:60px;
}

nav a{
    margin-left:20px;
    text-decoration:none;
    color:#003399;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#e63946;
}

.hero {
    height:650px;
    background-image:url("/static/images/city.png");
    background-size:cover;
    background-position:center;
    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    padding:0;

    animation:floatHero 5s ease-in-out infinite;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:10px;

    opacity:0;
    animation:fadeUp 1s ease forwards;
}

.hero-content h2{
    font-size:28px;
    margin-bottom:30px;

    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:0.4s;
}

.hero-buttons{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:15px;

    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:0.8s;
}

.hero-buttons button{
    padding:12px 22px;
    border-radius:50px;

    background:rgba(255,255,255,0.12);
    color:white;

    border:1px solid rgba(255,255,255,0.25);

    cursor:pointer;

    display:inline-flex;
    align-items:center;
    gap:10px;

    font-size:16px;
    line-height:1;

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    transition:all 0.3s ease;
}

.hero-buttons button i{
    font-size:16px;
}

.hero-buttons button:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,0.25);
    border-color:rgba(255,255,255,0.4);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* =========================
   DOMAIN SEARCH
========================= */

.domain-search{
    margin:30px auto 0;
    display:flex;
    width:600px;
    max-width:90%;

    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:1.2s;
}

.domain-search input{
    flex:1;
    padding:18px 25px;

    border:none;
    outline:none;

    border-radius:50px 0 0 50px;

    font-size:16px;
}

.domain-search button{
    width:70px;

    border:none;

    background:white;
    color:#e63946;

    border-radius:0 50px 50px 0;

    cursor:pointer;

    transition:all 0.3s ease;
}

.domain-search button:hover{
    background:#f5f5f5;

    box-shadow:
        0 0 20px rgba(230,57,70,0.4);
}

/* =========================
   SERVICES
========================= */

.services{
    display:flex;
    justify-content:center;
    gap:60px;
    padding:120px 60px;
}

.service-card{
    width:380px;
    text-align:center;
    transition:0.4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:15px;
}

.service-card h3{
    color:white;
    padding:18px;
    font-size:20px;

    border-radius:50px;
    width:100%;

    text-align:center;
    margin-top:10px;
}

.service-card:nth-child(1) h3{
    background:linear-gradient(135deg,#ff9800,#ffcc80);
}

.service-card:nth-child(2) h3{
    background:#e63946;
}

.service-card:nth-child(3) h3{
    background:#2a9d8f;
}

/* =========================
   HOSTING TITLE
========================= */

.hosting-title{
    text-align:center;
    padding:40px;
}

.hosting-title h2{
    color:#003399;
}

/* =========================
   SUPPORT BANNER
========================= */

.support-banner{
    background:transparent;
    text-align:center;
    margin:80px auto;
    padding:0;
}

.support-banner img{
    width:80%;
    max-width:1000px;
    height:auto;

    display:block;
    margin:0 auto;

    filter:drop-shadow(0 15px 30px rgba(0,0,0,0.15));

    transition:0.4s ease;
}

.support-banner img:hover{
    transform:translateY(-5px);
}

/* =========================
   FOOTER
========================= */

footer{
    background:#111;
    color:white;

    display:flex;
    justify-content:space-around;

    padding:40px;
}