/* =========================================
   GOOGLE FONT
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================================
   RESET
========================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:linear-gradient(to bottom, #f4f7fb, #ffffff);
    color:#1e293b;
    overflow-x:hidden;
    line-height:1.8;
}

/* =========================================
   GLOBAL CONTAINER SYSTEM
========================================= */

section{
    width:100%;
}
ul li{
  list-style:none;
}
/* Main Parent Layout Width */
.toplinks-hero,
.dream-hero,
.hosting-hero,
.blog-hero,
.brand-hero,
.choose-hero,
.portfolio-hero,
.cta-hero{
    width:min(1200px, 92%);
    margin:70px auto;
    padding:70px 50px;
    border-radius:30px;
    position:relative;
    overflow:hidden;
}

/* =========================================
   SECTION BACKGROUNDS
========================================= */

.toplinks-hero{
    background:linear-gradient(135deg, #0f172a, #1e3a8a);
    color:#fff;
}

.dream-hero{
    background:#ffffff;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.hosting-hero{
    background:linear-gradient(135deg, #0f172a, #0f766e);
    color:#fff;
}

.blog-hero{
    background:#ffffff;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.brand-hero{
    background:linear-gradient(135deg, #111827, #7c3aed);
    color:#fff;
}

.choose-hero{
    background:#ffffff;
    text-align:center;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.portfolio-hero{
    background:#f8fafc;
    text-align:center;
}

.cta-hero{
    background:linear-gradient(135deg, #2563eb, #1d4ed8);
    color:#fff;
    text-align:center;
}

/* =========================================
   FLEX LAYOUTS
========================================= */

.toplinks-hero,
.dream-hero,
.hosting-hero,
.blog-hero,
.brand-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

/* =========================================
   CHILD WIDTH CONTROL
========================================= */

.toplinks-left,
.toplinks-right,
.dream-left,
.dream-right,
.hosting-left,
.hosting-right,
.blog-left,
.blog-right,
.brand-left,
.brand-right{
    flex:1 1 480px;
    max-width:100%;
}

/* =========================================
   IMAGES
========================================= */

img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
    border-radius:24px;
    object-fit:cover;
    transition:0.4s ease;
}

img:hover{
    transform:scale(1.02);
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3{
    line-height:1.3;
    margin-bottom:20px;
    font-weight:700;
}

.toplinks-title,
.hosting-title{
    font-size:clamp(2.5rem, 5vw, 4.5rem);
    font-weight:800;
}

.dream-title,
.blog-title,
.brand-title,
.choose-title,
.portfolio-title,
.cta-title{
    font-size:clamp(2rem, 4vw, 3.2rem);
}

.toplinks-slogan1{
    font-size:1.15rem;
    margin-bottom:20px;
    color:#dbeafe;
}

.toplinks-desc,
.hosting-desc,
.blog-intro,
.brand-desc,
.choose-sub,
.cta-sub,
.dream-sub{
    font-size:1.02rem;
}

.dream-title span,
.cta-title span{
    color:#facc15;
}

/* =========================================
   PARAGRAPH COLORS
========================================= */

.dream-sub,
.blog-intro,
.choose-sub{
    color:#475569;
}

.hosting-desc,
.brand-desc{
    color:#e2e8f0;
}

/* =========================================
   BUTTONS
========================================= */

.toplinks-buttons,
.cta-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.toplinks-btn,
.cta-btn{
    text-decoration:none;
    padding:15px 34px;
    border-radius:14px;
    font-weight:600;
    font-size:1rem;
    transition:0.4s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    text-align:center;
}

/* WhatsApp Button */
.whatsapp,
.quote{
    background:#22c55e;
    color:#fff;
    box-shadow:0 10px 20px rgba(34,197,94,0.3);
}

/* Secondary Button */
.explore,
.start{
    background:#ffffff;
    color:#1e3a8a;
    box-shadow:0 10px 20px rgba(255,255,255,0.2);
}

.toplinks-btn:hover,
.cta-btn:hover{
    transform:translateY(-6px);
}

/* =========================================
   UL & LI STYLING
========================================= */

ul{
    margin-top:20px;
    padding-left:22px;
}

li{
    margin-bottom:14px;
    font-size:1rem;
}

/* =========================================
   WHY CHOOSE US
========================================= */

.choose-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:30px;
    margin-top:50px;
}

.choose-item{
    background:#ffffff;
    padding:35px 25px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.07);
    transition:0.4s ease;
}

.choose-item:hover{
    transform:translateY(-8px);
}

/* =========================================
   PORTFOLIO
========================================= */

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:30px;
    margin-top:50px;
}

.portfolio-card{
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.portfolio-card:hover{
    transform:translateY(-8px);
}

.portfolio-card img{
    height:260px;
}

.portfolio-card h3{
    padding:20px;
}

/* =========================================
   TABLET RESPONSIVENESS
========================================= */

@media (max-width:992px){

    .toplinks-hero,
    .dream-hero,
    .hosting-hero,
    .blog-hero,
    .brand-hero{
        text-align:center;
    }

    .toplinks-left,
    .toplinks-right,
    .dream-left,
    .dream-right,
    .hosting-left,
    .hosting-right,
    .blog-left,
    .blog-right,
    .brand-left,
    .brand-right{
        flex:1 1 100%;
    }

    ul{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        padding-left:0;
        list-style-position:inside;
        text-align:center;
    }

    li{
        width:100%;
        text-align:center;
    }

    .choose-item{
        text-align:center;
    }
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */

@media (max-width:768px){

    .toplinks-hero,
    .dream-hero,
    .hosting-hero,
    .blog-hero,
    .brand-hero,
    .choose-hero,
    .portfolio-hero,
    .cta-hero{
        width:min(100%, 94%);
        padding:55px 22px;
        margin:40px auto;
        border-radius:24px;
    }

    .toplinks-title,
    .hosting-title{
        font-size:2.2rem;
    }

    .dream-title,
    .blog-title,
    .brand-title,
    .choose-title,
    .portfolio-title,
    .cta-title{
        font-size:1.8rem;
    }

    .toplinks-buttons,
    .cta-buttons{
        flex-direction:column;
        align-items:center;
        justify-content:center;
        width:100%;
    }

    .toplinks-btn,
    .cta-btn{
        width:100%;
        max-width:340px;
    }

    .portfolio-card img{
        height:220px;
    }

    ul{
        align-items:center;
        justify-content:center;
        text-align:center;
    }

    li{
        text-align:center;
    }
}

/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media (max-width:480px){

    body{
        font-size:15px;
    }

    .toplinks-hero,
    .dream-hero,
    .hosting-hero,
    .blog-hero,
    .brand-hero,
    .choose-hero,
    .portfolio-hero,
    .cta-hero{
        padding:45px 18px;
    }

    .toplinks-title,
    .hosting-title{
        font-size:1.9rem;
    }

    .dream-title,
    .blog-title,
    .brand-title,
    .choose-title,
    .portfolio-title,
    .cta-title{
        font-size:1.5rem;
    }

    p,
    li{
        font-size:0.95rem;
    }

    .toplinks-btn,
    .cta-btn{
        padding:14px 20px;
        font-size:0.95rem;
    }
}