@import "font.css";

:root {
    --color1: #0071DC;
    --color2: #f1f3f8;
    --my-primary: #1e84b5;
    --my-secondary: #0e384c;
    --my-color-3: #EFF8FF;
}

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

.my-text-primary {
    color: var(--my-primary);
}

.my-bg-secondary {
    background-color: var(--my-secondary);
}

.my-text-secondary {
    color: var(--my-secondary);
}

.my-bg-color3 {
    background-color: var(--my-color-3);
}

.my-text-color3 {
    color: var(--my-color-3);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color1);
    border: 3px solid var(--color1);
}

::-webkit-scrollbar-thumb {
    background: #b0baf8;
    border-radius: 10px;
    border: 3px solid #b0baf8;
    transition: all .6s;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 0.93750rem;
    line-height: 1.6;
    font-weight: 500;
    overflow-x: hidden;
}

h2, h3, h4, h5, p, a, span, div {
    font-family: Gordita, sans-serif;
}

.my-mt-90 {
    margin-top: 90px;
}

.my-mt-70 {
    margin-top: 70px;
}

.my-pt-100 {
    padding-top: 100px;
}

.my-pb-100 {
    padding-bottom: 100px;
}

.my-pl-100 {
    padding-left: 100px;
}

.my-pb-200 {
    padding-bottom: 200px;
}

.max-w-100 {
    max-width: 100%;
}

.max-w-60 {
    max-width: 60px;
}

section {
    margin: 80px 0;
}

.overflow-visible {
    overflow: visible !important;
}

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

.p {
    color: #527282;
    margin-bottom: 0;
    line-height: 1.8em;
    /*font-size: 16px;*/
    font-size: clamp(12px, 3vw, 16px);
}

.gap-10 {
    gap: 10px;
}

.radius-45 {
    border-radius: 45px;
    overflow: hidden;
}

.radius-20 {
    border-radius: 20px;
    overflow: hidden;
}

/*.font-14 {*/
/*font-size: 14px;*/
/*}*/

/*.font-16 {*/
/*font-size: 16px;*/
/*}*/

/*.font-18 {*/
/*font-size: 18px;*/
/*}*/

/*.font-20 {*/
/*font-size: 20px;*/
/*}*/

/*.font-35 {*/
/*font-size: 35px;*/
/*}*/

/*.font-45 {*/
/*font-size: 45px;*/
/*}*/

/*.font-54 {*/
/*font-size: 54px;*/
/*}*/

.font-14 {
    font-size: clamp(10px, 2.5vw, 14px);
}

.font-16 {
    font-size: clamp(12px, 3vw, 16px);
}

.font-18 {
    font-size: clamp(14px, 3.5vw, 18px);
}

.font-20 {
    font-size: clamp(16px, 4vw, 20px);
}

.font-35 {
    font-size: clamp(22px, 7vw, 35px);
}

.font-45 {
    font-size: clamp(28px, 9vw, 45px);
}

.font-54 {
    font-size: clamp(32px, 10vw, 54px);
}

/* them button*/
.angel-icon-btn {
    background-color: var(--my-primary);
    border: none !important;
    outline: none !important;
    padding: 9px 11px 9px 20px;
    /*font-size: 14px;*/
    font-size: clamp(10px, 2.5vw, 14px);
    font-weight: 600;
    color: #fff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    transition: all .4s ease-in-out;
    transform-origin: left;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.angel-hover-dark::after {
    background: var(--my-secondary);
}

.angel-hover-light::after {
    background: #fff;
}

.angel-icon-btn::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 102%;
    border-radius: 99px;
    transform: translate(0);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.angel-icon-btn:hover.angel-icon-btn::after {
    width: 100%;
}

.angel-hover-light:hover {
    color: var(--my-secondary);
}

.angel-icon-btn i {
    color: var(--my-primary);
    background-color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.angel-icon-btn:hover.angel-icon-btn i {
    transform: rotate(0deg);
}

.angel-hover-light:hover.angel-icon-btn i {
    background-color: var(--my-secondary);
    color: var(--my-primary);
}

@media screen and (max-width: 575px) {
    .angel-icon-btn {
        font-size: 12px;
        padding: 5px 7px;
    }

    .angel-icon-btn i {
        width: 20px;
        height: 20px;
    }
}

/*shine hover box*/
.shine-hover {
    position: relative;
    width: max-content;
    overflow: hidden;
    transition: all .4s;
}

.shine-hover::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: all .4s;
}

.shine-hover:hover.shine-hover::after {
    animation: shine 1s ease;
}

@keyframes shine {
    1% {
        height: 0%;
    }
    50% {
        height: 150%;
    }
    100% {
        height: 0%;
        opacity: 0;
    }
}

/* heading top */
.heading-top {
    text-transform: uppercase;
    color: var(--my-primary);
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 0.2em;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
}

.heading-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/star-icon-sub-heading.svg) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 12px;
    height: 12px;
}

/* -----------------------------------------------------------*/
/*--scroll to top btn---*/
/*------------------------------------------------------------*/

#scrollTopBtn {
    outline: none !important;
    border: none !important;
    width: 50px;
    height: 50px;
    z-index: 50;
    position: fixed;
    bottom: 50px;
    right: 40px;
    border-radius: 50%;
    background-color: #0071dc;
    font-size: 14px;
}

#scrollTopBtn i {
    color: #fff !important;

}

#scrollTopBtn:hover i {
    animation: topBottomAnm 1s ease-in-out infinite;
}

