* {
    transition: all 0.3s ease;
}

body{
    font-family: 'Jost', sans-serif !important;
}

/* ===== Hero Section CSS Start ===== */

.hero {
    position: relative;
    background: url('../img/bg-1.jpg') center/cover no-repeat;
    color: #fff !important;
    padding: 120px 0;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9) !important;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5) !important; /* Adjust opacity here */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-weight: 900;
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    user-select: none;
}

.hero p.lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffc2c2 !important;
}

/* ===== Hero Section CSS End ===== */

#contact {
    color:#000 !important;
}

#contact .form-label {
    color: #000 !important;
}

#contact input,
#contact textarea {
    border: 1px solid  #000 !important;
    color: #000 !important;
}

#contact input:focus,
#contact textarea:focus {
    border-color:  #000 !important;
    box-shadow:  0 8px 20px rgba(17, 17, 17, 0.3);
}

.btn-custom {
    background-color: #ff4545 !important;
    color: #fff !important;
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #000 !important;
    color:#fff !important;
}
  
.contact-div {
    position: relative;
    overflow: hidden;
    background-color: #eff4fa99 !important;
    padding: 50px;
    margin: 25px 0;
    box-shadow: 0 0 0 0 #000 !important;
    color: #000 !important;
    transition: color 0.3s ease;
}

.contact-div:hover {
    color: #fff !important;
}

.contact-div:hover .contact-icon i {
    background: #ff4545 !important;
    color:  #000!important;
}

.contact-div:hover .contact-icon2 i {
    background: #ff4545 !important;
    color:  #000!important;
}

.contact-div:hover .contact-heading {
    color: #fff !important;
}

.contact-div:hover .contact-numbers p a {
    color: #fff !important;
}

.contact-div::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color:  #000 !important;
    z-index: -1;
    transition: height 0.4s ease;
}

.contact-div:hover::before {
    height: 100%;
}

.contact-icon i {
    font-size: 30px;
    background:  #ff4545 !important;
    padding: 25px;
    color: #fff !important;
    border-radius: 50%;
    margin-bottom: 15px;
}

.contact-icon2 i {
    font-size: 30px;
    background:  #ff4545 !important;
    padding: 25px 28px;
    color: #fff !important;
    border-radius: 50%;
    margin-bottom: 15px;
}

.contact-heading {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #000 !important;
    margin-top: 10px;
}

.contact-numbers p {
    margin: 5px 0;
    font-size: 18px;
}

.contact-numbers p a {
    color: #000 !important;
}
 
.contact-info-box { 
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(85, 83, 83, 0.3) !important;
}
 
#btn{
    background-color: #ff4545 !important;
    color: #000 !important;
}
#btn:hover{
    background-color: #000 !important;
    color: white !important;
}

#left-box h2{
    color:#ff4545
}

#left-box p{
    font-size: 20px;
}

.contact-info-box {
    height: 300px;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-info-box {
        height: 200px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-info-box {
        height: 150px;
        width: 100%;
    }
}