@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: #d5dadb8c;
}

:root {

    --primary-color: #0090d2;
    --secondary-color: #575757;
    --text-color: #555;
    --color: #fff;

    --primary-size: 30px;
    --secondary-size: 20px;

    --btn-size: 16px;
    --btn-radius: 10px;
    --btn-padding: 10px 20px;
    --btn-transform: uppercase;
    --btn-weight: 500;

}

h1,
h2,
h3,
h4,
h4 {
    color: var(--secondary-color);
}

p,
h1,
h2,
h3 {
    padding: 0;
    margin: 0;
}

h1 {
    font-size: var(--primary-size);
}

.navbar-brand img {
    width: 250px;
}

.navbar .btn {
    background: var(--primary-color) !important;
    color: var(--color) !important;
    border-radius: var(--btn-radius);
    padding: var(--btn-padding);
}

.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    background-color: var(--color);
    box-shadow: 0 0 18px 1px rgb(0 0 0 / 10%);
}

.navbar button {
    text-decoration: none;
    color: var(--color);
    text-transform: var(--btn-transform);
    font-weight: var(--btn-weight);
}

.navbar button:hover {
    background-color: var(--color) !important;
    border: 1px solid var(--primary-color);
}

.navbar button:hover {
    color: var(--primary-color) !important;

}

.navbar-light .navbar-nav .nav-link:active {
    color: var(--primary-color) !important;
}

.dropdown-item:active {
    color: var(--primary-color) !important;
    background-color: var(--secondary-color) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--secondary-color);
    padding: 0;
}

.nav-link {
    position: relative;
    text-decoration: none;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.trademark {
    color: var(--secondary-color);
}

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

/* Form container styling */

.form-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Form section styling */
.form-Getintouch {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 30%;
}


body.no-scroll {
    overflow: hidden;
}



.nav-item.dropdown .dropdown-menu {
    margin-top: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.triangle::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #fff;
    z-index: 1;
}




.dropdown-menu li {
    list-style-type: none;
}

/* .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
  }
   */

.dropdown .dropdown-menu {
    display: none;
}

.dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
    display: block;
    /* margin-top: 2px; */
    border: none;
}

/* .responsive-drop{
        position: absolute;
        left: 177px;
        top: 2px;
} */

.dropdown-menu {
    transition: all 0.3s ease-in-out;
}

.dropdown-wide {
    display: none;
    left: -204px !important;
    position: absolute !important;
    top: 48px;
}

.dropdown-wide[data-bs-popper] {
    left: -204px !important;
    top: 48px !important;
}

.dropend:hover>.dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 2px;

}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}


/* .megamenu {
    left: 45%;
    top: 64px;
} */

.megamenu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 35%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #fff;
    z-index: 1;
}

.dropdown-header {
    font-size: 17px;
    color: var(--primary-color);
}

.dropdown-item {
    color: var(--secondary-color) !important;
    font-size: 14px;
}

.dropdown-menu .dropdown-item:hover {
    color: var(--primary-color) !important;
}

/* main-hero Section */

section.hero {
    height: 30vh;
}

