@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #ed1b24;
    --secondary-color: #012443;
    --text-color: #8a8a8a;
    --light-bg-color: #f4f9fc;
    --primary-font-family: 'Montserrat', sans-serif;
    --heading-font-family: "Noto Serif", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #222;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.6px;
}

.container {
    max-width: 1400px;
    width: 100%;
}

.bg-light-section {
    background: var(--light-bg-color);
}

.bg-primary-color {
    background-color: var(--primary-color);
}

.bg-secondary-color {
    background-color: var(--secondary-color);
}

.padding-tb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.heading {
    padding: 30px 0px;
}

.heading h3 {
    color: #c59c4c;
    text-transform: uppercase;
    font-size: 26px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0;
}

.heading p {
    color: #fff;
    padding-bottom: 50px;
}

ul, ol {
    padding: 0;
    margin: 0;
}

ul li, ol li {
    list-style: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Noto Serif", serif;
}

h1, .h1 {
    font-size: 42px;
    font-family: "Noto Serif", serif;
    font-weight: 800;
}

h2, .h2 {
    font-size: 30px;
    font-family: "Noto Serif", serif;
    font-weight: 600;
}

h3, .h3 {
    font-size: 50px;
    font-family: "Noto Serif", serif;
}

h4, .h4 {
    font-size: 21px;
    font-family: "Noto Serif", serif;
    font-weight: 600;
}

h5, .h5 {
    font-size: 18px;
    font-family: "Noto Serif", serif;
}

h6, .h6 {
    font-size: 16px;
    font-family: "Noto Serif", serif;
}

p {
    margin-bottom: 10px;
    line-height: 28px;
    font-size: 16px;
}

p:last-child {
    margin-bottom: 0;
}

/*
.owl-nav button {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 50px;
  height: 50px;
  background: #fff !important;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
  -webkit-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%) !important;
  -moz-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
  -ms-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%) !important;
  font-size: 30px !important;
  line-height: 54px !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  color: var(--secondary-color) !important;
}
.owl-nav button:hover {
  background: var(--secondary-color) !important;
  color: #fff !important;
}
.owl-nav button.owl-next {
  right: 10px;
  left: auto;
}
.owl-dots {
  text-align: center;
  margin-top: 40px;
}
.owl-dots button {
  width: 12px;
  height: 12px;
  border: 2px solid var(--primary-color) !important;
  margin: 0 3px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
}
.owl-dots button.active {
  width: 30px;
  background: var(--primary-color) !important;
}
*/


.global-btn {
    position: relative;
    padding: 12px 30px !important;
    background: #b89550;
    color: #fff !important;
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.global-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #222;
    z-index: -1;
    transition: width 0.4s ease;
}

.global-btn:hover::before {
    width: 100%;
}

/*------------------------Top Bar------------------------*/

.top-bar {
    background: #023b4a;
    padding: 4px 0;
    font-size: 16px;
}

.top-bar-left li {
    color: #fff;
    padding-right: 20px;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 5px;
}

.top-bar-left li a {
    color: #fff;
    font-weight: normal;
    text-decoration: none;
    font-size: 14px;
}

.top-bar-left li a:hover {
    color: #fff;
}
/*------------------------Top Bar End------------------------*/

/*------------------------Site-header------------------------*/

.site-header {
    padding: 0px 0;
    position: relative;
    width: 100%;
  /*  background-color: #ffffff;*/
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    -moz-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    -ms-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
  /*  position: relative;*/
    z-index: 2;
}

.header-logo img {
    width: 100px;
    height: auto;
}

.site-header nav.navbar {
    padding: 10px 0px !important;
}

.site-header .navbar-nav>li {
    position: relative;
    margin-left: 25px;
}

