* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    background-color: #f8f9fa;
    color: #3b3b3b;
    scroll-behavior: smooth;
    cursor: none;
}
a {
    color: #FF4500;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 69, 0, 0.7);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background-color 0.3s ease;
    z-index: 9999;
}
.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(2);
    background-color: rgba(255, 69, 0, 0.4);
}
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .nav-link {
    color: #6c757d;
    transition: color 0.3s;
}
header .nav-link:hover {
    color: #FF4500;
}
header .link-body-emphasis {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #3b3b3b;
}
header .link-body-emphasis i {
    font-size: 1.5rem;
    margin-right: 8px;
}
.hero {
    background: url('https://source.unsplash.com/1600x900/?technology,finance') center center/cover no-repeat;
    position: relative;
    color: #fff;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F2F2F2;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hero-text {
    flex: 1 1 500px;
    padding: 20px;
}
.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    text-align: left;
}
.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #222222;
    text-align: left;
}
.hero-text .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    transition: background 0.3s, transform 0.3s;
    text-align: center;
}
.hero-text .btn-primary:hover {
    background: #af2f00;
    transform: translateY(-3px);
}
.hero-image {
    flex: 1 1 400px;
    padding: 20px;
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
#icon-grid {
    padding: 60px 0;
    background-color: #fff;
}
#icon-grid h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #3b3b3b;
}
.feature-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #f8f9fa;
    border-radius: 10px;
}
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.feature-item i {
    font-size: 2.5rem;
    color: #FF4500;
    margin-bottom: 15px;
}
.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #3b3b3b;
}
.feature-item p {
    color: #6c757d;
}
.applyBoxCont {
    padding: 60px 0;
    background-color: #f1f3f5;
}
.applyBox {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}
.applyBox h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #3b3b3b;
}
.applyBox .step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}
.applyBox .step.active {
    display: block;
}
.applyBox p {
    margin-bottom: 15px;
    color: #495057;
    text-align: center;
}
.applyBox input[type="range"] {
    width: 100%;
    margin: 15px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.applyBox select, 
.applyBox input[type="text"], 
.applyBox input[type="email"], 
.applyBox input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: border-color 0.3s;
}
.applyBox select:focus, 
.applyBox input[type="text"]:focus, 
.applyBox input[type="email"]:focus, 
.applyBox input[type="tel"]:focus {
    border-color: #FF4500;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(253, 89, 13, 0.25);
}
.applyBox button {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    background: #FF4500;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    font-size: 1rem;
}
.applyBox button:hover {
    background: #FF4500;
    transform: translateY(-2px);
}
.applyBox .button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.applyBox .button-group button {
    width: auto;
}
.applyBox .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}
.applyBox .checkbox-group input {
    margin-right: 10px;
}
.applyBox a {
    color: #FF4500;
    text-decoration: none;
}
.applyBox a:hover {
    text-decoration: underline;
}
footer {
    background-color: #3b3b3b;
    color: #adb5bd;
    padding: 40px 0;
}
footer a {
    color: #adb5bd;
}
footer a:hover {
    color: #fff;
}
footer .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
footer .footer-logo i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #FF4500;
}
footer .footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
footer .footer-contact i {
    margin-right: 10px;
}
footer h5 {
    color: #fff;
    margin-bottom: 20px;
}
footer .list-unstyled li {
    margin-bottom: 10px;
}
footer .list-unstyled li a {
    color: #adb5bd;
}
footer .list-unstyled li a:hover {
    color: #fff;
}
footer .border-top {
    border-top: 1px solid #495057 !important;
}
.btn-outline-primary {
  color: #FF4500;
  border-color: #FF4500;
}
.btn-outline-primary:hover {
  background-color: #FF4500;
  border-color: #FF4500;
  color: white;
}
.btn-primary {
    background-color: #FF4500;
    border-color: #FF4500;
    color: white;
}
.btn-primary:hover {
    background-color: #b43000;
    border-color: #b43000;
    color: white;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-text, .hero-image {
        flex: 1 1 100%;
        padding: 10px;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .applyBox {
        padding: 30px;
    }
    footer .footer-contact p {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .applyBox {
        padding: 20px;
    }
}