.align-center {
    align-items: center !important;
}

body {
    background-image: -webkit-linear-gradient(330deg, #b74f00 0%, #d65804 100%);
    background-image: -o-linear-gradient(330deg, #b74f00 0%, #d65804 100%);
    background-image: linear-gradient(135deg, #b74f00 0%, #d65804 100%);
    color: white;
}

.content {
    padding: 140px 0px;
}

.box {
    padding: 40px 40px;
    background: #001d46;
    -webkit-box-shadow: 0 15px 30px 0 #00000033;
    box-shadow: 0 15px 30px 0 #00000033;
}

.box .heading {
    color: #fff;
    text-align: center;
    font-size: 18px;
}

.labelAndInput {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.labelAndInput label {
    color: #fff;
}

.labelAndInput input,
.labelAndInput textarea {
    height: 40px;
    border-radius: 4px;
    padding: 2px 10px;
    background-color: #ffffff2d;
    border: none;
    box-shadow: 1px 1px 10px 1px #00000098;
    color: white;
}

.labelAndInput textarea {
    height: 180px;
}

.labelAndInput input:active,
.labelAndInput textarea:active,
.labelAndInput input:focus,
.labelAndInput textarea:focus {
    outline: none;
    background-color: #ffffff57;
    border: 1px solid #ffffff64;
}

.submitButton {
    background-color: #00347d;
    border: none;
    width: 160px;
    height: 50px;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submitButton:hover {
    background-color: #0149ae;
    transform: scale(1.03);
}

.innerRow{
    margin-top: 40px;
}

.contactIcons {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contactIcons a {
    color: white;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contactIcons a i {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background-color: #747474;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contactIcons a:hover i,
.contactIcons a i:hover {
    background-color: #00347d;
}

.contactIcons a:hover i::before,
.contactIcons a i:hover::before {
    position: absolute;
    z-index: 1;
    border: 2px solid #ffffff3c;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ourLocation p{
    margin: 0;
}

/* MOBILE */

@media(max-width:767px) {
    .box {
        margin-top: 50px;
    }
}


@media(max-width:576px) {
    .content {
        padding: 140px 12px;
        text-align: center;
    }

    .labelAndInput label,
    .submitButton {
        text-align: left;
    }
}
.loader-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            display: none;
        }

        .loader {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .progress-bar {
            width: 300px;
            height: 20px;
            background-color: #f2f2f2;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .progress-bar-fill {
            height: 100%;
            background-color: #3fa9f5;
            transition: width 0.3s;
        }

        .loader-spinner {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 4px solid #3fa9f5;
            border-top: 4px solid #fff;
            animation: spin 1s infinite linear;
            margin-bottom: 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
    /* Add the CSS animation for the circle */
@keyframes animateCircleBackground {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: white; /* Strong cream white */
  }
}

/* Add the CSS animation class for the circle background */
.animate-circle-background {
  animation: animateCircleBackground 0.5s linear;
}

.custom-swal-popup {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #f4eece; /* Cream white border */
}

.custom-swal-title {
    color: #d65804;
    font-size: 24px;
}

.custom-swal-confirm-button {
    background-color: #d65804;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
}

.swal2-title {
    color: #fff !important;
}

.swal2-content {
    color: #fff !important;
}

.swal2-success-icon {
    border-color: #d65804 !important;
    position: relative;
}

.swal2-success .swal2-success-circular-line-left,
.swal2-success .swal2-success-circular-line-right {
    border-color: #d65804 !important;
}

.swal2-success .swal2-success-ring {
    border-color: #4caf50 !important; /* Updated color */
}
/* Style the x button */
.swal2-close {
    background-color: red !important;
    color: #fff;
    font-size: 16px;
    padding: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
}

/* Add the CSS animation class */
.animate-circle {
    animation: animateCircle 0.5s linear;
    background-color: transparent; /* Set initial background to transparent */
}

/* Hide the circle background after the animation */
.animate-circle:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: #f4eece; /* Set background to cream white after animation */
}