.main-hero {
    background-image: url(/static/images/medium-shot-man-wearing-vr-glasses.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.main-hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: #00000048;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.main-hero h1,
.main-hero p,
.learn-more-btn {
    position: relative;
    z-index: 1;
    color: #fff;
}


.main-hero h1 {
    font-size: 40px;
    color: var(--color);
    font-weight: 500;
}

.main-hero p {
    font-size: var(--secondary-size);
    color: #cfcccc;

}

.learn-more-btn {
    padding: var(--btn-padding);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.learn-more-btn .learn-more-link {
    color: var(--color);
    text-decoration: none;
    display: inline-block;
    text-transform: var(--btn-transform);
    font-weight: var(--btn-weight);
}

.learn-more-btn:hover {
    background-color: var(--color);
    border: 1px solid var(--primary-color);

}

.learn-more-btn:hover .learn-more-link {
    color: var(--primary-color);

}

/* About Section */

.about-img img {
    width: 100%;
}

.about h4 {
    font-size: 25px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 400;
}

.about-text h1 {
    font-size: var(--primary-size);
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 20px;


}

.about-img {
    display: flex;
    justify-content: center;
}

.about-img .first,
.about-img .second {
    width: 100%;
    max-width: 330px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.about-img .first:hover,
.about-img .second:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.status {
    width: 440px;
    padding: 10px 22px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color);

}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-item h3 {
    color: var(--primary-color);
}

.stat-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

.read-more {
    border: none;
    padding: var(--btn-padding);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-more a {
    color: var(--color);
    text-decoration: none;
    display: inline-block;
    text-transform: var(--btn-transform);
    font-weight: var(--btn-weight);

}

.read-more:hover {
    background-color: var(--color);
    border: 1px solid var(--primary-color);

}

.read-more:hover a {
    color: var(--primary-color);
}

.read-more a {
    text-decoration: none;
    color: var(--color);
    font-size: 16px;
    font-weight: 500;
}

.about-img .first {
    border-radius: 20px;
    left: -60px;
}

.about-img .second {
    border-radius: 20px;
    top: 134px;


}

.stat-item::after {
    content: "";
    border: 1px solid #989595;
    height: 84px;
    position: absolute;
    right: 0;
    top: 10px;
}

.stat-item:nth-child(3)::after {
    display: none;
}

/* --Service Section-- */

.service-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    background: var(--color);
}

.service h4 {
    color: var(--primary-color);
}

.service h1 {
    color: var(--secondary-color);
}

.service-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-icon img {
    width: 80px;
}

.service-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
}

.service-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-title a {
    text-decoration: none;
    color: var(--secondary-color);
}

.service-text {
    font-size: 14px;
    color: #6c757d;
}


.service-card:hover {
    background-color: var(--primary-color);
    /* background-image: url(/images/implementation.png); */
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: center;
}



.service-card:hover .service-icon {
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.3s ease;
    transform: translateY(-20px);
}



.service-card:hover .service-text,
.service-card:hover .service-title,
.service-card:hover .service-title a {
    transform: translateY(-30px);
    transition: transform 0.4s ease;
    color: var(--color);
}

/* ---- Why Choose --- */

.why-choose-us {
    background-color: var(--color);
    padding: 40px 20px;
}

.why-choose-us h1 {
    font-size: 32px;
    font-weight: 500;
}

.why-choose-us p {
    font-size: 17px;
    margin-bottom: 20px;
}

.btn-contact:hover {
    background-color: var(--color);
    border: 1px solid var(--primary-color);

}

.btn-contact:hover a {
    color: var(--primary-color);
}

.client-feedback {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-feedback .circle-img1 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    left: 10px;
    z-index: -1;

}

.client-feedback .circle-img2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;

}

.client-feedback h4 {
    margin: 0;
}

.client-feedback p {
    color: var(--secondary-color);
}

.client-feedback .fw-bold {
    font-size: 24px !important;
}

.clients-reviews img {
    border-radius: 20px;
    margin-top: 20px;
}

.chooseus-text h4 {
    font-size: 25px;
    color: var(--primary-color);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 50px;
    letter-spacing: 0.3px;
}

.chooseus-text h1 {
    font-size: var(--primary-size);
    text-transform: capitalize;
    font-weight: 500;
    line-height: 40px;
    color: var(--secondary-color);
}

/* .icon-box {
    margin-bottom: 20px;
} */
.icon-box a {
    text-decoration: none;
    color: var(--secondary-color);
}

.choose-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    background: var(--primary-color);
    padding: 16px;
    border-radius: 50%;
    color: var(--color);
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.choose-icon:hover {
    transform: scale(0.7);
}

.icon-box h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-top: 10px;
}

.chooseus-text button {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    padding: var(--btn-padding);
    border-radius: var(--btn-radius);
    margin-top: 20px;
}

.chooseus-text button a {
    text-decoration: none;
    color: var(--color);
    font-size: 16px;
    font-weight: 500;
    text-transform: var(--btn-transform);
}

.choose-img {
    border-radius: 20px;
    width: 500px;

}

.clients-reviews {
    border-radius: 20px;
    width: 300px;
    height: 140px;

}

.reting {
    display: flex;
    gap: 15px;
}

.reting h1 {
    color: var(--secondary-color);
}

.feedback-section {
    text-align: center;
    padding: 20px;
    background-color: var(--color);
    border-radius: 10px;
    width: 300px;
    margin: auto;
}

.rating {
    color: #ffc107;
    font-size: 16px;
    margin: 10px 0px 10px 0px;
}

.profile-pics img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--color);
    margin: -10px 5px;
}

.reting i {
    color: #ffc107;
}

.choose-img:hover,
.circle-hov:hover,
.clients-reviews:hover {
    animation: upDown 0.5s ease-in-out forwards;
    cursor: pointer;
}

@keyframes upDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

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


/* Client Feedback */

/*  Left Part (Text)  */

