/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    word-wrap: break-word;
    overflow-x: hidden;
}

/* Navigation Bar */
.nav_bar {
    width: 100%;
    height: 86px;
    border-radius: 0 0 24px 24px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

/* Burger icon is always visible */
.hamburger_button {
    border: none;
    background-color: transparent;
    margin-right: 20px;
    display: block;
    z-index: 1001;
}

.hamburger_icon {
    color: #8d8d8d;
    font-size: 36px;
    cursor: pointer;
}

/* Links wrapper */
.nav_links_wrapper {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    margin-right: 42px;
}

/* Nav links list */
.navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Nav link styling */
.navbar-nav .nav-item .nav-link {
    font-weight: 400;
    font-size: 17px;
    color: #888;
    text-transform: uppercase;
    border: 2px solid #bbb;
    padding: 10px 24px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 130px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover state */
.navbar-nav .nav-item .nav-link:hover {
    border-color: #333;
    color: #333;
}

/* Close button styles */
.close_button {
    display: none;
    background: none;
    border: none;
    align-self: flex-end;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    margin-bottom: 10px;
}

/* Main Banner */
.main_banner {
    width: 100%;
    height: 70vh;
    min-height: 570px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
    box-sizing: border-box;
}

.main_banner_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.59;
    z-index: -1;
}

.main_banner_logo {
    width: clamp(95px, 14vw, 193px);
    position: absolute;
    top: 3rem;
    left: 3rem;
    z-index: 2;
}

.main_banner_text {
    position: relative;
    text-align: center;
    width: 80%;
    opacity: 62%;
    z-index: 1;
    padding: 1rem;
    border-radius: 12px;
    top: 12rem;
}

.main_banner_text span {
    font-weight: 600;
    font-size: clamp(2rem, 2vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.main_banner_text p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* WHO ARE WE section */
.who-we-are-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5rem 4rem;
    position: relative;
    background-color: #fff;
    overflow: hidden;
    flex-wrap: wrap;
    /* For responsive layout */
    gap: 2rem;
    /* Optional spacing */
}

/* Background vector image */
.who-we-are-section .background-vector {
    position: absolute;
    top: -28px;
    left: 228px;
    width: 50%;
    height: 499px;
    z-index: 0;
    pointer-events: none;
}

/* Left side images */
.who-we-are-images {
    flex: 0 1 48%;
    /* Precise size control */
    display: grid;
    grid-template-rows: auto auto;
    gap: 1rem;
    z-index: 1;
}

.who-we-are-images .top-image {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    height: 230px;
    /* Adjust height as needed */
}

.who-we-are-images .bottom-images {
    display: flex;
    gap: 1rem;
}

.who-we-are-images .bottom-images img {
    flex: 1;
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    height: 290px;
    /* Adjust height for smaller images */
}

/* Right side text */
.who-we-are-text {
    flex: 0 1 45%;
    /* Adjusted for alignment */
    text-align: right;
    z-index: 1;

}

.who-we-are-text h2 {
    font-weight: 600;
    font-size: 32px;
    color: #666;
    margin-bottom: 1.5rem;
}

.who-we-are-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

/* Our Vision Section */
.our-vision-section {
    position: relative;
    text-align: center;
    padding: 0rem 4rem;
    background-color: #fff;
    overflow: hidden;
}

/* Background Vector */
.our_vision_vector-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: auto;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

/* Heading */
.vision-heading {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    font-family: 'Poppins', sans-serif;
    opacity: 0.74;
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
}

/* Vision Image */

.vision-image-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Full-width Vision Image */
.vision-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: block;
    object-fit: cover;
}

.vision-text-wrapper {
    width: 78%;
    margin: 30px auto 0 auto;
    text-align: center;
    padding: 0 20px;
}

.vision-text {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
    font-size: 1rem;
}

/* Services Section */
#services {
    position: relative;
    padding: 2rem 2rem;
    background-color: #fff;
}