.site-header .navbar-nav>li>a {
    padding-top: 0px;
    padding-bottom: 5px;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.site-header li a:hover, .site-header li.current-menu-item>a {
    color: #000;
}

.site-header li.menu-btn a {
    color: #fff;
    background: var(--primary-color);
    padding-left: 30px !important;
    padding-right: 30px !important;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    margin-left: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.site-header li.nav-item.enquiry_now a {
    background: -webkit-linear-gradient(right, #7fb74c, #0a1e68, #cc0ebc, #f0104c, #ff5b11);
    background: -o-linear-gradient(right, #7fb74c, #0a1e68, #cc0ebc, #f0104c, #ff5b11);
    background: linear-gradient( 270deg, #7fb74c, #0a1e68, #cc0ebc, #f0104c, #ff5b11);
    background-size: 1000% 1000%;
    -webkit-animation: gradient 10s infinite;
    animation: gradient 10s infinite;
    border-radius: 50px;
    padding: 12px 20px!important;
    color: #fff!important;
    transition: 0.6s;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-button:hover {
    border-radius: 50px;
}

.site-header li.menu-btn a:hover {
    background: var(--secondary-color);
}

.site-header .navbar-nav .menu-item-has-children>a:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    margin-left: 5px;
    vertical-align: text-bottom;
    font-size: 12px;
}

.site-header .navbar-nav>li .sub-menu {
    -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    background: #ffffff;
    position: absolute;
    border: none;
    top: 80px;
    left: 0;
    width: 300px;
    z-index: 99;
    display: block;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: 5px solid #e3b88e;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
}

.site-header .navbar-nav>li .sub-menu li {
    padding: 8px 0px;
}

.site-header .navbar-nav>li .sub-menu li a {
    padding: 10px 15px;
    margin: 0;
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
    text-decoration: none;
}

.site-header .navbar-nav>li .sub-menu li:hover {
    background: #c59c4c;
    color: #fff !important;
}

.site-header .navbar-nav>li>a i {
    font-size: 12px;
}

.site-header .navbar-nav>li .sub-menu li a:hover, .site-header .navbar-nav>li .sub-menu li.current-menu-item>a {
    color: #fff;
}

.site-header ul li a.active {
    color: #023b4a;
}

.site-header ul li a.active:hover {
    color: #023b4a;
}

.site-header .sub-menu .current-menu-item a {
    color: #fff;
    background: #c59c4c;
    display: block !important;
    width: 100%;
}

.site-header .navbar-nav>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.navbar-toggler {
    vertical-align: middle;
    position: absolute;
    right: 10px;
    top: 15px;
    padding: 0;
}

.site-header .navbar-nav>li .dropdown-icon {
    display: none;
}

.btn {
    border: none;
    line-height: initial;
    text-transform: uppercase;
    padding: 15px 30px;
    position: relative;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    font-size: 16px;
    font-family: var(--primary-font-family);
    font-weight: 500;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    background: #023b4a;
    color: #fff;
}
/*------------------------Site-header------------------------*/

.marquee-sec {
    background: #023b4a;
}

.marquee-sec p {
    line-height: 20px;
    margin-bottom: 0px;
    color: #fff;
    padding-top: 5px;
}
/*----------------------Home Slider------------------------------*/


.main-banner {
    height: 80vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-slider .main-banner:before {
    content: "";
    position: absolute;
    background: #00000073;
    height: 100%;
    width: 100%;
}

.home-slider .container {
    padding: 0 25px;
}

.main-banner .d-table {
    width: 100%;
    height: 100%;
}

.main-banner .d-table-cell {
    vertical-align: middle;
}

.main-banner-content {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.main-banner-content h1 {
    color: #fff;
}

.main-banner-content span {
    border: 1px solid #fff;
    font-size: 16px;
    color: #fff;
    padding: 10px 40px;
    display: inline-block;
    margin-bottom: 30px;
}

.main-banner-content span:hover {
    background: #fff;
    color: #000;
}

.main-banner-content .btn-box .btn:first-child {
    margin-right: 15px;
}

.main-banner-content .btn-box .btn:hover {
    color: #fff;
}

.main-banner-content h1 {
    margin-bottom: 0;
    font-size: 46px;
    text-transform: capitalize;
    font-weight: 400;
}

.main-banner-content p {
    line-height: 1.8;
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

.main-banner-content img {
    width: 20%;
    margin-bottom: 20px;
}

.trusted {
    background: #fce9d6;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    color: #6a552c;
    border-bottom: 1px solid #e3b88e;
}

.about-us-sec {
    background: #fdf8f3;
    position: relative;
    overflow: hidden;
}

/* LEFT TEXT */
.about-us .sub-heading {
    color: #b89550;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-us h4 {
    font-size: 30px;
    font-weight: 500;
    margin: 15px 0;
    color: #111;
}

.about-us p {
    color: #666;
    line-height: 1.7;
}

.learn-btn {
    display: inline-block;
    margin-top: 15px;
    color: #b89550;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.learn-btn:hover {
    letter-spacing: 1px;
}

.about-us-img {
    position: absolute;
/*    height: 470px;*/
    overflow: hidden;
    border-radius: 0px;
    top: 0;
}

.about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us {
    padding: 80px 0px;
    padding-right: 50px;
}

.about-us-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, #fdf8f3 20%, transparent 100%);
    z-index: 1;
}

.our-service {
    margin-top: 30px;
    margin-bottom: 50px;
}

.service-sec {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: #fefbf6;
    height: 95%;
    border: 1px solid #dbd9d7;
}

.service-sec h4 {
    margin-top: 20px;
}

.how-work {
    margin-bottom: 80px;
    background-color: #1a1410;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    padding: 40px 20px;
}

.how-work-sec {
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 20px 30px;
    transition: border-color 0.2s;
    cursor: pointer;
    margin-bottom: 20px;
    height: 95%;
}

.how-work-sec img {
    width: 80px;
    margin: 0 auto;
    display: table;
    /* filter: invert(1); */
    background: #fff;
    padding: 10px;
    border-radius: 100px;
}

.how-work-sec h4 {
    font-size: 18px;
    color: #e0d5c0;
    margin-top: 20px;
    margin-bottom: 10px;
}

.how-work-sec p {
    color: #ddd;
}

.company-founder {
    background: #f9f0e7;
    padding: 50px 0px 80px 0px;
}

.founder-img img {
    width: 100%;
    border-radius: 10px;
}

.founder-info {
    width: 95%;
}

.founder-info h3 {
    color: #c59c4c;
    text-transform: uppercase;
    font-size: 26px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0;
}

.founder-info ul {
    margin-bottom: 15px;
}

.founder-info ul li {
    font-weight: 500;
    line-height: 30px;
    font-style: italic;
}

.founder-info p {
    text-align: justify;
}

.quote-block {
    border-left: 3px solid#b89550;
    padding: 1.25rem 1.75rem;
    margin: 2.5rem 0;
    background: rgba(184, 149, 80, 0.05);
    border-radius: 0 4px 4px 0;
}

.quote-block blockquote {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 15px;
    font-style: italic;
    color: rgb(0 0 0 / 80%);
    line-height: 1.7;
}

.quote-block cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 14px;
    font-weight: 500;
    color: #b89550;
    font-style: normal;
    letter-spacing: 0.08em;
}

.our-philosophy {
    overflow: hidden;
    position: relative;
    background: #1a1410;
}
/*
.our-philosophy:before {
    content: "";
    position: absolute;
    background: #1a1410;
    height: 100%;
    left: 0;
    width: 20%;
    z-index: -1;
}*/
.philosophy-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.philosophy-tabs {
    width: 280px;
    gap: 12px;
}

.philosophy-tabs .nav-link {
    background: #fff;
    border: 1px solid #e5e5e5;
    color: #222;
    padding: 18px 25px;
    border-radius: 12px;
    font-weight: 600;
    text-align: left;
    transition: 0.3s;
    font-size: 18px;
}

.philosophy-tabs .nav-link:hover {
    transform: translateX(5px);
}

.philosophy-tabs .nav-link.active {
    background: #b89550;
    color: #fff;
    border-color: #b89550;
}

.philosophy-content {
    flex: 1;
    padding: 40px;
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    background: #fefbf6;
    border: 1px solid #dbd9d7;
}

.philosophy-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-bottom: 30px;
}

.philosophy-content ul li {
    line-height: 32px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.value-item span {
    font-size: 28px;
    font-weight: 700;
    color: #c5a46d;
    min-width: 50px;
}

.value-item h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}

@media(max-width:991px) {
    .philosophy-wrapper {
        flex-direction: column;
    }

    .philosophy-tabs {
        width: 100%;
    }
}

.services-slider .owl-nav {
    display: block !important;
    position: absolute;
    top: -40px;
    left: inherit;
    text-align: center;
    right: 0;
}

.services-slider .owl-prev, .owl-next {
    display: inline-block !important;
    margin: 0px 10px;
    background: #fff !important;
    height: 40px;
    width: 40px;
    color: #000 !important;
    line-height: 40px !important;
    font-size: 0px !important;
    position: relative;
    border-radius: 100px;
    border: 1px solid #222 !important;
}

.services-slider .owl-prev span:after {
    content: "\f104";
    position: absolute;
    display: inline-block;
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    left: 0;
    right: 0;
}

.services-slider .owl-next span:after {
    content: "\f105";
    position: absolute;
    display: inline-block;
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    left: 0;
    right: 0;
}

.services-slider .owl-dots button {
    width: 20px !important;
    height: 20px !important;
    background: #ffffff !important;
    border-radius: 50%;
    border: 1px solid #c59c4c !important;
    margin: 0px 10px;
}

.services-slider .owl-dots button.active {
    background: #c59c4c !important;
}

.services-slider .owl-dots {
    text-align: center;
    margin-top: 60px;
}

.services_img img {
    width: 100%;
}

.services-des {
    padding: 30px 50px;
}

.services-sec {
    margin-top: 50px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 70px;
}

.services-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px !important;
    border: 0px !important;
}

.services-info h3 {
    color: #000000;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-size: 30px;
    font-family: "Montserrat", sans-serif;
}

.services-info p {
    margin-bottom: 20px;
}

.services-info {
    padding: 50px 50px 0px 50px;
    background: #fff;
    position: relative;
    top: 20%;
    left: -16%;
    height: 100%;
    border-radius: 10px 0px 0px 0px;
}

.services-info h4 {
    font-size: 34px;
    font-weight: 600;
    margin: 15px 0;
    color: #111;
}

.services-info ul {
    padding: 0px 15px;
    margin: : 0px 15px;
}

.services-info ul li {
    word-wrap: break-word;
    list-style: auto;
    line-height: 34px;
}

.home-slider .owl-nav button {
    width: 50px !important;
    height: 50px;
    line-height: 40px !important;
    font-size: 24px !important;
    background: #fff !important;
    outline: none;
    border-radius: 10px;
    display: block;
    margin: 10px 0px;
}

.home-slider .owl-nav button:hover {
    background: #023b4a !important;
    color: #fff !important;
}

.home-slider .owl-nav button i {
    line-height: 18px;
    width: 14px;
}

.home-slider .owl-nav button.owl-next i {
    line-height: 18px;
    width: 7px;
}

.owl-carousel .owl-item img {
    border-radius: 50px 0px 0px 0px;
    border: 10px solid#ddd;
}

.owl-nav {
    position: absolute;
    bottom: 15%;
    left: 30px;
}

button.owl-prev {
    margin: 0 5px;
}

button.owl-next {
    margin: 0 5px;
}
/*----------------------Home Slider End------------------------------*/

.breadcrumb-bg {
    padding: 60px 0px 60px 0px;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
}

.breadcrumb-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(to right, #fdf8f3 20%, transparent 100%);
    z-index: 1;
}

.breadcrumb-bg ul {
    /* background: #fff; */
    z-index: 1;
    position: relative;
}

.breadcrumb-bg ul li {
    display: inline-block;
    padding-right: 10px;
    color: #000;
    position: relative;
    z-index: 3333;
}

.breadcrumb-bg ul li a {
    color: #000;
    text-decoration: none;
}

.breadcrumb-bg ul li.active {
    color: #ffefc0;
    /* text-shadow: 2px 2px #ffffff; */
    text-shadow: 0px 4px 3px rgb(0 0 0 / 40%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.breadcrumb-content {
    width: 50%;
    position: relative;
    z-index: 9;
}

.breadcrumb-bg h2 {
    color: #000;
    font-size: 24px;
}

.breadcrumb-bg p {
    color: #000;
}

.single-post .breadcrumb-bg {
    background: #1a1410;
}

.single-post .breadcrumb-bg:before {
    content: inherit !important;
}

.single-post .breadcrumb-bg h2 {
    color: #fff;
}

.single-post .breadcrumb-bg p {
    color: #fff;
}

.single-post .breadcrumb-bg ul {
    font-size: 14px;
    color: #fff;
    letter-spacing: 0;
}

.single-post .breadcrumb-bg ul li {
    color: #fff;
}

.single-post .breadcrumb-bg ul li a {
    color: #fff;
}

.about-us-img img {
    width: 100%;
}

.about-img img {
    border-radius: 10px;
    width: 100%;
}

.about-us ul li {
    display: inline-block;
    margin-right: 10px;
    width: 45%;
    margin-bottom: 15PX;
}

.about-us ul li i {
    color: #023b4a;
}

.counter {
    margin-bottom: 50px;
}

.counter-sec {
    border: 1px solid #000;
    padding: 30px 40px;
}

.counter-sec span {
    font-size: 42px;
    font-weight: 800;
}

.counter-sec p {
    font-size: 18px;
    font-weight: 600;
}

.about-founder {
    position: relative;
    padding: 80px 0;
    background: #0f0e0c;
}

.about-founder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../../assets/images/pattern-image.png') repeat;
    opacity: 0.1;
 /* adjust as needed */
    z-index: 0;
}

.about-founder .container {
    position: relative;
    z-index: 1;
}

.founder-info {
    position: relative;
    z-index: 9;
}

.practice-section {
    background-color: #1a1410;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    padding: 40px 20px;
    text-align: center;
}

.practice-card {
    border: 1px solid rgba(201,168,76,0.4);
    padding: 20px 70px;
    transition: border-color 0.2s;
    cursor: pointer;
    margin-bottom: 20px;
}

.practice-card:hover {
    border-color: #c9a84c;
    background: rgba(201,168,76,0.05);
}

.practice-card img {
    width: 50px;
    margin: 0 auto;
    display: table;
}

.practice-icon {
    width: 50px;
    height: 50px;
    text-align: center;
    margin: 0 auto;
}

.practice-icon svg {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: #c9a84c;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.practice-label a {
    color: #e0d5c0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    margin-top: 15px;
    font-family: "Noto Serif", serif;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

.view-all {
    color: #c9a84c;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.view-all:hover {
    border-color: #c9a84c;
}

.service-sec {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
}

.service-sec img {
    width: 80px;
    margin: 0 auto;
    display: table;
}

.service-sec h4 {
    font-size: 18px;
    color: #000;
}

section.mission_vision_value {
    padding: 50px 0px;
}

.feature-sec {
    padding: 25px;
    height: 100%;
    border: 1px solid #000;
    margin-top: 30px;
}

.feature-sec h4 {
    color: #000;
    font-size: 30px;
}

.feature-sec h5 {
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}

.feature-sec ul li {
    list-style: disc;
    font-style: oblique;
}

.feature-sec ul {
    margin-left: 15px;
    padding-top: 0px;
}

.why-choose-us {
    background: #012443;
    padding: 100px 0px;
    margin-top: 30px;
}

.why-npj {
    width: 90%;
}

.why-npj h3 {
    color: #fff;
    margin-bottom: 40px;
}

.why-npj ul li h5 {
    color: #fff;
    font-size: 20px;
}

.why-npj ul li {
    color: #cbcbcb;
    margin-bottom: 20px;
    border-bottom: 1px solid #003665;
    padding-bottom: 20px;
    position: relative;
    padding-left: 90px;
    font-size: 15px;
}

.why-npj ul li span {
    background: #ffe6a2;
    width: 60px;
    height: 60px;
    display: inline-block;
    position: absolute;
    left: 0;
    line-height: 60px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    border-radius: 5px;
}

.why-npj-sec p {
    color: #fff;
}

.why-npj-sec {
    position: relative;
    border-radius: 20px;
    background: #003564;
    padding: 100px 50px;
}

.why-npj-sec .heading {
    color: #fff;
    position: relative;
}

.why-npj-sec p {
    color: #fff;
    position: relative;
}

.why-npj-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../../assets/images/why-npj.webp) repeat;
    opacity: 0.4;
    z-index: 0;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
}

.practice-tags {
    position: relative;
}

.practice-tags span {
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #ffffff;
    font-size: 14px;
    padding: 10px 20px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-bottom: 13px;
    display: inline-block;
    background: #c9a84c42;
}

.review-section {
    background: #f9f0e7;
    padding: 10px 0px 50px 0px;
}

.review-box {
    text-align: left;
    padding: 30px;
    margin: 0 10px;
    background: #fefbf6;
    border: 1px solid #dbd9d7;
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.review-box h5 {
    font-weight: 500;
    margin-top: 15px;
    font-size: 15px;
    text-transform: capitalize;
    margin-bottom: 0px !important;
    font-family: "Montserrat", sans-serif;
}

.review-box-content p {
    font-style: italic;
    font-size: 14px;
    line-height: 24px;
}

.review-box h6 {
    margin-top: 10px;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

.review-box-content i {
    transform: scaleX(-1);
/*    border: 1px solid #000;
    padding: 7px;
    border-radius: 100px;*/
    font-size: 14px;
}

.review-box::-webkit-scrollbar {
    width: 5px;
}

.review-box::-webkit-scrollbar-track {
    background: #eee6dc;
}

.review-box::-webkit-scrollbar-thumb {
    background: #c99b3b;
    border-radius: 10px;
}

.our-team {
    background: #0a1e68;
    padding: 50px 0px;
}

.what-we-icon {
    background: #0a1e68;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
}

.what-we h4 {
    margin-bottom: 0px;
    padding: 10px 0px;
}

.what-we {
    padding: 35px 30px 30px;
    box-shadow: 0 0px 18px rgb(0 0 0 / 12%);
    border-radius: 5px;
    transition: 0.5s;
    position: relative;
    background: #fff;
    text-align: left;
    z-index: 1;
}

.what-we:hover {
    border-radius: 0px 0px 80px 0px;
}

#services .title {
    font-size: 46px;
    color: #000000;
    font-weight: 600;
}

#services .title span {
    font-size: 46px;
    color: #FF5722;
    font-weight: 600;
}

#services .btn-primary {
    color: #fff;
    background-color: #023b4a;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 20px;
    min-width: 150px;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.btn-primary:hover {
    -webkit-box-shadow: 0 5px 9px -4px rgb(0 0 255 / 65%);
    box-shadow: 0 5px 9px -4px rgb(0 0 255 / 65%);
}

.card-items .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
    border-radius: .25rem;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.card-items .card .card-body i {
    border-radius: 6px;
    font-size: 31px;
    color: #023b4a;
    background-color: #ff57221c;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-items .card .card-body p {
    font-weight: 700;
}

.card-items .card .card-body .card-title {
    margin-bottom: .75rem;
    margin-top: 26px;
    margin-bottom: 15px;
    color: #0a1e68;
    text-transform: capitalize;
}

.our-training {
    background: url(../../assets/images/our-training-bg.jpg);
    padding: 50px 0px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.single-item-training {
    background: #fff;
    padding: 10px;
}

.single-item-training a {
    text-decoration: none;
    color: #000;
    text-align: center;
}

.single-item-training p {
    font-size: 16px;
    line-height: 28px;
}

.our-services {
    padding: 50px 0px;
}

.service-img {
    position: relative;
    transition: 0.6s;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    margin-bottom: 15px;
    transition: 0.6s;
    height: 400px;
    object-fit: cover;
}

.service-img:hover img {
    transform: scale(1.1);
}

.service-img:hover h4 {
    bottom: 60px;
    transition: 0.6s;
}

.service-img h4 {
    position: absolute;
    bottom: 20px;
    background: #ffffff;
    padding: 15px 20px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.articles-sec {
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    height: 95%;
    padding-bottom: 15px;
}

.articles-sec:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.14);
}

.articles-sec .image-box {
    overflow: hidden;
    margin: 0;
    border-radius: 18px 18px 0 0;
}

.articles-sec img {
    height: 280px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    transition: 0.5s ease;
}

.articles-sec:hover img {
    transform: scale(1.08);
}

.articles-info {
    background: #fff;
    padding: 24px 24px 28px;
    /*min-height: 240px;*/;
}

.articles-info h4 {
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    font-family: "Montserrat", sans-serif;
}

.articles-info h4 a {
    color: #111;
    text-decoration: none;
    transition: 0.3s;
}

.articles-info h4 a:hover {
    color: #c09a45;
}

.articles-info p {
    color: #555;
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 22px;
}

.global-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c09a45;
    color: #fff !important;
    padding: 13px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.35s ease;
}

.global-btn:hover {
    background: #111;
    color: #fff !important;
    transform: translateX(4px);
}

.global-btn i {
    transition: 0.3s;
}

.global-btn:hover i {
    transform: translateX(4px);
}

.philosophy-sec {
    background: url(../../assets/images/philosophy-bg.jpg);
    padding-top: 100px;
    background-position: center;
    background-size: cover;
    overflow: initial;
    margin: 100px 0px;
}

.banner-sec {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 80px 0px 0px 0px;
    overflow: visible;
}

.banner-info {
    background: #fff;
    width: 40%;
    position: relative;
    bottom: -30px;
    background: #d3a900;
    border-radius: 4px;
    box-shadow: 0 25px 100px 0 rgba(0, 0, 0, .15);
    padding: 40px;
}

.banner-info h3 {
    color: #000;
    font-size: 44px;
    line-height: 58px;
}

.banner-info p {
    color: #000;
}

.cta-heading h2 {
    font-size: 24px;
}

footer {
    background-color: #1a1410;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    padding: 40px 0px 15px 0px;
    text-align: center;
}

.footer-widget img {
    width: 45%;
    margin: 0 auto;
    display: table;
    height: auto;
}

.footer-widget h4 {
    font-size: 21px;
    color: #fff;
    margin-top: 20px;
    text-align: center;
}

.footer-widget {
    position: relative;
    text-align: left;
}

.footer-widget p {
    font-size: 14px;
}

.footer-widget ul li {
    line-height: 28px;
}

.footer-widget ul li a:hover {
    color: #b89550;
}

.footer-info-text {
    margin: 26px 0 32px;
    color: #232323;
    font-size: 14px;
    line-height: 30px;
}

.footer-widget h3 {
    font-size: 16px;
    color: #c59c4c;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.footer-widget p {
    margin-bottom: 27px;
    color: #c1c1c1;
}

.footer-widget a {
    color: #ddd;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 14px;
    padding: 8px 0px;
}

.footer-widget.contactus ul li a {
    line-height: 32px;
}

.footer-widget.contactus ul li a b {
    padding-right: 5px;
    color: #ddd;
}

a.footer-logo {
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 600;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link li a {
    font-size: 18px;
}

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

    Contact

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

.copyright p {
    text-align: center;
    font-size: 14px;
    color: #c1c1c1;
    border-top: 1px solid #40352e;
    padding-top: 15px;
    margin-top: 30px;
}

.copyright a {
    color: #9e8046;
    text-decoration: none;
    font-weight: 700;
}

/*
.articles-sec{
    position: relative;
    overflow: hidden;
    transition: 0.6s;
    margin-bottom: 30px;
}

.articles-sec img {
    height: 300px;
    object-fit: cover;
    object-position: center;
        width: 100%;
        transition: 0.6s;
}

.articles-sec:hover img{
    transform: scale(1.2);
}
.articles-info {
    background: #fff;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}
.articles-info h4 {
    color: #000;
    font-weight: 500;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
}


.articles-info p {
    color: #000;
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 20px;
}
*/
.single-articles {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}

.single-articles img {
    width: 100%;
    height: auto !important;
}

.single-info {
    padding: 30px;
}

.single-info span {
    display: inline-block;
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.single-info h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
}

.single-info h3 {
    font-size: 21px;
    font-weight: 500;
    color: #222;
    margin: 30px 0 15px;
}

.single-info p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.single-info ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.single-info ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.single-info blockquote {
    background: #f5f7fa;
    border-left: 4px solid #c8a96a;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #333;
    border-radius: 8px;
}


/* Recent Articles */

.recent-articles {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}

.recent-articles h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.recent-articles ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.recent-articles li {
    padding: 15px 0;
    border-bottom: 1px solid #ececec;
}

.recent-articles li:last-child {
    border-bottom: 0;
}

.recent-articles li a {
    display: block;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.6;
    transition: .3s;
}

.recent-articles li a:hover {
    color: #c8a96a;
}

.recent-articles li span {
    display: block;
    margin-top: 8px;
    color: #888;
    font-size: 13px;
}

/* Responsive */

@media(max-width:991px) {

    .single-articles img {
        height: 300px;
    }

    .recent-articles {
        margin-top: 30px;
        position: relative;
        top: auto;
    }

    .single-info {
        padding: 20px;
    }

    .single-info h2 {
        font-size: 26px;
    }

    .single-info h3 {
        font-size: 20px;
    }
}

.single-blog-img {
    overflow: hidden;
}

.single-blog-img a img {
    width: 100%;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single-blog:hover .single-blog-img a img {
    -webkit-transform: scale(1.09);
    -moz-transform: scale(1.09);
    -ms-transform: scale(1.09);
    -o-transform: scale(1.09);
    transform: scale(1.09);
}

.single-blog-img img {
    width: 100%;
}

.blog-content-box {
    padding-left: 25px;
    padding-top: 27px;
    margin: 0 10px;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
    background: #fff;
    padding-bottom: 30px;
}

.blog-content {
    display: table;
}

.blog-content h4 {
    color: #212121;
}

.blog-content h4 a {
    color: #212121;
    text-decoration: none;
    -webkit-transition: .2s;
    transition: .2s;
    text-transform: capitalize;
}

.blog-content h4 a:hover {
    color: #023b4a;
}

.blog-content a {
    color: #00071b;
    font-weight: 600;
}

.carousel-item {
    text-align: center;
}

.carousel-item p {
    padding: 15px 0px;
}

.carousel-item span {
    font-weight: 700;
    color: #0a1e68;
    font-size: 18px;
}

.carousel-indicators .active {
    opacity: 1!important;
    width: 40px!important;
    height: 8px!important;
}

.carousel-indicators [data-bs-target] {
    width: 25px;
    height: 8px;
    background-color: #0a1e68;
    opacity: .5;
    border-radius: 0px;
}

.carousel-indicators {
    margin-bottom: -50px;
}
/*.testimonials {
  max-height: 420px;
  height: 420px;
}*/

::placeholder {
    font-size: 14px;
    color: #666!important;
}

.info-inner {
    background: #dceffe;
    padding: 50px 30px;
    border-radius: 30px 0px 0px 0px;
    height: 530px;
}

.info-inner span {
    position: absolute;
    background: #023d75;
    color: #fff;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
}

ul.contact-info.list-inline {
    margin-right: 40px;
    margin-left: 55px;
    margin-bottom: 25px;
    border-bottom: 1px dashed#b9b9b9;
    padding-bottom: 20px;
}

.contact-info h3 {
    margin-bottom: 8px;
    color: #000;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info a {
    color: #000;
    font-size: 15px;
    line-height: 30px;
    text-decoration: none;
}

.contact-info img {
    width: 90%;
    border-radius: 10px;
}

.contactus.form-control {
    padding: .975rem .75rem;
}

.contact-form .col-md-12 .input-group.mb-3 {
    width: 100%;
    display: block;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}

.contactus.carrer-form .btn {
    display: block;
    width: 100%;
}

.fixed-button {
    border-radius: 50%;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 23px 0 rgba(12, 0, 46, 0.15);
    -moz-box-shadow: 0 3px 23px 0 rgba(12, 0, 46, 0.15);
    box-shadow: 0 3px 23px 0 rgba(12, 0, 46, 0.15);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    position: fixed;
    bottom: 10px;
    z-index: 999999;
    -webkit-animation: button-updown 1s infinite alternate;
    -moz-animation: button-updown 1s infinite alternate;
    animation: button-updown 1s infinite alternate;
}

.whatsapp-button {
    right: 20px;
    background: #4ec95c;
}

.fixed-button a {
    display: block;
}

.whatsapp-button a {
    color: #fff;
}

@-webkit-keyframes button-updown {
    0% {
        -webkit-transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes button-updown {
    0% {
        -moz-transform: translateY(0px);
    }

    100% {
        -moz-transform: translateY(-15px);
    }
}

@keyframes button-updown {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-15px);
    }
}

#button {
    display: inline-block;
    background-color: #c59c4c;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 5px;
    position: fixed;
    bottom: 10px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    color: #fff;
    font-size: 18px;
    line-height: 35px;
    transition: 0.6s;
    left: 10px;
}

#button:hover {
    cursor: pointer;
  /*  border-radius: 50px;*/;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}