@keyframes topBottomAnm {
    0% {
        padding-bottom: 15px;
    }
    50% {
        padding-bottom: 0;
    }
    100% {
        padding-bottom: 15px;
    }
}

/* -----------------------------------------------------------*/
/*--scroll to slide in---*/
/*------------------------------------------------------------*/

.animation-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease-out;
    will-change: transform;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.5s ease-out;
    will-change: transform;
}

.slide-in-bottom {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease-out;
    will-change: transform;
}

.slide-in-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* -----------------------------------------------------------*/
/*--common section----*/
/*------------------------------------------------------------*/
.panel-right-page {
    height: max-content;
    min-height: 100vh;
    margin-left: 320px;
    background-color: #f8f8f8;
    transition: all .4s;
}

.panel-right-page-margin {
    margin-left: 0px /*!important*/;
}

.reg-btn {
    color: white;
    padding: 10px 25px;
    display: block;
    width: max-content;
    text-align: center;
    background-color: var(--color1);
    border-radius: 5px;
    transition: all .4s;
    font-weight: 700;
    border: none;
    outline: none;
    cursor: pointer;
}

.reg-btn:hover {
    background-color: #ffc221;
    text-decoration: none;
    color: #121212;
}

.my-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    margin: 0 auto;
}

h2 {
    font-size: 2.50000rem;
}

.page1 h3 {
    color: #0071DC;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 500;
}

.red-border2 {
    border: 2px solid red !important;
    box-shadow: 0px 0px 10px rgba(255, 0, 0, 0.51);
}

.red-border:focus {
    border: 1px solid red !important;
    box-shadow: 0px 0px 10px rgba(255, 0, 0, 0.51) !important;
}

.rounded-15 {
    border-radius: 15px !important;
}

/*=============================================
log out conform popup
=============================================*/
.popup-overlay-logout {
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .7;
    transform: scaleY(0);
    transform-origin: top;
    z-index: 2;
    position: fixed;
    top: 0;
    transition: all .2s;
    cursor: url(../images/cross-courser.png) 16 16, pointer;
}

.logout-popup-content {
    transform: scaleY(0);
    transform-origin: top;
    transition: all .3s;
    position: fixed;
    background-color: #fff;
    top: calc(50% - 100px);
    left: calc(50% - 150px);
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 3;
}

.logout-popup-content h2 {
    font-size: 24px;
}

.close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
}

.logout-popup-content .reg-btn {
    width: 49%;
}

.smooth {
    transition: all .4s;
}

#toolbar {
    display: none !important;
}

.my-text-color {
    color: #ffc22a !important;
}

.google-rating {
    max-width: 150px;
}

.trust-pilot-rating {
    max-width: 100px;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.font-600 {
    font-weight: 600;
}

.add-phone {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.add-phone-body {
    max-width: 90%;
    width: 400px;
    margin: auto;
    color: #fff;
    background: linear-gradient(135deg, #2a3b4c, #1a2634);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    padding: 30px !important;
    position: relative;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-button {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0;
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.add-phone-button {
    background: linear-gradient(to right, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
    width: 100%;
}

.add-phone-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

.add-phone-button:active {
    transform: translateY(1px);
}

.input-group {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.input-group-text {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #3498db;
}

#phoneNumber {
    border: none;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    font-size: 16px;
}

#phoneNumber:focus {
    box-shadow: inset 0 0 0 2px #3498db;
}

.add-phone h3 {
    color: #3498db;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.add-phone label {
    font-weight: 600;
    color: #e0e0e0;
}

form .col-md-6 {
    margin-bottom: 10px;
}

/*=========================================
alert css
=========================================*/

.custom-alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 350px;
    z-index: 11000;
}

.custom-alert {
    display: flex;
    align-items: center;
    padding: 16px;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    transition: transform 0.5s ease;
    background-color: white;
    border-left: 5px solid #333;
}

.custom-alert.custom-show {
    transform: translateX(0);
}

.custom-alert-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
}

.custom-alert-content {
    flex-grow: 1;
}

.custom-alert-title {
    font-weight: 600;
    margin-bottom: 3px;
    color: #333;
}

.custom-alert-message {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.custom-alert-close {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
    height: 24px;
    width: 24px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.custom-alert-close:hover {
    color: #333;
}

/* Alert variants */
.custom-alert.custom-success {
    border-left-color: #4CAF50;
}

.custom-alert.custom-success .custom-alert-icon {
    color: #4CAF50;
}

.custom-alert.custom-error {
    border-left-color: #F44336;
}

.custom-alert.custom-error .custom-alert-icon {
    color: #F44336;
}

.custom-alert.custom-warning {
    border-left-color: #FF9800;
}

.custom-alert.custom-warning .custom-alert-icon {
    color: #FF9800;
}

.custom-alert.custom-info {
    border-left-color: #2196F3;
}

.custom-alert.custom-info .custom-alert-icon {
    color: #2196F3;
}

form label {
    margin-bottom: 1px;
}

.star-label {
    position: relative;
}

.star-label::after {
    content: '*';
    position: absolute;
    right: -10px;
    top: 0;
    color: red;
}

.input-icon {
    position: relative;
}

.input-icon i {
    color: var(--background);
    opacity: 0.8;
    position: absolute;
    left: 10px;
    top: 10px;
}

.input-icon input {
    padding-left: 33px;
}

.input-inner-button {
    position: absolute;
    right: 0;
    top: 0;
}
