@import url('css/main.css');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
:root{
    --main-colour:#13C213;
    --sub-colour: #018036;
    --black-colour:#171717;
    --grey-colour: #6A6A6A;
    --white-colour:#FFFFFF;
}
body{
    overflow: auto;
}

.header-non h1{
    color: var(--white-colour);
    padding-top: 50px;
}
.header-non{
    background: url('../assets/up-head.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.services-main{
    padding: 130px 100px 130px 100px;
}
.service-main-bottom{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 50px;
}
.serv-cards{
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}
.s1{
    background: url("../assets/c2.png");
    background-size: cover;
    background-position: center;
}
.s2{
    background: url("../assets/c1.png");
    background-size: cover;
    background-position: center;
}
.s3{
    background: url("../assets/c6.png");
    background-size: cover;
    background-position: center;
}
.s4{
    background: url("../assets/c4.png");
    background-size: cover;
    background-position: center;
}
.s5{
    background: url("../assets/c5.png");
    background-size: cover;
    background-position: center;
}
.s6{
    background: url("../assets/c3.png");
    background-size: cover;
    background-position: center;
}
.s7{
    background: url("../assets/c7.png");
    background-size: cover;
    background-position: center;
}
.s8{
    background: url("../assets/c9.png");
    background-size: cover;
    background-position: center;
}
.s9{
    background: url("../assets/c8.png");
    background-size: cover;
    background-position: center;
}
.card-hd{
    font-size: 21px;
    color: var(--white-colour);
    font-weight: 600;
}
.card-bdy{
    font-size: 16px;
    color: #949494;
    padding-top: 10px;
}


/* Responsive Codes */

/* Mobile styles (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    .header {
        font-size: 20px;
    }
    .main-content {
        font-size: 14px;
    }
    .services-main{
        padding: 30px 20px;
    }
    .service-main-bottom{
        grid-template-columns: repeat(1, 1fr);
        padding-top: 20px;
    }
    .services-main h2{
        text-align: left;
    }
}

/* Tablet styles (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .services-main h2{
        text-align: left;
    }
    .service-main-bottom{
        grid-template-columns: repeat(2, 1fr)
    }
    .serv-cards{
        padding: 20px;
    }
}

/* Desktop styles (769px to 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .who-we{
        flex-direction: column;
        align-items: center;
    }
    .who-we h2{
        text-align: left;
        padding: 2px 0px 20px 0px;
    }
    .who-right-bottom{
        padding-top: 2px;
    }
}

/* Large Desktop styles (1201px and above) */
@media (min-width: 1201px) {



}