.service-heading {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    font-family: 'Poppins', sans-serif;
    opacity: 0.74;
    margin-bottom: 2rem;
}

.service_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0 1rem;
}

.service_box {
    flex: 1 1 calc(25% - 2rem);
    /* Four per row on large screens */
    max-width: 300px;
    height: 480px;
    border-radius: 62px;
    border: 1px solid #666;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.service_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service_box img {
    max-width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.service-text {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
    font-size: 15px;
    margin-top: 1rem;
    padding: 0 1rem;
}

/* Vector styling (optional) */
.service_vector_1 {
    position: absolute;
    z-index: 0;
    opacity: 0.25;
    pointer-events: none;
}

.service_vector_1_top_left {
    top: 0;
    left: 0;
    width: 120px;
    height: auto;
}

/* gallery */
.gallery_section {
    text-align: center;
}

.gallery-heading {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    font-family: 'Poppins', sans-serif;
    opacity: 0.74;
}

/* Wrapper to center and constrain overflow */
.gallery_wrapper {
    display: flex;
    /* ✅ Make it a flex container */
    justify-content: center;
    /* ✅ Center horizontally */
    align-items: center;
    /* Optional */
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}



/* Grid container */
.gallery_grid_container {
    display: grid;
    grid-template-columns: repeat(8, 170px);
    grid-template-rows: repeat(7, 59px);
    gap: 10px;
    width: fit-content;
    /* ✅ Let it size to content */
    margin: 0 auto;
    /* ✅ Center horizontally */
    box-sizing: border-box;
    margin: 0px 0px 0px 181px;
}




.gallery_item {
    border-radius: 20px;
    overflow: hidden;
}

.gallery_item img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    display: block;
}

/* Your existing grid item styles (keep as-is) */
.left-top-1 {
    grid-column: 1;
    grid-row: 1;
    height: 200px;
    width: 169px;
}

.left-top-2 {
    grid-column: 2;
    grid-row: 1;
    height: 200px;
    width: 169px;
}

.left-top-3 {
    grid-column: 3;
    grid-row: 1;
    height: 200px;
    width: 169px;
}

.left-feature-vertical {
    grid-column: 1;
    grid-row: 4;
    width: 260px;
    height: 332px;
}

.left-feature-top {
    grid-column: 3;
    grid-row: 4;
    width: 264px;
    height: 150px;
    margin-left: -94px;
}

.left-feature-bottom {
    grid-column: 3;
    grid-row: 5;
    width: 263px;
    height: 178px;
    margin-left: -94px;
    margin-top: 85px;
}

.center-divider {
    grid-column: 4;
    grid-row: 1 / span 8;
    width: 163px;
    height: 539px;
    border-radius: 20px;
    align-self: center;
    justify-self: center;
}

.right-top-1 {
    grid-column: 5;
    grid-row: 1;
    height: 200px;
    width: 169px;
}

.right-top-2 {
    grid-column: 6;
    grid-row: 1;
    height: 200px;
    width: 169px;
}

.right-top-3 {
    grid-column: 7;
    grid-row: 1;
    height: 200px;
    width: 169px;
}

.right-feature-top {
    grid-column: 5;
    grid-row: 4;
    width: 264px;
    height: 150px;
}

.right-feature-bottom {
    grid-column: 5;
    grid-row: 7;
    width: 264px;
    height: 178px;
    margin-top: -52px;
}

.right-feature-vertical {
    grid-column: 7 / span 2;
    grid-row: 4 / span 2;
    width: 259px;
    height: 332px;
    margin-left: -90px;
}

.gallery_link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.gallery_gradient_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 54%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1.63), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
}

.gallery_view_more_text {
    font-size: 14px;
    font-weight: bold;
    color: white;
}

.gallery_view_more_text:hover {
    text-decoration: underline;
}

/* Responsive scaling for smaller screens */

