body {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
}



.btn-main {
    background: #0F3DDE;
    color: white;
    border-radius: 50px;
    padding: 14px 35px;
    font-weight: 600;
}

.form-control,
.form-select {
    height: 55px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 15px;
}


textarea.form-control {
    height: auto;
}


.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #0F3DDE;
}



footer {
    /* background:#07152f; */

    padding: 70px 0;
    /* color:white; */
}

.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #0F3DDE;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(15, 61, 222, .25);
    z-index: 999;
}

    .back-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-top:hover {
        background: #00C389;
        transform: translateY(-5px);
    }



/* Navbar */

.navbar {
    transition: .35s;
}

.navbar-scrolled {
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}



.logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Shared Ring Styles */
.circle-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
}

/* Outer Ring: Rotates Clockwise */
.ring-outer {
    width: 160px;
    height: 160px;
    border-top-color: #3b82f6; /* Blue dash */
    border-bottom-color: #1d4ed8; /* Darker blue dash */
    animation: spinClockwise 4s linear infinite;
}

/* Inner Ring: Rotates Counter-Clockwise */
.ring-inner {
    width: 130px;
    height: 130px;
    border-left-color: #10b981; /* Green dash */
    border-right-color: #047857; /* Darker green dash */
    animation: spinCounterClockwise 3s linear infinite;
}

/* Central Logo Styling */
.logo {
    position: absolute;
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

    .logo img {
        width: 70%;
        height: 70%;
        object-fit: contain;
    }

/* --- Animations --- */
@keyframes spinClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinCounterClockwise {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #6767676b;
    transition: all 0.6s ease-out;
}
