@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Rubik';

}

/* :root {
    --bg-color: rgb(2, 56, 56);
    --second-bg-color: rgb(2, 80, 80);
    --text-color: rgb(220, 246, 249);
    --second-text-color: rgb(190, 246, 255);
    --navbar-text-color: rgb(10, 150, 150);
    --btn-color: rgb(245, 222, 179);
    --white-color: white;
} */

a,
a:hover {
    text-decoration: none;
}

.row,
.col-md {
    padding: 0;
}

body {
    color: var(--text-color);
}

.space {
    padding: 100px 50px;
}



/* Nav Bar Start */
.top-nav {
    background: var(--bg-color);
    padding: 6px 5%;
}

.top-nav a img {
    height: 4rem;
    /* padding: 0.4rem; */
    margin: 0.5rem 0.5rem 0.5rem 0;
}

.top-nav ul li a {
    margin-left: 15px;
    padding: 4px 12px;
    color: var(--navbar-text-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.top-nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    border-bottom: 2px solid var(--btn-color);
    transition: 0.3s linear;
}

.top-nav ul li a:hover {
    color: var(--second-text-color);
}

.top-nav ul li a:hover::before {
    width: 100%;
}

.top-nav ul li a.active {
    color: var(--second-text-color);
    border-bottom: 2px solid var(--btn-color);
}

.top-nav .search-box {
    height: 35px;
    background: var(--text-color);
    color: var(--bg-color);
    font-weight: 500;
    letter-spacing: .5px;
}

.top-nav .btn-search {
    margin-left: 12px;
    padding: 0px 7px;
    border-radius: 5px;
    height: 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--second-text-color);
    background: var(--bg-color);
    /* border: 1px solid var(--second-text-color); */
    border: 1px solid var(--btn-color);
    transition: 1s ease;
}

.top-nav .btn-search:hover {
    color: var(--bg-color);
    background: var(--btn-color);
    cursor: pointer;
    transform: all;
}

.top-nav button .mynav-icon i {
    font-size: 30px;
    color: var(--text-color);
}

/* Nab Bar End */

/* Home Start */
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: var(--bg-color);
}

/* @keyframes top-logo {
    0% {
        transform: scale(0.5);
        transform: translate3d(-60px, -40px, -60px);
    }

    33.33% {
        transform: scale(1.65);
        transform: translate3d(-70px, 70px, -70px);
    }

    66.66% {
        transform: translate3d(0px, 0px, -70px);
    }

    100% {
        transform: translate3d(70px, 70px, 70px);
    }

} */

.home-image {
    display: flex;
    margin: 60px 0px;
    justify-content: center;
    align-items: center;
    /* animation-name: top-logo;
    animation-duration: 2.25s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate; */
}

.home-image img {
    width: 380px;
}

.home-content h3 {
    font-size: 25px;
    font-weight: 400;
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 15px;
}

span {
    color: var(--btn-color);
}

.home-content .btn i {
    margin-right: 8px;
    font-size: 25px;
}

.home-content h1 {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.1;
}

.home-content p {
    font-size: 20px;
}

.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--btn-color);
    border-radius: 50%;
    font-size: 20px;
    color: var(--btn-color);
    margin: 6px;
    transition: 0.4s ease;
}

.social-media a:hover {
    background: var(--btn-color);
    color: var(--bg-color);
    box-shadow: 0 0 8px var(--btn-color);
    transform: scale(1.35);
}

.btn {
    display: inline-flex;
    margin-top: 20px;
    padding: 10px 25px;
    align-items: center;
    background: var(--btn-color);
    border-radius: 20px;
    box-shadow: 0 0 15px var(--white-color);
    font-size: 17px;
    color: var(--bg-color);
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.7s ease;
}

.btn:hover {
    background: var(--bg-color);
    color: var(--second-text-color);
}

/* Service */


.services {
    background: var(--second-bg-color);
}

.services h1 {
    margin-bottom: 60px;
    text-align: center;
}

.services-h1 h1 {
    font-size: 55px;
    font-weight: 600;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    gap: 25px;
}

.services-container p {
    text-transform: capitalize;
}

.services-container .services-box {
    flex: 0 0 500px;
    background: var(--bg-color);
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    border: 3px solid var(--bg-color);
    transition: 0.5s ease;
}

.services-container .services-box:hover {
    border-color: var(--second-text-color);
    transform: scale(1.03);
}

.services-box a i {
    margin-right: 8px;
    font-size: 25px;
}

.services-ex>i {
    font-size: 70px;
    color: var(--btn-color);
}

.services-box h3 {
    margin-top: 15px;
    font-size: 35px;
}

.services-box p {
    margin: 20px 0 10px;
    font-size: 20px;
}

/* Footer */
.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: var(--bg-color);
    padding: 40px 50px;
}

.footer-top h1>span {
    font-size: 28px;
}

.footer-top h1 {
    font-size: 20px;
}


.footer {
    background: var(--second-bg-color);
    padding: 0;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 9%;
}

.footer-text p {
    font-size: 15px;
    margin: 0;
}

.footer-icon a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background: var(--second-text-color);
    border-radius: 6px;
    transition: .5s ease;
}

.footer-icon a:hover {
    box-shadow: 0 0 1rem var(--second-text-color);
    transform: scale(1.15);
}

.footer-icon a i {
    font-size: 25px;
    color: var(--bg-color);
}

.imp-link a{
    display: block;
    font-size: 18px;
    color: var(--navbar-text-color);
}
.imp-link a:hover{
    color: var(--second-text-color);
}


@media (max-width : 767px) {
    .btn {
        margin-top: 7px;
        padding: 7px 15px;
        border-radius: 10px;
        box-shadow: 0 0 10px var(--white-color);
        font-size: 14px;
        letter-spacing: 0.75px;
        font-weight: 500;
    }
    .footer {
        flex-wrap: nowrap;
        padding: 15px 20px;
    }

    .footer-top {
        padding: 10px;
    }

    .space {
        padding: 15px;
    }

    .top-nav ul li a {
        margin-left: 10px;
        padding: 3px 9px;
        color: var(--navbar-text-color);
        font-weight: 500;
    }

    .footer-top h1>span {
        font-size: 20px;
    }

    .footer-top h1 {
        font-size: 15px;
    }

    .services h1 {
        margin-bottom: 40px;
    }

    .services-h1 h1 {
        font-size: 40px;
        font-weight: 500;
    }

    .services-container .services-box {
        padding: 15px;
        flex: 1 1 20px;
    }

    .services-box h3 {
        margin-top: 3px;
        font-size: 30px;
    }

    .services-ex>i {
        font-size: 50px;
    }

    .home-image img {
        width: 180px;
    }
}

.error_img{
    max-width : 90%;
    max-height: 20rem;
    margin: 3rem 1rem;
}

.error_img_div{
    background-color: var(--second-bg-color);
}

.pro_img{
    max-width: 95%;
    max-height: 13rem;
    object-fit: contain;
}