:root {
     --primary: #1e6cdb;
     --primary-light: #e6eaf8;
     --secondary: #1e6cdb;
     --dark: #1a1a2e;
     --light: #f8f9fa;
     --success: #4cc9f0;
}

::-webkit-scrollbar {
     width: 0px;
     height: 0px;
}

body {
     font-family: 'Inter', sans-serif;
     background-color: #f5f7ff;
     color: var(--dark);
}

.section-title {
     font-weight: 700;
     font-size: 2.5rem;
     line-height: 1.2;
     margin-bottom: 1.5rem;
     background: linear-gradient(140deg, var(--primary), var(--secondary));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
}

.lead-text {
     font-size: 1.1rem;
     color: #4a5568;
     line-height: 1.6;
     margin-bottom: 2rem;
}

.benefit-item {
     display: flex;
     align-items: center;
     margin-bottom: 1.25rem;
     padding: 0.75rem 1rem;
     background-color: white;
     border-radius: 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-item:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: var(--primary-light);
     border-radius: 10px;
     margin-right: 1rem;
     color: var(--primary);
     font-size: 1.1rem;
}

.card {
     border: none;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(67, 97, 238, 0.15);
     overflow: hidden;
     transition: transform 0.3s ease;
}

.card:hover {
     transform: translateY(-5px);
}

.card-header {
     background-color: var(--primary);
     color: white;
     padding: 1.5rem;
     border-bottom: none;
}

.card-title {
     font-weight: 600;
     font-size: 1.5rem;
     margin-bottom: 0;
}

.form-control,
.form-select {
     color: #000;
     padding: 0.75rem 1rem;
     border-radius: 0px;
     border: 1px solid #c4c9cf;
     transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.btn-primary {
     display: flex;
     justify-content: center;
     align-items: center;
     background-color: var(--primary);
     border: none;
     padding: 13px;
     border-radius: 10px;
     font-weight: 600;
     letter-spacing: 0.5px;
     transition: all 0.3s;
}

.btn-primary:hover {
     background-color: var(--secondary);
     transform: translateY(-2px);
}

.btn-primary:active {
     transform: translateY(0);
}

.floating-alert {
     position: fixed;
     top: 20px;
     right: 20px;
     z-index: 1000;
     animation: slideIn 0.5s forwards, fadeOut 0.5s 3s forwards;
     display: none;
}

@keyframes slideIn {
     from {
          transform: translateX(100%);
          opacity: 0;
     }

     to {
          transform: translateX(0);
          opacity: 1;
     }
}

@keyframes fadeOut {
     from {
          opacity: 1;
     }

     to {
          opacity: 0;
     }
}

.input-group-text {
     background-color: var(--primary-light);
     border: none;
     color: var(--primary);
}

.dob-select {
     background-position: right 0.75rem center;
}

#loadingIndicator {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.2);
     z-index: 9999;
     justify-content: center;
     align-items: center;
}

.spinner {
     width: 50px;
     height: 50px;
     border: 5px solid #f3f3f3;
     border-top: 5px solid var(--primary);
     border-radius: 50%;
     animation: spin 1s linear infinite;
}

@keyframes spin {
     0% {
          transform: rotate(0deg);
     }

     100% {
          transform: rotate(360deg);
     }
}

/* Input tick animations */
.input-group {
     position: relative;
}

.valid-tick {
     position: absolute;
     right: 10px;
     top: 50%;
     transform: translateY(-50%);
     color: #28a745;
     opacity: 0;
     transition: opacity 0.3s ease;
}

.show-tick {
     opacity: 1;
}

.tick-animation {
     display: inline-block;
     width: 20px;
     height: 20px;
}

.tick-animation path {
     stroke-dasharray: 100;
     stroke-dashoffset: 100;
     animation: draw 0.6s forwards;
}

@keyframes draw {
     to {
          stroke-dashoffset: 0;
     }
}

/* Select tick animations */
.select-container {
     position: relative;
}

.select-tick {
     position: absolute;
     right: 35px;
     top: 50%;
     transform: translateY(-50%);
     color: #28a745;
     opacity: 0;
     transition: opacity 0.3s ease;
     z-index: 5;
}

.show-select-tick {
     opacity: 1;
}

/* Submission confirmation */
.submission-confirmation {
     position: fixed;
     background-color: rgba(0, 0, 0, 0.85);
     display: none;
     width: 100%;
     min-height: 100%;
     z-index: 9999;
}


.submission-confirmation .overlay {
     width: 500px;
     max-width: 90%;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     padding: 2rem;
     text-align: center;
     background-color: #fff;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.submission-confirmation i {
     font-size: 4rem;
     color: #28a745;
     margin-bottom: 1rem;
     animation: bounce 0.5s;
}

@keyframes bounce {

     0%,
     20%,
     50%,
     80%,
     100% {
          transform: translateY(0);
     }

     40% {
          transform: translateY(-20px);
     }

     60% {
          transform: translateY(-10px);
     }
}

.submission-confirmation h3 {
     margin-bottom: 1rem;
     color: var(--dark);
}

.submission-confirmation p {
     color: #6c757d;
     margin-bottom: 1.5rem;
}

.countdown {
     font-size: 1.2rem;
     font-weight: bold;
     color: var(--primary);
}

.progress {
     height: 6px;
     background-color: #e9ecef;
}

.progress-bar {
     transition: width 1s linear;
}

.hide-left {
     display: block;
}

@media (max-width: 768px) {

     .hide-left {
          display: none;
     }

     .col-lg-7 {
          margin-top: 0;
     }
}


@media (max-width: 600px) {
     .section-title {
          font-weight: 700;
          font-size: 2rem;
     }

     .lead-text {
          font-size: 0.8rem;
     }
}