


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}


body
{

    background-color: #f6f6f8 ;
}

/* ================================nabar===================*/


a{
    text-decoration: none;
    color: inherit;
}

/* ===== Unique Navbar Styles ===== */
        .navs_navbar {
            border-bottom: 1px solid #ddd;
        }

        .navs_logo img {
            height: 40px;
        }

        .navs_menu .nav-link {
            font-weight: 500;
            color: #000 !important;
        }

        .navs_contact_btn {
            background-color: #f4b400;
            color: #000 !important;
            padding: 8px 18px;
            border-radius: 6px;
            font-weight: 600;
        }

        .navs_contact_btn:hover {
            background-color: #e2a800;
        }
  
        



        /* ========== HOME WRAPPER ========== */


        

        .hero_slider {
    position: relative;
    width: 100%;
    height: 100vh;
    /* height: 1200px; */
    overflow: hidden;
}

/* SLIDE */
.hero_slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: none;
}

.hero_slide.active {
    display: block;
    animation: fadeSlide 1s ease-in-out;
}

/* OVERLAY */
.hero_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.hero_content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 120px 8%;
    color: #fff;
}

.hero_content small {
    font-size: 14px;
    color: #ddd;
}

.hero_content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 15px 0;
}

.hero_content h1 span {
    color: #c99b2b;
}

.hero_content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #eee;
}

/* BUTTONS */
.hero_buttons {
    display: flex;
    gap: 15px;
}

.btn_primary {
    background: #c99b2b;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
}

.btn_outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
}

/* ANIMATION */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero_content {
        padding: 100px 6%;
    }

    .hero_content h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {

    

    .hero_content {
        padding: 90px 5%;
    }

    .hero_content h1 {
        font-size: 30px;
    }

    .hero_buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ==================================================== */



/* ===============================
   HM ABOUT SECTION
================================ */
.hm_about {
    width: 100%;
    padding: 80px 5%;
    background: #f9f9f9;
    box-sizing: border-box;
}

.hm_about_container {
    width:90%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* ===============================
   IMAGE SIDE
================================ */
.hm_about_images {
    flex: 1;
    position: relative;
}

.hm_about_img_main {
    width: 70%;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.hm_about_img_small {
    position: absolute;
    bottom: -50px;
    right: -30px;
    width: 70%;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: #fff;
}

/* ===============================
   CONTENT SIDE
================================ */
.hm_about_content {
    flex: 1;
}

.hm_about_subtitle {
    color: #d4a017;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hm_about_title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.3;
}

.hm_about_text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
    .hm_about_container {
        flex-direction: column;
        gap: 40px;
    }

    /* .hm_about_img_small {
        right: 0;
        bottom: -20px;
        width: 50%;
    } */

    .hm_about {
    padding: 60px 5%;
}

}

@media (max-width: 576px) {
    .hm_about {
        padding: 60px 4%;
    }

    .hm_about_title {
        font-size: 26px;
    }

    .hm_about_text {
        font-size: 15px;
    }

    .hm_about_img_small {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 20px;
    }
}



/* ==================================================== */


/* ===============================
   OUR AREAS OF PRACTICE
================================ */
.our_area {
    width: 100%;
    padding: 80px 5%;
    background: #ffffff;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.our_area_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.our_area_title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

.our_area_subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 6px;
}

.our_area_viewall {
    font-size: 14px;
    color: #d4a017;
    text-decoration: none;
    font-weight: 600;
}

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

/* ===============================
   GRID LAYOUT
================================ */
.our_area_grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
}

/* ===============================
   CARD STYLES
================================ */
.our_area_card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.our_area_card_small {
    padding: 25px;
}

.our_area_icon {
    width: 42px;
    height: 42px;
    background: #fff2cc;
    color: #d4a017;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    margin-bottom: 15px;
}

.our_area_card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.our_area_card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===============================
   LIST STYLE
================================ */
.our_area_list {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.our_area_list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.our_area_list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a017;
    font-size: 18px;
    line-height: 1;
}

/* ===============================
   RIGHT COLUMN STACK
================================ */
.our_area_stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .our_area_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .our_area {
        padding: 60px 4%;
    }

    .our_area_title {
        font-size: 26px;
    }

    .our_area_card {
        padding: 22px;
    }
}


