/* ===========================================
   ADVOCATE SHUBHAM SINGLA
   PREMIUM LAW FIRM WEBSITE
===========================================*/

:root{
    --primary:#0f172a;
    --secondary:#c9a227;
    --secondary-dark:#a68418;
    --white:#ffffff;
    --light:#f8f8f8;
    --text:#4b5563;
    --heading:#111827;
    --border:#e5e7eb;
    --shadow:0 15px 40px rgba(0,0,0,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    line-height:1.7;
    background:#fff;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:999;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;
}

/* ================= LOGO ================= */

.logo a{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.logo img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.logo h2{
    font-size:20px;
    font-weight:700;
    color:#0F172A;
    margin:0;
    white-space:nowrap;
}
nav ul{
    display:flex;
    gap:35px;
}

nav ul li a{
    color:var(--primary);
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:var(--secondary);
}

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* ================= BUTTONS ================= */

.btn{
    display:inline-block;
    background:var(--secondary);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:var(--secondary-dark);
    transform:translateY(-3px);
}

.btn-outline{
    background:transparent;
    border:2px solid #fff;
    margin-left:15px;
}

.btn-outline:hover{
    background:#fff;
    color:var(--primary);
}

/* ================= HERO ================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;

    background:url("images/hero-bg.jpg") right center/cover no-repeat;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(15,23,42,.65) 0%,
        rgba(15,23,42,.45) 28%,
        rgba(15,23,42,.18) 55%,
        rgba(15,23,42,0) 100%
    );

    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
    gap:40px;
}

.hero-text h1{
    color:#fff;
    font-size:64px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-text p{
    color:#f3f3f3;
    font-size:21px;
    line-height:1.8;
    max-width:620px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.hero-buttons .btn{
    width:auto;
    min-width:230px;
    text-align:center;
    padding:18px 35px;
}

.hero-image{
    display:none;
}

/* ================= SECTION ================= */

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:42px;
    color:var(--heading);
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about {
    padding: 120px 0;
    background: #faf8f3;
}


/* =====================================================
   SECTION TITLE
===================================================== */

.section-title {
    text-align: center;
    margin: 0 auto 65px;
}

.section-title span {
    display: inline-block;

    position: relative;

    color: #1d1c1b;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 6px;

    text-transform: uppercase;

    margin-bottom: 18px;
}


/* GOLD LINES */

.section-title span::before,
.section-title span::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 60px;

    height: 1px;

    background: #c9a227;
}

.section-title span::before {
    right: calc(100% + 20px);
}

.section-title span::after {
    left: calc(100% + 20px);
}


/* MAIN TITLE */

.section-title h2 {
    margin: 10px 0 20px;

    color: #0f172a;

    font-size: 48px;

    font-weight: 700;

    line-height: 1.15;
}


/* INTRO PARAGRAPH */

.section-title p {
    max-width: 700px;

    margin: 0 auto;

    color: #555;

    font-size: 17px;

    line-height: 1.8;
}

/* =====================================================
   ABOUT WRAPPER
===================================================== */

.about-wrapper {
    width: 90%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

/* =====================================================
   IMAGE
===================================================== */

.about-image {
    position: relative;

    width: 100%;
}

.about-image img {
    width: 100%;

    height: 580px;

    display: block;

    object-fit: cover;

    border-radius: 0 35px 0 35px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}


/* GOLD FRAME */

.about-image::after {
    content: "";

    position: absolute;

    top: 18px;
    left: 18px;

    width: calc(100% - 36px);
    height: calc(100% - 36px);

    border: 1px solid #c9a227;

    border-radius: 0 27px 0 27px;

    pointer-events: none;
}


/* =====================================================
   CONTENT
===================================================== */

.about-content {
    padding-left: 10px;
}


/* SMALL LABEL */

.about-content::before {
    content: "OUR APPROACH";

    display: block;

    margin-bottom: 15px;

    color: #0f172a;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* HEADING */

.about-content h3 {
    margin: 0 0 22px;

    color: #0f172a;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 44px;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: -0.5px;
}

.about-content h3 span {
    color: #0f172a;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.about-description p {
    max-width: 600px;

    margin: 0 0 30px;

    color: #666;

    font-size: 15px;

    line-height: 1.85;

    text-align: left;
}


/* =====================================================
   FEATURES
===================================================== */

.features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 0 25px;

    margin-bottom: 30px;
}


/* FEATURE */

.feature {
    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 62px;

    padding: 8px 0;

    background: transparent;

    border-bottom: 1px solid #ddd8ce;

    border-radius: 0;

    box-shadow: none;

    transition: 0.3s ease;
}


/* HOVER */

.feature:hover {
    transform: translateX(4px);

    border-color: #c9a227;
}


/* ICON */

.feature i {
    width: 36px;

    height: 36px;

    min-width: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #c9a227;

    border-radius: 50%;

    color: #c9a227;

    font-size: 14px;
}


/* TEXT */

.feature span {
    color: #333;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.4;
}


/* =====================================================
   CONSULTATION BUTTON
===================================================== */

.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 24px;

    background: #0f172a;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;
}

.about-btn:hover {
    background: #c9a227;

    color: #0f172a;
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .about {
        padding: 90px 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image {
        width: 85%;

        margin: 0 auto;
    }

    .about-content {
        width: 85%;

        margin: 0 auto;

        padding-left: 0;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .about {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .section-title span {
        font-size: 12px;

        letter-spacing: 4px;
    }

    .section-title span::before,
    .section-title span::after {
        width: 35px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        font-size: 14px;
    }

    .about-wrapper {
        width: 88%;
    }

    .about-image {
        width: 100%;
    }

    .about-image img {
        height: 400px;
    }

    .about-content {
        width: 100%;
    }

    .about-content h3 {
        font-size: 36px;
    }

    .about-description p {
        font-size: 14px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .about-btn {
        width: 100%;

        justify-content: center;
    }
}

/* ================= SERVICES ================= */

.services{
    background:var(--light);
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-content{
    padding:28px;
}

.service-content h3{
    font-size:28px;
    color:#0F172A;
    margin-bottom:15px;
    font-weight:700;
    line-height:1.2;
}

.service-content p{
    font-size:17px;
    color:#666;
    line-height:1.8;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}
.service-box i{
    font-size:45px;
    color:var(--secondary);
    margin-bottom:25px;
}

.service-box h3{
    margin-bottom:15px;
    color:var(--heading);
}

.expertise-title span{
    display:inline-block;
    color:#0F172A;
    font-size:24px;
    font-weight:700;
    letter-spacing:8px;
    text-transform:uppercase;
    position:relative;
    margin-bottom:20px;
}

.expertise-title span::before,
.expertise-title span::after{
    content:"";
    position:absolute;
    top:50%;
    width:90px;
    height:2px;
    background:#C9A227;
}

.expertise-title span::before{
    right:calc(100% + 25px);
}

.expertise-title span::after{
    left:calc(100% + 25px);
}
/* ================= WHY US ================= */

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-grid div{
    padding:35px;
    background:#fff;
    border-left:5px solid var(--secondary);
    box-shadow:var(--shadow);
    border-radius:12px;
}

.why-grid h3{
    color:var(--heading);
    margin-bottom:10px;
}

/* ================= CTA ================= */

.cta{
    background:var(--primary);
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:15px;
}

.cta p{
    margin-bottom:35px;
    color:#d1d5db;
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    width: 100%;
    padding: 100px 0;
    background: #f8f6f1;
}


/* TOP HEADING */

.contact-heading {
    text-align: center;
    width: 90%;
    max-width: 900px;
    margin: 0 auto 65px;
}

.contact-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-title-row span {
    width: 60px;
    height: 1px;
    background: #c5a15b;
}

.contact-title-row h4 {
    margin: 0;
    color: #111d32;
    font-size: 15px;
    letter-spacing: 5px;
}

.contact-heading h2 {
    margin: 0 0 25px;
    color: #071d3a;
    font-size: clamp(40px, 5vw, 52px);
    font-weight: 700;
}

.contact-heading > p {
    margin: 0 auto;
    max-width: 700px;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   MAIN CONTACT CONTAINER
========================================= */

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 42% 58%;

    gap: 55px;

    align-items: stretch;
}


/* =========================================
   LEFT INFORMATION
========================================= */

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-small-title {
    color: #a47d35;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.contact-info h3 {
    margin: 0 0 18px;

    color: #171717;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 45px;

    line-height: 1.1;
}

.contact-info h3 span {
    color: #a47d35;
}

.contact-description {
    max-width: 480px;

    margin: 0 0 30px;

    color: #666;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   CONTACT ITEM
========================================= */

.contact-item {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid #ddd8ce;

    max-width: 500px;
}

.contact-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #b99652;

    border-radius: 50%;

    color: #a47d35;
}

.contact-item h4 {
    margin: 0 0 5px;

    color: #333;

    font-size: 13px;

    font-weight: 700;
}

.contact-item p,
.contact-item a {
    margin: 0;

    color: #666;

    font-size: 13px;

    line-height: 1.6;

    text-decoration: none;
}

.contact-item a:hover {
    color: #a47d35;
}


/* =========================================
   BUTTON
========================================= */

.contact-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    width: fit-content;

    margin-top: 30px;

    padding: 15px 24px;

    background: #1b1b1b;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;
}

.contact-btn:hover {
    background: #a47d35;
}

.contact-btn i {
    color: #c5a15b;

    transition: 0.3s;
}

.contact-btn:hover i {
    color: #fff;

    transform: translateX(5px);
}


/* =========================================
   MAP
========================================= */

.contact-map {
    width: 100%;

    min-height: 500px;

    overflow: hidden;

    border-radius: 0 30px 0 30px;

    border: 1px solid #d8d1c4;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;

    display: block;

    border: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        width: 85%;
        margin: auto;
    }

    .contact-map {
        width: 85%;
        margin: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-section {
        padding: 65px 0;
    }

    .contact-heading {
        margin-bottom: 45px;
    }

    .contact-title-row {
        gap: 12px;
        margin-bottom: 25px;
    }

    .contact-title-row span {
        width: 35px;
    }

    .contact-title-row h4 {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .contact-heading h2 {
        font-size: 38px;
    }

    .contact-heading > p {
        font-size: 14px;
    }

    .contact-info {
        width: 100%;
    }

    .contact-map {
        width: 100%;
        min-height: 400px;
    }

    .contact-map iframe {
        min-height: 400px;
    }

}

/* =====================================================
   PAGE RESET
===================================================== */

html,
body {
    margin: 0 !important;

    padding: 0 !important;

    width: 100%;

    max-width: 100%;

    overflow-x: hidden;
}

/* =========================================
   FLOATING CONTACT BUTTONS
========================================= */

.floating-contact {
    position: fixed;

    right: 20px;
    bottom: 25px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    z-index: 9999;
}


/* BUTTON */

.floating-btn {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    transition: all 0.3s ease;

    overflow: hidden;
}


/* ICON */

.floating-btn i {
    font-size: 22px;

    flex-shrink: 0;
}


/* TEXT */

.floating-btn span {
    max-width: 0;

    opacity: 0;

    white-space: nowrap;

    overflow: hidden;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    transition: all 0.3s ease;
}


/* HOVER */

.floating-btn:hover {
    width: 135px;

    border-radius: 30px;

    justify-content: flex-start;

    padding-left: 16px;
}

.floating-btn:hover span {
    max-width: 80px;

    opacity: 1;
}


/* WHATSAPP */

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20bd5a;
}


/* CALL */

.call-btn {
    background: #C9A227;
}

.call-btn:hover {
    background: #ad891d;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .floating-contact {
        right: 14px;
        bottom: 18px;

        gap: 8px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }

    .floating-btn i {
        font-size: 20px;
    }

    /* Keep circles on mobile */
    .floating-btn:hover {
        width: 48px;

        padding-left: 0;

        border-radius: 50%;

        justify-content: center;
    }

    .floating-btn span {
        display: none;
    }

}

/* =========================
   CIRCULAR WEBSITE LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #C9A227;
    background: #000;
    display: block;
}

/* =========================================================
   ADVOCATE SHUBHAM SINGLA
   COMPLETE MOBILE RESPONSIVE CSS
   Paste at the VERY BOTTOM of style.css
========================================================= */


/* =========================================================
   GLOBAL MOBILE RESET
========================================================= */

@media (max-width: 650px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
    }

    section {
        width: 100%;
        overflow: hidden;
    }

    .container {
        width: 90% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }


    /* =====================================================
       HEADER / NAVBAR
    ===================================================== */

    header {
        width: 100%;
        position: relative;
        z-index: 9999;
    }

    header .container {
        width: 92% !important;

        min-height: 70px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* LOGO */

    .logo {
        min-width: 0;
        display: flex;
        align-items: center;
    }

    .logo a {
        display: flex;
        align-items: center;
        gap: 10px;

        text-decoration: none;
    }

    .logo img {
        width: 48px !important;
        height: 48px !important;

        min-width: 48px;

        object-fit: cover;

        border-radius: 50%;
    }

    .logo h2 {
        font-size: 16px !important;
        line-height: 1.2;

        margin: 0 !important;

        white-space: nowrap;
    }


    /* DESKTOP NAV HIDDEN */

    nav {
        display: none;
    }


    /* HAMBURGER */

    .menu-btn {
        display: flex !important;

        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        color: #0f172a;

        font-size: 22px;

        cursor: pointer;

        flex-shrink: 0;
    }


    /* =====================================================
       HERO / HOME
    ===================================================== */

    .hero {
        width: 100%;

        min-height: auto !important;
        height: auto !important;

        padding: 70px 0 60px !important;

        overflow: hidden;
    }

    .hero > .container,
    .hero .hero-content {
        width: 90% !important;
        max-width: 100% !important;

        margin-left: auto !important;
        margin-right: auto !important;

        padding: 0 !important;
    }

    .hero-content {
        display: flex !important;

        flex-direction: column !important;

        gap: 35px;
    }

    .hero-text {
        width: 100% !important;
        max-width: 100% !important;

        padding: 0 !important;
        margin: 0 !important;

        text-align: left;
    }


    /* HERO LABEL */

    .hero-label {
        display: block;

        margin-bottom: 15px;

        font-size: 11px !important;

        letter-spacing: 2.5px;

        line-height: 1.5;
    }


    /* HERO HEADING */

    .hero-text h1 {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 20px !important;

        font-size: 36px !important;

        line-height: 1.15 !important;

        letter-spacing: -0.5px;

        word-break: normal;

        overflow-wrap: break-word;
    }


    /* HERO PARAGRAPH */

    .hero-text p {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 28px !important;

        font-size: 14px !important;

        line-height: 1.8 !important;
    }


    /* HERO BUTTONS */

    .hero-buttons {
        width: 100% !important;

        display: flex !important;

        flex-direction: column !important;

        gap: 12px !important;

        margin: 0 !important;
    }

    .hero-buttons .btn {
        width: 100% !important;

        min-height: 50px;

        display: flex !important;

        align-items: center;
        justify-content: center;

        padding: 14px 20px;

        text-align: center;

        font-size: 13px;
    }


    /* HERO IMAGE */

    .hero-image {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        position: relative !important;

        left: auto !important;
        right: auto !important;

        transform: none !important;
    }

    .hero-image img {
        width: 100% !important;
        max-width: 100% !important;

        height: 380px !important;

        display: block;

        object-fit: cover;

        border-radius: 15px;
    }


    /* =====================================================
       SECTION TITLES
    ===================================================== */

    .section-title {
        width: 90% !important;
        max-width: 100% !important;

        margin: 0 auto 45px !important;

        text-align: center;
    }

    .section-title span {
        font-size: 11px !important;

        letter-spacing: 4px !important;

        margin-bottom: 14px;
    }

    .section-title span::before,
    .section-title span::after {
        width: 28px !important;
    }

    .section-title span::before {
        right: calc(100% + 12px) !important;
    }

    .section-title span::after {
        left: calc(100% + 12px) !important;
    }

    .section-title h2 {
        width: 100%;

        margin: 10px 0 18px !important;

        font-size: 34px !important;

        line-height: 1.2 !important;

        word-break: normal;
        overflow-wrap: break-word;
    }

    .section-title p {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto;

        font-size: 14px !important;

        line-height: 1.75 !important;
    }


    /* =====================================================
       ABOUT SECTION
    ===================================================== */

    .about {
        width: 100%;

        padding: 70px 0 !important;
    }

    .about-wrapper {
        width: 90% !important;
        max-width: 100% !important;

        margin: 0 auto !important;

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 40px !important;

        align-items: start;
    }


    /* ABOUT IMAGE */

    .about-image {
        width: 100% !important;

        max-width: 100% !important;

        position: relative;
    }

    .about-image img {
        width: 100% !important;

        height: 390px !important;

        display: block;

        object-fit: cover;

        border-radius: 0 25px 0 25px !important;
    }

    .about-image::after {
        top: 12px !important;
        left: 12px !important;

        width: calc(100% - 24px) !important;
        height: calc(100% - 24px) !important;

        border-radius: 0 18px 0 18px !important;
    }


    /* ABOUT CONTENT */

    .about-content {
        width: 100% !important;
        max-width: 100% !important;

        padding: 0 !important;
        margin: 0 !important;
    }

    .about-content h3 {
        width: 100% !important;

        margin: 0 0 20px !important;

        font-size: 34px !important;

        line-height: 1.2 !important;

        letter-spacing: 0 !important;
    }

    .about-description {
        width: 100%;
    }

    .about-description p {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 25px !important;

        font-size: 14px !important;

        line-height: 1.8 !important;

        text-align: left !important;
    }


    /* =====================================================
       ABOUT FEATURES
    ===================================================== */

    .features {
        width: 100% !important;

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 0 !important;

        margin-bottom: 25px !important;
    }

    .feature {
        width: 100% !important;

        min-height: 58px;

        display: flex !important;

        align-items: center;

        gap: 12px;

        padding: 10px 0 !important;

        transform: none !important;
    }

    .feature i {
        width: 34px !important;
        height: 34px !important;

        min-width: 34px !important;

        display: flex;

        align-items: center;
        justify-content: center;

        font-size: 13px !important;
    }

    .feature span {
        font-size: 13px !important;

        line-height: 1.4;
    }


    /* ABOUT BUTTON */

    .about-btn {
        width: 100% !important;

        display: flex !important;

        align-items: center;
        justify-content: center;

        padding: 15px 20px;
    }


    /* =====================================================
       SERVICES / EXPERTISE
    ===================================================== */

    .services {
        width: 100%;

        padding: 70px 0 !important;

        overflow: hidden;
    }

    .services > .container {
        width: 90% !important;
    }

    .services-grid {
        width: 100% !important;

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 20px !important;
    }

    .service-card {
        width: 100% !important;

        max-width: 100% !important;

        overflow: hidden;
    }

    .service-card img {
        width: 100% !important;

        height: 230px !important;

        display: block;

        object-fit: cover;
    }

    .service-content {
        width: 100%;
    }

    .service-card h3 {
        font-size: 24px !important;

        line-height: 1.3 !important;

        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px !important;

        line-height: 1.75 !important;
    }


    /* =====================================================
       WHY CHOOSE US
    ===================================================== */

    .why-us {
        width: 100%;

        padding: 70px 0 !important;

        overflow: hidden;
    }

    .why-us .container {
        width: 90% !important;
    }

    .why-us .features {
        grid-template-columns: 1fr !important;

        gap: 15px !important;
    }

    .why-us .feature {
        width: 100% !important;

        padding: 18px !important;

        background: #fff;

        border-radius: 12px;
    }

    .why-us .feature h4 {
        margin: 0 0 7px;

        font-size: 17px;

        line-height: 1.3;
    }

    .why-us .feature p {
        margin: 0;

        font-size: 13px;

        line-height: 1.7;
    }


    /* =====================================================
       CONTACT SECTION
    ===================================================== */

    .contact-section {
        width: 100%;

        padding: 70px 0 !important;

        overflow: hidden;
    }


    /* CONTACT HEADING */

    .contact-heading {
        width: 90% !important;

        margin: 0 auto 45px !important;

        text-align: center;
    }

    .contact-title-row {
        display: flex;

        align-items: center;
        justify-content: center;

        gap: 10px;
    }

    .contact-title-row span {
        width: 28px !important;

        height: 1px;
    }

    .contact-title-row h4 {
        margin: 0;

        font-size: 11px;

        letter-spacing: 3px;
    }

    .contact-heading h2 {
        margin: 15px 0;

        font-size: 34px !important;

        line-height: 1.2;
    }

    .contact-heading p {
        margin: 0 auto;

        max-width: 100%;

        font-size: 14px;

        line-height: 1.7;
    }


    /* CONTACT GRID */

    .contact-container {
        width: 90% !important;
        max-width: 100% !important;

        margin: 0 auto !important;

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 40px !important;
    }


    /* CONTACT INFO */

    .contact-info {
        width: 100% !important;

        max-width: 100% !important;

        padding: 0 !important;
    }

    .contact-small-title {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .contact-info h3 {
        margin: 15px 0 20px;

        font-size: 36px !important;

        line-height: 1.15;
    }

    .contact-description {
        font-size: 14px !important;

        line-height: 1.8 !important;
    }


    /* CONTACT ITEMS */

    .contact-item {
        width: 100%;

        display: flex;

        align-items: flex-start;

        gap: 13px;

        margin-bottom: 22px;
    }

    .contact-icon {
        width: 38px;
        height: 38px;

        min-width: 38px;

        display: flex;

        align-items: center;
        justify-content: center;
    }

    .contact-item h4 {
        margin: 0 0 5px;

        font-size: 15px;
    }

    .contact-item p,
    .contact-item a {
        font-size: 13px;

        line-height: 1.7;

        overflow-wrap: anywhere;
    }


    /* CONTACT BUTTON */

    .contact-btn {
        width: 100% !important;

        display: flex !important;

        align-items: center;
        justify-content: center;

        padding: 15px 20px;

        text-align: center;
    }


    /* MAP */

    .contact-map {
        width: 100% !important;

        max-width: 100% !important;

        overflow: hidden;

        border-radius: 15px;
    }

    .contact-map iframe {
        width: 100% !important;

        height: 350px !important;

        min-height: 350px !important;

        display: block;

        border: 0 !important;
    }

   /* =========================================
   FLOATING CONTACT BUTTONS
========================================= */

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 25px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 99999;
}


/* BUTTON */

.floating-btn {
    width: 54px;
    height: 54px;

    padding: 0 !important;
    margin: 0;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    box-sizing: border-box;

    position: relative;

    overflow: visible;

    box-shadow: 0 7px 20px rgba(0,0,0,.20);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* ICON */

.floating-btn i {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    line-height: 1 !important;

    font-size: 22px;

    color: #fff;

    flex-shrink: 0;

    transition: transform .3s ease;
}


/* =========================================
   WHATSAPP
========================================= */

.whatsapp-btn {
    background: #25D366;

    animation: whatsappPulse 2.5s infinite;
}


/* =========================================
   CALL
========================================= */

.call-btn {
    background: #C9A227;

    animation: callPulse 2.5s infinite;
    animation-delay: 1.2s;
}


/* =========================================
   PULSE ANIMATION
========================================= */

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.55),
            0 7px 20px rgba(0,0,0,.20);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(37, 211, 102, 0),
            0 7px 20px rgba(0,0,0,.20);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0),
            0 7px 20px rgba(0,0,0,.20);
    }
}


@keyframes callPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(201, 162, 39, 0.55),
            0 7px 20px rgba(0,0,0,.20);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(201, 162, 39, 0),
            0 7px 20px rgba(0,0,0,.20);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(201, 162, 39, 0),
            0 7px 20px rgba(0,0,0,.20);
    }
}


