@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --success-color: #2ecc71;
    --info-color: #3498db;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --accent-color: #f39c12;
}

* {
    box-sizing: border-box;

    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;

    margin: 0;
    padding: 0;
}

body {
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4.h5,
h6 {
    letter-spacing: 3px;
}


/* Start Back To To Button    */
.backtotops {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 10;

    transition: all 0.3s ease-in-out;

}

.backtotops.active:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.backtotops.active {
    opacity: 0.4;
    visibility: visible;
}

/* End Back To To Button    */


/* Start Header section   */

/* Start navbar   */
.navbar {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;

    will-change: padding;
    /* transition: padding 0.3s ease, background-color 0.3s ease; */
    transition: all 0.3s ease-in-out;
}

.navbar.scrolleds {
    background-color: rgba(44, 62, 80, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: rotate(30deg);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--primary-color);

    position: absolute;
    left: 0;
    bottom: 0;

    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-item {
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* end navbar   */

/* Start banner   */
.banners {
    width: 100vw;
    height: 100vh;
    background-image: url("http://vincentgarreau.com/particles.js/assets/img/kbLd9vb_new.gif");
    background-color: #2665a2;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: 0 15%;

    position: relative;
    overflow: hidden;
}

.banner-contents {
    color: #ffffff;

    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

.banner-contents h1 {
    font-size: 3.5rem;
}

.banner-contents h2 {
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 20px;
}

.banner-contents p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn-warning {
    background-color: var(--accent-color);
    border: none;
    font-weight: 600;

    padding: 12px 30px;

    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #f39c12;
    box-shadow: 0 7px 20px rgb(0, 0, 0, 0.5);
    transform: rotate(-3px);
}

/* end banner   */

/* End Header section   */


/* Start Clients section   */
section {
    padding: 80px 0;
}

.sectiontitles {
    text-align: center;
    margin-bottom: 50px;
}

.sectiontitles h2 {
    font-size: 2.5rem;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
}

.sectiontitles h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);

    position: absolute;
    bottom: 0;
    left: 50%;

    transform: translateX(-50%);
}

.sectiontitles p {
    color: #777;
    font-size: 1.1rem;
    margin-top: 15px;
}

.card {
    height: 100%;
    border: none;
    border-radius: 10px;

    transition: all 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-weight: 600;
    font-size: 18px;
}

.card-subtitle {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card-text {
    color: #666;
    margin-bottom: 20px;
}

/* End Clients section   */

/* Start Software section   */
/* End Software section   */

/* Start Team section   */
.teamcards .card img {
    width: 150px;
    height: 150px;
    object-fit: cover;

    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
}

.socialicons a {
    width: 36px;
    height: 36px;
    display: inline-block;
    background-color: #f5f5f5;
    color: #555;
    border-radius: 50%;

    text-align: center;
    line-height: 36px;

    margin: 0 5px;

    transition: all 0.3s ease;
}

.socialicons a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* End Team section   */

/* Start Public interest section   */
.progress {
    height: 10px;
    background-color: #f5f5f5;
}

.progress-bar {
    border-radius: 5pxs;
}

/* End Public interest section   */

/* Start Pricing section   */
.pricing-cards {
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    transition: all 0.3s ease;
}

.pricing-cards:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.1);
}

.pricing-cards .pricing-headers {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    padding: 30px 0;
}

.pricing-headers h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.pricing-headers h6 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.pricing-headers h6 span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-bodys {
    padding: 30px 0;
}

.pricing-bodys ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-bodys ul li {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.pricing-bodys ul li:last-child {
    border-bottom: none;
}

.pricing-footers {
    background-color: #f9f9f9;
    padding: 20px;
}

/* End Pricing section   */

/* Start Contact Us section   */
/* start map  */

.map-containers iframe {
    width: 100%;
    height: 100%;
}

/* end map  */

.contactforms .form-control {
    height: 50px;
    border: 1px solid #ddd;
    padding-left: 15px;
}

.contactforms textarea.form-control {
    height: 150px;
    padding-top: 15px;
}

.contactforms .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* End Contact Us section   */

/* Start Footer section   */
footer {
    text-align: center;
}

footer p {
    opacity: 0.8;
}

/* End Footer section   */

/* Start Modal Box  */
.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: #f9f9f9;
}

/* End Modal Box  */





/* start Responsive Adjustments */
@media(max-width: 576px) {
    .banner-contents h1 {
        font-size: 1.8rem;
    }

    .banner-contents h2 {
        font-size: 1.5rem;
    }

    .banner-contents p {
        font-size: 1rem;
    }

    .banner-contents .btn {
        width: 100%;
    }
}

@media(max-width: 768px) {
    .banners {
        height: auto;
        min-height: 75vh;
    }

    .banner-contents h1 {
        font-size: 2rem;
    }

    .banner-contents h2 {
        font-weight: 100;
    }
}

/* end Responsive Adjustments */


/* start Animatin For banner  */
@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animates {
    animation: fadeup 0.8s ease forwards
}

.delayones {
    animation-delay: 0.2s;
}

.delaytwos {
    animation-delay: 0.4s;
}

.delaythrees {
    animation-delay: 0.6s;
}

/* End Animatin For banner  */