/* ==================================================== */


/* ===============================
   NAVBAR LOGO
================================ */
.navs_logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navs_logo img {
    width: 48px;
    height: auto;
    object-fit: contain;
}

.navs_logo_text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navs_logo_title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.navs_logo_subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #d4a017;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 576px) {
    .navs_logo img {
        width: 40px;
    }

    .navs_logo_title {
        font-size: 16px;
    }

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



/* ========== SECTION ========== */


/* ===== SECTION ===== */
.home_why_section {
    background: #fbf3dc;
    padding: 70px 8%;
}


.section_why_cta_container
{
     padding: 70px 8%;
}


/* ===== HEADER ===== */
.home_why_header h2 {
    font-size: 30px;
    color: #111;
    margin-bottom: 10px;
}

.home_why_header p {
    max-width: 600px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* ===== CARD GRID ===== */
.home_why_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

/* ===== CARD ===== */
.home_why_card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    border: 2px solid #f2c94c;
    transition: transform 0.3s ease;
}

.home_why_card:hover {
    transform: translateY(-5px);
}

.home_why_card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.home_why_card h3 {
    font-size: 18px;
    color: #111;
    margin-bottom: 8px;
}

.home_why_card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===== CTA BOX ===== */
.home_why_cta {
    background: #fff;
    border: 2px solid #f2c94c;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
}

.home_why_cta h3 {
    font-size: 22px;
    color: #111;
    margin-bottom: 10px;
}

.home_why_cta p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.home_why_btn {
    background: #f2b705;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .home_why_cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home_why_section {
        padding: 50px 5%;
    }

    .home_why_cards {
        grid-template-columns: 1fr;
    }

    .home_why_header h2 {
        font-size: 24px;
    }

    .home_why_cta h3 {
        font-size: 20px;
    }
}



/* ==================================================== */

/* ========== SECTION ========== */



/* ===== FOOTER ===== */
.home_about_footer {
    background: #000;
    color: #ccc;
    padding: 60px 8%;
}

/* ===== GRID ===== */
.home_about_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ===== HEADINGS ===== */
.home_about_box h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: left;
}

/* ===== TEXT ===== */
.home_about_box p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

/* ===== LINKS ===== */
.home_about_links a {
    display: block;
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.home_about_links a:hover {
    color: #f2b705;
}

/* ===== CONTACT ===== */
.home_about_contact p {
    margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .home_about_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home_about_footer {
        padding: 50px 5%;
    }

    .home_about_container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home_about_box h4 {
        margin-top: 20px;
    }
}


/* ==================================================== */

/* ===== HOME ABOUT SECTION ===== */
.home_about_section {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: url("your-image-path.jpg") center/cover no-repeat;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* Overlay */
.home_about_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content container */
.home_about_container {
  position: relative;
width: 95%;
  text-align: justify;
  color: #ffffff;
  z-index: 2;
}

/* Badge */
.home_about_badge {
  display: inline-block;
  padding: 6px 16px;
  background: #ffffff;
  color: #8b6b2f;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 18px;
}

/* Title */
.home_about_title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Text */
.home_about_text {
  font-size: 16px;
  line-height: 1.7;
  color: #f1f1f1;
  max-width: 750px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .home_about_title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .home_about_section {
    min-height: 360px;
    padding: 30px 15px;
  }

  .home_about_title {
    font-size: 34px;
  }

  .home_about_text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .home_about_title {
    font-size: 28px;
  }

  .home_about_badge {
    font-size: 13px;
    padding: 5px 14px;
  }

  .home_about_text {
    font-size: 14px;
  }
}



/* ==================================================== */


.service_container {
    width:90%;
    margin: auto;
    padding: 60px 20px;
}

/* =============================
   SERVICE GRID
============================= */
.service_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* =============================
   SERVICE CARD
============================= */
.service_card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.service_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

.service_icon {
    width: 42px;
    height: 42px;
    background: #f6c344;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.service_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service_desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service_list {
    padding-left: 18px;
    margin: 0;
}

.service_list li {
    font-size: 14px;
    margin-bottom: 6px;
}

.service_link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    color: #f6c344;
    font-weight: 600;
    text-decoration: none;
}

/* =============================
   CTA SECTION
============================= */
.service_cta {
    background: #ffffff;
    margin-top: 70px;
    border-radius: 14px;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service_cta h2 {
    margin-bottom: 12px;
    font-size: 24px;
}

.service_cta p {
    color: #666;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto 25px;
}

.service_btn {
    display: inline-block;
    padding: 12px 30px;
    background: #f6c344;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
    .service_grid {
        grid-template-columns: 1fr;
    }
}

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

    .service_card {
        padding: 22px;
    }

    .service_cta h2 {
        font-size: 20px;
    }
}




/* ==================================================== */




.serv_ligit_container {
    width: 90%;
        margin: auto;
    padding: 60px 20px;
}

/* =============================
   HEADER
============================= */
.serv_ligit_header {
    width: 90%;
    margin-bottom: 40px;
}

.serv_ligit_header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}


