* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: #f1f1f1;
}

/* Parallax Hero Section with Form */
.parallax-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="50" fill="rgba(255,255,255,0.03)"/><circle cx="900" cy="400" r="80" fill="rgba(255,255,255,0.02)"/><circle cx="500" cy="300" r="60" fill="rgba(255,255,255,0.025)"/></svg>');
    background-size: cover;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
    padding: 0 15px;
}

.offset-md-1 {
    margin-left: 8.333333%;
}

.col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    padding: 0 15px;
}

.contact_inner {
    background-color: #fff;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.contact_inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact_field {
    padding: 60px 340px 90px 100px;
}

.contact_field h3 {
    color: #000;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact_field p {
    color: #666;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
    background: transparent;
}

.form-control:focus {
    outline: none;
    border-bottom: 2px solid #000;
}

.form-control::placeholder {
    font-size: 13px;
    letter-spacing: 1px;
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.contact_form_submit {
    background: #000;
    border: none;
    color: #fff;
    padding: 10px 15px;
    width: 100%;
    margin-top: 25px;
    border-radius: 35px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact_form_submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: #333;
}

.right_conatct_social_icon {
    background: #000;
    height: 100%;
    display: flex;
    align-items: flex-end;
    border-radius: 0 25px 25px 0;
}

.socil_item_inner {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 100%;
}

.socil_item_inner li {
    list-style: none;
    margin: 10px 0;
}

.socil_item_inner li a {
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.socil_item_inner li a:hover {
    transform: scale(1.2);
}

.contact_info_sec {
    position: absolute;
    background-color: #2d2d2d;
    right: 1px;
    top: 18%;
    height: 340px;
    width: 340px;
    padding: 40px;
    border-radius: 25px 0 0 25px;
    color: #fff;
}

.contact_info_sec h4 {
    letter-spacing: 1px;
    padding-bottom: 15px;
    font-size: 24px;
}

.info_single {
    margin: 30px 0;
    display: flex;
    align-items: center;
}

.info_single i {
    margin-right: 15px;
    font-size: 18px;
    color: #fff;
}

.info_single span {
    font-size: 14px;
    letter-spacing: 1px;
}

/* Map Section */
.map_sec {
    padding: 0;
    background: #fff;
    position: relative;
}

.map_inner {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.map_inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.map_content {
    padding: 80px 0 50px;
    text-align: center;
}

.map_inner h4 {
    color: #000;
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.map_inner p {
    color: #666;
    text-align: center;
    font-size: 13px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.map_bind {
    height: 600px;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.5s ease;
}

.map_bind.visible {
    transform: scale(1);
}

.map_bind iframe {
    width: 100%;
    height: 100%;
    /* filter: grayscale(100%); */
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: #fff;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 50%;
    border: 2px solid #fff;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 992px) {

    .col-md-10,
    .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .offset-md-1 {
        margin-left: 0;
    }

    .contact_field {
        padding: 60px 40px;
    }

    .contact_info_sec {
        position: relative;
        width: 100%;
        border-radius: 0 0 25px 25px;
        top: 0;
        right: 0;
    }

    .right_conatct_social_icon {
        border-radius: 0;
        min-height: 100px;
    }

    .socil_item_inner {
        flex-direction: row;
        justify-content: center;
    }

    .socil_item_inner li {
        margin: 0 15px;
    }

    .map_bind {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .contact_field {
        padding: 40px 20px;
    }

    .contact_field h3 {
        font-size: 30px;
    }

    .map_inner h4 {
        font-size: 24px;
    }

    .map_content {
        padding: 50px 20px 30px;
    }
}