/* =========================================
   HOVER
========================================= */

.floating-btn:hover {

    transform: translateY(-4px) scale(1.06);

    box-shadow:
        0 12px 28px rgba(0,0,0,.30);
}


/* ICON HOVER */

.floating-btn:hover i {

    transform: scale(1.12);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .floating-contact {

        right: 14px;
        bottom: 18px;

        gap: 10px;
    }


    .floating-btn {

        width: 50px;
        height: 50px;
    }


    .floating-btn i {

        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;

        font-size: 20px;
    }


    .floating-btn:hover {

        transform: translateY(-2px) scale(1.04);
    }

}
}

    /* =====================================================
       PREVENT TEXT OVERFLOW
    ===================================================== */

    h1,
    h2,
    h3,
    h4,
    p,
    a,
    span {
        overflow-wrap: break-word;
    }



/* =========================================================
   SMALL PHONES
   400px AND BELOW
========================================================= */

@media (max-width: 400px) {

    .logo h2 {
        font-size: 14px !important;
    }

    .logo img {
        width: 44px !important;
        height: 44px !important;

        min-width: 44px;
    }

    .hero-text h1 {
        font-size: 32px !important;
    }

    .hero-text p {
        font-size: 13px !important;
    }

    .hero-image img {
        height: 330px !important;
    }

    .section-title h2 {
        font-size: 30px !important;
    }

    .about-content h3 {
        font-size: 30px !important;
    }

    .about-image img {
        height: 340px !important;
    }

    .contact-info h3 {
        font-size: 32px !important;
    }

    .contact-map iframe {
        height: 300px !important;
        min-height: 300px !important;
    }

}