.serv_ligit_header h3 {
    font-size: 18px;
    margin-bottom: 12px;
}



.serv_ligit_header p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* =============================
   TAGS
============================= */
.serv_ligit_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0 45px;
}

.serv_ligit_tag {
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    /* box-shadow: 0 8px 18px rgba(0,0,0,0.05); */
    box-shadow: 0px 0px 30px 0px #00000008;
}

.serv_ligit_icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
background: #D59E002E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
}

/* =============================
   HOW WE WORK
============================= */
.serv_ligit_work {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.serv_ligit_work_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.serv_ligit_list {
    padding-left: 18px;
    margin: 0;
}

.serv_ligit_list li {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
    .serv_ligit_work {
        grid-template-columns: 1fr;
    }
}

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

    .serv_ligit_header h2 {
        font-size: 24px;
    }

    .serv_ligit_tags {
        gap: 10px;
    }

    .serv_ligit_tag {
        font-size: 13px;
        padding: 8px 14px;
    }
}




/* ==================================================== */

/* ========== SECTION ========== */

/* =============================
   HERO SECTION
============================= */
.about_pg_hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: url("../images/about_bg\ \(1\).png")
                center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin: 60px auto;
    width: 90%;
    overflow: hidden;
}

/* overlay */
.about_pg_overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(176, 145, 76, 0.82); */
}

/* =============================
   CONTENT
============================= */
.about_pg_content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 720px;
}

.about_pg_content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about_pg_content p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* =============================
   BUTTON
============================= */


/* Badge Button */
.serv_about_pg_btn {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding:8px 10px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Left Dot */
.serv_about_pg_btn::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #fcb902;
    border-radius: 50%;
    display: inline-block;
}

/* Hover */
.serv_about_pg_btn:hover {
    background: #e6b93c;
    color: #ffffff;
}



.about_pg_btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ECAF00;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.about_pg_btn:hover {
    background: #e6b93c;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
    .about_pg_hero {
        min-height: 380px;
        border-radius: 14px;
    }

    .about_pg_content h1 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .about_pg_hero {
        min-height: 320px;
        border-radius: 0;
        margin: 0;
    }

    .about_pg_content h1 {
        font-size: 26px;
    }

    .about_pg_content p {
        font-size: 14px;
    }
}


span.border {
    border-left: 2px solid #ECAF00 !important;
    margin-right: 6px;
}

/* ==================================================== */

/* ========== SECTION ========== */

.aboutt_container {
    width: 90%;
    margin: auto;
    padding: 60px 20px;
}

/* =============================
   ABOUT CARD
============================= */
.aboutt_card {
        box-shadow: 0px 0px 25px 0px #0000000D;
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    margin-bottom: 60px;
}

.aboutt_title {
    font-size: 16px;
    color: #666;
    margin-bottom: 6px;
}

.aboutt_heading {
    font-size: 26px;
    font-weight: 700;
    color: #ECAF00;
    margin-bottom: 15px;
}

.aboutt_text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
}

.aboutt_points {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.aboutt_point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.aboutt_dot {
    width: 10px;
    height: 10px;
    background: #ECAF00;
    border-radius: 50%;
}

/* =============================
   IMAGE
============================= */
.aboutt_img_wrap {
    position: relative;
}

.aboutt_img_wrap img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* =============================
   PRACTICE AREA
============================= */
.aboutt_practice {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
}

.aboutt_practice_imgs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.aboutt_practice_imgs img {
    width: 100%;
    border-radius: 14px;
}

.aboutt_practice_card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    /* box-shadow: 0 12px 30px rgba(0,0,0,0.05); */
    box-shadow: 0px 0px 25px 0px #0000000D;
}

