

/* Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.chat-icon i { 
    color: white;
    font-size: 24px;
}

.chat-icon:hover {
    background-color: #0056b3;
}
div#seo {
    justify-content: space-around;
    display: flex;
}
div#video{
    display: flex;
    gap: 30px;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    overflow-y: scroll;
    max-height: 500px;
}

div#video video {
    margin-right: 22px;
}

.image_div_style {
    display: flex;
    justify-content: space-around;
    width: 98%;
}

element.style {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.image_div_style img {
    width: 33% !important;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 80px;
    left: 20px;
    width: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}


.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    padding: 2px 6px;
    border-radius: 50%;
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    min-height: 20px;
}



/* .newsletter */
.position-relative {
    position: relative;
}

.newsletter-float {
    position: fixed;
    bottom: -40px;
    right: -109px;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 305px;
    height: 153px;
}

#newsletter h2 {
    text-align: center; /* Center the heading */
    font-size: 15px;
    margin-top: -8px;
}
.input-parent{
    display:flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}
#newsletter input[type="text"]{
    padding: 3px;
    margin: -5px;
    width: 90%; /* Adjust width as needed */
    border: 1px solid #ccc;

    font-size: 11px;
    height: 30px;
    margin-top: 5px;
}


#newsletter input[type="email"] {
    padding: 3px;
    margin: -5px;
    width: 90%; /* Adjust width as needed */
    border: 1px solid #ccc;

    font-size: 11px;
    margin-top: 10px;
    height: 30px;
}

#newsletter button {
    padding: 2px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    width: 100px;
    font-size: 13px;
    margin-top: 10px;
    width: 90%;
    height: 30px;
    margin-top: 15px;
}

#newsletter button:hover {
    background-color: #218838;
}
.close-icon {
    cursor: pointer; /* Change cursor to pointer */
    font-size: 24px; /* Size of the icon */
    color: #000000; /* Color of the icon */
    position: absolute; /* Position it at the top right */
    top: -3px;
    right: 11px;
}

.close-icon:hover {
    color: #c82333; /* Darker red on hover */
}

@media (max-width: 600px) {
    .newsletter-float {
        position: fixed;
        bottom: -40px;
        left: 65%;
        transform: translate(-50%, -50%);
        background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);        /* border-radius: 10px; */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 10;
        width: 301px;
    }
    .newsletter-float h2{
        color: rgb(0, 0, 0);
    }
    .back-to-top{
        display: none;
        visibility: hidden;
    }

}


/* Chat Header */
.chat-header {
    background-color: #007bff;
    color: white;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-header span {
    cursor: pointer;
    font-size: 20px;
}

/* Chat Body */
.chat-body {
    padding: 15px;
    max-height: 350px;
    overflow-y: auto;
    background-color: #f9f9f9;
}

/* Chat Content */
.chat-content {
    margin-bottom: 10px;
}

/* Message Styles */
.message-bot {
    background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 80%;
    word-wrap: break-word;
}

.message-bot input{
    
    outline: none;
    border: none;
    padding: 4px;
    font-size: 13px;
    border-radius: 4px;
}

.message-user {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    max-width: 80%;
    word-wrap: break-word;
}

/* Service Options */
.service-options {
    margin-top: 10px;
}

.service-options button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.service-options button:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .chat-widget {
        width: 100%;
        max-width: 270px;
    }
}





.contact_forclient {
    width: 72%;
    height: 155px;
    border: 1px solid white;
    border-radius: 11px;
    box-shadow: -2px 1px 30px -5px white ;
    margin-left: 50px;
    box-shadow:1px 1px 8px 4px rgb(255 255 255); /* adds shadow */
}

.icons_section1 {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 10px;
    color: white;
    align-items: center;
}

.firsticon1,
.firsticon2,
.firsticon3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px; /* Adjust the font size */
    color: #ffffff; 
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0px 6px 8px rgba(6, 5, 5, 0.1); /* adds shadow */
    width: 120px;

   
  
}

.firsticon1 i,
.firsticon2 i,
.firsticon3 i{
font-size: 16px;
margin-bottom: 10px;
}



.firsticon1::after, .firsticon2::after, .firsticon3::after {
    content: '';
    width: 1px;
    height: 50%;
    background-color: #ccc; /* Light gray line between icons */
    position: absolute;
    right: 0;
    top: 25%;
}



.icons_section2 {
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
color: white;
font-weight: 800;
text-align: center;
}

.icons_section2 p{
    font-size: 11px;
}
.icons_section3 {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 28px;
margin-top: -3px;
}

.icons_section3 input {
width: 150px;
height: 29px;
padding: 8px;
border-radius: 7px;
outline: none;
font-size: 14px;
}

.icons_section3 button {
padding: 3px;
border-radius: 7px;
width: 128px;
border: white;
text-align: center;
height: 29px;
background-color: #1f3129;
color: white;
font-size: 14px;
}