/* =========================================================
   ADVOCATE SHUBHAM SINGLA
   FULL WIDTH PREMIUM FOOTER
   FINAL VERSION
========================================================= */


/* =========================================================
   MAIN FOOTER
========================================================= */

.ss-footer-inner {

    /* BREAK OUT OF PARENT CONTAINER */
    width: 100vw !important;
    max-width: none !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;

    padding: 65px 5vw 55px !important;

    display: grid;

    grid-template-columns:
        1.35fr
        0.75fr
        1.35fr
        1fr;

    gap: 55px;

    background: #151515;
    color: #ffffff;

    box-sizing: border-box;

    position: relative;

    overflow: hidden;
}


/* =========================================================
   BRAND
========================================================= */

.ss-footer-brand {

    min-width: 0;
    width: 100%;

}


.ss-footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    color: #ffffff;

    text-decoration: none;

}


.ss-footer-icon {

    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #b99652;

    color: #c5a15b;

    font-size: 19px;

}


.ss-footer-name {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.ss-footer-name small {

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    margin-bottom: 5px;

}


.ss-footer-name strong {

    color: #c5a15b;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;

    font-weight: 600;

}


.ss-footer-brand > p {

    width: 100%;

    max-width: 340px;

    margin: 25px 0 20px;

    color: #999999;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   VALUES
========================================================= */

.ss-footer-values {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

}


.ss-footer-values span {

    color: #c5a15b;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.ss-footer-values b {

    color: #555555;

    font-size: 11px;

    font-weight: 400;

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.ss-footer-column {

    min-width: 0;

    width: 100%;

}


.ss-footer-column h3 {

    margin: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    font-weight: 500;

}


.ss-footer-line {

    width: 38px;

    height: 1px;

    margin: 15px 0 22px;

    background: #b99652;

}


/* =========================================================
   QUICK LINKS
========================================================= */

.ss-footer-column ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


.ss-footer-column ul li {

    margin-bottom: 14px;

}


.ss-footer-column ul li a {

    color: #999999;

    font-family: Arial, sans-serif;

    font-size: 13px;

    text-decoration: none;

    transition: all 0.3s ease;

}


.ss-footer-column ul li a:hover {

    color: #c5a15b;

    padding-left: 5px;

}


/* =========================================================
   CONTACT
========================================================= */

.ss-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;

}


.ss-contact-item i {

    width: 17px;

    min-width: 17px;

    margin-top: 4px;

    color: #c5a15b;

    font-size: 13px;

}


.ss-contact-item a {

    color: #999999;

    font-family: Arial, sans-serif;

    font-size: 12px;

    line-height: 1.7;

    text-decoration: none;

    overflow-wrap: anywhere;

    transition: color 0.3s ease;

}


.ss-contact-item a:hover {

    color: #c5a15b;

}


/* =========================================================
   CTA
========================================================= */

.ss-footer-cta {

    min-width: 0;

    padding-left: 25px;

    border-left: 1px solid #333333;

}


.ss-cta-label {

    display: block;

    color: #c5a15b;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.ss-footer-cta h3 {

    margin: 14px 0 15px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32px;

    font-weight: 500;

    line-height: 1.05;

}


.ss-footer-cta h3 span {

    color: #c5a15b;

}


.ss-footer-cta p {

    width: 100%;

    max-width: 220px;

    margin: 0 0 22px;

    color: #999999;

    font-family: Arial, sans-serif;

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================================
   CTA BUTTON
========================================================= */

.ss-cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    padding: 14px 17px;

    background: #b99652;

    color: #151515;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;

}


.ss-cta-button:hover {

    background: #ffffff;

    color: #151515;

}


.ss-cta-button i {

    transition: transform 0.3s ease;

}


.ss-cta-button:hover i {

    transform: translateX(5px);

}


/* =========================================================
   BOTTOM BAR
========================================================= */

.ss-footer-bottom {

    width: 100vw !important;

    max-width: none !important;

    margin-left: calc(50% - 50vw) !important;

    margin-right: 0 !important;

    padding: 0;

    background: #151515;

    border-top: 1px solid #2d2d2d;

    box-sizing: border-box;

}


.ss-footer-bottom-inner {

    width: 90%;

    max-width: 1250px;

    min-height: 70px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.ss-footer-bottom-inner p {

    margin: 0;

    color: #707070;

    font-family: Arial, sans-serif;

    font-size: 11px;

    line-height: 1.5;

}


.ss-footer-bottom-inner strong {

    color: #a88952;

    font-weight: 500;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .ss-footer-inner {

        grid-template-columns: 1fr 1fr;

        gap: 45px;

    }


    .ss-footer-cta {

        padding-left: 0;

        padding-top: 30px;

        border-left: none;

        border-top: 1px solid #333333;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ss-footer-inner {

        /* STILL FULL WIDTH */
        width: 100vw !important;

        max-width: none !important;

        margin-left: calc(50% - 50vw) !important;

        margin-right: 0 !important;

        padding: 50px 7% !important;

        display: grid;

        grid-template-columns: 1fr;

        gap: 38px;

    }


    .ss-footer-brand {

        width: 100%;

    }


    .ss-footer-brand > p {

        width: 100%;

        max-width: 100%;

        font-size: 13px;

        line-height: 1.8;

    }


    .ss-footer-logo {

        gap: 12px;

    }


    .ss-footer-icon {

        width: 45px;

        height: 45px;

        min-width: 45px;

    }


    .ss-footer-name small {

        font-size: 15px;

    }


    .ss-footer-name strong {

        font-size: 23px;

    }


    .ss-footer-column {

        width: 100%;

    }


    .ss-footer-column h3 {

        font-size: 21px;

    }


    .ss-contact-item {

        width: 100%;

        gap: 10px;

        margin-bottom: 18px;

    }


    .ss-contact-item a {

        font-size: 12px;

        overflow-wrap: anywhere;

    }


    .ss-footer-cta {

        width: 100%;

        padding: 30px 0 0;

        border-left: none;

        border-top: 1px solid #333333;

    }


    .ss-footer-cta h3 {

        font-size: 30px;

    }

    .ss-footer-cta p {

        max-width: 100%;

    }

    .ss-cta-button {

        width: 100%;

        max-width: 260px;

        min-height: 48px;

    }

    /* =========================
       BOTTOM BAR
    ========================= */

    .ss-footer-bottom {

        width: 100vw !important;

        max-width: none !important;

        margin-left: calc(50% - 50vw) !important;

    }

    .ss-footer-bottom-inner {

        width: 86%;

        min-height: auto;

        padding: 20px 0;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 8px;

    }

    .ss-footer-bottom-inner p {

        font-size: 10px;

    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .ss-footer-inner {

        padding: 45px 7% !important;

    }


    .ss-footer-name strong {

        font-size: 21px;

    }


    .ss-footer-cta h3 {

        font-size: 28px;

    }

}


/* =========================================================
   FINAL FOOTER WIDTH FIX
   IMPORTANT
========================================================= */

html,
body {

    width: 100%;

    max-width: 100%;

    margin: 0;

    padding: 0;

    overflow-x: hidden;

}

/* Force footer elements outside restricted parent */

.ss-footer-inner,
.ss-footer-bottom {

    position: relative;

    left: 0;

    right: auto;

    transform: none;

}

/* Make footer content safe */

.ss-footer-inner *,
.ss-footer-bottom * {

    box-sizing: border-box;

}

/* =========================================
   FINAL FOOTER POSITION FIX
========================================= */

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Footer stays at the bottom */
.ss-footer {
    width: 100% !important;
    max-width: none !important;

    margin-top: auto !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;

    padding: 0 !important;

    flex-shrink: 0 !important;

    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;

    background: #151515 !important;
}

.ss-footer-logo-img {
    width: 160px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

/* =========================================
   FOOTER LOGO + DESCRIPTION SIDE BY SIDE
========================================= */

.footer-brand-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}


/* LOGO */

.ss-footer-logo {
    flex-shrink: 0;
    display: block;
}


.ss-footer-logo-img {
    width: 70px;
    height: 70px;

    display: block;

    object-fit: contain;
}


/* DESCRIPTION */

.footer-brand-top p {
    margin: 2px 0 0;

    max-width: 260px;

    color: #999;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* VALUES */

.ss-footer-values {
    margin-top: 25px;

    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 8px;
}

@media (max-width: 650px) {

    .footer-brand-top {
        align-items: flex-start;
        gap: 15px;
    }

    .ss-footer-logo-img {
        width: 60px;
        height: 60px;
    }

    .footer-brand-top p {
        max-width: none;
        font-size: 12px;
        line-height: 1.7;
    }

}