.aboutt_subtitle {
    font-size: 12px;
    color: #ECAF00;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.aboutt_practice_card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.aboutt_practice_card span {
    color: #ECAF00;
    font-size: 26px;
}

.aboutt_practice_card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
    .aboutt_card {
        grid-template-columns: 1fr;
    }

    .aboutt_practice {
        grid-template-columns: 1fr;
    }
}

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

    .aboutt_heading {
        font-size: 22px;
    }

    .aboutt_practice_card h3 {
        font-size: 20px;
    }
}



/* ==================================================== */

/* ========== SECTION ========== */

.aboutt_purpose_container {
    width:90%;
    margin: auto;
    padding: 60px 20px;
}

/* =============================
   TITLE
============================= */
.aboutt_purpose_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* =============================
   PURPOSE CARDS
============================= */
.aboutt_purpose_cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.aboutt_purpose_card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    border: 1px solid #f3c451;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.aboutt_purpose_icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f3c451;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.aboutt_purpose_content h4 {
    margin: 0 0 8px;
    font-size: 16px;
}

.aboutt_purpose_content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* =============================
   CTA BANNER
============================= */
.aboutt_purpose_cta {
    position: relative;
    /* background: url("../images/about_form.png")
                center / cover no-repeat; */
                   background: url("../images/about_contc.png")
                center / cover no-repeat;
                
    border-radius: 18px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aboutt_purpose_cta::before {
    content: "";
    position: absolute;
    inset: 0;
        /* background: rgb(170 135 60 / 60%); */
}

.aboutt_purpose_cta_content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.aboutt_purpose_cta_content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.aboutt_purpose_cta_content p {
    font-size: 14px;
    margin-bottom: 22px;
}

.aboutt_purpose_btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ECAF00;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.aboutt_purpose_btn:hover {
    background: #e6b840;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
    .aboutt_purpose_cards {
        grid-template-columns: 1fr;
    }
}

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

    .aboutt_purpose_cta_content h2 {
        font-size: 22px;
    }

    .aboutt_purpose_card {
        padding: 22px;
    }
}



/* ==================================================== */

/* ========== SECTION ========== */


.service_listwith_container{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

/* =============================
   HEADER
============================= */
.service_listwith_header{
    text-align:center;
    max-width:750px;
    margin:0 auto 50px;
}

.service_listwith_header h1{
    font-size:40px;
    margin-bottom:12px;
    font-weight: 600;
}

.service_listwith_highlight{
    color:#f5b400;
}

.service_listwith_header p{
    font-size:14px;
    color:#555;
    line-height:1.7;
}

/* =============================
   OVERVIEW
============================= */
.service_listwith_overview{
    background:#fff;
    border-left:4px solid #f5b400;
    border-radius:12px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    max-width:900px;
    margin:0 auto 70px;
}

.service_listwith_overview h3{
    margin:0 0 10px;
    font-size:18px;
}

.service_listwith_overview p{
    font-size:14px;
    line-height:1.7;
    color:#555;
}

/* =============================
   SERVICES
============================= */
.service_listwith_expertise{
    text-align:center;
    margin-bottom:40px;
}

.service_listwith_expertise span{
    font-size:12px;
    color:#f5b400;
    font-weight:600;
    letter-spacing:1px;
}

.service_listwith_expertise h2{
    font-size:26px;
    margin:8px 0;
}

.service_listwith_expertise p{
    font-size:14px;
    color:#555;
}

/* =============================
   SERVICE GRID
============================= */



/* ICON CONTAINER */
.service_listwith_icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff4df;
    border: 1px solid #f2c97d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: 0.3s ease;
}

/* ICON */
.service_listwith_icon i {
    font-size: 18px;
    color: #f2a900;
    transition: 0.3s ease;
}

/* HOVER EFFECT (MATCH IMAGE) */
.service_listwith_card:hover .service_listwith_icon {
    background: #f2a900;
}

.service_listwith_card:hover .service_listwith_icon i {
    color: #ffffff;
}


/* ====================== */

.service_listwith_grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:60px;
}

