/* Define the @font-face rule for Dosis ExtraLight */
@font-face {
    font-family: 'dosis';
    src: url('../fonts/dosis/Dosis-ExtraLight.ttf') format('truetype');
    font-weight: 200;
}

/* Define the @font-face rule for Dosis Light */
@font-face {
    font-family: 'dosis';
    src: url('../fonts/dosis/Dosis-Light.ttf') format('truetype');
    font-weight: 300;
}

/* Define the @font-face rule for Dosis Medium */
@font-face {
    font-family: 'dosis';
    src: url('../fonts/dosis/Dosis-Medium.ttf') format('truetype');
    font-weight: 500;
}

/* Define the @font-face rule for Dosis Regular */
@font-face {
    font-family: 'dosis';
    src: url('../fonts/dosis/Dosis-Regular.ttf') format('truetype');
    font-weight: 400;
}

/* Define the @font-face rule for Dosis SemiBold */
@font-face {
    font-family: 'dosis';
    src: url('../fonts/dosis/Dosis-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

/* Define the @font-face rule for Dosis Bold */
@font-face {
    font-family: 'dosis';
    src: url('../fonts/dosis/Dosis-Bold.ttf') format('truetype');
    font-weight: 700;
}

/* Define the @font-face rule for Dosis ExtraBold */
@font-face {
    font-family: 'dosis';
    src: url('../fonts/dosis/Dosis-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}


@font-face {
    font-family: 'montserrat';
    src: url('../fonts/montserrat/Montserrat-VariableFont_wght.ttf') format('truetype'),
        url('../fonts/montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
}
*{

    margin: 0;
    padding: 0;
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;

}

.service_item:hover{
    background-color: #a4f88d !important;
    transition: .5s;
    cursor: pointer;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.bubbles {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    top: 0;
    right: 0;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 140px;
    height: 140px;
    background-color: #f1f1f1;
    background-image: linear-gradient(to right, #1A7800, #E5E6FD);
    border-radius: 50%;
    opacity: 0.2;
    animation: rise 10s infinite ease-in;
}

.bubble:nth-child(1) {
    width: 140px;
    height: 140px;
    left: 10%;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 80px;
    height: 80px;
    left: 20%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 110px;
    height: 110px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 200px;
    height: 200px;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 0s;
}

.bubble:nth-child(5) {
    width: 75px;
    height: 75px;
    left: 55%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.bubble:nth-child(6) {
    width: 95px;
    height: 95px;
    left: 65%;
    animation-duration: 8s;
    animation-delay: 3s;
}

.bubble:nth-child(7) {
    width: 290px;
    height: 290px;
    left: 70%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble:nth-child(8) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 2s;
}

.bubble:nth-child(9) {
    width: 15px;
    height: 15px;
    left: 70%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble:nth-child(10) {
    width: 90px;
    height: 90px;
    left: 25%;
    animation-duration: 10s;
    animation-delay: 4s;
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
    }

    50% {
        transform: translate(100px);
    }

    100% {
        bottom: 1080px;
        transform: translateX(-200px);
    }
}

#nav_section_navbar .navbar-toggler {
    border: none;

}

.navbar-toggler:focus {
    box-shadow: none;
}

#navbarNav {
    font-family: montserrat;
}

.white-logo {
    display: none;
}

.nav-active .light-logo {
    display: none;
}

.nav-active .white-logo {
    display: block;
}

.navbar .navbar-brand img {
    max-width: 200px;
}

.nav-link {

    color: white;
    font-weight: 500;
}

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


.nav-active {
    background-color: #1A7800;
    transition: 1s;

}
.hero_content{
    z-index: 1;
}
#hero_section {
    overflow: hidden;
    background-size: cover!important;
    background-repeat: no-repeat;
    background-position: bottom center;
    min-height: 100vh;
    display: flex;
    align-items: center;

}

#hero_section .hero_title {
    font-family: dosis;
    font-weight: 500;
    font-size: 45px;
}

#hero_section .hero_title span {
    display: block;
    color: #960097;
    font-weight: 700;

}

.primary-btn {
    font-family: dosis;
    font-size: 20px;
    color: #fff;
    padding: 10px 25px;
    font-weight: 400;
    background-color: #1A7800;
    text-decoration: none;
    border-radius: 15px;

}

.primary-btn:hover {
    color: white;
    background-color: #FF0202!important;
    transition: .5s;
}



#hero_section .image-container img{
    overflow: hidden;
    position: relative;
    display: flex;
    cursor: pointer;
    transition: 0.1s;
}

@keyframes slideFromRight {
    0% {
        transform: translateX(100%);


    }


    100% {
        transform: translateX(0);
    }
}

#hero_section .image-container img {
    animation: 2s ease-out 0s 1 slideFromRight;

}

#our_work {
    padding: 50px 0;
    text-align: center;
}

