@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
body{
    /* font-family: "Inter", sans-serif !important; */
    font-family: "Roboto", sans-serif !important;
    padding: 0;
    margin: 0;
}
:root {
    --primary-color: #5f2dee;
  }

header{
    .navbar{
     .navbar-brand{
        img{
            width: 210px;
        }
     }
        padding: 20px 0;
        .navbar-collapse{
            flex-grow: initial;
            .navbar-nav {
                gap: 24px;
                .nav-item{
                    .nav-link{
                        font-size: 1rem;
                        font-weight: 400;
                        color: #444;
                        &.active{
                            font-weight: 500;
                            color: var(--primary-color);
                        }
                    }
                }
            }
        }
        .topcontact{
            padding-left: 3rem;
            display: flex;
            align-items: center;
            gap: 14px;
            .bi{
                background: var(--primary-color);
                width: 44px;
                height: 44px;
                color: #fff;
                border-radius: 100px;
                align-items: center;
                justify-content: center;
                display: flex;
            }
            span{
                display: flex;
                flex-direction: column;
                span{
                    color: #444;
                    font-size: 0.75rem;
                }
            }
            a{
                text-decoration: none;
                color: var(--primary-color);
                font-weight: 500;
            }
        }
    }
}
.slider{
    background: #f8fbff;
    padding: 6rem 0;
    .carousel-indicators [data-bs-target]{
        background-color:#000;
    }
    .carousel-inner{
        padding-bottom: 4rem;
    }
    .carousel-item{
        img{
            border-radius: 8px;
            height: 350px;
            object-fit: cover;
        }
        h3{
            background: var(--primary-color);
            font-size: 0.875rem;
            display: inline-block;
            padding: 3px 15px;
            border-radius: 4px;
            color: #fff;
        }
        h2{
            font-size: 2.75rem;
            font-weight: 500;
            color: #000
        }
        p{
            font-size: 1.125rem;
            font-weight: 400;
            color: #000;
        }
    }
}

.section-gap{
    padding: 6rem 0;
}

.aboutus{
.titles{
    background: var(--primary-color);
    padding: 4rem 5rem;
    text-align: center;
    border-radius: 8px;
    h3{
        background: #fff;
        font-size: 0.875rem;
        display: inline-block;
        padding: 3px 15px;
        border-radius: 4px;
        color: var(--primary-color);
    }
    h2{
        font-size: 2.75rem;
        font-weight: 500;
        color: #fff
    }
    p{
        font-size: 1.125rem;
        font-weight: 400;
        color: #fff;
    }
    a{
        color: #fff;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 13px;
        border: 1px solid #fff;
        padding: 15px 25px;
        margin-top: 32px;
        transition: all 0.9s;
        &:hover{
            background: #fff;
            color: var(--primary-color);
        }
    }
}
}

.services{
    background: #f8fbff;
    .servtiles{
        padding:0 0 3rem 0;
        text-align: center;
        h3{
            background: var(--primary-color);
            font-size: 0.875rem;
            display: inline-block;
            padding: 3px 15px;
            border-radius: 4px;
            color: #fff;
        }
        h2{
            font-size: 2.75rem;
            font-weight: 500;
            color: #000
        }
        p{
            font-size: 1.125rem;
            font-weight: 400;
            color: #000;
        }
    }
    .serv-block {
        position: relative;
    
        .sub-title {
            position: absolute;
            background: var(--primary-color);
            color: #fff;
            padding: 10px 20px;
            border-radius: 10px 0 10px 0;
            font-size: 1rem;
            font-weight: 600;
            z-index: 9;
        }
        .inner-box {
            border: 1px solid #CCCCCC;
            border-radius: 20px;
            overflow: hidden;
    
            .content-box {
                .title {
                    background: #F4F7FB;
                    padding: 12px 25px;
                    font-size: 1rem;
                    color:var(--primary-color);
                    margin: -19px 20px 0 20px;
                    border-radius: 20px;
                    position: relative;
                }
                p{
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 1.5;
                    color: #000000;
                    padding: 20px 32px 40px;
                    font-family: "Poppins", sans-serif !important;
                    min-height: 140px;
                }
            }
            .button-box{
                a{
                    border: 1px solid #CCCCCC;
                    border-radius: 100px;
                    padding: 12px 25px;
                    color: #000;
                    position: absolute;
                    bottom: -17px;
                    left: 0;
                    right: 0;
                    margin: 0 auto;
                    width: 180px;
                    z-index: 9999;
                    background: #fff;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 8px;
                    text-decoration: none;
                }
            }
    
            .image-box {
                figure{
                    margin: 0;
                }
                img {
                    height: 260px;
                    object-fit: cover;
                    width: 100%;
                }
            }
        }
    }
}