.icons_section3 button:hover{
background-color: white;
color: black;
}
@media (max-width:600px) {

    .firsticon1,
    .firsticon2,
    .firsticon3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 9px !important;
    }
.text-white {
    color: #fff !important;
    margin-top: -5px;
}    

.firsticon1 i,.firsticon2 i,.firsticon3 i{
    font-size: 13px;
    margin-bottom: 10px;
}
    .icons_section3 {
        margin-bottom: 25px;
        gap: 13px;
}
.contact_forclient{
    padding: 22px;
    width: 95%;
    margin-top: -17px;
    border: 1px solid white;
    border-radius: 11px;
    margin-left: 9px;

}
.icons_section1{
    margin-top: 1px;
    justify-content: space-between;

}
.icons_section3 input {
    width: 140px;
    height: 25px;
    padding: 5px;
    border-radius: 7px;
    outline: none;
    font-size: 10px;
}

.icons_section2 p {
font-size: 12px;
}
.contact_forclient {
height: 156px !important;
}
.icons_section3 button {
    width: 127px;
    border-radius: 6px;
    width: 118px;
    border-radius: 7px;
    width: 128px;
    border: white;
    text-align: center;
    height: 24px;
    background-color: #1f3129;
    color: white;
    font-size: 12px;
    padding: 3px;
}

}


div#po-creation {
    overflow-y: scroll;
    max-height: 500px;
}


:root {
    --primary: #0f5fdc;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
}
 


:root {
    --primary: #0f5fdc;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: rgba(9, 83, 161, 0.374);
}

/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
    margin-bottom: 2px;
    margin-right: -35px;
    width: 30px;
    height: 30px;
    padding-right: 4px;
}


/* Contact Page Specific Styling */
.contact-item {
    margin-top: 20px;
    margin-bottom: 40px;
}

.contact-item h4 {
    font-size: 1.5rem;
    color: #333;
}

.contact-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Adjust the icon button size and alignment */
.contact-item .btn-lg-square {
    width: 50px;  /* Adjust the width of the icon */
    height: 50px; /* Adjust the height of the icon */
    padding: 12px; /* Add padding for the icon size */
    margin-right: 20px; /* Adjust spacing between the icon and text */
    margin-bottom: 0; /* Remove margin to align better */
}

/* Ensure icons are aligned centrally with the text */
.contact-item .d-flex {
    align-items: center; /* Align the icon and text vertically */
    margin-bottom: 20px;  /* Add margin between the items */
}

/* Adjust spacing for text beside the icons */
.contact-item .ms-4 {
    margin-left: 20px;
}

/* General responsive adjustments for mobile */
@media (max-width: 768px) {
    .contact-item {
        text-align: center;
    }

    .contact-item .d-flex {
        flex-direction: column; /* Stack icon and text on mobile */
    }

    .contact-item .ms-4 {
        margin-left: 0; /* Reset margin for mobile */
        margin-top: 10px; /* Add some space above the text */
    }
}

/* .fa fa-home {
       
        display: flex;
        align-items: center;
        justify-content: center;
       
        border-radius: 50px;
        margin-bottom: 27px;
        margin-right: -21px;
        width: 30px;
        height: 30px;
        
} */

/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: rgba(255, 255, 255, .7);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: white;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        background:white;
        top: 150%;
        border-radius: 0;
        opacity: 0;
        line-height: 2; /* Adjust the value to increase or decrease line spacing */
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -75px;
    /*background: url(../img/bg-hero.png) center center no-repeat;*/
    background-size: cover;
    background-color: #0f5fdc;
    /* background: url(../img/bg-img.png) center center no-repeat; */
 
}


.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
/* .section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
} */

/* .section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
} */

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img\ \(1\).png) top left no-repeat;

    background-size: contain;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover {
    /* background: var(--primary); */
    background: -webkit-linear-gradient(146deg, #499dfd 3.03%, #2678f5 27.62%, #6628c5 76.39%, #5b0bb1 112.44%);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}
  
.case-item:hover img {
    transform: scale(1.2);
}
  
.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #ffffff;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    /* background: var(--primary); */
    background: -webkit-linear-gradient(146deg, #002959 3.03%, #3171d4 27.62%, #32007f 76.39%, #1c0047 112.44%);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}




/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 24px;
    width: 75px;
    height: 6px;
    background: #FFFFFF;
    /* border: 1px solid var(--primary); */
    background: -webkit-linear-gradient(146deg, #499dfd 3.03%, #2678f5 27.62%, #6628c5 76.39%, #5b0bb1 112.44%);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    /* background: url(../img/testimonial-bg.jpg) center center no-repeat; */
    /* background-size: contain; */
    background-size: cover;

}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    border: 1px solid rgb(91, 43, 247);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgb(255, 255, 255);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #0578c3;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* contact */
.col-xl-6.sociallink-contact {
    margin: 15px;
}