*{
    font-family: "Urbanist", sans-serif;
}
:root{
    --blue-dark: #2E61AD;
    --blue-light: #76ADFF;
    --light-gray: #E2E2E2;
    --text-gray: #6B6B6C;
    --bg-card: #F8FAFC;
}

/* ==== MAIN ==== */
.m-h{
    font-weight: 700;
}
p{
   font-weight: 500;
}
/* ==== MAIN END ==== */

/* Header */
.header {
    height: 1100px; 
    background-image: url('../images/bg-img.png');
    background-position: center;
    background-size: cover;
    position: relative;
}
.nav-container {
    width: 90% !important;
    padding-top: 30px;
}
.navbar ul li {
    padding: 0 20px;
}
.navbar ul li a {
    font-weight: 500;
    color: black !important;
}
.navbar-toggler{
    border: 0 !important;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus{
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}
.header-content {
    margin-top: 100px
}
.header-content h1 {
    font-size: 60px;
    font-weight: 700;
    width: 680px;
    margin: auto;
}
.input-container {
    width: 40%;
    margin: 30px auto 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 10px 15px;
    border: 1px solid var(--blue-dark);
    box-shadow: rgba(46, 97, 173, 0.8) 5px 5px;
}

.input-container .icon {
    font-size: 24px;
}
.input-container input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 10px;
    color: gray;
}
.input-container .btn-2{
    box-shadow: none;
}
.header-icon{
    position: absolute;
}
.updown-animation{
    animation-name: updown-animation;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .3s;
}
.updown-animation-2{
    animation-name: updown-animation-2;
    animation-duration: 4.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .3s;
}
@keyframes updown-animation{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-20px);
    }
    100%{
        transform: translateY(0px);
    }
}
@keyframes updown-animation-2{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-20px);
    }
    100%{
        transform: translateY(0px);
    }
}



.head-ic-1{
    top: 23%;
    left: 5%;
}
.head-ic-2{
    top: 33%;
    left: 14%;
}
.head-ic-3{
    top: 48%;
    left: 4%;
}
.head-ic-4{
    top: 13%;
    right: 5%;
}
.head-ic-5{
    top: 31%;
    right: 13%;
}
.head-ic-6{
    top: 45%;
    right: 3%;
}
.header-img{
    margin-top: 80px;
    width: 73%;
}
/* Header end */

/* Brands */
.brands{
    margin-top: 200px;
}
.brand-carousel img{
    max-width: 100px;
}
/* Brands end */

/* About */
.about-section{
    margin-top: 150px;
    max-width: 90%;
}
.about-section img{
    width: 100%;
}
/* About end */

/* Tags */
.tags{
    width: 90%;
    margin: 100px auto 0;
}
.tags-carousel .card {
    border: 1px solid var(--light-gray);
    border-right: none;
    text-align: center;
    padding: 35px 20px 20px 20px;
}
.tags-carousel .card h5{
    padding-top: 20px;
    font-weight: 600;
}
.tags-carousel .card img {
    max-width: 100px;
    margin: auto;
}
.tags .owl-prev,
.tags .owl-next{
    background: none;
    border: none;
    font-size: 50px;
    color: var(--blue-dark);
}
.shopyfy-ic{
    max-width: 83.5px !important;
}
/* Tags end */

