.hero-gradient{
    width:100%;
    height:670px;
    position:relative;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    background:linear-gradient(
        -45deg,
        #0f172a,
        #f7b24a,
        #faac7f,
        #fa7814
    );

    background-size:400% 400%;
    animation:gradientMove 8s ease infinite;

    clip-path: polygon(
        0 0,
        100% 0,
        100% 70%,
        0 100%
    );
}

.network-hero-content{
    color:#fff;
    max-width:900px;
    padding:20px;
    z-index:2;
}

.network-hero-content h1{
    font-size:55px;
    margin-bottom:20px;
    font-weight:700;
    color:white;
}

.network-hero-content p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    padding:14px 35px;
    background:#fff;
    color:#2563eb;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.hero-btn:hover{
    transform:translateY(-3px);
}

@keyframes gradientMove{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}


@media (max-width:1100px){

    .hero-gradient{
        height:650px;
    }

    .network-hero-content h1{
        font-size:48px;
    }

    .network-hero-content p{
        font-size:16px;
    }
}

@media (max-width:768px){

    .hero-gradient{
        height:630px;

        /* simpler shape for mobile */
        clip-path: polygon(
            0 0,
            100% 0,
            100% 85%,
            0 100%
        );
        padding:0 20px;
    }

    .network-hero-content h1{
        font-size:36px;
    }

    .network-hero-content p{
        font-size:16px;
    }

    
	
}

@media (max-width:480px){

    .hero-gradient{
        height:560px;

        clip-path: polygon(
            0 0,
            100% 0,
            100% 90%,
            0 100%
        );
    }

    .network-hero-content h1{
        font-size:30px;
        margin-bottom:12px;
    }

    .network-hero-content p{
        font-size:16px;
        line-height:1.5;
        margin-bottom:20px;
    }

    
	
}


/* -----------------------------text and image code ---------------------- */
.network-section{
    padding:80px 10%;
}

.network-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.network-content{
    flex:1;
}

 

.network-content p{
    font-size:17px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.network-btn:hover{
    background:#1d4ed8;
}

.network-image{
    flex:1;
}

.network-image img{
    width:100%;
    border-radius:15px;
    display:block;
}

@media (max-width:1100px){

    .network-section{
        padding:70px 6%;
    }

    .network-container{
        gap:30px;
    }

    .network-content p{
        font-size:16px;
    }

    .network-image img{
        width:100%;
    }
}

@media (max-width:768px){

    .network-section{
        padding:60px 5%;
    }

    .network-container{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .network-content{
        width:100%;
    }

    .network-content p{
        font-size:16px;
        line-height:1.6;
    }

    .network-image{
        width:100%;
    }

    .network-image img{
        width:100%;
        border-radius:12px;
    }
}

@media (max-width:480px){

    .network-section{
        padding:50px 15px;
    }

    .network-content p{
        font-size:16px;
        line-height:1.5;
    }

    .network-image img{
        border-radius:10px;
    }
}
 /* ------------------------12 service cards-------------------------- */
 .services-section{
    padding:100px 8%;
    background:
    linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url("../images/networkbg.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.serve-service-card{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.2);
    backdrop-filter:blur(10px);

    padding:30px;
    border-radius:20px;
    text-align:center;
    transition:all 0.4s ease;
}

.serve-service-card:hover{
    transform:translateY(-12px);
    background:rgba(253, 253, 253, 0.25);
    box-shadow:0 15px 35px rgba(0,0,0,0.3);
}

.serve-section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

 
.serve-section-title h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}
.serve-section-title h2::after{
    content:"";
    width:80px;
    height:4px;
    background:#f8f7f7;
    display:block;
    margin:15px auto 0;
    border-radius:10px;
}

.serve-section-title p{
    color:#e5e5e5;
    font-size:17px;
    line-height:1.8;
}

/* Round Icon */
.serve-service-card i{
    width:90px;
    height:90px;
    line-height:90px;
    font-size:38px;
    color:#fd790d;
    background:rgba(255,255,255,0.15);
    border:2px solid rgba(255,255,255,0.25);
    border-radius:50%;
    display:inline-block;
    margin-bottom:25px;
    transition:all 0.4s ease;
}

/* Icon Hover */
.serve-service-card:hover i{
    background:#fd790d;
    color:#fff;
    transform:rotateY(180deg) scale(1.1);
}

/* Heading */
.serve-service-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
    font-weight:600;
}

/* Paragraph */
.serve-service-card p{
    color:#f1f1f1;
    font-size:15px;
    line-height:1.8;
}

 @media (max-width:1100px){

    .services-section{
        padding:80px 6%;
        background-attachment:scroll;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .serve-section-title h2{
        font-size:40px;
    }

    .serve-service-card{
        padding:25px;
    }

    .serve-service-card i{
        width:80px;
        height:80px;
        line-height:80px;
        font-size:32px;
    }
}

@media (max-width:768px){

    .services-section{
        padding:70px 5%;
        background-attachment:fixed;
    }

   .services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }
    .serve-section-title{
        margin-bottom:40px;
    }

    .serve-section-title h2{
        font-size:32px;
    }

    .serve-section-title p{
        font-size:16px;
    }

    .serve-service-card{
        padding:22px;
    }

    .serve-service-card h3{
        font-size:20px;
    }

    .serve-service-card p{
        font-size:16px;
    }
}

@media (max-width:480px){

    .services-section{
        padding:60px 15px;
    }

    .serve-section-title h2{
        font-size:27px;
    }

    .serve-section-title h2::after{
        width:60px;
    }
    
    .services-grid{
        grid-template-columns:1fr;
        gap:20px;
    }
    .serve-section-title p{
        font-size:16px;
        line-height:1.6;
    }

    .serve-service-card{
        padding:20px;
        border-radius:15px;
    }

    .serve-service-card i{
        width:75px;
        height:75px;
        line-height:70px;
        font-size:28px;
        margin-bottom:18px;
    }

    .serve-service-card h3{
        font-size:20px;
    }

    .serve-service-card p{
        font-size:16px;
        line-height:1.6;
    }
}