body {
    font-family: 'Manrope', sans-serif;
}

h1 {
    font-size: 40px;
    font-weight: 700;
}

h3 {
    font-size: 30px;
    font-weight: 700;
}

h5 {
    font-weight: 700;
    font-size: 20px;
    margin: 17px 0;
}

li {
    padding: 5px 0px;
}


body {
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(to bottom, #f4f7fb, #ffffff);
    padding-top: 100px;
    overflow-x: hidden;
}


.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgb(65 138 229 / 12%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #083277;
}


/* Navbar */
.navbar {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.support-hero {
    background: linear-gradient(135deg, #002667 0%, #4e9eff 100%);
    padding: 90px 0;
    text-align: center;
    color: #fff;
    border-radius: 0 0 60px 60px;
    position: relative;
    overflow: hidden;
}

.support-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.support-hero h1 {
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 1px;
}

.support-hero p {
    opacity: 0.9;
    font-size: 17px;
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    transition: all 0.4s ease;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.card div:first-child {
    transition: transform 0.4s ease;
}

.card:hover div:first-child {
    transform: scale(1.2) rotate(5deg);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ff8c5a);
    border: none;
    border-radius: 40px;
    padding: 12px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Contact Section */
.contact-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.form-control {
    border-radius: 14px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #002667;
    box-shadow: 0 0 0 3px rgba(0, 38, 103, 0.1);
}

/* Footer */
footer {
    background: #0f172a;
    color: #fff;
    padding: 30px 0;
    margin-top: 100px;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
        color: #fff;
    background-color: #ff8451 !important;
    border-color: #ff8451 !important;
    box-shadow: 0 0 0 .25rem rgb(255 133 83);
}

.form-control.is-valid, .was-validated .form-control:valid{
    background-image: none !important;
}
.form-control.is-valid:focus, .was-validated .form-control:valid:focus {
    border-color: #198754;
    box-shadow: none;
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: none;
}

/* Modal Glass Effect */
.custom-modal {
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
}

/* Top Gradient Section */
.modal-header-section {
  background: linear-gradient(135deg, #28a745, #20c997);
  position: relative;
}

/* Success Circle */
.success-icon {
  width: 90px;
  height: 90px;
  background: white;
  color: #28a745;
  border-radius: 50%;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: popIn 0.5s ease forwards;
}

/* Icon Animation */
@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Button Hover Effect */
.continue-btn {
  transition: all 0.3s ease;
}

.continue-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

/* Smooth modal animation */
.modal.fade .modal-dialog {
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}
