/* Reset basic styles */
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    html{
        scroll-behavior: smooth;
    }

    body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    }


    .Bg_img{
    background-image: url("img/IMG_5186.png"); 
    background-repeat: no-repeat;
    background-size:100% 100%;
    max-width: 100%;
    height : auto;
    position: center;
    }   

    /* Navigation */
    .Nav_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    }

    .Nav_bar img {
    height: 60px;
    border-radius: 50%;
    }

    .all_anchor_tags {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    }

    .anchor_tags a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    }

    .anchor_tags a:hover {
    color: gold;
    }

    /* Hero section */
    .Bg_img {
    background: url ("img/1.webp") no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    }

    .main_button {
    border: 2px solid #ffffff;
    border-radius: 15px;
    background-color: transparent ;
    box-sizing: border-box;
    color: #ffffff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 125%;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 60px;
    min-width: 0;
    outline: none;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    }
    .main_button:hover{
    cursor:pointer ;
    font-size: 150%;
    }
    .main_button:disabled {
    pointer-events: none;
    }
    .main_button:active {
    box-shadow: none;
    transform: translateY(0);
    }

    /* About Section */
    .About,
    .others {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 5%;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 2px 20px 2px black;
    margin: 2%;
    }

    .about_content,
    .about_image {
    flex: 1 1 45%;
    margin: 10px;
    }

    /* Services */
    .all_services {
    padding: 40px 5%;
    text-align: center;
    box-shadow: 0px 2px 20px 2px black;
    margin: 2%;
    }

    .services_heading h2 {
    font-size: 28px;
    }

    .line {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 20px;
    }

    .card {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 10px;
    max-width: 300px;
    flex: 1 1 300px;
    transition: transform 0.3s;
    }

    .card:hover {
    transform: scale(1.03);
    }

    /* Footer */
    .footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    }

    .footer a {
    color: white;
    text-decoration: none;
    }

    .footer img {
    max-width: 30px;
    vertical-align: middle;
    }

    footer input, textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    }

    .submit_button {
    background-color: gold;
    color: #333;
    border: none;
    padding: 10px;
    cursor: pointer;
    }

    /* 🔻 Responsive Design 🔻 */
    @media (max-width: 600px) {
    .Nav_bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .all_anchor_tags {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .Bg_img {
        padding-top: 100px;
        text-align: center;
    }

    .About, .others {
        flex-direction: column;
        text-align: center;
    }

    .about_content, .about_image {
        flex: 1 1 100%;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer > div {
        width: 100%;
        max-width: 90%;
    }
    }