#our_work .section_title {
    font-family: dosis;
    font-weight: bolder;
    font-size: 45px;
    line-height: 80px;
    color: black;
}

#our_work .section_content {
    font-family: montserrat;
    color: #7F7F7F;
    font-weight: 500;
}

/* Styles for the image container */
.slide_image {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 10px;

}


.slide_image video {
    width: 100%;

}

.slide_image img {
    width: 100%;
}

.slide_image h4 {
    font-family: dosis;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
}

.slide_image p {
    font-family: montserrat;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    margin: auto;
    color: yellow;
}


.slide_image .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 8px;
    color: #fff;
    opacity: 0;
    text-align: center;
    display: flex;
    /* Added flex display */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */


    transition: opacity 1s ease;
}

.slide_image:hover .overlay {
    opacity: 1;
}

#development_agency .owl-nav.disabled,
#business_agency .owl-nav.disabled {
    display: block !important;
}

.owl-nav {
    text-align: center;

}

.owl-prev span,
.owl-next span {
    margin: 0px 10px;
    font-size: 50px;
    line-height: 20px;
    color: #77787C;


}

#development_agency {
    padding: 50px 0 20px;
}

#development_agency h3 {
    font-family: dosis;
    font-weight: bolder;
    color: #737478;
    font-size: 40px;
    margin: 60px;
}

#business_agency {
    background-color: #EDF0F7;
    padding: 50px 0 20px;
}

#business_agency h3 {
    font-family: dosis;
    font-weight: bolder;
    color: #737478;
    font-size: 40px;
    margin: 60px;
}



#our_client #clientCarousel {
    padding: 0;

}

#our_client .item {
    display: flex;
    justify-content: center;
    align-items: center;


    padding: 10px;
    filter: grayscale(100);

}
#our_client .item:hover {
    box-shadow:
    0 4px 5px rgba(121, 121, 121, 0.2),
    0 -4px 5px rgba(121, 121, 121, 0.2),
    4px 0 5px rgba(121, 121, 121, 0.2),
    -4px 0 5px rgba(121, 121, 121, 0.2);
    transition: 1s;
    filter: grayscale(0);
}

#our_client .owl-carousel .item img {
    width: auto;
    max-width: 150px;
    display: block;
    margin: auto;
    height: auto;

}


#our_client #clientCarousel img {
    display: block;
    max-width: 100%;
    height: auto;
}
#our_client .owl-dots{
    display : none;
}

#our_service {

    padding: 50px 0;
    text-align: center;
    position: relative;
    background-color: #EDF0F7;
}

#our_service .section_title {
    font-family: dosis;
    font-weight: bolder;
    font-size: 45px;
    line-height: 80px;
    color: black;
}

#our_service .section_content {
    font-family: montserrat;
    color: #7F7F7F;
    font-weight: 500;
}



#our_service::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 49%;
    margin-left: -30px;
    /* Half of the triangle width */
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 50px solid #EDF0F7;
}

#our_service .section_title {
    font-weight: bolder;
}


#our_service_content {
    margin: 50px 0px;
}

#our_service_content {
    margin: 50px auto;
}

#our_service_content .service_item {
    background-color: #EDF0F7;
    padding: 30px 20px 20px;
    text-align: center;
    font-family: 'dosis';
    border-radius: 10px;
}

.gray {
    filter: grayscale(100);
}

