﻿/* wwwroot/css/site.css */
@font-face {
    font-family: 'Inter';
    src: url('Fonts/static/Inter_24pt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('Fonts/static/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('Fonts/static/Inter_18pt-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}
body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #f9f9fb;
}
span{
    font-size : 14px
}
header {
    position: sticky;
    top: 0;
    z-index: 1000;
   
}
.logo {
    width: 20%;
}
.follow{
    font-size:0.9rem
}
.socialbtn {
    background-color: #f0eeff;
}
.socialicon {
    color: #6854FC;
}
.iconsdiv{
    gap:11px;
}
.footer {
    background-color: #0A142F
}
.footer a{
    color: #bbbbbb !important
}
    .footer p {
        color: #bbbbbb !important
    }
.footerIcon {
    background-color: #212a42;
    width: 50px;
    height: 50px;
    font-size: 25px;
    border-radius: 12px !important;
}
.blueSection {
    background-image: url("Images/Elipse2.svg");
    background-color: #6854FC;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 150px;
    overflow: hidden;
    padding: 35px;
    border-radius: 15px;
}
    .blueSection p {
        font-size: 14px;
        color: #c3bbfe;
        margin-bottom:14px
    }

.cstmicon{
    height:40px;
    width:40px;
    background-color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center
}
.whiteSection{
    background-color:#fff;
    padding:30px;
    border-radius:60px
}
.rating-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    width: 28%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
}

.minusmargin {
    margin-top: -90px
}

.rating-card .stars {
    color: #ffc107;
    font-size: 1.2rem;
}
.form-group{
    display:flex;
    justify-content:center;
    flex-direction:column;
}
.customInput {
    border: none;
    border-bottom: 1px solid lightgrey;
    outline: none;
    padding: 6px 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

    .customInput:focus {
        border-bottom: 1px solid grey; 
        box-shadow: none; 
        transform: scale(1.02); /* Slightly scale up the input field */
        transition: transform 0.3s ease-in-out, border-bottom 0.3s ease-in-out; /* Smooth transition */
    }



.form-label {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    color: black;
}
.form-check-input:checked {
    background-color: #6854FC !important; /* Purple check color */
    border-color: #6854FC !important;
    box-shadow: none !important;
}
    .form-check-input:checked[type="radio"] {
        background-image: url("Images/Vector.svg");
        background-color: #6854FC; /* Purple background for selected state */
        border-color: #6854FC;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 75%; /* Adjust the size of the tick */
    }
.custom-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .custom-card:hover {
        transform: scale(1.05);
    }

    .custom-card img {
        height: 200px;
        object-fit: cover;
    }

.custom-button {
    text-align: center;
    margin-top: 20px;
}

    .custom-button .btn {
        border-radius: 25px;
        font-size: 18px;
    }

.blogContainer {
    background-color: #fff;
    border-radius: 25px;
}
.cstmfont{
    font-size:12px
}
.blogImg {
    border-radius: 20px;
    height: -webkit-fill-available;
}
.blogSection {
    background: linear-gradient(to right, #f1f1f3 50%, #f9f9fb 50%); /* Gradient from #f1f1f3 to white */
    margin-top: 20px
}

.card {
    border: 1px solid #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

.card-title {
    font-size: 18px;
    font-weight: bold;
    text-align: start;
}
.datediv {
    border-radius: 20px;
    background-color: #d8ff36;
    padding: 10px 20px;
    display: inline;
    font-size: clamp(0.8rem,1.5vw,1rem);
    font-weight: 600;
    width:auto
}
.mainHeading {
    font-size: clamp(1rem,8vw,3.2rem);
}
.card-text {
    font-size: 14px;
    color: #555;
    text-align: start;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.btn-white {
    background-color: #fff;
    color: #6c3c71;
}
    .btn-white:hover {
        background-color: #b9a1ee
    }
.card-icon {
    font-size: 36px;
    color: #5b5bff;
    text-align: start;
}



.card-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 40px
}

.card-body {
    flex-grow: 1;
}

.appContainer {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    transition: box-shadow 0.3s ease;
}

    .appContainer img {
        cursor: pointer;
        transition: transform 0.2s;
    }

        .appContainer img:hover {
            transform: scale(1.1);
        }

    .appContainer:hover {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

.modal-content {
    border-radius: 15px;
}
#modalDescription {
    white-space: pre-line;
    line-height:1.3
}
.modal-header{
    border-bottom:none
}
.modal-footer{
    border-top:none
}
.disc{
    list-style-type:disc
     
}
.button-2 {
    color: #fff;
    border: 3px solid #5838f9;
    background-image: -webkit-linear-gradient(30deg, #5838f9 50%, transparent 50%);
    background-image: linear-gradient(30deg, #5838f9 50%, transparent 50%);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
}

    .button-2:hover {
        background-position: 100%;
        color: #5838f9;
    }
.button-3 {
    color: #fff;
    border: 3px solid #021b3b;
    background-image: -webkit-linear-gradient(30deg, #021b3b 50%, transparent 50%);
    background-image: linear-gradient(30deg, #021b3b 50%, transparent 50%);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
}
.button-3:hover {
    background-position: 100%;
    color: #000;
}
.btn-dark:hover {
    background-color: #5838f9;
    border: none;
    width:auto
}
/* Add animation for modal appearance */
.custom-modal-animation {
    animation: slideInFromTop 0.5s ease-out;
}

/* Define the keyframes for the sliding effect */
@keyframes slideInFromTop {
    from {
        transform: translateY(-50%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
..no-wrap {
    white-space: nowrap;
}

.text-primary {
    color: #5838f9 !important
}

@media only screen and (max-width: 1024px) {
    .blogSection{
        background:none !important
    }

    .rating-card .stars {
        font-size: 0.8rem !important
    }
    .rating-card h6{
        font-size: 0.8rem
    }
    .odoobtn{
        width:50% !important
    }
    
}

.custom-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

    .custom-table th {
        background-color: #5838f9;
        color: #fff;
        text-align: left;
        padding: 22px;
    }

    .custom-table td {
        border: 1px solid #ddd;
        padding: 12px 12px 0px 25px;
    }

    .custom-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .custom-table tr:first-child th:first-child {
        border-top-left-radius: 30px;
    }

    .custom-table tr:first-child th:last-child {
        border-top-right-radius: 30px;
    }

.bg-custom {
    background: linear-gradient(0deg, #F2F7FF 75%, transparent 25%)
}
.pricing-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .pricing-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

.pricing-header {
    font-weight: bold;
    font-size: 1.5rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: bold;
}

.background {
    background-image: url(Images/HomeBackground.svg);
    background-repeat: no-repeat;
    background-position: 45% -243%;
    background-size: contain;
}
.downSection {
    background-color: #AEE2FF;
    height:52px
}
.yellowCircle {
    background-color: #C4C4C433;
    border-radius:20px;
   
}
    .yellowCircle p {
        font-size: clamp(0.6rem,1.8vw,1.2rem);
        font-weight: 500
    }
.card-img-top{
    min-height:15rem
}
.rounded-4 {
    border-radius: 9px;
}
.home-blue-container {
    background-image: url(Images/bgcircles.svg);
    background-color: #5838F9;
    background-repeat: no-repeat;
    background-position: 40% 30%;
    background-size: 1400px;
    overflow: visible; /* Allow content to extend beyond the container */
    border-radius: 20px;
}
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 12px;
}
    .home-blue-container .col-md-5 {
        position: relative;
    }

        .home-blue-container .col-md-5 img {
            position: relative;
            z-index: 1; /* Ensures the image is above the container */
            margin-top: -60px; /* Adjust to fine-tune the overlap */
            margin-right: -20px; /* Adjust to extend beyond the container on the right */
        }
.blog-gradientsection {
    background-image: url(Images/bgcircles.svg);
    background-repeat: no-repeat;
    background-position: 40% 30%;
    background-size: 1400px;
    position:relative;
}
.font22 {
    font-size: 19px;
    color: #ECFFCD
}
.cstmmargin{
   margin-top: -150px
}
#overlay {
    position: absolute; /* Sit on top of the page content */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, #fff 20%, #D6E8FB 80%);
    cursor: pointer; /* Add a pointer on hover */
    opacity: 0.2
}

.menu li a { /* Apply effect only to list items */
    text-decoration: none;
    color: #000; /* Changed to black for better contrast */
    display: block;
    position: relative;
    padding: 4px 0;
}

    .menu li a::before { /* Apply animation only to nav links */
        content: "";
        width: 100%;
        height: 4px;
        position: absolute;
        left: 0;
        bottom: 0;
        background: #5838f9;
        transition: 0.5s transform ease;
        transform: scale3d(0,1,1);
        transform-origin: 100% 50%;
    }

    .menu li a:hover::before {
        transform: scale3d(1,1,1);
        transform-origin: 0 50%;
    }

.menu-1 a::before {
    background: #5838f9;
    transform-origin: 100% 50%;
}

.menu-1 a:hover::before {
    transform-origin: 0 50%;
}

.hoveranchor {
    text-decoration: none;
    color: #000; /* Changed to black for better contrast */
    display: block;
    position: relative;
    padding: 4px 0;
}

    .hoveranchor::before {
        content: "";
        width: 50%;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: 0;
        background: #5838f9;
        transition: 0.5s transform ease;
        transform: scale3d(0,1,1);
        transform-origin: 100% 50%;
    }

    .hoveranchor:hover::before {
        transform: scale3d(1,1,1);
        transform-origin: 0 50%;
    }
/* Floating button container */
.floating-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    background-color: #333333;
    border-radius: 25px;
    padding: 10px 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}
/* Individual tab styling */
.tab {
    color: white !important;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}
    /* Hover effect for tabs */
    .tab:hover {
        background-color: #555555;
        border-radius: 15px;
        color: #FFCC00; /* Highlight color */
    }
/* Separator between tabs */
.separator {
    height: 20px;
    width: 1px;
    background-color: #555555;
}
/* Responsive behavior */
@@media (max-width: 768px) {
    .tab {
        font-size: 12px;
        padding: 8px 10px;
    }

    .floating-button {
        padding: 5px 10px;
    }
}

@@media (max-width: 480px) {
    .floating-button {
        display: none
    }

    .tab {
        width: 100%; /* Ensure each tab takes the full width */
        text-align: left; /* Align text to the left */
        font-size: 12px; /* Adjust font size for better readability */
        padding: 8px 10px;
    }

    .separator {
        display: none; /* Remove separators in mobile view */
    }
}

a {
    text-decoration: none;
}

.floating_btn {
    position: fixed;
    bottom: 0px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42DB87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42DB87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

.text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
}