    /* Basic Reset & Google Font Integration */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif; /* Inter font se exact professional weights milenge */
}

html, body {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Header Navbar - Proper Weights */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 4% 15px 4%;
    background-color: #ffffff;
}

.logo {
    font-size: 30px;
    font-weight: 700; /* Extra bold look jaisa 1st image me h */
    letter-spacing: 0.5px;
    color: #000000;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}
.contact-btn-outline {
    text-decoration: none;
}

.nav-links a {
    text-decoration: none;
    color: #555555;
    font-size: 14px;
    font-weight: 500; /* Thoda thick weight links ke liye */
}

.nav-links a.active {
    color: #000000;
    font-weight: 600;
}

.phone-link {
    font-weight: 600 !important;
    color: #000000 !important;
}

.request-btn {
    background: transparent;
    border: 1px solid #bcbcbc;
    padding: 9px 24px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 3px;
}

.contact-btn-outline {border:1px solid #111;color:#111;background:transparent;padding:.45rem 1.2rem;font-size:15px;font-weight:400;letter-spacing:-0.2px;cursor:pointer;transition:all .2s;border-radius:3px}
.contact-btn-outline:hover{background:#111;color:#FFF}

.nav .nav-links a{color:#111;font-size:15px;font-weight:600;letter-spacing:-0.3px}
.nav .nav-right span{font-size:16px;color:#111;font-family:'Switzer',Arial,sans-serif;vertical-align:middle}

@media(max-width:768px){
  .contact-btn-outline{display:none}
  .content-wrapper{flex-direction:column;gap:30px}
  .contact-info{margin-top:60px}

  .map-container{height:380px;flex:none;width:100%}
  .breadcrumb{margin-bottom:30px}
  .container{padding:20px 4% 0}
  .phone-num{font-size:22px}
  .email-id{font-size:16px}
  .address{font-size:14px;margin-bottom:30px}
 
}
@media(max-width:480px){
  .container{padding:15px 5% 0}
  .breadcrumb{margin-bottom:20px;font-size:13px}
  .contact-info{margin-top:30px}
  .phone-num{font-size:18px}
  .email-id{font-size:14px;margin-bottom:16px}
  .address{font-size:13px;margin-bottom:24px;max-width:100%}
  .callback-btn{padding:12px 24px;font-size:12px;width:100%}
  .map-container{height:260px}

}


/* Main Container Layout */
body .nav{position:relative!important;z-index:auto!important}
.container {
    padding: 30px 4% 0 4%;
}

.breadcrumb {
    font-size: 15px;
    font-weight: 400;
    color: #534f4f;
    margin-bottom: 60px;
}

/* Main Grid Balance */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}

/* Left Contact Info Column - Font & Weight Adjustments */
.contact-info {
    flex: 1.1;
    display: flex;
    flex-direction: column;
     margin-top: 140px; 
}

.phone-num {
    font-size: 26px; /* Size thoda bada kiya */
    font-weight: 600; /* 1st image jaisa thick bold */
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.email-id {
    font-size: 18px;
    font-weight: 500; /* Regular se thoda heavy */
    color: #111111;
    margin-bottom: 22px;
}

.address {
    font-size: 16px;
    font-weight: 500; /* Address ko chota hone se bachane ke liye thickness badhai */
    color: #444444;
    margin-bottom: 45px;
    line-height: 1.5;
    max-width: 420px;
}

.callback-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600; /* Black box ke andar ka text bold kiya */
    width: fit-content;
    cursor: pointer;
    border-radius: 2px;
    letter-spacing: 0.3px;
}

/* The Huge Contacts Heading */
.main-heading {
    font-size: 82px; 
    font-weight: 600; 
    letter-spacing: -1px;
    color: #000000;
    margin-top: 10px; /* Isko content ke sath bottom me chipka dega */
    line-height: 1;
    padding-top: 80px; /* Space buffer */
}

/* Right Map Column */
.map-container {
    flex: 1.2;
    height: 540px;
    border-radius: 0px; /* Zero curves for edge-to-edge finish */
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
    /* Is footer code ke proper icons ke liye Head tag me FontAwesome link zaroor add rakhein */
    .footer {
        border-top: 1px solid #e2e2e2;
        padding: 40px 4% 30px 4%;
        background-color: beige;
        margin-top: 20px;
        box-sizing: border-box;
        font-family: 'Inter', 'Segoe UI', sans-serif;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding-bottom: 40px;
    }

    /* Left Side (Logo & Icons) */
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footer-logo {
        font-size: 18px;
        font-weight: 700;
        color: #000000;
        letter-spacing: 0.5px;
    }

    .social-icons {
        display: flex;
        gap: 15px;
    }

    .social-icons a {
        color: #000000;
        font-size: 16px;
        text-decoration: none;
    }

    /* Right Side (Address & Contact) */
    .footer-details {
        text-align: right;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-address {
        font-size: 15px;
        color: #222222;
        font-weight: 500;
    }

    .footer-contact-row {
        display: flex;
        justify-content: flex-end;
        gap: 20px;
        font-size: 15px;
        color: #222222;
        font-weight: 500;
    }

    .footer-contact-row a {
        color: #222222;
        text-decoration: none;
    }

    /* Bottom Row (Copyright & Links) */
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        font-size: 12px;
        color: #888888;
        line-height: 1.6;
    }

    .copyright {
        max-width: 60%;
    }

    .created-by {
        margin-bottom: 5px;
        color: #a0a0a0;
        font-size: 12px;
    }

    .created-by span {
        color: #555555;
        font-weight: 600;
    }

    .legal-text {
        font-size: 11px;
        color: #a0a0a0;
    }

    .footer-links {
        display: flex;
        gap: 20px;
    }

    .footer-links a {
        color: #a0a0a0;
        text-decoration: none;
        font-size: 12px;
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: #000000;
    }

    @media(max-width:768px){
        .main-heading{font-size:50px;padding-top:40px}
    }
    @media(max-width:480px){
        .main-heading{font-size:50px;padding-top:30px}
    }