@media (max-width: 1700px) {
    .gallery_grid_container {
        transform: scale(1);
        margin: 0px 0px 0px 172px
    }
}

@media (max-width: 1500px) {
    .gallery_grid_container {
        transform: scale(0.9);
        margin: 0px 0px 0px 167px;
    }
}

@media (max-width: 1100px) {
    .gallery_grid_container {
        transform: scale(0.7);
        margin: -67px 0px -59px 131px;
    }
}

@media (max-width: 900px) {
    .gallery_grid_container {
        transform: scale(0.5);
        margin: -131px 0px -120px 99px;
    }
}

@media (max-width: 600px) {
    .gallery_grid_container {
        transform: scale(0.3);
        margin: -144px 0px -146px 82px;
        transform: scale(0.45);
    }

    /* Optional: change object-fit for better small image appearance */
    .gallery_item img {
        object-fit: cover;
    }
}
@media (max-width: 500px) {
    .gallery_grid_container {
        margin: -160px 0px -169px 73px;
        transform: scale(0.37);
    }
}

@media (max-width: 480px) {
    .gallery_grid_container {
        margin: -160px 0px -169px 73px;
        transform: scale(0.37);
    }
}
@media (max-width: 454px) {
    .gallery_grid_container {
        margin: -160px 0px -171px 65px;
        transform: scale(0.35);
    }
}
@media (max-width: 440px) {
    .gallery_grid_container {
        margin: -170px 0px -171px 55px;
        transform: scale(0.3);
    }
}

/* Why us section */

.why_us_section {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .why_us__container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #555;
    padding: 0 15px;
    /* add some side padding */
  }
  
  /* Headings */
  .why_us__title {
    font-size: 28px;
    font-weight: 600;
    color: #666;
    font-family: 'Poppins', sans-serif;
    opacity: 0.74;
    text-align: center;
    margin-bottom: 8px;
  }
  
  .why_us__subtitle {
    font-size: 14px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    opacity: 0.74;
    margin-bottom: 24px;
  }
  
  /* Cards Layout */
  .why_us__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
/* Individual Card */
  .why_us__card {
    border: 2px solid #ccc;
    border-radius: 999px;
    padding: 24px 32px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .why_us__card-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
    margin-top: 20px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    opacity: 0.74;
  }
  
  .why_us__card-text {
    color: #999;
    font-size: 18px;
    opacity: 0.74;
  }
  
/* Contact US */
/* Container */
.contact_us_section {
    margin-top: 80px;
    overflow-x: hidden;
    max-height: fit-content;
}

.contact_us_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    overflow: hidden;
}

/* Left Side */
.contact_us_left {
    position: relative;
    flex: 1;
    min-width: 350px;
    height: 600px;
    margin-bottom: 20px;
}

.contact_us_background {
    position: absolute;
    top: 54%;
    left: 76%;
    width: 136%;
    height: 140%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
}

.contact_us_circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 20px;
    z-index: 1;
    overflow: hidden;
    /* important to clip the image inside the circle */
}

/* Specific Center Circle */
.contact_us_center {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
    top: 336px;
    left: 490px;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.contact_us_person_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* makes image fill the div without distortion */
    border-radius: 50%;
    /* clip the image inside circle */
    z-index: 0;
    /* send behind other content */
}

.contact_us_person_1 {
    top: 220px;
    left: 330px;
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.contact_us_person_2 {
    top: 372px;
    left: 343px;
    width: 88px;
    height: 88px;
}

.contact_us_person_3 {
    top: 284px;
    left: 86px;
    width: 110px;
    height: 110px;
}

.contact_us_person_4 {
    bottom: 20px;
    right: 424px;
    width: 110px;
    height: 110px;
}

.contact_us_person_5 {
    top: 74px;
    right: 424px;
    width: 110px;
    height: 110px;
}

/* Right Side */
.contact_us_right {
    flex: 1;
    min-width: 350px;
    text-align: center;
    margin-right: 30px;
}

.contact_us_heading {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    font-family: 'Poppins', sans-serif;
    opacity: 0.74;
    margin-bottom: 28px;
}

/* Form Styling */
.contact_us_form {
    margin-bottom: 30px;
}

.contact_us_form_row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact_us_input_group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact_us_label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    font-family: 'Poppins', sans-serif;
    opacity: 0.74;
    text-align: left;
}

