.hero-section {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(#06182a, rgba(0, 0, 0, 0.5)),
        /* dark overlay */
        url('../images/slider/slider1.jpg') center/cover no-repeat,
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);

    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-content h1 span {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Modern Trust Points */
.trust-points {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-points span:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.trust-points i {
    color: #4ade80;
    font-size: 18px;
}

/* Modern Quote Form */
.quote-form {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    animation: fadeInUp 1s ease 0.2s both;
}

.quote-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern Floating Labels */
.form-floating {
    position: relative;
}

.form-floating>.form-control {
    height: 60px;
    padding: 16px 16px 8px 16px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: white;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.form-floating>.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.form-floating>label {
    padding: 16px 0 8px 16px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Modern Button */
.quote-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px;
    padding: 16px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 20px -5px rgba(102, 126, 234, 0.4);
}

.quote-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(102, 126, 234, 0.6);
}

.quote-btn:hover::before {
    left: 100%;
}

.quote-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.quote-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 700px;
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .trust-points {
        gap: 15px;
    }

    .trust-points span {
        font-size: 13px;
        padding: 6px 15px;
    }

    .quote-box {
        padding: 20px;
    }

    .form-floating>.form-control {
        height: 56px;
    }

    .quote-btn {
        height: 56px;
        margin-top: 10px;
    }
}

/* Input Icons Styling */
.form-floating {
    position: relative;
}

.form-floating::before {
    font-family: "bootstrap-icons";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    z-index: 10;
    font-size: 16px;
    pointer-events: none;
}



/* pickup */
.form-floating:nth-child(2)::before {
    content: "\F3E6";
}

/* drop */
.form-floating:nth-child(3)::before {
    content: "\F4DE";
}

/* phone */
.form-floating:nth-child(4)::before {
    content: "\F1F8";
}

/* calendar */

/* Add padding to prevent text overlap with icon */
.form-floating .form-control {
    padding-right: 45px;
}