.homecontact{
    background: url(../images/contact.png) no-repeat center;
    background-size: cover;
    position: relative;
    &::after{
        content: '';
        position: absolute;
        height: 100%;
        width: 100%;
        background: #5f2deed1;
        top: 0;
    }
    .titles{
        position: relative;
        z-index: 1;
        text-align: center;
        h3{
            font-size: 3rem;
            margin-bottom: 14px;
            color: #fff;
        }
        p{
            font-size: 1.125rem;
            color: #fff;
        }
        a{
            color: #fff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 13px;
            border: 1px solid #fff;
            padding: 15px 25px;
            margin-top: 32px;
            transition: all 0.9s;
            &:hover{
                background: #fff;
                color: var(--primary-color);
            }
        }
    }
}

footer{
    background-color: #1d1729;
    .footer-title{
        font-size: 2rem;
        color: #fff;
        span{
            display: block;
        }
    }
    h4{
        font-size: 1.125rem;
        color: #fff;
        margin-bottom: 24px;
    }
    ul{
        list-style: none;
        padding: 0;
        li{
            padding-bottom: 20px;
            display: flex;
            gap: 10px;
            color: #fff;
            text-decoration: none;
            font-size: 0.875rem;
            div {
                display: flex;
                flex-direction: column;
            }
            a{
                color: #fff;
                text-decoration: none;
                font-size: 0.875rem;
            }
        }
    }
    .copyrights{
        border-top: 1px solid #ffffff26;
        padding-top: 14px;
        font-size: 0.875rem;
        text-align: center;
        color: #fff;
        margin-top: 3rem;
    }
}
.innercontent{
    .col-md-7{
        padding-right: 40px;
    }
    img{
        border-radius: 8px;
    }
    h3{
        color: var(--primary-color);
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 24px;
    }
    p{
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 20px;
    }
    .contactus{
        padding: 0;
        li{
            display: flex;
            gap: 14px;
            padding-bottom: 24px;
            .bi{
                background: var(--primary-color);
                width: 44px;
                height: 44px;
                color: #fff;
                border-radius: 100px;
                align-items: center;
                justify-content: center;
                display: flex;
            }
            div{
                display: flex;
                flex-direction: column;
                gap: 4px;
                span{
                    &:first-child{
                        font-weight: 600;
                    }
                }
            }
        }
    }
}

@media (max-width: 992px) {
    .slider {
        padding: 2rem 0;
        .p-5 {
            padding: 1rem !important;
        }
        .carousel-item {
            h2 {
                font-size: 2rem;
            }
        }
    }
    .section-gap {
        padding: 3rem 0;
    }
    .aboutus {
        .titles {
            padding: 3rem 1rem;
         
                h2 {
                    font-size: 2rem;
                }
        }
    }
    .services {
         .servtiles {
            h2 {
                font-size: 2rem;
            }
        }
        .serv-block {
            margin-bottom: 46px;
        }
    }
    .homecontact {
        & .titles {
            h3 {
                font-size: 2rem;
            }
        }
    }
    footer {
        .footer-title {
            margin-bottom: 30px;
        }
    }
    header {
        & .navbar {
            .topcontact {
                 padding-left: 0;
               padding-top: 1rem;
            }
        }
    }
  

 }