
/*


 * Ashish sharma 06 09 93 css  *
 * This section controls the styling
 * for paragraph text across the website.
 * Make sure it aligns with the overall theme.




*/


/* css variable  */

:root{
    --clr-title:#0d141a;
    --clr-desc:#56585e;
}

.clr-title{
color:#0d141a;
}

.clr-desc{
color:#56585e;
}

.clr-white{
    color:#fff;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



/* header css  */

.full-header {
    width: 100%;
    background: #fff;
    height: 130px;
}

.msme-header {
    max-width: 1280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin: 0 auto;
    padding: 30px 16px;
}

a.msme-logo {
    width: 168px;
    height: 70px;
    display: block;
    outline: none;
    border: none;
}

.msme-header-right {
    display: flex;
    gap: 40px;
}

.msme-header-right a {
    color: #0d141a;
    font-size: 18px;
    text-decoration: none;
}

.msme-header-right a:hover{
text-decoration: underline;
}

.full-header{
    transition: all .2s ease-in-out;
}

.full-header.sticky {
    position: sticky;
    top: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    z-index: 999;
}

.section-center{
  max-width: 1280px;
    position: relative;
    margin: 0 auto;
}

/* Legal Consultancy Services section css  */

.legal-consultancy {
    background: #a8dadc;
    padding: 60px;
}

h1.site-title {
    font-size: 48px;
    color:var(--clr-title);
}

p.site-desc {
    color: var(--clr-desc);
    font-size: 16px;
}

.legal-consultancy-block {
    text-align: center;
}

.card {
    transition: 0.3s;
    width: 100%;
}

.card-flex-group {
    display: flex;
    gap: 10px;
    margin: 25px 0px;
}

.legal-consultancy .card img {
    border-radius: 20px;
}

.w-desc-center{
    max-width: 605px;
    text-align: center;
    margin: 0 auto;
}

.card .container {
    margin-top: 15px;
}

.card-flex-group .container p {
    padding-right: 79px;
}

.bg-white{
    background: #fff !important;
}

.legal-services {
    padding: 60px 0px 30px 0px;
}

.legal-services {
    display: flex;
    gap: 15px;
}

.legal-services img {
    border-radius: 20px;
    width: 502px;
    height: 360px;
}


.d-f{
    display: flex !important;
} 

.a-c{
    align-items: center !important;
}

.a-s{
    align-items: start !important;
}

.a-stretch{
    align-items: stretch !important;
}

.sb{
    justify-content: space-between !important;
} 

.sb-center{
    justify-content: center !important;
}

.w-100{
    width: 100%  !important;
}


/* hover dropdown css */


.msme-header-right .menu-link {
    position: relative;
     display: inline-block;
}

.dropdown {
  overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 18px;
    border: none;
    outline: none;
    color: #000000;
    padding: 0;
    background-color: inherit;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 16px;
}

.dropdown-content a:hover {
  text-decoration: underline;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Legal Consultancy Services section css  */


/* margin classes */


.mb-0{
    margin-bottom:0px !important
}

.mt-0{
    margin-top:0px !important
}

.mb-5{
    margin-bottom:5px !important
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15{
    margin-bottom:15px !important
}

.mb-20{
    margin-bottom: 20px !important;
}

.mb-25{
    margin-bottom: 25px !important;
}

.mb-30{
    margin-bottom:30px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mt-5{
    margin-top:5px !important
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15{
    margin-top:15px !important
}

.mt-20{
    margin-top: 20px !important;
}

.mt-25{
    margin-top: 25px !important;
}

.mt-30{
    margin-top:30px !important;
}

.mt-100 {
    margin-top: 100px !important;
}


/* padding-classes  */
.pt-0{
    padding-top:0 !important;
}

.pb-0{
    padding-bottom:0 !important;
}

.pt-5{
    padding-top:5px !important
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15{
    padding-top:15px !important
}

.pt-20{
    padding-top: 20px !important;
}

.pt-25{
    padding-top: 25px !important;
}

.pt-50{
    padding-top: 50px !important;
}

.pt-100{
    padding-top: 100px !important;
}


.pb-5{
    padding-bottom:5px !important
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15{
    padding-bottom:15px !important
}

.pb-20{
    padding-bottom: 20px !important;
}

.pb-25{
    padding-bottom: 25px !important;
}

.pb-50{
    padding-bottom: 50px !important;
}


/* font weight  */

.fw-300{
    font-weight: 300 !important;
}

.fw-400{
    font-weight: 400 !important;
}

.fw-600{
    font-weight: 600 !important;
}



/* fonts css  */


.fs-18{
    font-size: 18px !important;
}

.fs-20{
    font-size: 20px !important;
}

.fs-24{
    font-size: 24px !important;
}

.fs-26{
    font-size: 26px !important;
}

.fs-16{
    font-size: 16px !important;
}

.fs-48{
    font-size: 48px !important;
}

.fs-64{
    font-size: 64px !important;
}

.fs-72{
    font-size: 72px !important;
}


.text-center{
    text-align: center !important;
}

/* Gray */
.default-outline {
    border-color: #607D8B;
    color: black;
    background: transparent;
    padding: 16px 60px;
    border-radius: 100px;
    border: 1px solid;
    font-size: 16px;
    cursor: pointer;
}
.default:hover {
  background: #e7e7e7;
}

.member-center-content{
    max-width: 606px;
    margin: 15px auto 0px auto;
}

.max-w-911{
        max-width: 911px !important;
}

.max-w-506{
        max-width: 506px !important;
}

.bg-free{
    background: #a8dadc;
    padding: 20px;
}

.bg-premium{
    background: #ffcfab;
     padding: 20px;
}

.bg-lifetime{
    background: #8bff7e;
     padding: 20px;
}


.card-free-01.bg-free {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


a.button-free {
    padding: 10px 20px;
    border-radius: 30px;
    outline: none;
    border: none;
    background: #457b9d;
    color: #fff;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
}

a.button-premium {
    padding: 10px 20px;
    border-radius: 30px;
    outline: none;
    border: none;
    background: #9e4646;
    color: #fff;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
     text-align: center;
    text-decoration: none;
    display: block;
}

a.button-lifetime {
    padding: 10px 20px;
    border-radius: 30px;
    outline: none;
    border: none;
    background: #0f6917;
    color: #fff;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
     text-align: center;
    text-decoration: none;
    display: block;
}

.clr-grey{
    color: #9c9fa6 !important;
}

.gap-10{
    gap:10px;
}

.gap-0{
    gap:0px;
}

.d-column{
    flex-direction: column;
}

.text-line-through{
    text-decoration: line-through;
}


/* registartion form css  */


.registration-pricing-card {
    max-width: 606px;
    margin: 0 auto;
}


form {
    border-radius: 5px;
    background-color: #fff;
    padding: 20px;
}

label {display: block;}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #f1f1f1;
    border-radius: 0px;
    box-sizing: border-box;
    background: #fff;
    margin-bottom: 20px;
    outline: none;
}

input[type=text]::placeholder,
textarea::placeholder {
  color: #0d141a;
  opacity: 0.5;
  font-size: 14px;
}

.contact-wrapper form{
    background-color: #a8dadc;
    padding: 40px;
    border-radius: 20px;
}

input[type=submit], .button-black{
    background-color: #000;
    color: white;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    width: auto;
    border-radius: 30px;
    text-align: center;
    margin: 10px auto 10px auto;
    display: block;
    cursor: pointer;
}

input[type=submit].contact-page-button{
    background-color: #457b9d;
    color: white;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    width: auto;
    border-radius: 30px;
    text-align: center;
    margin: 10px auto 0px auto;
    display: block;
    cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.degree-section {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px; /* matches your reference width */
}

.degree-label {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 500;
}

.required {
  color: #d00;
  margin-left: 2px;
}

.degree-options label {
    display: block;
    margin: 6px 0;
    cursor: pointer;
    font-size: 16px;
    color: #888888;
}

.degree-options input[type="radio"] {
    margin-right: 8px;
    vertical-align: middle;
    accent-color: #666;
    margin-left: 0;
    margin-top: 0;
}

img.scan-image-qr {
    margin: 0 auto;
}


.button-black-wrap {
    margin: 20px 0px 40px 0px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.button-black-wrap a.button-black {
    display: inline-block;
    text-decoration: none;
}


.flex-content {
    display: flex;
    align-items: start;
    gap: 20px;
}

.contact-flex-content{
    display: flex;
}

.w-70{
  width: 70%;
}

.w-86{
  width: 86%;
}

.image-container-full.artical-section img {
    height: 424px;
    width: 100%;
    border-radius: 30px;
}



/* footer css  */


.footer {
  background-color: #1d3557;
  color: #ffffff;
  padding: 80px 10%;
  font-family: "Open Sans", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-left {
    flex-basis: 50%;
    min-width: 280px;
}

.footer-left h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.7;
  color: #d6d8dc;
  margin-bottom: 20px;
  font-weight: 600;
}

.social-icons a {
  color: #ffffff;
  margin-right: 12px;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons {
    margin-bottom: 25px;
}

.social-icons a:hover {
  color: #5a9bd5;
}

.footer-links {
    margin-top: 15px;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #d6d8dc;
    text-decoration: none;
    margin: 0 4px;
    font-size: 14px;
    font-family: inherit;
}

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

.copyright {
  margin-top: 10px;
  font-size: 16px;
  color: #d6d8dc;
}

.footer-right {
    display: flex;
    gap: 30px;
}

.footer-contact h4,
.footer-enquiry h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-contact p {
  margin: 4px 0;
  font-size: 16px;
  color: #d6d8dc;
}

.footer-enquiry input {
    width: 100%;
    padding: 16px 12px;
    border-radius: 6px;
    border: none;
    margin-bottom: 12px;
    font-size: 14px;
    min-width: 375px;
    display: block;
    margin-top: 10px;
    outline: none;
}

.footer-enquiry button {
  background-color: #4b86a6;
  color: #ffffff;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-enquiry button:hover {
  background-color: #5a9bd5;
}


@media (max-width:820px){

    .msme-header-right a,
    .msme-header-right .dropdown button {
            font-size: 16px !important;
    }

}


@media (max-width:800px){

    
.msme-header-right.active {
    display: block;
    padding-top: 30px;
}


    .menu-mobile-open.menu-mobile-open{
        display: block;
    }

    .msme-header-right {
            display: none;
            position: fixed;
            top: 130px;
            background: #fff;
            width: 100%;
            z-index: 99;
            left: 0;
            height: 100%;
            overflow: hidden;
            transition: .2s ease;
        }

        .msme-header-right a, .msme-header-right .dropdown {
            padding-bottom: 20px;
            display: block;
        }

    .dropdown-content{
        left: calc(50% - 80px);
    }

    .dropdown .dropbtn {
    width: 100% !important;
    justify-content: center;
    }

}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}


.flex-basis-30{
    flex-basis: 30% !important;
}

.flex-basis-50{
    flex-basis: 50% !important;
}

.flex-basis-70{
    flex-basis: 70% !important;
}

.flex-basis-100{
    flex-basis: 100% !important;
}


 .menu-mobile-open{
        display: none;
    }