.feedbacks-section {
    padding: 40px 20px;
    background-image: linear-gradient(180deg, var(--primary-color) 40%, #4dbefe 100%);

}

.feedbacks-section h4 {
    color: var(--color);
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 0.4px;
    line-height: 50px;

}

.feedbacks-heading {
    font-size: var(--primary-size);
    font-weight: 500;
    color: var(--color);
}

.feedbacks-description {
    color: var(--color);
    font-size: 14px;
    margin-bottom: 30px;
    text-align: justify;
}

/* -- Right Part (Feedback Card) -- */

.maincard {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}


.feedback-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.feedback-card .feed_cont {
    width: 100%;
}

.feedback-card .feed_cont img {
    border-radius: 20px;
    background-color: #000000;
}

.feed-div {
    text-align: justify;
}

.feedback-card h3 {
    font-size: 17px;
    margin: 0;
    color: #333;
}

.owl-nav .owl-next,
.owl-nav .owl-prev {
    width: 35px !important;
    height: 35px !important;
}

.feedback-card .rating i {
    color: #ffc107;
}

.feedback-card p {
    font-size: 16px;
    color: #555;
    text-transform: capitalize;
}

.feed_div {
    text-align: justify;
}

/* Carousel Navigation Buttons */

.owl-nav .owl-next,
.owl-nav .owl-prev {
    background-color: rgba(0, 0, 0, 0.8) !important;
    border-radius: 50%;
    color: white !important;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
}

/* Add hover effect */
.owl-nav button.owl-next:hover,
.owl-nav button.owl-prev:hover {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Blog Section */

.blog-section h4 {
    font-size: 25px;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 40px;
}

.blog-section h1 {
    text-transform: capitalize;
    font-size: var(--primary-size);
    font-weight: 500;
}

.card {
    border-radius: 15px;
    min-width: 300px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.card img {
    height: 200px;
    border-radius: 15px;
    /* object-fit: cover; */
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    background-color: #cfcccc;
    transition: 0.5s;
    overflow: hidden;
}

.card:hover img {
    transform: scale(1.1);
    /* Zoom the image by 10% */
}

.card-body {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.read-more-btn {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 10px;
}

.read-more-btn:hover {
    background-color: var(--color);
    border: 1px solid var(--primary-color);
}

.read-more-btn:hover a {
    color: var(--primary-color);
}


.read-more-btn a {
    text-decoration: none;
    color: var(--color);
}

/*--Working Flowchart--*/

.workflow-section {
    /* padding: 50px 20px; */
    position: relative;
}

.workflow-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.workflow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Main Line */
.workflow-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    z-index: 1;
    margin-top: 10px;
}

/* Workflow Step */
.workflow-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.workflow-step .workflow-icon {
    background: var(--primary-color);
    color: var(--color);
    font-size: 1.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.workflow-step:hover .workflow-icon {
    background: #00c6ff;
    transform: scale(1.1);
}

.workflow-step h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.workflow-step p {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Connector Circle */
.workflow-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 3;
    margin-top: 10px;
}

.workflow-step:hover .workflow-circle {
    background: #00c6ff;
}

.workflow-step:first-child .workflow-circle {
    left: 0;
}

.workflow-step:last-child .workflow-circle {
    right: 46%;
}

.workflow-step:not(:first-child):not(:last-child) .workflow-circle {
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ---Contact us Section---- */

.contact-info {
    /* color: #6c63ff; */
    margin-bottom: 24px;
}

.error-message {
    color: red;
    font-size: 12px;
}

.contact-info h5 {
    margin-top: 20px;
    color: var(--primary-size);
}

.form-section {
    background-color: var(--color);
    padding: 32px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-control:focus,
.form-select:focus {
    color: #212529;
    background-color: var(--color);
    box-shadow: none;
}

.contact-icon {
    background-color: var(--primary-color);
    color: var(--color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.contact-icon:hover {
    transform: scale(0.7);

}

.send-btn {
    color: var(--color);
    border: 1px solid var(--primary-color);
    padding: 10px 30px;
    border-radius: 10px;
    background: var(--primary-color);
}

.captcha-code {
    font-size: 18px;
    font-weight: 400;
    background: #e8e8e8;
    padding: 4px 20px;
    border-radius: 5px;
    letter-spacing: 3px;
}

.refresh {
    font-size: 20px;
    font-weight: 100;
    background: #0090d2;
    padding: 2px 16px;
    border-radius: 5px;
    letter-spacing: 3px;
    border: none;
    color: var(--color);
}

.send-btn a {
    text-decoration: none;
    color: #fff;
}

.cpfill {
    padding: 8px;
    width: 43%;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.send-btn:hover {
    background-color: var(--color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);

}

.send-btn:hover a {
    color: var(--primary-color);
}

.contact-title {
    font-size: 25px;
    font-weight: 400;
    color: var(--primary-color);

}

/* -- --Slider-- -- */
.owl-carousel .item img {
    object-fit: contain;


}

.ourslider {
    background: linear-gradient(557deg, #084866, #0090d2 44px);
    padding: 20px 0px 20px 0px;
}

.ourslider h2 {
    color: var(--color);
}

/* ----Footer Section---- */

footer {
    background-color: #1a1a2e;
    color: var(--color);
}

footer h6 {
    font-weight: bold;
    color: var(--primary-color);
}

.footer-logosec p {
    font-size: 14px;
    color: #b1b1b1;
    text-align: justify;

}

footer a {
    font-size: 14px;
    color: #b1b1b1;
    text-decoration: none;

}

.footer-service .text-light {
    color: inherit;
    transition: color 0.3s ease;

}

/* .footer-service .text-light:hover {
     color: var(--primary-color) !important; 
     Bootstrap's text-light color 
    width: 100%;
}*/

.btn-outline-light {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.text-light {
    position: relative;

}

.footer-service .text-light:hover::before {
    width: 100%;
}

.footer-service .text-light::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #4e9cff;
    color: var(--color);
}

.footer-logosec img {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}
