.hero-image {
    position: absolute;
    top: 0;
    right: -10%;
    height: 100%;
    width: 62%;
}
.hero-image img {
    height: 100%;
    object-fit: cover;
}

.container-fluide {
    width: 90vw;
}
.letter-spacing-2 {
    letter-spacing: 3px;
}
/* Contact Section Styling */
.contact-section {
    background-color: #2C2C2C;
    padding: 6rem 0;
}
.red-text {
    color: var(--color-red);
}
.contact-heading {
    font-size:2.5rem;
    line-height: 1.1;
}
.line-divider-white {
    height: 2px;
    background-color: rgb(255 255 255);
    width: 50px;
}
/* Form Styling */
.contact-form .input-group-text {
    background-color: #fff;
    border: none;
    color: #ccc;
    padding-left: 20px;
}

.contact-form .form-control {
    border: none;
    padding: 12px 15px;
    font-size: 14px;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border: 1px solid #FF0000;
}

/* Submit Button (Clipped/Hexagon shape) */
.btn-send-message {
    background-color: #FF0000;
    color: white !important;
    padding: 12px 45px;
    border: none;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    transition: background-color 0.3s;
}

.btn-send-message:hover {
    background-color: #cc0000;
}

.side-contact-tab {
    position: fixed;
    right: 0;
    top: 60%;
    background-color: #FF0000;
    color: white;
    padding: 15px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 999;
    clip-path: polygon(0% 10%, 100% 0%, 100% 100%, 0% 90%); /* Subtle wedge shape */
}
.slick-arrow {
    top: 45%;
    z-index: 9;
}