.contact_us_input:focus {
    border-color: #a18cd1;
    outline: none;
}

.contact_us_button {
    margin-top: 10px;
    padding: 12px 30px;
    border: none;
    background: #555;
    color: white;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact_us_button:hover {
    background: #333;
}

/* Underline */
.contact_us_underline {
    width: 60%;
    margin: 20px auto;
    height: 2px;
    background: #ccc;
    border-radius: 5px;
}

.contact_us_icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.contact_us_icon_link {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_us_icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.contact_us_icon:hover {
    filter: brightness(0) saturate(100%) invert(25%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

/* Who Are We */
.who_are_we_section {
    overflow: hidden;
    position: relative;
}

.camera_vector_image {
    position: absolute;
    top: -57px;
    left: 138px;
    width: 750px;
    height: 522px;
    z-index: 0;
    pointer-events: none;
}

.who_are_we_container {
    position: relative;
    z-index: 2;
    margin: 30px 9px 0px 35px;
}

.who_heading {
    font-weight: 600;
    font-size: 32px;
    color: #666;
    margin-bottom: 20px;
    text-align: right;
    margin-top: -194px;
    opacity: 74%;
}

.who_text {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: right;
}

/* Tablet Devices */
@media (max-width: 1024px) {
    .contact_us_left {
        transform: scale(0.85);
        transform-origin: center;
    }

    .contact_us_right {
        margin-right: 0;
    }
}

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
    .contact_us_left {
        transform: scale(0.75);
        transform-origin: center;
        margin-bottom: 40px;
    }

    .contact_us_heading {
        font-size: 24px;
    }

    .contact_us_input,
    .contact_us_textarea,
    .contact_us_submit_button {
        width: 90%;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .contact_us_left {
        transform: scale(0.65);
        transform-origin: center;
    }

    .contact_us_heading {
        font-size: 20px;
    }

    .contact_us_input,
    .contact_us_textarea,
    .contact_us_submit_button {
        width: 95%;
    }

    .contact_us_container {
        flex-direction: column;
        gap: 30px;
    }
}


/* Contact Us */
/* Contact Us Base Styles */
.contact_us_section {
    margin-top: 80px;
    overflow-x: hidden;
    max-height: fit-content;
}

.contact_us_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    overflow: hidden;
}

.contact_us_left {
    position: relative;
    flex: 1;
    min-width: 350px;
    height: 600px;
    margin-bottom: 20px;
}

.contact_us_background {
    position: absolute;
    top: 54%;
    left: 76%;
    width: 136%;
    height: 140%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
}

.contact_us_circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 20px;
    z-index: 1;
    overflow: hidden;
}

.contact_us_center {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
    top: 56%;
    left: 68%;
    transform: translate(-50%, -50%);
}

.contact_us_person_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 0;
}

/* Person Circles with % dimensions and positions */
.contact_us_person_1 {
    top: 36%;
    left: 48%;
}

.contact_us_person_2 {
    top: 61%;
    left: 48%;
}

.contact_us_person_3 {
    top: 47%;
    left: 11%;
}

.contact_us_person_4 {
    bottom: 3%;
    right: 53%;
}

.contact_us_person_5 {
    top: 11%;
    right: 56%;
}

.contact_us_right {
    flex: 1;
    min-width: 350px;
    text-align: center;
    /* margin-right: 30px; */
}

.contact_us_heading {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    font-family: 'Poppins', sans-serif;
    opacity: 0.74;
}

.contact_us_input {
    width: 80%;
    height: 50px;
    border: 1px solid #ddd;
    padding-left: 15px;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
}

.contact_us_textarea {
    width: 80%;
    height: 100px;
    margin: 15px auto;
    padding-left: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
}

.contact_us_submit_button,
.contact_us_button {
    width: 80%;
    height: 50px;
    background-color: #f98d6a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact_us_submit_button:hover,
.contact_us_button:hover {
    background-color: #ea4e30;
}

.contact_us_icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact_us_icon {
    width: 30px;
    height: 30px;
    transition: filter 0.3s ease;
}

.contact_us_icon:hover {
    filter: brightness(0) saturate(100%) invert(68%) sepia(29%) saturate(987%) hue-rotate(131deg) brightness(95%) contrast(90%);
}

/* Responsive Scaling */
@media (max-width: 480px) {
    .contact_us_container {
        flex-direction: column;
        gap: 30px;
    }

    .contact_us_left {
        transform: scale(1.3);
        /* Was 0.6 — now less aggressive */
        transform-origin: top center;
        min-height: 245px;
        overflow: visible;
    }

    .contact_us_heading {
        font-size: 20px;
        margin-top: 85px;
    }

    .contact_us_right {
        margin: 9px 0px 14px 12px;
    }

    .contact_us_input,
    .contact_us_textarea,
    .contact_us_button {
        width: 95%;
    }

    .contact_us_person_1,
    .contact_us_person_2,
    .contact_us_person_3,
    .contact_us_person_4,
    .contact_us_person_5,
    .contact_us_center {
        transform: scale(0.75);
        /* Was 0.7 — more visible */
    }
}

/* Tablet Devices (<=1024px) */
@media (max-width: 1024px) {
    .contact_us_person_1 {
        top: 36%;
        left: 54%;
        width: 14%;
        height: 14%;
    }

    .contact_us_person_2 {
        top: 60%;
        left: 56%;
        width: 14%;
        height: 14%;
    }

    .contact_us_person_3 {
        top: 46%;
        left: 13%;
        width: 18%;
        height: 18%;
    }

    .contact_us_person_4 {
        bottom: 4%;
        right: 27%;
        width: 18%;
        height: 18%;
    }

    .contact_us_person_5 {
        top: 11%;
        right: 27%;
        width: 18%;
        height: 18%;
    }

    .contact_us_center {
        top: 56%;
        left: 80%;
        width: 23%;
        height: 23%;
    }
}

/* Mobile Devices (<=768px) */
@media (max-width: 768px) {
    .contact_us_person_1 {
        top: 34%;
        left: 53%;
        width: 15%;
        height: 15%;
    }

    .contact_us_person_2 {
        top: 60%;
        left: 55%;
        width: 15%;
        height: 15%;
    }

    .contact_us_person_3 {
        top: 44%;
        left: 10%;
        width: 17%;
        height: 17%;
    }

    .contact_us_person_4 {
        bottom: 5%;
        right: 22%;
        width: 17%;
        height: 17%;
    }

    .contact_us_person_5 {
        top: 10%;
        right: 22%;
        width: 17%;
        height: 17%;
    }

    .contact_us_center {
        top: 55%;
        left: 78%;
        width: 22%;
        height: 22%;
    }
}

/* Small Mobile Devices (<=480px) */
@media (max-width: 480px) {
    .contact_us_person_1 {
        top: 33%;
        left: 47%;
        width: 12%;
        height: 17%
    }

    .contact_us_person_2 {
        top: 63%;
        left: 47%;
        width: 12%;
        height: 17%
    }

    .contact_us_person_3 {
        top: 44%;
        left: 10%;
        width: 19%;
        height: 26%;
    }

    .contact_us_person_4 {
        top: 85%;
        right: 53%;
        width: 17%;
        height: 24%;
    }

    .contact_us_person_5 {
        top: 0%;
        right: 53%;
        width: 17%;
        height: 24%;
    }

    .contact_us_center {
        top: 39%;
        left: 56%;
        width: 25%;
        height: 35%;
    }
}



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

    /* Who are we */
    .who-we-are-section {
        padding: 3rem 4rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .who-we-are-images,
    .who-we-are-text {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .who-we-are-images {
        margin-bottom: 2rem;
    }

    .who-we-are-text {
        text-align: center;
    }
}

@media (max-width: 992px) {

    /* Nav bar */
    .nav_links_wrapper {
        position: fixed;
        top: 86px;
        left: 20px;
        /* Align left under hamburger */
        width: 260px;
        /* Narrower width */
        background-color: white;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        display: none;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav_links_wrapper.show-nav {
        display: flex;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        justify-content: flex-start;
    }

    .nav_links_wrapper.show-nav .close_button {
        display: block;
    }

    .navbar-nav .nav-item .nav-link {
        width: 170px;
    }

    .camera_vector_image {
        width: 60vw;
        left: 0;
        top: 10%;
    }

    /* Services */
    .service_box {
        flex: 1 1 calc(50% - 2rem);
        max-width: none;
        height: auto;
        padding: 2rem;
    }
}

@media (max-width: 768px) {

    /* Main Banner */
    .main_banner {
        flex-direction: column;
        height: auto;
        padding-top: 4rem;
    }

    .main_banner_logo {
        position: static;
        display: block;
    }

    .main_banner_text {
        position: static;
        transform: none;
    }

    /* Who are we */
    .who-we-are-section {
        padding: 2rem;
    }

    .who-we-are-images .bottom-images img {
        height: 126px;
    }

    .who-we-are-text h2 {
        font-size: 2rem;
    }

    .who-we-are-images .top-image {
        height: 140px;
    }

    .who-we-are-section .background-vector {
        top: 301px;
        left: -37px;
        width: 348px;
        height: 300px;
    }

    /* Our vision */
    .vision-heading {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .vision-image {
        width: 95%;
        margin: 16px auto;
    }

    .vision-text-wrapper {
        width: 100%;
        margin-top: 25px;
    }

    .vision-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .our_vision_vector-bg {
        width: 80px;
        opacity: 0.1;
    }

    .our-vision-section {
        padding: 0rem 1rem;
    }

    /* Why us */
    .why_us__card {
        height: auto;
        /* Let card height adjust */
        padding: 20px 24px;
    }

    .why_us__card-text {
        font-size: 16px;
    }

    .why_us__card-title {
        font-size: 16px;
    }

    .why_us__title {
        font-size: 24px;
    }

    .why_us__subtitle {
        font-size: 13px;
    }
}

@media (max-width: 576px) {

    /* Services */
    .service_box {
        flex: 1 1 100%;
        max-width: none;
        height: auto;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {

    /* Main Banner */
    .main_banner_text p {
        font-size: 0.95rem;
    }

    /* Our vision */
    .vision-heading {
        font-size: 1.5rem;
    }

    .vision-text {
        font-size: 0.9rem;
    }

    .our-vision-section {
        padding: 0rem 1rem;
    }

    /* Why us */
    .why_us_section {
        padding: 15px 10px;
    }

    .why_us__container {
        padding: 0 10px;
    }

    .why_us__cards {
        gap: 15px;
    }

    .why_us__card {
        padding: 16px 20px;
        height: auto;
    }

    .why_us__card-title {
        font-size: 14px;
    }

    .why_us__card-text {
        font-size: 14px;
    }

    .why_us__title {
        font-size: 20px;
    }

    .why_us__subtitle {
        font-size: 12px;
    }
}

@media (max-width: 320px) {

    /* Who are we */
    .who-we-are-images .bottom-images img {
        height: 115px;
    }

    .who-we-are-images .top-image {
        height: 108px;
    }
}