*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    max-width: 100%;
    overflow-x: hidden;
}
nav{
    position: sticky !important;
    top: 0;
    z-index: 1000;
    background: white;
}
.logo {
    font-family: 'poppins', sans-serif;
    font-weight: 800;
    font-size: 30px;
}
ul{
    li{
       font-family: 'poppins', sans-serif;
       font-weight: 400;
       font-size: 20px;
    }
}
.hero {
    height: 600px;
    align-content: center;
    background-image: url(./images/hero-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-content {
    max-width: 600px;
    margin: 0 auto;
    h1{
        color: white;
        font-family: 'poppins', sans-serif;
        font-weight: 800;
        font-size: 54px;
        line-height: 65px;
    }
    p{
        color: white;
        font-family: 'poppins', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
    }
}
.about{
    padding: 120px 0;
    background: white;
    .container-about{
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        p{
            font-family: 'inter', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #0D6EFD;
        }
        h2{
            font-family: 'poppins', sans-serif;
            font-weight: 800;
            font-size: 48px;
            color: #1c1917;
        }
        .para{
            font-family: 'inter', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #1c1917;
        }
        .grid-cols{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            .col{
                border: 1px solid #ddd;
                padding: 20px;
                border-radius: 12px;
                img{
                    width: 100%;
                    height: auto;
                    border-radius: 12px;
                }
                h3{
                    font-family: 'poppins', sans-serif;
                    font-weight: 800;
                    font-size: 24px;
                    color: #1c1917;
                    margin-top: 15px;
                }
            }
        }
    }
}
.about-company{
    padding: 120px 0;
    .container-company{
        max-width: 1200px;
        margin: 0 auto;
        .company-grid{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            .ccol{
                img{
                    width: 100%;
                    height: auto;
                    border-radius: 12px;
                }
        }
    }
}
}
/* Disclaimer */
.disclaimer {
    .container{
        max-width: 800px;
        margin: 0 auto;
    }
    background: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    padding: 120px 0;
}
/* cta */
.cta{
    background-image: url(./images/cta-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 700px;
    align-content: center;
    .container{
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        h2{
            color: white;
            font-family: 'poppins', sans-serif;
            font-weight: 800;
            font-size: 48px;
            line-height: 60px;
        }
        p{
            color: white;
            font-family: 'inter', sans-serif;
            font-weight: 400;
            font-size: 18px;
            line-height: 28px;
        }
    }
}
footer{
   a{
    color: white;
    text-decoration: none;
   }
}

/* responsive css */
@media(max-width:767px){
    .grid-cols,.company-grid{
        grid-template-columns: 1fr !important;
    }
    .hero-content{
        h1{
            font-size: 32px;
            line-height: 40px;
        }
        p{
            font-size: 16px;
            line-height: 24px;
        }
    }
    .about-company{
        padding: 60px 10px;
    }
}