.service_listwith_card{
    background:#fff;
    border-radius:14px;
    padding:25px;
    border:1px solid #ECAF00;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
}

.service_listwith_icon{
    width:38px;
    height:38px;
background: #D59E002E;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    margin-bottom:12px;
}

.service_listwith_card h4{
    font-size:16px;
    margin-bottom:8px;
}

.service_listwith_card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* =============================
   CTA
============================= */
.service_listwith_cta{
    background:#fff;
    border:1px solid #f5b400;
    border-radius:14px;
    padding:40px 25px;
    text-align:center;
}

.service_listwith_cta h3{
    font-size:22px;
    margin-bottom:10px;
}

.service_listwith_cta p{
    font-size:14px;
    color:#555;
    margin-bottom:22px;
}

.service_listwith_btn{
    display:inline-block;
    padding:12px 30px;
    background:#f5b400;
    color:#222;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    border-radius:30px;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width:992px){
    .service_listwith_grid{
        grid-template-columns:repeat(2,1fr);
    }

    .service_listwith_header h1{
        font-size:30px;
    }
}

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

    .service_listwith_grid{
        grid-template-columns:1fr;
    }

    .service_listwith_header h1{
        font-size:24px;
    }

    .service_listwith_expertise h2{
        font-size:22px;
    }
}


/* ==================================================== */


.contact_pg_container{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

/* =============================
   HEADER
============================= */
.contact_pg_header{
    text-align:center;
    max-width:650px;
    margin:0 auto 40px;
}

.contact_pg_header h1{
    font-size:32px;
    margin-bottom:8px;
}

.contact_pg_header p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* =============================
   CONTACT BOX
============================= */
.contact_pg_box{
    background:#fff;
    border-radius:16px;
    display:grid;
    grid-template-columns:1fr 1.5fr;
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
    overflow:hidden;
}

/* =============================
   LEFT PANEL
============================= */
.contact_pg_info{
    background:#f5b400;
    color:#fff;
    padding:35px;
}

.contact_pg_info h3{
    font-size:20px;
    margin-bottom:25px;
}

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

.contact_pg_icon{
    width:40px;
    height:40px;
    background:rgba(255,255,255,0.2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.contact_pg_item h4{
    margin:0;
    font-size:14px;
}

.contact_pg_item p{
    margin:3px 0 0;
    font-size:13px;
    opacity:0.95;
}

/* =============================
   RIGHT PANEL
============================= */
.contact_pg_form{
    padding:35px;
}

.contact_pg_form h3{
    font-size:20px;
    margin-bottom:20px;
}

.contact_pg_row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.contact_pg_input{
    margin-bottom:18px;
}

.contact_pg_input input,
.contact_pg_input textarea{
    width:100%;
    padding:12px 14px;
    font-size:14px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
}

.contact_pg_input textarea{
    resize:none;
    height:120px;
}

.contact_pg_btn{
    background:#f5b400;
    color:#222;
    padding:12px 28px;
    border:none;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width:992px){
    .contact_pg_box{
        grid-template-columns:1fr;
    }

    .contact_pg_info{
        text-align:center;
    }

    .contact_pg_item{
        justify-content:center;
    }
}

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

    .contact_pg_header h1{
        font-size:24px;
    }

    .contact_pg_row{
        grid-template-columns:1fr;
    }
}








/* ========================================*/




/* Floating Contact Wrapper */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Common Button Style */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

/* Hover Effect */
.float-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* WhatsApp */
.float-btn.whatsapp {
    background: #25D366;
}

/* Call */
.float-btn.call {
    background: #0d6efd;
}

/* Email */
.float-btn.email {
    background: #dc3545;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}




/* ========================================*/





/* =================================== */




.footer-bottom-bar {
  border-top: 1px solid #1e293b;
  padding: 18px 0;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
}

/* FLEX ALIGNMENT */
.footer-bottom-flex {
  display: flex;
  justify-content: space-between; /* LEFT & RIGHT */
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TEXT RESET */
.footer-bottom-flex p {
  margin: 0;
}

/* DESIGNER LINK */
.designer a {
  color: #ffea00ea;
  font-weight: bold;
  text-decoration: none;
}

.designer a:hover {
  text-decoration: underline;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .footer-bottom-flex {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}


/* =================================== */