* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Satoshi-Medium';
    overflow-x: hidden;
}

:root {
    --primary-color: #0442cd;
    --primary-color-50: #0444cd63;
    --secondary-color: #012169;
    --secondary-color-80: #012069b9;
    --secondary-color-50: #01206976;
    --third-color: #fff7f8;
    --primary-font: "Poppins";
    --secondary-font: "Source Serif 4", serif;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

img {
    width: 100%;
}

.text-primary {
    color: var(--primary-color);
}

.section-bg {
    background-color: #f2f2f2;
}

.section-padding {
    padding: 70px 0;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.navbar-brand img {
    height: 60px;
}


h1 {
    font-size: 60px;
    font-weight: 700;
    font-family: 'Satoshi-Bold';
}

h2 {
    font-size: 40px;
    font-family: 'Satoshi-Bold';
}

h3 {
    font-size: 30px;
    font-family: 'Satoshi-Bold';
}

h4 {
    font-size: 26px;
    font-family: 'Satoshi-Bold';
}

h5 {
    font-size: 21px;
    font-family: 'Satoshi-Bold';
}

p {
    font-size: 17px;
}

header{
    position: absolute;
    top: 0;
    z-index: 9999;
    width: 100%;
}

.navbar {
    border-bottom: 0.4px solid #b3b3b3;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: white;
    font-size: 18px;
}

.navbar-toggler{
    color: white;
    border: 0;
}
.header-fixed .navbar-toggler{
    color: black;
}
.header-fixed .navbar-expand-lg .navbar-nav .nav-link {
    color: black;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav {
    gap: 30px;
}




.header-fixed {
    position: fixed;
    /* Fix it at the top */
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    /* Start slightly out of view */
    animation: slide-down 1s ease forwards;
    /* Smooth slide-in effect */
    background-color: white;
    z-index: 999;
}
.dark-logo{
    display: none;
}
.header-fixed .white-logo{
    display: none ;
}
.header-fixed .dark-logo{
    display: inline;
}

.header-fixed .btn-white{
    background-color: var(--primary-color);
    color: white;
}

/* Slide-down animation */
@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.hero {
    background: url(../images/her-img.jpg) center/cover no-repeat;
    height: 800px;
    text-align: center;
    color: white;
}
.hero p{
    font-size: 20px;
}

.btn {
    border-radius: 30px;
    position: relative;
    font-size: 20px;
    padding: 10px 24px;
    font-family: 'Satoshi-Bold';
}

.btn-white {
    background-color: white;
    font-size: 16px;
}

.btn-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    right: 2px;
    top: 2px;
    color: black;
    font-size: 24px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.general-btn {
    padding-right: 60px;
}

.service-icon img {
    height: 55px;
    width: auto !important;
}

#services-bar {
    margin-top: -69px;
}

.services-bar {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 4px 0 #979595;
}

.breaker {
    height: 1px;
    background-color: #979595;
}

.point-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.counter h2 {
    font-size: 100px;
}

.box-radius {
    border-radius: 10px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 100px;

}

.service-box {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.service-box::before {
    content: '';
    height: 8px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));

}

.wo-bg-btn {
    font-family: 'Satoshi-Bold';
    font-size: 20px;
    padding-left: 0;
    padding-right: 60px;
}

.service-box-icon img {
    height: 150px;
    width: auto;
}

.project-box {
    background-color: white;
    padding: 30px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.tag {
    background-color: #f2f2f2;
    padding: 5px 20px;
    border-radius: 30px;
}

.text-gray {
    color: #979595;
}

.mt--5 {
    margin-top: -110px;
}

.team-box {
    overflow: hidden;
}

.team-content {
    padding: 15px;
}

.team-image {
    height: 360px;
}

.team-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.tool-image img {
    width: 40px;
}

.tool-name p {
    font-size: 24px;
}

.testimonail-box {
    padding: 50px 30px;
}

.testimonail-stars img {
    height: 22px;
    width: auto !important;
}

.client-image img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
}

.client-name {
    font-family: 'Satoshi-Bold';
}

.owl-nav {
    position: absolute;
    top: -80px;
    right: 0;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color) !important;
    color: white !important;
    font-size: 24px !important;
}

.owl-nav button.owl-prev {
    margin-right: 13px;
}

.before-footer {
    background: url(../images/cta-img.jpg) center/cover no-repeat;
    padding: 110px 0;
}

footer {
    background-color: #1f2732;
    padding-top: 80px;
}

.footer-logo img {
    height: 90px;
    width: auto !important;
}

.socail-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer a {
    color: white;
}

footer .quick-contact p {
    font-family: 'Satoshi-Bold';
}

.quick-link ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.quick-link ul li {
    font-size: 18px;
    padding-bottom: 6px;
}

.divider-line {
    height: 1px;
    background-color: #f2f2f2;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-size: 40px;
}

.whatsapp-float i {
    color: white;
}

.contact-hero {
    height: 600px;
    background: url(../images/Rectangle\ 14.png) center/cover no-repeat;
}

.quick-contacts .quick-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 5px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.quick-contacts a{
    color: #212529;
}

.contact-form {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.contact-form .form-input {
    background-color: transparent;
    border-radius: 0;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid white;
    width: 100%;
    outline: 0;
    color: white;
    font-size: 18px;
}

.contact-form .form-input::placeholder {
    color: #f2f2f2;
}

.quick-demo {
    background-color: #fff7be;
    border: 1px dashed black;
    padding: 30px;
    border-radius: 30px;
}

.owl-portfolio .owl-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.owl-portfolio .owl-dots .owl-dot {
    width: 40px;
    height: 7px;
    background-color: #f2f2f2;

}

.owl-portfolio .owl-dots .owl-dot.active {
    background-color: var(--primary-color);
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }

    p {
        font-size: 15px;
    }
    .navbar-nav {
        gap: 0px;
    }
    .navbar-collapse{
        padding: 30px;
        background-color: white;
        margin-top: 10px;
    }
    .navbar-collapse.show .navbar-nav .nav-link{
        color: black;
    }
    .navbar-collapse.show .btn-white {
        background-color: var(--primary-color);
        color: white;
    }
    
}

@media screen and (max-width: 767px) {
    .hero br{
        display: none;
    }
    
    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    p {
        font-size: 15px;
    }

    .hero{
        height: 500px;
    }

    .main-hero{
        height: 680px;
    }

    .services-bar .col-md-4{
        margin-bottom: 20px;
    }

    .service-icon img {
        width: 40px !important;
        height: auto;
    }

    .section-padding {
        padding: 50px 0;
    }
    .mt--5{
        margin-top: 0;
    }
}