/* Choose Section */
.choose-section{
    margin-top: 150px;
    max-width: 90%;
}
.choose-section h1 span{
    color: var(--blue-dark);
}
.choose-section .col_1 .box{
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.choose-section .col_1 .box {
    position: relative;
    padding: 43px 20px 10px;
    border-radius: 20px;
}

.choose-section .col_1 .line {
    margin: 20px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 10px;
    background-color: var(--blue-dark) /* Change color as needed */
}
.choose-section .col_2 p{
    font-size: 17px;
    width: 83%;
    float: right;
}
.choose-section .col_2 img{
    width: 100%;
}
/* Choose Section end */

/* Documentation */
.documentation{
    margin-top: 150px;
}
.documentation .container-outer{
    width: 100%;
    height: 490px;
    overflow: hidden;
    background-image: url(../images/docs-bg.png);
}
.docs-box{
    padding: 20px 9px 0;
    background-image: url(../images/docs-card-bg.png);
    width: fit-content;
    /* width: 100%; */
    height: 275px;
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.docs-box h5{
    font-weight: 700;
    color: var(--blue-dark);
}
.docs-box h6{
    font-size: 15px;
}
.docs-box i{
    padding: 1px 0 0 5px;
    color: var(--blue-dark);
}
.documentation .container-inner{
    width: 110%;
}

.documentation .owl-carousel .owl-item img {
    display: block;
    width: fit-content;
}

.documentation .owl-item{
    width: fit-content;
}

/* Documentation end */

/* Testimonials */
.testimonials {
    margin-top: 150px;
    max-width: 93%;
    height: 600px;
    overflow: hidden;
    position: relative; /* Set position to relative */
}

.testimonials .box {
    background-color: var(--bg-card);
    padding: 18px 15px 7px;
    border-radius: 10px;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset -10px -220px 100px -100px #ffffff;
    z-index: 1; /* Set a higher z-index than the boxes */
    pointer-events: none; /* Ensure clicks go through to the boxes */
}

.testimonial-btn {
    position: absolute;
    bottom: 10px;
    z-index: 2; /* Ensure button appears above shadow */
}
.testimonials .box h5{
    font-weight: 600;
}
.testimonials .box p{
    font-size: 15.5px;
    color: var(--text-gray);
    font-weight: 500;
}
/* Testimonials end */

/* Articles */
.articles{
    margin-top: 150px;
}
.articles h4{
    color: var(--blue-dark);
    font-weight: 600;
}
.articles .para-col{
    transform: translateY(100px);
    border-left: 1.5px solid rgb(233, 233, 233);
}
.articles .para-col p{
    transform: translateY(10px);
}
.articles .card-row{
    margin-top: 150px;
}
.articles .box{
    background-color: #fff;
    padding: 15px;
    width: 300px;
    bottom: -10%;
    right: 12%;
    border-radius: 15px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}
.articles .box span{
    font-size: 14px;
}
.articles .box h5{
    font-weight: 700;
}
.articles .box a{
    text-decoration: none;
    color: var(--blue-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}
/* Articles end */

/* Footer */
.footer{
    margin-top: 200px;
    color: #fff;
}
.footer .para{
    font-weight: normal;
}
.footer .main-div{
    background-color: var(--blue-dark);
    padding: 40px 60px 30px;
}
.footer ul li{
    list-style: none;
    display: inline;
    padding: 0 18px;
}
.footer ul li a{
    color:#fff;
    text-decoration: none;
    transition: 0.3s;
}
.footer ul li a:hover{
    color: var(--light-gray);
}
.footer .social-icons i{
    color: var(--blue-dark);
    background-color: white;
    font-size: 18px;
    width: 20px;
    height: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}
.footer .social-icons i:hover{
    background-color: var(--blue-light);
    color: #fff;
}
.copyright{
    background-color: var(--blue-light);
    display: flex;
    align-items: center;
    padding: 15px 60px;
}

/* Footer end */

/* =================== MEDIA QUERY =================== */

@media screen and (max-width:413px){
    .input-container {
        width: 95% !important;
        padding: 5px 6px;
    }
    .input-container input {
        padding: 0 5px;
    }
}

@media screen and (max-width:480px) {
    
    /* Header */
    .nav-logo{
        width: 150px;
    }
    .header-content h1 {
        font-size: 10vmin;
        width: 100%;
    }

    /* Tags */
    .tags .owl-prev,
    .tags .owl-next{
        font-size: 40px;
    }
    .tags-carousel .card {
        border: 1px solid var(--light-gray);
        border-right: 1px solid lightgray;
        text-align: center;
        padding: 35px 20px 20px 20px;
    }

}

@media screen and (max-width:767px) {

    /* Header */
    .header-content h1 {
        width: 90%;
    }
    .input-container {
        width: 90%;
    }

    /* Brands */
    .brands h2{
        width: 330px;
        margin: auto;
    }
    
    /* Footer */
    .footer ul li{
        display: block;
        text-align: center;
        padding: 10px 0px;
    }
    .copyright{
        padding: 0;
        height: 60px;
    }

}

@media screen and (max-width:991px) {

    /* Header */
    .header {
        height: 680px;
    } 
    .header-icon{
        display: none;
    }
    .header-img {
        display: none;
    }

    /* Brands */
    .brands,
    .about-section,
    .articles{
        margin-top: 100px;
    }

    /* Articles */
    .articles .para-col{
        transform: translateY(10px);
        border-left: none;
        text-align: center;
    }
    .articles .card-row{
        margin-top: 100px;
    }
}

@media screen and (min-width: 481px) and (max-width:767px){
    .header-content h1 {
        font-size: 8vmin;
        width: 100%;
    }
}
@media screen and (min-width: 768px) and (max-width:991px){

    /* Header */
    .header-content h1 {
        width: 90%;
    }
    .input-container {
        width: 50%;
    }

}

@media screen and (min-width: 992px) and (max-width:1126px){
    .nav-container {
        width: 97% !important;
    }
    .navbar ul li {
        padding: 0 10px;
    }
}

@media screen and (min-width: 992px) and (max-width:1279px){
    .header {
        height: 1000px; 
    }
}
 
