::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background-color: #082032;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
  }
  
  @font-face {
    font-family: "Gilroy-Black";
    src: url("../fonts/Gilroy-Black.eot");
    src: url("../fonts/Gilroy-Black-1.eot") format("embedded-opentype"),
      url("../fonts/Gilroy-Black.woff2") format("woff2"),
      url("../fonts/Gilroy-Black.woff") format("woff"),
      url("../fonts/Gilroy-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Gilroy-Regular";
    src: url("../fonts/Gilroy-Regular.eot");
    src: url("../fonts/Gilroy-Regular-1.eot") format("embedded-opentype"),
      url("../fonts/Gilroy-Regular.woff2") format("woff2"),
      url("../fonts/Gilroy-Regular.woff") format("woff"),
      url("../fonts/Gilroy-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Gilroy-Bold";
    src: url("../fonts/Gilroy-Bold.eot");
    src: url("../fonts/Gilroy-Bold-1.eot") format("embedded-opentype"),
      url("../fonts/Gilroy-Bold.woff2") format("woff2"),
      url("../fonts/Gilroy-Bold.woff") format("woff"),
      url("../fonts/Gilroy-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Gilroy-SemiBold";
    src: url("../fonts/Gilroy-SemiBold.eot");
    src: url("../fonts/Gilroy-SemiBold-1.eot") format("embedded-opentype"),
      url("../fonts/Gilroy-SemiBold.woff2") format("woff2"),
      url("../fonts/Gilroy-SemiBold.woff") format("woff"),
      url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Gilroy-Light";
    src: url("../fonts/Gilroy-Light.eot");
    src: url("../fonts/Gilroy-Light-1.eot") format("embedded-opentype"),
      url("../fonts/Gilroy-Light.woff2") format("woff2"),
      url("../fonts/Gilroy-Light.woff") format("woff"),
      url("../fonts/Gilroy-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Gilroy-Medium";
    src: url("../fonts/Gilroy-Medium.eot");
    src: url("../fonts/Gilroy-Medium-1.eot") format("embedded-opentype"),
      url("../fonts/Gilroy-Medium.woff2") format("woff2"),
      url("../fonts/Gilroy-Medium.woff") format("woff"),
      url("../fonts/Gilroy-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  :root {
    --primary-color: #B22234;
    --secondary-color: #0A2F6B;
    --black: #000;
    --white: #fff;
    --third-color: #fff;
    --animate: transition: all 1s ease-out;
  }
  body {
    color: #5b5b5b;
    line-height: 1.5;
    font-family: "Gilroy-Regular";
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    overflow-x: hidden
  }
  ::selection {
    background: var(--primary-color);
    color: var(--secondary-color);
    text-shadow: none;
  }
  
  ul {
    padding-left: 0px;
    list-style-type: none;
    margin-bottom: 0px;
  }
  p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 25px;
    font-family: "Gilroy-Regular";
  }
  li {
    display: inline-block;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    /* font-family: "Gilroy-Regular"; */
    font-family: "Gilroy-Bold";
    font-weight: 600;
    color: #000000;
  }
  a {
    list-style-type: none;
    color: #777777;
    text-decoration: none;
    font-family: "Gilroy-Regular";
  }
  .color-white {
    color: var(--third-color) !important;
  }
  .color-black {
    color: #000 !important;
  }
  .color-skyblue {
    color: var(--primary-color) !important;
  }
  .color-grey {
    color: #0d0d0d !important;
  }
  .bg-skublue {
    background: var(--Primary-Primary, var(--primary-color));
  }
  .bg-black {
    background: #1e1e1e;
  }
  .bg-grey {
    background: #0d0d0d;
  }
  .bg-lightgrey {
    background: #f4f4f4;
  }
  /* *********************  Btn One Style  ********************** */
  .t-btn-one {
    border-radius: 0px;
    box-sizing: border-box;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    background: var(--primary-color);
    color: var(--third-color);
    transition: ease 0.4s;
    border: 1px solid transparent;
    text-align: center;
    padding: 15px 65px;
    display: inline-block;
    border-radius: 7px;
    font-family: "Gilroy-SemiBold";
  }
  .t-btn-one:hover {
    background: none;
    color: var(--third-color) !important;
    border: 1px solid var(--third-color);
  }
  .t-btn-one i,
  .normal-btn i {
    padding-left: 7px;
    font-size: 13px;
  }
  .normal-btn {
    border-radius: 0px;
    box-sizing: border-box;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    background: none;
    color: var(--third-color);
    transition: ease 0.4s;
    border: 1px solid var(--third-color);
    text-align: center;
    padding: 15px 65px;
    display: inline-block;
    border-radius: 7px;
    font-family: "Gilroy-SemiBold";
    margin: 0 10px;
  }
  .normal-btn:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    border: 1px solid transparent;
  }
  /* *********************  Btn One Style End ********************** */
  /* ************************** Main Header Css **************************** */
  button.navbar-toggler {
    background: var(--secondary-color);
  }
  nav.navbar.navbar-expand-lg {
    padding: 10px 0 10px 0;
  }
  @media (max-width: 1024px) {
    .header .navbar.navbar-expand-lg {
      display: none;
    }
    .header .bg-body-tertiary {
      display: block !important;
    }
    .offcanvas-title img {
      width: 130px;
    }
  }
  .header .bg-body-tertiary {
    display: none;
  }
  .header {
    padding: 0;
  }
  .topctbtn a {
    color: var(--third-color);
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 45px;
    text-align: left;
    margin-left: 10px;
  }
  .topctbtn a:hover{
    color: var(--primary-color);
  }
  .topcta {
    background: var(--Base-neutral-focus, #0A2F6B);
    height: 45px;
  }
  .topctbtn a i {
    margin-right: 4px;
  }
  .navbar-brand img {
    width: 230px;
  }
  .header ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #000;
  }
  .header ul li a.t-btn-one:hover{
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color) !important;
  }
 
  .header ul.navbar-nav li a {
    padding: 10px 20px !important;
    margin-bottom: 0px;
    border-radius: 7px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
  }
  .header ul li a.t-btn-one{
    color: var(--third-color);
  }
  
  nav ul li a:hover,
  nav ul li a.active,
  nav ul li a:focus {
    color: var(--secondary-color) !important;
  }
  .header ul.dropdown-menu li {
    display: block;
  }
  .header ul.dropdown-menu li a {
    width: 100%;
    color: var(--primary-color);
    padding: 10px 10px !important;
    transition: ease 0.4s;
  }
  .header ul.dropdown-menu li a:hover {
    color: var(--white) !important;
    background: var(--primary-color);
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  /* ************************** Main Header Css End **************************** */
  /* ************************** Banner Css Start **************************** */
  .BannerMain {
    background-image: url(../images/Banner.webp);
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: block;
    padding: 8% 0;
  }
  .banner {
    background: url(../images/banner-bg.webp) no-repeat;
    background-position: center;
    background-size: cover; 
    padding: 150px 0 250px;
    position: relative;
  }
  
  .banner:before {
    position: absolute;
    content: "";
    width: 38.2%;
    height: 100%;
    background: #082d6996;
    left: 0;
    top: 0;
    z-index: 0;
  }
  
  .banner:after {
    position: absolute;
    content: "";
    width: 248px;
    height: 248px;
    background: url(../images/call-now-img.webp) no-repeat;
    right: 15%;
    bottom: -9%;
    z-index: 0;
    background-size: 70%;
  }
  
  .banner .down-clip img {
    position: absolute;
    bottom: -1px;
    width: 100%;
  }
  
  .banner h1:before {
    position: absolute;
    content: "";
    width: 89%;
    height: 222px;
    background: url(../images/banner-heading-before.webp) no-repeat;
    left: 0;
    top: -15px;
    background-size: 93%;
    z-index: 0;
    filter: brightness(0) saturate(100%) invert(21%) sepia(67%) saturate(3298%) hue-rotate(337deg) brightness(75%) contrast(92%);
  }
  
  .banner .btn-div .global-btn:hover {
    color: var(--primary-color) !important;
  }
  
  .head-div {
    position: relative;
    z-index: 2;
  }
  .bannerformMain {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: 15px;
    /* From https://css.glass */
    background: rgba(31, 41, 55, 0.78);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(31, 41, 55, 0.3);
  }
  .bannerform h1 {
    color: var(--third-color);
    font-family: "Gilroy-Bold";
    font-size: 50px;
    line-height: 50px;
    text-align: left;
    margin-bottom: 30px;
  }
  .bannerform p {
    font-family: "Gilroy-Medium";
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: var(--third-color);
    margin: 15px 0 0px 0;
  }
  .bannerform ul li {
    font-family: "Gilroy-Medium";
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: var(--third-color);
    margin: 0 0 10px 0;
  }
  .bannerform ul {
    margin: 20px 0 20px 0;
  }
  li i {
    font-size: 10px;
    color: var(--primary-color);
    position: relative;
    bottom: 2px;
    margin-right: 5px;
  }
  .bannerform h1 span {
    color: var(--primary-color);
  }
  /* BEGIN Packages Section */

.PackagesMain {
    padding: 4rem 0 5rem;
}

.PackagesMAinBox {
    position: relative;
    margin-top: 30px;
    transition: ease all 0.5s;
    height: 100%;
}

.PackagesMAinBox:hover:before,
.PackagesMAinBox.selected:before {
    background: #fbfbfb;
}

.PackagesMain.sty1 .PackagesMAinBox:before,
.TestimonialBoxMain:before {
    display: none;
}

.PackagesMAinBox:before,
.TestimonialBoxMain:before {
    content: "";
    width: 88%;
    height: 15px;
    background: var(--primary-color);
    position: absolute;
    z-index: 0;
    top: -15px;
    border-radius: 30px 30px 0 0;
    margin: 0px auto;
    display: table;
    left: 0;
    right: 0;
}

.PackagesBoxInner {
    position: relative;
    padding: 2rem;
    border-radius: 30px;
    background: #f8f9fa;
    height: 100%;
    /* min-height: 690px; */
    transition: ease all 0.5s;
}

.PackagesBoxInner.cipo {
    padding: 2rem 2rem 4rem
}

.PackagesBoxInner.cipo .btnStyle {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    bottom: 30px;
}

.PackagesBoxInner small {
    color: var(--secondary-color);
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    font-family: "Gilroy-Bold";
    text-align: center;
}

.PackagesBoxInner h2 {
    display: inline-flex;
    /* gap: 1rem; */
    margin: 0;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    align-items: center;
    justify-content: center;
}

.PackagesBoxInner.cipo h2 {
    font-size: 2.8rem;
}

.PackagesBoxInner h2 small {
    font-size: 1rem;
    font-weight: 800;
    margin-left: 10px;
}

.PackagesBoxInner p {
    border-bottom: 6px solid var(--primary-color);
    padding: 10px 0 25px 0;
}

.PackagesBoxInner ul {
    margin: 30px 0;
    min-height: 20rem;
}

.PackagesBoxInner ul .innerlist {
    min-height: inherit;
}

.PackagesBoxInner ul li {
    margin-bottom: 10px;
    font-size: 15px;
    display: block;
}

.PackagesBoxInner ul li i {
    color: var(--primary-color);
    font-size: 15px;
    margin-right: 6px;
}

.PackagesBoxInner .btnStyle {
    width: 100%;
    text-align: center;
}

.PackagesBoxInner .btnStyle:hover span {
    color: var(--white);
}

.PackagesBoxInner a:hover {
    background: var(--black);
    border: 2px solid var(--black);
    color: var(--white);
    transition: ease all 0.5s;
}

.PackagesMAinBox .bestseller small {
    display: block;
    text-align: center;
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
}

.PackagesMAinBox .bestseller {
    border-radius: 100px;
    display: table;
    padding: 5px 20px;
    float: right;
}

.PackagesMAinBox .cipo .bestseller {
    position: absolute;
    top: 20px;
    right: 20px;
}

.PackagesMAinBox .bgyelloe {
    background-color: #ffe400;
}

.PackagesMAinBox .bgred {
    background-color: #e82e49;
}

.PackagesMAinBox .bgred small {
    color: var(--white);
}

.PackagesMAinBox:hover .PackagesBoxInner,
.PackagesMAinBox.selected .PackagesBoxInner {
    background: var(--primary-color);
    color: var(--black);
    transition: ease all 0.5s;
}

.PackagesMAinBox:hover *,
.PackagesMAinBox.selected * {
    color: #ffffff;
}

.PackagesMAinBox:hover .PackagesBoxInner a,
.PackagesMAinBox.selected .PackagesBoxInner a {
    border: 2px solid var(--black);
    color: var(--white);
    transition: ease all 0.5s;
}

.PackagesMAinBox:hover .PackagesBoxInner p,
.PackagesMAinBox.selected .PackagesBoxInner p {
    border-bottom: 6px solid #ffffff;
}

.PackagesMAinBox:hover .PackagesMAinBox:before {
    background: #fbfbfb;
}

@media (max-width: 767px) {
    .PackagesBoxInner.cipo {
        margin-bottom: 20px;
        height: auto;
    }
}


/* BEGIN Packages Section */


  .viewpackage p {
    font-family: "Gilroy-Medium";
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: var(--third-color);
    margin: 15px 0 0px 0;
  }
  .bannerform a {
    margin-top: 20px;
    margin-right: 10px;
    padding: 15px;
  }
  .viewpackage a {
    color: var(--primary-color);
  }
  .viewpackage a:hover {
    color: var(--third-color);
  }
  .TrademarkSimplified {
    padding: 5% 0;
    /* background: var(--secondary-color); */
  }
  .TrademarkSimplified p {
    color: #000;
  }
  .processboximg {
    margin: 40px 0 60px 0;
}
.processboximg img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.processboximg small {
    display: table;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    border-bottom: 5px solid var(--primary-color);
    color: var(--black);
    padding-bottom: 5px;
    margin-bottom: 1rem;
}

.processboximg p {
    color: #666666;
    font-weight: 400;
    display: block;
    text-align: left;
    font-size: 16px;
}

.processboximg {
    margin: 40px 0 60px 0;
}
  
  .TrademarkSimplified .timeline span {
    width: 50px;
    display: inline-block;
    height: 50px;
    line-height: 50px;
  }
  
  .timeline:after {
    position: absolute;
    content: "";
    width: 353px;
    height: 11px;
    background: url(../images/timeline-1-after.webp) no-repeat;
    right: -51%;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-size: 85%;
  }
  .bg-cream {
    background: #B22234;
  }
  .fs25 {
    font-size: 25px !important;
  }
  
  .timeline-three:after {
    display: none;
  }
  
  .three-steps {
    min-height: 329px;
  }
  .stars ul li i {
    font-size: 15px;
    color: #f8b820;
    position: relative;
    top: 3px;
  }
  .stars.d-flex p {
    width: 60%;
  }
  .stars {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .WhiteCenterHeading span {
    color: var(--secondary-color);
    font-family: "Gilroy-Bold";
    font-size: 50px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 20px;
    display: block;
  }
  .WhiteCenterHeading span small {
    color: var(--primary-color);
    font-size: 50px;
    line-height: 50px;
  }
  .stars p {
    width: 38%;
    margin-left: 10px;
  }
  .WhiteCenterHeading {
    margin: 50px auto;
    display: table;
    width: 81%;
  }
  .simplifiedbox {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--third-color);
    padding: 20px;
    flex-direction: column;
    border-radius: 10px;
    margin-top: 70px;
  }
  .simplifiedbox img {
    width: 90px;
    height: 90px;
    object-fit: scale-down;
    margin-bottom: 20px;
  }
  .simplifiedbox span {
    color: var(--secondary-color);
    font-size: 24px;
    font-family: "Gilroy-Bold";
    margin: 10px 0 20px 0;
  }
  .simplifiedbox p {
    color: var(--secondary-color);
    text-align: center;
    margin: 0;
  }
  .blackbg {
    background: var(--secondary-color);
  }
  .blackbg p {
    color: var(--third-color);
    font-size: 16px;
  }
  .blackbg span {
    color: var(--third-color);
  }
  /* ************************** Banner Css End **************************** */
  /* ************************** START Packages Main **************************** */
  .packagesmainsec{
    padding: 5% 0;
  }
  .packagesmain{
      box-shadow: 1px 1px 11px rgb(0 0 0 / 33%);
      border-radius: 15px;
      position: relative;
      padding: 15px 0;
      min-height: 720px;
  }
  .packagesmain:hover{
    transition: all 1s ;
    background: #374151;
    color: var(--third-color);
  }
  .packagesmain:hover .packagestop span{
    color: #f9b739;
  }
  .packagesmain:hover .packagestop p, .packagesmain:hover .packagestop h3{
    color: var(--primary-color);
  }
  .packagesmain:hover .packagesdetail p{
    color: var(--secondary-color);
  }
  .centerblackHead {
    margin: 50px auto;
    display: table;
    width: 70%;
  }
  .centerblackHead span {
    color: var(--secondary-color);
    font-family: "Gilroy-Bold";
    font-size: 50px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 20px;
    display: block;
  }
  .centerblackHead span small{
    color: var(--primary-color);
  }
  .packagestop span {
    color: var(--secondary-color);
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    font-family: "Gilroy-Bold";
  }
  .packagestop h3 {
    color: var(--secondary-color);
    font-size: 45px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    font-family: "Gilroy-Bold";
  }
  .packagestop h3 sup{
    color: #EB1515;
    text-decoration: line-through;
  }
  .packagestop {
    text-align: center;
  }
  .packagesdetail {
    background: #F3F4F6;
    padding: 13px 20px;
  }
  .packagesdetail p {
    text-align: center;
    margin: 0;
  }
  .packgeslist {
    padding: 20px;
  }
  .packgeslist ul {
      height: 300px;
      overflow-y: scroll;
  }
  .packgeslist ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 15px;
    width: 100%;
  }
  .packgeslist ul li i {
    position: absolute;
    left: 0;
    top: 7px;
  }
  .getbtn {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
  }
  .recommeneded {
    position: absolute;
    top: -22px;
    left: 0;
    right: 0;
    background: #374151;
    color: #FFB739;
    text-align: center;
    display: table;
    margin: 0px auto;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
  }
  /* ************************** END Packages Main **************************** */
  /* ************************* BEGIN Stress Free Main **************************** */
  .stress-free {
    background: var(--secondary-color);
    padding: 50px 0;
    margin-top: 150px;
    /* background-image: url(../images/agentBg.webp); */
  }
  
  .stress-free .stress-img-div:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 350px;
    background: url(../images/stress-img.webp) no-repeat;
    right: 0;
    top: -110px;
    background-size: 100%;
  }
  .head-div h2 {
    font-size: 50px;
    position: relative;
    margin-bottom: 10px;
    color: var(--secondary-color);
  }
  
  .head-div h2 span {
    color: #B22234;
  }
  
  .stress-free a.global-btn:hover {
    color: var(--primary-color) !important;
  }
  .safgaurdleft span {
    color: var(--secondary-color);
    font-family: "Gilroy-Bold";
    font-size: 40px;
    line-height: 40px;
    text-align: left;
    margin-bottom: 20px;
    display: block;
  }
  .safgaurdright img {
    border-radius: 15px;
  }
  .sefgaurdSec {
    padding-bottom: 6%;
  }
  .forspace a {
    margin-top: 40px;
  }
  /* ************************* END Stress Free Main **************************** */
  .bg-blue {
    background: var(--secondary-color);
  }
  
  .color-cream {
    color: #B22234 !important;
  }
  
  .legal-pro-main .legal-pro-one {
    padding: 100px 0;
  }
  
  .legal-pro-two {
    padding-bottom: 100px;
  }
  
  .legal-pro-main:before {
    position: absolute;
    content: "";
    width: 323px;
    height: 100%;
    background: url(../images/legal-before.webp) no-repeat;
    top: 0;
    background-size: 81%;
    z-index: 1;
  }
  .legal-pro-two .legal-slider .legal-items {
    background: #f6e9d2;
    margin: 0 15px;
    border-radius: 20px;
    text-align: center;
    padding: 70px 60px;
    min-height: 390px;
    transition: 0.5s ease;
  }
  
  .legal-pro-two .legal-slider .legal-items:hover img {
    filter: invert(100%) sepia(80%) saturate(4490%) hue-rotate(300deg)
      brightness(80%) contrast(100%);
  }
  
  .legal-pro-two .legal-slider .legal-items:hover {
    background: var(--secondary-color);
  }
  
  .legal-pro-two .legal-slider .legal-items:hover p {
    color: #f9fafb;
  }
  
  .legal-pro-two .legal-slider .legal-items:hover h4 {
    color: #B22234;
  }
  
  .legal-pro-two .legal-slider .legal-items img {
    margin: 0 auto;
  }
  
  .legal-pro-main .legal-pro-one:after {
    position: absolute;
    content: "";
    width: 139px;
    height: 100%;
    background: url(../images/legal-after.webp) no-repeat;
    top: 0;
    right: 0;
    background-size: 100%;
    z-index: 1;
  }
  
  .legal-slider button.prev,
  .legal-slider button.next {
    position: absolute;
    right: 20%;
    top: -130px;
    width: 67px;
    background: #f6e9d2;
    border: none;
    border-radius: 7px;
    padding: 15px 0;
    color: #fff;
    font-size: 18px;
    transition: ease 0.5s;
  }
  
  /* .legal-slider button.next {
    right: -100px;
  } */
  
  .legal-slider button.prev {
    z-index: 2;
    right: 25%;
  }
  
  .legal-slider button.prev:hover,
  .legal-slider button.next:hover {
    background: #B22234;
  }
  /* ************************* BEGIN Registration Brand **************************** */
  .reg-trademark .two-boxes .btn-div {
    margin: 0 auto;
    width: 100%;
  }
  
  .reg-trademark .two-boxes .btn-div a {
    width: 47.6%;
    display: inline-block;
    margin-left: 0 !important;
  }
  
  /* ************************* END Registration Brand **************************** */
  /* ************************* BEGIN File Trademark **************************** */
  
  .cta .normal-btn {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
  }
  .cta {
    padding: 3% 0;
  }
  .cta .forspace a {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .cta .forspace a:hover{
    border: 1px solid var(--secondary-color);
    color: var(--white) !important;  
  }
  /* ************************* END File Trademark **************************** */
  
  /* ************************** Submit Modal Section  **************************** */
  .submitmodal {
    padding: 5% 0;
  }
  .redbg {
    background: #a90026;
    color: #fff;
    padding: 5%;
    border-radius: 15px;
    margin-top: 2%;
  }
  .submitleft span {
    font-size: 30px;
    font-weight: 500;
  }
  .submitleft small {
    font-size: 24px;
    font-weight: 500;
  }
  
  .searchinput {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
  }
  .searchinput .form-control {
    background: #fff;
    border: 1px solid #a90026;
    border-radius: 7px;
  }
  .TrademarkSearch .modal-content {
    background: #fff;
  }
  .trademarkseachcontent span {
    display: block;
    text-align: center;
    font-size: 30px;
    line-height: 50px;
    color: #a90026;
    font-weight: 600;
    margin: 0 0 20px 0;
  }
  .trademarkseachcontent p {
    color: var(--secondary-color);
    text-align: center;
    margin: 0 0 30px 0;
    font-weight: 600;
    font-size: 20px;
  }
  .TrademarkSearch.main-btn {
    width: 60%;
  }
  .TrademarkSearch .main-btn {
    width: 190px;
    padding: 14px 0;
    margin: 0 0 0 10px;
  }
  .TrademarkSearch .modal-header {
    border-bottom: 1px solid #fff;
    padding: 10px 10px;
  }
  .fade {
    transition: opacity 0.15s linear;
    /* background: #0000003d; */
    backdrop-filter: blur(15px);
  }
  /* ************************** Submit Modal Section  **************************** */
  /* ************************** Get Started Popup **************************** */
  .pop-up .modal-content {
    background: var(--secondary-color);
  }
  .popup-title h4 {
    color: var(--third-color);
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .popup-title h4 span{
    color: var(--primary-color);
  }
  .popup-title p {
    color: var(--third-color);
    text-align: center;
    margin: 20px 0 30px 0;
  }
  button.close-icon {
    background: none;
    border: none;
    color: var(--third-color);
    font-size: 25px;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  input.form-control {
    background: var(--third-color);
    border: 1px solid var(--primary-color);
    margin: 10px 0;
    color: #b8b8b8;
    height: 60px;
    border-radius: 7px;
  }
  textarea.form-control.cmessage {
    height: 219px;
  }
  .iti{
    width: 100%!important;
    margin-top: 0px;
  }
  .loader {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.8);
      z-index: 9999;
      display: none;
  }
  
  .loader-overlay {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .loader-overlay img {
      width: 80px;
      height: 80px;
  }
  .hidden{
    display: none;
  }
  .checkfields {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 20px;
  }
  
  .mmpopup .fld-input p {
      font-size: 12px;
      text-align: left;
      margin: 5px 0 0;
  }
  .questLogo {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      margin: 10px 0px;
  }
  
  .checkVal label {
      font-size: 16px;
      color: #fff;
      margin: 0px 15px 0px 2px;
  }
  .error {
      color: red;
  }
  .call_btn_top a {
      top: 38px;
      position: fixed;
      background: var(--primary-color);
      right: 40px;
      height: 50px;
      width: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      z-index: 4;
      color: #fff;
  }
  @media (max-width: 575px) {
      .call_btn_top a {
          display:none
      }
  }
  @media (max-width: 734px) and (min-width:667px) {
      .call_btn_top a {
          display: none
      }
  }
  .log_flex {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
  }
  
  .log_flex img {
      max-width: 120px;
      margin: 0;
      filter: none;
  }
  .uspto-logo img {
      filter: brightness(0) invert(1);
  }
  .uspto-footer {
      background: var(--secondary-color);
      padding: 20px 0px;
  }
  /* ************************** Get Started Popup **************************** */
  /* ************************** Contact Form Section **************************** */
.ContactForm {
    padding: 5% 0;
    background: var(--secondary-color);
  }
  .ContactForm .centerhead p {
    width: 80%;
    margin: 0;
    font-size: 24px;
  }
  .contactformfeild .form-control {
    width: 100%;
    padding: 20px 10px;
    border: none;
    color: #000;
  }
  .contactformfeild .main-btn {
    width: 100%;
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
    border: 1px solid transparent;
  }
  .contactformfeild .main-btn:hover,
  .contactformfeild .main-btn:focus {
    background: var(--secondary-color);
    color: #fff !important;
    border: 1px solid #fff;
  }
  .main-btn {
    border-radius: 7px;
    box-sizing: border-box;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    background: var(--primary-color);
    color: #fff;
    transition: ease 0.4s;
    border: 1px solid transparent;
    text-align: center;
    padding: 10px 25px;
    display: inline-block;
    margin-right: 10px;
  }
  .main-btn:hover {
    background: var(--secondary-color);
    color: #fff !important;
    border: 1px solid var(--secondary-color);
  }
  .iti__country{
    display: block;
  }
  /* ************************** Contact Form Section **************************** */
  /* BEGIN FAQs */

.accordion_container {
    width: 100%;
}

.accordion_head {
    cursor: pointer;
    font-family: arial;
    padding: 0;
    display: block;
    text-align: left;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.accordion_body {
    background: transparent;
    padding: 1rem 0 0;
    display: none;
    height: 0;
    overflow: hidden;
    transition: ease all 0.4s;
}

.open .accordion_body {
    height: auto;
    overflow: inherit;
    display: block;
}

.accordion_body p {
    padding: 0;
    margin: 0px;
    color: #666666;
    font-weight: 400;
    display: block;
    text-align: left;
    width: 100%;
}

.plusminus {
    float: right;
    width: 30px;
    height: 30px;
    display: table;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
    line-height: 30px;
    border-radius: 100px;
    font-size: 20px;
}

.FaqsMain {
    padding: 1rem 3rem;
    border: 1px solid var(--black);
    border-radius: 15px;
    margin-top: -2rem;
}

.FaqsMain h4 {
    position: relative;
    bottom: 95px;
    left: initial;
    right: 0;
    text-align: center;
    background: var(--white);
    display: table;
    margin: 0px auto;
    padding: 0 30px;
    font-size: 40px;
}

.forbottom {
    border-bottom: 1px solid #000;
    padding: 30px 0;
}

.accordion_container .forbottom:last-child {
    border-bottom: 0;
}

.FaqsMainUp {
    padding: 5rem 0;
}

.FaqsMainUp h2 {
    background: var(--white);
    position: relative;
    display: table;
    margin: 0 auto 10px;
    padding: 5px 3rem;
}


/* Footer Styling */
footer {
  padding: 50px 0 0;
  position: relative;
  background: #f6f6f9;
}
footer p {
  color: #919abd;
  font-size: 1rem;
  margin: 15px 0 15px;
}

footer img {
  margin-top: -10px;
  max-width: 200px;
}

footer ul.info li {
  font-size: 1rem;
  color: #000;
  margin: 0 0 7px;
  display: flex;
}

footer ul.info li i {
  font-size: 1rem;
  margin-right: 11px;
  color: var(--primary-color);
  position: relative;
  top: 3px;
}

.info{
  margin-top:10px;
}

footer ul li {
  margin: 0 0 1px;
  display: block;
}

footer ul li a {
  font-size: 1rem;
  color: #000;
}
footer ul li a:hover {
  color: var(--primary-color);
}
footer h4 {
  font-size: 1rem;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
}
.copyright {
  background: var(--primary-color);
  padding: 10px 0;
  margin-top: 30px;
}

.copyright p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}


/* Footer css end */

/* About Us */
.our-banner {
  display: flex;
  align-items: center;
}
.our-banner h1 {
  font-size: 32px;
  margin: 0 0 20px;
  position: relative;
  z-index: 9;
  color: white;
}
/* .our-banner.text-center h1:after {
  right: 0;
  margin: auto;
} */

.our-banner p {
  color: white;
  font-size: 19px;
  /* width: 80%; */
  margin: 0 auto 15px;
}
/* @media (max-width: 767px) {
  .our-banner.text-center h1:after {
      display: none;
  }

} */
.about-banner{
  background: url("../images/about-banner.webp") no-repeat;
  height: 405px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.our-about{
  padding: 4rem 0;
}
.our-about h2{
  color: var(--primary-color);
    font-size: 34px;
    /* font-weight: 500; */
    margin: 0 0 15px;
    position: relative;
    display: inline-block;
    text-transform: capitalize;
}

.our-about ul li {
  margin-bottom: 10px;
  display: block;
}

.our-about ul li img {
  margin-right: 8px;
  vertical-align: sub;
}



/* End About Us  */


/* Why Choose Us Section */

.RigesterBox {
  background: var(--white);
  box-shadow: 1px 1px 10px #0000002b;
  padding: 30px;
  border-radius: 10px;
  transition: 0.5s ease;
  position: relative;
  min-height: 18rem;
  height: 100%;
}

.RigesterBox img {
  display: block;
  margin: 0 0 20px 0;
}

.RigesterBox:hover img {
  filter: invert(1);
}

.RigesterBox span {
  display: block;
  text-align: left;
  margin: 15px 0 15px 0;
  font-size: 26px;
  font-weight: 600;
  color: var(--black);
  line-height: 30px;
}

.RigesterBox p {
  color: #666666;
  font-weight: 400;
  display: block;
  text-align: left;
  width: 100%;
  margin: 10px 0px 0px 0px;
}

.RigesterBox:hover {
  background-color: #a77b51;
  transition: 0.5s ease;
  color: #ffffff;
}

.RigesterBox:hover p {
  color: #ffffff;
}

.RigesterBox:hover h3 {
  color: #ffffff;
}

.RigesterBox .Hidden {
  display: none;
}

/* Why choose us end */

/* FAQS */
.FaqsMainUp .nav-tabs {
  border-bottom: none;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.FaqsMainUp .nav-tabs .nav-link {
  background: var(--secondary-color);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.FaqsMainUp .nav-tabs .nav-link:hover {
  background: var(--primary-color);
}

.FaqsMainUp .nav-tabs .nav-link.active {
  background: var(--primary-color);
  /* Adjust to match your brand color */
  color: #fff;
}

@media (max-width: 768px) {
  .FaqsMainUp .nav-tabs .nav-link {
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
  }
}
/* FAQS end */


/* Contact Banner */
.contact-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2d3a4b 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-banner:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23dda15e" opacity="0.1" d="M100,0 L200,100 L100,200 L0,100 Z"/></svg>') repeat;
  background-size: 30px;
}

.contact-banner-content h1 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-banner-content h1 span {
  color: var(--primary-color);
}

.contact-banner-content p {
  color: #e0e0e0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-info-list {
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-item i {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.contact-info-item:hover i {
  background: var(--primary-color);
  color: var(--white);
}

.contact-info-item strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-info-item a,
.contact-info-item span {
  color: #e0e0e0;
  font-size: 16px;
}

.contact-info-item a:hover {
  color: var(--primary-color);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-form-section .contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-section .form-group {
  margin-bottom: 20px;
}

.contact-form-section .form-group label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
  display: block;
}

.contact-form-section .form-group .required {
  color: #e74c3c;
}

.contact-form-section .form-group .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form-section .form-group .form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(169, 106, 60, 0.1);
}

.contact-form-section .form-group select.form-control {
  cursor: pointer;
}

.contact-form-section .form-group textarea.form-control {
  resize: vertical;
}

/* Contact Info Wrapper */
.contact-form-section .contact-info-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-form-section .contact-card {
  text-align: center;
  padding: 25px;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
}

.contact-form-section .contact-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-form-section .contact-card-icon {
  width: 70px;
  height: 70px;
  background: rgba(169, 106, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-form-section .contact-form-section .contact-card-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.contact-form-section .contact-card:hover .contact-card-icon {
  background: var(--primary-color);
}

.contact-form-section .contact-card:hover .contact-card-icon i {
  color: var(--white);
}

.contact-form-section .contact-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.contact-form-section .contact-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-form-section .contact-card a {
  color: #666;
}

.contact-form-section .contact-card a:hover {
  color: var(--primary-color);
}

.contact-form-section .contact-social {
  text-align: center;
  margin-top: 25px;
}

.contact-form-section .contact-social h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.contact-form-section .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact-form-section .social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(169, 106, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-size: 18px;
}

.contact-form-section .social-icons a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}



/* Responsive Styles */
@media (max-width: 991px) {
  .contact-banner {
      padding: 60px 0;
  }
  
  .contact-banner-content h1 {
      font-size: 36px;
  }
  
  .contact-form-section .contact-form-wrapper,
  .contact-form-section .contact-info-wrapper {
      padding: 30px;
      margin-top: 30px;
  }
  
  .contact-form-section .cta-content h2 {
      font-size: 28px;
  }
}

@media (max-width: 768px) {
  .contact-banner-content {
      text-align: center;
      margin-bottom: 40px;
  }
  
  .contact-info-item {
      justify-content: center;
  }
  
  .contact-form-section {
      padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .contact-form-section .contact-form-wrapper,
  .contact-form-section .contact-info-wrapper {
      padding: 20px;
  }
  
  .contact-form-section .contact-banner-content.contact-card {
      padding: 20px;
  }
}

/* Register Banner */
.register-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2a3a 100%);
  padding: 80px 0;
  position: relative;
}

.register-banner h1 {
  font-size: 42px;
  color: var(--white);
}

.register-banner h1 span {
  color: var(--primary-color);
}

.register-banner p {
  color: #e0e0e0;
  font-size: 18px;
}

.banner-stats {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 50px;
}

.stat-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  min-width: 120px;
}

.stat-box h3 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 5px;
}

.stat-box p {
  color: var(--white);
  font-size: 14px;
  margin: 0;
}

/* Why Trademark Section */
.why-trademark {
  padding: 60px 0;
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .register-banner {
      padding: 50px 0;
  }
  
  .register-banner h1 {
      font-size: 32px;
  }
  
  .banner-stats {
      justify-content: center;
      margin-top: 30px;
      flex-wrap: wrap;
  }
  
  .stat-box {
      min-width: 100px;
      padding: 15px;
  }
}