@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

/* _________________________Common Start_________________________ */
:root
{
    --white_smoke: #f5f6f7;
    --primary_color: #25aae1;
    --primary_light: rgba(37, 170, 225, 0.1);
    --secondary_color: #014972;
    --quaternary_color: #E9B63B;
    --tertiary_color: #B12C00;
    --transition: all 0.3s ease;
}

*
{
    font-family: "IBM Plex Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

::-webkit-scrollbar
{
    width: 5px;
}

::-webkit-scrollbar-track
{
    background: #ffffff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb
{
    background: var(--primary_color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover
{
    background: var(--secondary_color);
}

.foreground
{
    color: var(--secondary_color);
}

.primary
{
    color: var(--primary_color)
}

.secondary
{
    color: var(--secondary_color)
}

@media (min-width: 992px) {
    .w-lg-50 {
        width: 50% !important;
    }
}

.fs-sm
{
    font-size: small;
}
/* ---------------------------------------------- */
header .navbar,
header .offcanvas
{
    background-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    transition: all 1s ease-in-out;
}

header.scrolled .navbar,
header.scrolled .offcanvas
{
    background-color: white;
}

header .nav-link
{
    color: white;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 1s ease-in-out;
}

header.scrolled .nav-link
{
    color: rgb(58, 57, 57);
}

header .nav-item:hover .nav-link,
header .nav-link.active,
header .nav-link:focus
{
    color: var(--primary_color) !important;
}

header .dropdown-menu
{
    background-color: #f5f6f7;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

header .dropdown:hover .dropdown-menu
{
    display: block;
    margin-top: 0 !important;
}

header .dropdown-item
{
    background-color: #f5f6f7;
}

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

@media screen and (max-width: 400px)
{
    header .icon-link i
    {
        height: 20px !important;
        width: 20px !important;
        font-size: 13px !important;
        padding-left: 4px;
        padding-top: 2px;
    }
}

/* ---------------------------------------------- */
footer
{
    background-color: #1c2321 !important;
    border-bottom: 8px solid var(--secondary_color);
}

.footer-container
{
    border-top: 2px solid #333938;
}

footer *
{
    color: #d2d3d3 !important;
}

footer .copyright
{
    font-size: smaller;
}

footer a span
{
    font-size: small !important;
    transition: all 0.5s ease-in-out;
    font-weight: 500;
}

footer a:hover span
{
    transition: all 0.5s ease-in-out;
    margin-left: 10px !important;
    color: var(--primary_color) !important;
}

.icon
{
    animation: drop 2s infinite ease-in-out;
}

@keyframes drop
{
    0%,
    100%
    {
        transform: translateY(0);
    }

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

.dotted-anim
{
    stroke: #F7F3F1;
    stroke-opacity: 0.2;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
}

.animate-dash
{
    animation: dashToDotted 2s ease-in-out forwards;
}

@keyframes dashToDotted
{
    0%
    {
        stroke-dasharray: none;
        stroke-dashoffset: 0;
    }

    100%
    {
        stroke-dasharray: 4 4;
        stroke-dashoffset: 100;
    }
}
/* ---------------------------------------------- */
.faq-section2
{
    background-color: var(--white_smoke) !important;
}

.faq-section2 .accordion-item,
.faq-section2 .accordion-button
{
    background-color: var(--white_smoke) !important;
    box-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0px #dfe4ea !important;
}

.faq-section2 .accordion-button i
{
    background-color: var(--white_smoke) !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

/* ---------------------------------------------- */
.faq-section .question
{
    color: #ffb72b;
}

.faq-section .card,
.faq-section .input-group input,
.faq-section .input-group span,
.faq-section .input-group i
{
    background-color: #1B2430 !important;
    box-shadow: none !important;
    color: #793FDF;
}

.faq-section .input-group
{
    border-bottom-color: #793FDF !important;
}

.faq-section ::placeholder
{
    color: #793FDF !important;
    opacity: 1;
}

.faq-section input:focus::placeholder
{
    color: #D71313 !important;
    transform: translateX(-100px);
    transition: all 1s ease-in-out;
}

.faq-section input:focus
{
    color: #793FDF;
}

.faq-section button[type="submit"]
{
    background: #793FDF !important;
    color: white;
}

.faq-section button[type="submit"]:hover
{
    background-color: #C70039 !important;
}

.faq-section .accordion-item,
.faq-section .accordion-button
{
    background-color: #ecf2ff;
    box-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0px #dfe4ea;
}

.faq-section .accordion-button.collapsed::after
{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='darkblue' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.faq-section .accordion-button:not(.collapsed)::after
{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='red' class='bi bi-x' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-section .accordion i
{
    background-color: #dbe6fd;
}

/* ---------------------------------------------- */
.contact
{
    background-color: #f5f6f7;
}

.mapouter
{
    position: relative;
    text-align: right;
    height: 400px;
    width: 100%;
}

.gmap_canvas
{
    overflow: hidden;
    background: none !important;
    height: 400px;
    width: 100%;
}

.contact .contact-container
{
    background-color: #f5f6f7;
    box-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0px #DFE4EA;
    border: 3px solid #f5f6f7 !important;
    transition: all .5s ease-in-out;
}

.contact .card
{
    background-color: #f5f6f7;
}

.contact h5
{
    color: var(--secondary_color) !important;
}

.contact a
{
    color: var(--secondary_color) !important;
}

.contact a:hover
{
    color: var(--primary_color) !important;
}

.contact a:hover span
{
    transition: all .5s ease-in-out;
    margin-left: 7px !important;
}

.contact input[type="text"],
.contact input[type="email"]
{
    border: 1px solid var(--secondary_color);
    background-color: #f5f6f7;
    box-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0px #dfe4ea;
}

.contact input[type="text"]:focus,
.contact input[type="email"]:focus
{
    box-shadow: none;
    border: 1px solid var(--primary_color);
}

.contact textarea.form-control
{
    border: 1px solid var(--secondary_color);
    background-color: #f5f6f7;
    box-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0px #dfe4ea;
}

.contact textarea.form-control:focus
{
    box-shadow: none;
    border: 1px solid var(--primary_color);
}

.contact input:focus::placeholder
{
    color: var(--secondary_color) !important;
    transform: translateX(7px);
    transition: all .5s ease-in-out;
}

.asterisk::after
{
    content: "*";
    color: red;
    margin-left: 3px;
}

.contact .social-icon a
{
    background-color: #f5f6f7;
    box-shadow: inset -4px -2px 2px 0px #ffffff, inset 4px 2px 4px 0px #dfe4ea;
    border: 2px solid #f5f6f7;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.contact .social-icon a:hover
{
    box-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0px #dfe4ea;
}

.contact .social-icon .bi
{
    margin-left: 6px;
}

.contact .social-icon .bi:hover
{
    color: var(--secondary_color);
    transition: all 0.3s ease-in-out;
}

.contact .bi-facebook
{
    color: #087aea;
}

.contact .bi-linkedin
{
    color: #0f8ac2;
}

.contact .bi-twitter
{
    color: #1da1f2;
}

.contact .bi-instagram
{
    color: #ff0d4e;
}

.contact .bi-youtube
{
    color: #ff0000;
}

.contact .bi-whatsapp
{
    color: #2cd43c;
}

.contact a:hover .bi
{
    color: #000000;
}

.timeline-icon
{
    color: rgb(227, 227, 238);
    background-color: var(--secondary_color);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px 0px, rgba(0, 0, 0, 0.24) 0px 1px 2px 0px;
}

.contact-details .vr
{
    opacity: 1;
    border: 2px solid var(--secondary_color);
}

/* ---------------------------------------- */
@keyframes zoom
{
    from
    {
        transform: scale(1.4, 1.4);
    }

    to
    {
        transform: scale(1, 1);
    }
}

.home-slider .carousel-item img
{
    animation: zoom 10s !important;
}

@keyframes caption
{
    0%
    {
        transform: translateX(1300px);
    }

    5%
    {
        transform: translateX(-40px);
    }
}

.home-slider .carousel-caption
{
    animation: caption 50s ease-in-out;
}

.counter {
    border-bottom: 4px solid var(--secondary_color) !important;
}

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

.fs-small
{
    font-size: small;
}

.button-effect
{
    width: 100%;
    font-size: small;
    font-weight: 500;
    text-align: right;
    transition: all 0.5s;
    cursor: pointer;
    border: none;
}

.button-effect span
{
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button-effect span:after
{
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button-effect:hover span
{
    padding-right: 15px;
}

.button-effect:hover span:after
{
    opacity: 1;
    right: 0;
}

.card
{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    transition: all 1.5s ease;
}

.card:hover
{
    box-shadow: 0px 9px 30px rgba(255, 149, 5, 0.3);
}

.card .card-img-top,
.card .card-img
{
    transition: all 1.5s ease;
}

.card:hover .card-img-top,
.card:hover .card-img
{
    transform: scale(1.1);
}

.card:hover .button-effect
{
    color: var(--primary_color);
}

.founder-image-container
{
    background-color: #d1ecf1;
}

.founder-image-container img
{
    transform: rotate(0deg);
    transition: transform 1s ease-out;
}

.founder-image-container img.rotate-in
{
    transform: rotate(-10deg);
}

.co-founder-image-container
{
    background-color: #d1ecf1;
}

.co-founder-image-container img
{
    transform: rotate(0deg);
    transition: transform 1s ease-out;
}

.co-founder-image-container img.rotate-in
{
    transform: rotateZ(10deg)
}

.btn-custom
{
    margin: 10px;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    border: 0px;
    font-weight: 600;
    box-shadow: 0px 0px 14px -7px var(--primary_color);
    background-image: linear-gradient(45deg, var(--secondary_color) 0%, var(--primary_color) 51%, var(--secondary_color) 100%);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-custom:hover
{
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

.btn-custom:active
{
    transform: scale(0.95);
}

.btn-custom span
{
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btn-custom span:after
{
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.btn-custom:hover span
{
    padding-right: 15px;
}

.btn-custom:hover span:after
{
    opacity: 1;
    right: 0;
}

.custom-form .form-label
{
    position: absolute;
    top: 8px;
    left: 15px;
    font-size: 0.9rem;
    color: #6c757d;
    transition: all 0.2s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
    z-index: 1;
}

.custom-form input[type="text"]:focus + .form-label,
.custom-form input[type="text"]:not(:placeholder-shown) + .form-label,
.custom-form input[type="email"]:focus + .form-label,
.custom-form input[type="email"]:not(:placeholder-shown) + .form-label,
.custom-form input[type="tel"]:focus + .form-label,
.custom-form input[type="tel"]:not(:placeholder-shown) + .form-label,
.custom-form input[type="number"]:focus + .form-label,
.custom-form input[type="number"]:not(:placeholder-shown) + .form-label,
.custom-form textarea:focus + .form-label,
.custom-form textarea:not(:placeholder-shown) + .form-label,
.custom-form input[type="file"]:valid + .form-label,
.custom-form select:focus + .form-label,
.custom-form select:valid + .form-label
{
    top: -8px;
    left: 15px;
    font-size: 0.75rem;
    color: var(--secondary_color);
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"],
.custom-form input[type="number"],
.custom-form input[type="file"],
.custom-form textarea,
.custom-form select
{
    border: 1px solid #dbdbdb !important;
}

.custom-form input[type="text"]:focus,
.custom-form input[type="email"]:focus,
.custom-form input[type="tel"]:focus,
.custom-form input[type="number"]:focus,
.custom-form input[type="file"]:focus,
.custom-form textarea:focus,
.custom-form select:focus
{
    box-shadow: none !important;
    border: 1px solid var(--secondary_color) !important;
}

.progress-container
{
    background-color: lightgray;
}

.progress-bar-custom
{
    background-color: black;
    transition: width 2s ease-in-out;
}

.swiper-button-next::after,
.swiper-button-prev::after
{
    font-size: medium;
    font-weight: bolder;
    color: black;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after
{
    color: red;
}

.project-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 12px !important;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    background-color: white;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 9px 30px rgba(255, 149, 5, 0.3);
    border-color: var(--primary_light);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.project-card:hover .icon-wrapper {
    background-color: var(--primary_color) !important;
}

.project-card:hover .icon-wrapper i {
    color: white !important;
}

.product-details .main-image {
    cursor: crosshair;
    position: relative;
}

.product-details .zoom-window {
    display: none;
    position: absolute;
    border: 2px solid var(--primary_color);
    width: 150px;
    height: 150px;
    overflow: hidden;
    z-index: 100;
    background-repeat: no-repeat;
}

.product-details .nav-link {
    background-color: var(--secondary_color);
}

.product-details .nav-link.active,
.product-details .nav-link:focus,
.product-details .nav-link:hover {
    background-color: var(--primary_color);
}

.product-details .tab-pane {
    min-height: 300px;
    text-align: justify;
}

@media screen and (max-width: 1000px)
{
    .product-details #main-image
    {
        max-height: 250px !important;
    }
}

@media screen and (max-width: 400px)
{
    .product-details h1
    {
        font-size: 1.3rem !important;
    }
    
    .product-details #main-image
    {
        max-height: 200px !important;
    }
}

.bg-primary-light {
    background-color: var(--primary_light);
}

.text-primary {
    color: var(--primary_color) !important;
}

.text-secondary {
    color: var(--secondary_color) !important;
}

.whatsapp-float {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .wave {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(37, 211, 102, 0.35);
    border-radius: 50%;
    animation: waveEffect 4s ease-out infinite;
    z-index: -1;
}

.wave:nth-child(2) {
    animation-delay: 1.3s;
}

.wave:nth-child(3) {
    animation-delay: 2.6s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes waveEffect {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}
/*----------------------Product Section...................*/
.product-section img {
    border: 2px solid #EFE9E3;
    transition: all 0.3s ease;
}

.product-section .position-relative:hover img {
    border: 2px solid var(--primary_color) !important;
    box-shadow: 0px 9px 30px rgba(255, 149, 5, 0.3);
    transform: scale(1.05);
}

.product-section .card-title {
    transition: border-color 0.3s ease;
}

.product-section .position-relative:hover .card-title {
    color: var(--secondary_color);
}