.gray:hover {
    filter: grayscale(0);
    transition: 0.5s;
}

#our_service_content .service_item .service_logo {
    width: 60px;
    filter: grayscale(100);
}

#our_service_content .service_item .service_logo:hover {
    filter: grayscale(0);
    transition: 0.5s;
}

#our_service_content .service_item .service_title {
    font-weight: bold;
    font-size: 20px;
    margin-top: 10px;
}

#our_service_content .service_item .service_content {
    line-height: 22px;
    font-size: 18px;
    color: #75777C;
}

#about_section {
    padding: 80px 0;
    background-color: #EDF0F7;
}

#about_section .section_title {
    font-family: dosis;
    font-weight: bolder;
    font-size: 45px;
    color: black;
    line-height: 50px;
}

#about_section .section_content {
    font-family: montserrat;
    color: #7F7F7F;
    font-weight: 500;
    font-size: 18px;
    margin: 20px 0;
}

#about_section .counter_item {
    font-family: montserrat;
    background-color: #ffffff;
    color: #7F7F7F;
}

#about_section .counter_item h5 {
    font-weight: bolder;
    color: black;
    font-size: 25px;
    margin-top: 15px;
}
#about_section .counter_item:hover{
    transition: 0.5s;
    background-color: #1A7800;
    color: #ffffff;
}
.text-light {
    color: #ffffff!important; /* Set your desired text color here */
}

#founder_section {
    padding: 80px 0;
    font-family: dosis;
    color: #7C7C7C;
    font-size: 18px;
}

#founder_section .section_title {

    font-weight: bolder;
    font-size: 45px;
    color: black;

}

#founder_section .founder_details {
  margin: 20px 0;
}

#founder_section .founder_details h4 {
    font-weight: 700;
    font-size: 30px;
}

#founder_section .founder_details span {
    display: block;
    font-weight: 600;
}

#testimonial{
    font-family: dosis;
    background-color: #EDF0F7;
    font-size: 18px;
    padding: 50px 0;
}
#testimonial .section_title{
    font-family: dosis;
    font-size: 45px;
    font-weight: 800;
}
.testimonial-item{
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 70px 50px 30px;
    text-align: center;
    margin: 100px 20px 60px;
    position: relative;

}
.testimonial-item .image{
    width: 120px;
    height: 120px;
    background-color: #FFFFFF;
    background-size: cover;
    border: 5px solid #EDEFF6;
    position: absolute;
    top:0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100px;
}
.testimonial-item .image:hover{
    transition: 1s;
    border-color:#FF9000;
}
.testimonial-item h6{
    font-weight: 800;
    color: black;
    margin-top: 30px;
    font-size: 20px;
}

#newsletter_section {
    background-color: #FF9000;
    font-family: dosis;
    padding: 50px 0;
}

#newsletter_section h2 {
    color: #ffffff;
    font-weight: bold;
}

#newsletter_section .btn {
    font-weight: 700;
}

#newsletter_section .btn:hover {
    background-color: #6A36EF;
    color: #fff;
    transition: 0.5s
}

#newsletter_section input {
    border-radius: 50px;
    border: none;
}

#contact_section {
    background-color: #EDF0F7;
    font-family: dosis;

}

.contact_info .info_item {
    position: relative;
    padding-left: 45px;
    margin: 50px 0;
}

.contact_info .info_item h6 {
    font-weight: bolder;
    color: black;
    font-size: 1.3rem;
    margin: 0px;
    font-family: montserrat;
}

.contact_info .info_item p {
    margin: 0px;
    color: #86878B;
}


.contact_info .info_item a {
    text-decoration: none;
    color: black;
}

.contact_info .info_item i {
    position: absolute;
    top: 10px;
    left: -10px;
    font-size: 40px;
    line-height: 24px;
    font-weight: 600;
    color: #86878B;
}

#footer_section {
    font-family: dosis;
    background-color: #7638FF;
}

#footer_section p {
    color: #ffffff;
    padding: 10px 0;
    align-items: center;
    margin-bottom: 0px;
}

#footer_section .footer_icon i {
    color: white;
    font-size: 18px;
    margin: 5px;
}
