/* === General Reset === */
body {
    margin: 0;
    font-family: 'Helvetica', sans-serif;
    background: linear-gradient(to bottom, #ffffff 0%, #df7b1e 100%);
    padding: 0;
    overflow-x: hidden;
}

a {
    color: #000;
    text-decoration: none;
}

/* === Header === */
.header {
    background-color: #ffffff;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 10px;
}

header img {
    width: 100px;
    margin-left: 5px;
    margin-top: 13px;
    transition: transform 0.3s ease, opacity 0.5s ease;
    opacity: 0;
    animation: fadeInLogo 1s ease forwards;
}

.header img:hover {
    transform: scale(1.05);
}

@keyframes fadeInLogo {
    to {
        opacity: 1;
    }
}

.header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.header li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    transition: background 0.3s;
}

.header li a:hover {
    background-color: #f4f4f4;
}

/* Menu Icon */
.menu-btn {
    display: none;
}

.menu-icon {
    cursor: pointer;
    float: right;
    padding: 28px 20px;
    user-select: none;
}

.navicon {
    background: #333;
    display: block;
    height: 2px;
    width: 18px;
    position: relative;
    transition: background 0.2s ease-out;
}

.navicon:before,
.navicon:after {
    content: '';
    position: absolute;
    background: #333;
    width: 100%;
    height: 100%;
    transition: all 0.2s ease-out;
}

.navicon:before {
    top: 5px;
}

.navicon:after {
    top: -5px;
}

.menu-btn:checked~.menu {
    max-height: 240px;
}

.menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
}

.menu {
    clear: both;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 16px 0;
    transition: color 0.3s ease;
}

.menu li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e4a42e;
    transition: width 0.3s ease;
}

.menu li a:hover {
    color: #e4a42e;
}

.menu li a:hover::after {
    width: 100%;
}


/* === Section Titles === */
.sec-title-style1 .title,
.sec-title-style1 .title2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: #131313;
    text-transform: uppercase;
    margin-top: 80px;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 2px;
    animation: slideFadeIn 1s ease-in-out;
}

.sec-title-style1 .text p {
    color: #333;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    animation: fadeInText 1.2s ease-in-out;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInText {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* === Contact Info Boxes === */
.contact-address-area {
    padding: 100px 20px 120px;
    background-color: #fff;
}

.contact-address-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
}

.single-contact-address-box {
    background-color: #131313;
    color: #fff;
    padding: 60px 30px;
    text-align: center;
    flex: 1 1 300px;
    transition: transform 0.3s ease;
}

.single-contact-address-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.single-contact-address-box.main-branch {
    background-color: #FFA500;
    color: #131313;
}

.single-contact-address-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.single-contact-address-box h2 {
    font-size: 18px;
    color: #f4f4f4;
    font-weight: 400;
}

.single-contact-address-box.main-branch .inner ul {
    list-style: none;
    /* Add this line */
    padding: 0;
    /* Optional: ensures tight spacing */
    margin: 0;
}


/* === Contact Form === */
.contact-info-area {
    background-color: #fff;
    padding: 60px 20px 100px;
}



.contact-form {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    border-radius: 10px;
    animation: fadeInUp 1s ease-in-out;
}

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

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

.contact-form .input-box input,
.contact-form .input-box textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 15px;
    font-size: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.contact-form .input-box input:focus,
.contact-form .input-box textarea:focus {
    border-color: #FFA500;
    outline: none;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #FFA500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #131313;
}

.input-box {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
}


/* === Footer === */
.conclusion {
    background-color: #000;
    color: #aaa;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    letter-spacing: 1px;
    animation: fadeInFooter 2s ease;
}

.group2 p {
    font-size: 14px;
    color: #aaa;
    letter-spacing: 1px;
}

@keyframes fadeInFooter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* === Responsive === */
@media screen and (max-width: 768px) {
    .contact-form {
        padding: 40px 20px;
    }

    .sec-title-style1 .title,
    .sec-title-style1 .title2 {
        font-size: 32px;
    }

    .single-contact-address-box {
        padding: 40px 20px;
    }
}

@media (min-width: 48em) {
    .header li {
        float: left;
    }

    .header li a {
        padding: 20px 30px;
    }

    .header .menu {
        clear: none;
        float: right;
        max-height: none;
    }

    .header .menu-icon {
        display: none;
    }

    header img {
        width: 200px;
        margin-top: 0;
    }
}