/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #d4af37;
  --secondary: #0b2340;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "DM Sans", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 0.9375rem;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 2rem;
  line-height: normal;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 1.5625rem 4.375rem 1rem 4.375rem;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}
.navbar-brand img {
  width: 210px;
  filter: brightness(0) invert(1);
}

.navbar-nav {
  align-items: center;
  gap: 2.25rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  position: relative;
}

/* !NAV HEADER CSS */

/* Main Banner Css Start */

.mainbanner {
  background-color: #0b2340;
  height: 1080px;
  display: flex;
  align-items: center;
  z-index: 1;
  padding: 6rem 0 172px 260px;
}

.main-content h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 2px;
}

.box {
  animation: upDown 1s infinite alternate ease-in-out;
  position: absolute;
}

@keyframes upDown {
  from {
    bottom: 4rem;
  }

  to {
    bottom: 6.25rem;
  }
}

.main-content h1 {
  font-size: 5rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1.1;
  margin: 1rem 0;
  width: 89%;
}

.main-content {
  margin-right: -5rem;
  padding: 0 0 0 6.25rem;
}

.main-imag {
  margin: 0 -60px 0 -130px;
  position: relative;
  z-index: -1;
}

.main-imag img {
  width: 100%;
}

.main-content p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #eef3f6;
  margin: 0 0 2.25rem 0;
}

/* Main Banner Css End */

/* Brand Sec Css Start */

.brand-sec {
  padding: 0;
}

.brand-imag {
  height: 175px;
  width: 323px;
  display: grid;
  place-items: center;
  border: 1px solid #e5e2d8;
}

/* Brand Sec Css End  */

/* About Sec Css Start */

.subHead {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(11 35 64 / 90%);
  letter-spacing: 1.8px;
  line-height: 1.2;
}

.mainHead {
  font-size: 3.5625rem;
  font-weight: 600;
  color: #313335;
  letter-spacing: -1.8px;
  line-height: 1;
}

.about-content {
  padding: 0 0 0 4rem;
}

.about-content .mainHead {
  margin: 0.75rem 0 1rem;
}

.about-content p {
  color: #656565;
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0 0 1.75rem 0;
}

.about-content p span {
  font-weight: 600;
}

.about-content .themeBtn {
  padding: 1.25rem 2.25rem;
}

.about-sec {
  padding: 7rem 0 2rem 0;
}

/* About Sec Css End  */

/* Services Sec Css Start */

.services-wrapp {
  position: relative;
  z-index: 1;
}
.services-wrapp figure img {
  width: 100%;
}

.services-sec {
  padding: 6rem 0;
}

.services-content {
  position: absolute;
  left: 3.125rem;
  bottom: 3.125rem;
  transition: 0.6s ease;
}

.services-wrapp::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(188deg, rgb(11 35 64 / 0%), rgb(11 35 64 / 76%));
}

.services-content h3 {
  font-size: 1.625rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
  letter-spacing: -0.6px;
}

.services-content p {
  font-size: 1.0625rem;
  color: rgb(255 255 255 / 80%);
  margin: 0.275rem 0 0 0;
}

/* Services Sec Css End  */

/* Featured-Sec Start */

.featured-top {
  text-align: center;
  margin-bottom: 50px;
}

.featured-sec {
  padding: 6rem 0 8rem;
}

.featured-top .mainHead {
  margin-top: 1.25rem;
}

.featured-imag {
  position: relative;
  overflow: hidden;
}

.featured-imag h5 {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background-color: #313335;
  color: var(--white);
  padding: 1.0625rem 1.575rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.featured-content h4 {
  margin: 28px 0 15px;
  color: #313335;
  font-size: 13px;
  font-weight: 600;
  font-family: "DM Sans";
  letter-spacing: 0.8px;
  line-height: 1.4;
  text-transform: uppercase;
}

.featured-content h4 span {
  color: #909090;
  font-weight: 400;
  margin-left: 0.625rem;
  text-transform: capitalize;
}

.featured-content h3 {
  color: #313335;
  font-size: 28px;
  font-weight: 600;
  font-family: "DM Sans";
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.featured-content p {
  color: #656565;
  font-size: 1.0625rem;
  font-family: "DM Sans";
  line-height: 1.6;
  margin: 10px 0 15px;
  width: 92%;
}

.featured-content a {
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  font-family: "DM Sans";
  text-transform: uppercase;
  border-bottom: 1px solid #000000;
}

.featured-bottom {
  text-align: center;
  margin-top: 5rem;
}

.featured-bottom .themeBtn {
  padding: 19px 38px;
  color: #000000;
  font-weight: 600;
  font-family: "DM Sans";
  font-size: 15px;
}

/* Featured-Sec End */

/* Video-Sec Start */
.video-sec {
  background: url(../images/videobg.webp) center/cover fixed;
  height: 800px;
  display: flex;
  align-items: center;
  text-align: center;
}

.video-sec::before {
  position: absolute;
  content: "";
  background-color: rgb(11 35 64 / 30%);
  inset: 0;
}

.video-button i {
    height: 100px;
    width: 100px;
    border: 1px solid white;
    color: var(--white);
    font-size: 1.5rem;
    transition: 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.video-button i:hover {
  transform: scale(1.2);
}

/* Video-Sec End */

/* Footer Start */
footer {
  background: url(../images/footerBnn.webp) center/cover no-repeat;
  padding: 62px 0 31px;
}

.footer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid #898989;
  padding-bottom: 45px;
  margin-bottom: 65px;
}
a.footerlogo img {
  width: 250px;
  filter: brightness(0) invert(1);
}
.footer-top h2 {
  color: var(--white);
  font-weight: 600;
  font-family: "DM Sans";
  font-size: 2.8125rem;
  line-height: 1.4;
  width: 37%;
  letter-spacing: -1.8px;
}

footer h3 {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1875rem;
  letter-spacing: -0.6px;
  margin-bottom: 1.5rem;
}

.quicklist li a {
  color: #9d9c99;
  font-weight: 400;
  font-size: 0.8625rem;
  transition: 0.5s ease;
}

.quicklist li+li {
  margin: 11px 0 0;
}

.footerform .form-control {
  border: none;
  background-color: transparent;
  box-shadow: unset;
  outline: unset;
  border-bottom: 3px solid #9d9c99;
  border-radius: unset;
  padding-bottom: 21px;
  position: relative;
  padding-left: 29px;
  color: #9d9c99;
  font-size: 1rem;
  font-weight: 400;
  font-family: "DM Sans";
  letter-spacing: 1px;
}

.footerform .form-control::placeholder {
  color: #9d9c99;
  font-size: 1rem;
  font-weight: 400;
  font-family: "DM Sans";
  letter-spacing: 1px;
}

.footerform .envelop {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #9d9c99;
}

.footerform .arrow {
  position: absolute;
  top: 0;
  right: 1rem;
  color: var(--white);
}

.footerform label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0 0;
}

.footerform label span {
  color: #9d9c99;
  font-size: 0.875rem;
  font-weight: 400;
  display: block;
}

.footerform label span a {
  color: #9d9c99;
  font-weight: bold;
  border-bottom: 2px solid #9d9c99;
}

.copy-right {
  margin-top: 4.375rem;
  text-align: center;
  border-top: 1px solid #9d9c99;
  padding-top: 1.75rem;
}

.copy-right p {
  color: #9d9c99;
  font-size: 1rem;
  font-family: "DM Sans";
  line-height: 1.7;
}

.quicklist li a:hover {
  color: var(--white);
}

/* Footer End */
/* Testimonial Sec Css Start */

.testimonials {
  padding: 6rem 0 6rem 0;
}

.testi-wrp {
  text-align: center;
}

.testimonials .mySwiper1 {
  padding: 3rem 0;
  margin-top: 1rem;
}

.testimonials .mySwiper1 .swiper-slide {
  width: 8% !important;
}

.testimonials .mySwiper1 .swiper-wrapper {
  justify-content: center;
}

.testimonials .mySwiper1 .swiper-slide-thumb-active {
  transform: scale(1.3);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.testimonials .mySwiper1 .swiper-slide {
  cursor: pointer;
  text-align: center;
}

.testimonials .mySwiper1 .swiper-slide h3 {
  font-size: 1.5rem;
  text-align: center;
  opacity: 0;
  color: #1d3146;
  margin-top: 14px;
}

.testimonials .mySwiper1 .swiper-slide-thumb-active h3 {
  opacity: 1;
}

.testimonials .container {
  position: relative;
}

.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  top: 0;
  width: 3.75rem;
  height: 3.75rem;
  background: transparent;
  transition: 0.5s ease-in-out;
  border: 1px solid var(--black);
  color: #313335;
  z-index: 111;
  bottom: 0;
  margin: auto;
}

.testimonials .swiper-button-next:hover,
.testimonials .swiper-button-prev:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.testimonials .swiper-button-prev::after {
  content: "\f177";
  font-family: "Font Awesome 5 Pro";
  font-size: 1.625rem;
}

.testimonials .swiper-button-next::after {
  content: "\f178";
  font-family: "Font Awesome 5 Pro";
  font-size: 1.625rem;
}

.testimon-top {
  text-align: center;
  margin: 0 0 3rem 0;
}

.testi-wrp p {
  font-size: 1.5rem;
  color: #313335;
  line-height: 1.5;
  margin: 2.1875rem auto 1.75rem;
}

.testi-wrp h5 {
  font-size: 1.1875rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #313335;
}

.testi-wrp h5 span {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgb(144 144 144 / 80%);
  margin: 0.355rem 0 0;
}

.testimonials .swiper-button-next {
  right: 0;
}

/* Testimonial Sec Css End */

/* Faq Sec Css Start */
.faq-sec #accordion {
  border: 0;
  border-radius: 0;
}

.faqt-top .subHead {
  margin-bottom: 0.75rem;
}

.faq-sec #accordion .card {
  background: #fff;
  border: chartreuse;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.faq-sec #accordion .card .btn-link {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  background-color: transparent;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
  padding: 1rem 1.25rem;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

.faq-sec #accordion .card .btn-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-sec #accordion .card .btn-link i::before {
  content: "\f068";
}

.faq-sec #accordion .card .btn-link.collapsed i::before {
  content: "\f067";
  font-weight: 400;
}

.faq-sec #accordion .card .btn-link.collapsed {
  background-color: #fff;
  color: #000;
}

.faq-sec #accordion .card .btn-link[aria-expanded="true"] i {
  color: var(--black);
}

.faq-sec #accordion .card .card-body {
  padding: 0 1.75rem 1.875rem 1.75rem;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease;
  border-radius: 0;
}

.faq-sec #accordion .card .card-body p {
  margin: 0;
  color: #6d6e6c;
  line-height: 1.6;
  letter-spacing: -0.08px;
  width: 79%;
}

.faq-sec #accordion .card+.card {
  margin-top: 0.5rem;
}

.faq-sec #accordion .collapse {
  transition: height 0.4s ease;
  overflow: hidden;
}

.faq-sec .card h5 {
  margin: 0;
}

.faq-sec {
  background-color: #f5f5f5;
  padding: 6rem 0 6.95rem;
}

.faqt-top {
  text-align: center;
  margin: 0 0 3.125rem 0;
}

.faqt-top .mainHead {
  width: 50%;
  margin: 0 auto 0;
}

/* Faq Sec Css End  */

/* Hover Effect Css Start */

.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background-color: var(--primary);
  bottom: -4px;
  transition: 0.6s ease;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}

.themeBtn::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: var(--primary);
  z-index: -2;
}

.themeBtn::after {
  position: absolute;
  top: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 1rem #efefef inset, 0 0 0 2rem #cccc inset;
  left: 50%;
  transition: 1.9s ease;
  z-index: -1;
  content: "";
  background: var(--secondary);
  width: 100%;
}

.themeBtn:hover::after {
  top: -30%;
  left: 0%;
  transform: scale(3);
}

.main-content .themeBtn::after {
  background-color: var(--white);
}

.main-content .themeBtn:hover {
  color: var(--secondary);
}

.themeBtn:hover {
  color: var(--white);
  transform: scale(0.97);
}

.services-wrapp:hover .services-content {
  bottom: 5.125rem;
}

.featured-imag img {
  width: 100%;
  transition: 0.6s ease;
}

.featured-imag:hover img {
  transform: scale(1.2);
}

/* Hover Effect Css End  */


/* innerpages Start */

.innerBan {

  background: #0B2340;
}

.innerBan h2 {
  font-size: 80px;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 5rem;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content.abtcontent {
  padding: 0;
  margin-top: 4rem;
}


.about-content.visioncntnt {
  padding: 0;
}

section.about-sec.aboutpage .row+.row {
  margin-top: 4rem;
}

.about-sec.aboutpage {
  padding-bottom: 7rem;
}


.servwraps h3 {
  font-size: 40px;
  font-weight: 600;
  color: #0B2340;
  margin-bottom: 12px;
}

.servwraps p {
  font-size: 17px;
  font-weight: 400;
  color: #595959;
  line-height: 1.7;
}

.servwraps p+p {
  margin-top: 30px;
}

.servwraps .themeBtn {
  margin-top: 2rem;
}

.servwraps {
  background: #F6F6F6;
  padding: 49px 53px 42px 57px;
}

section.services-page .row+.row {
  margin-top: 90px;
}

section.services-page {
  padding: 8rem 0 11rem;
}




.get-form form input {
  width: 100%;
  height: 72px;
  border: 0;
  border-radius: 0;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  padding: 0 1rem;
  margin-bottom: 2rem;
  color: #000;
  box-shadow: unset;
  outline: unset;
  background: #F6F6F6;
}
.get-form form select {
  width: 100%;
  height: 72px;
  border: 0;
  border-radius: 0;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  padding: 0 1rem;
  margin-bottom: 2rem;
  color: #000;
  box-shadow: unset;
  outline: unset;
  background: #F6F6F6;
}

.get-form form input::placeholder {
  color: #555555;
  font-size: 1.125rem;
}

.get-form form textarea {
  width: 100%;
  height: 178px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  padding: 1rem 1rem;
  margin-bottom: 1.2rem;
  color: #000;
  outline: unset;
  background: #F6F6F6;
  box-shadow: unset;
  border: unset;
}

form.contact-form label {
  font-size: 1.125rem;
  font-weight: 500;
  color: #222222;
  text-transform: capitalize;
}

form.contact-form button.themeBtn {
  border: unset;
  color: #fff;
}




.contact-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8rem;
}

.contact-list li a .icon {
  width: 217px;
  height: 217px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 3rem;
  background: #CF912E;
  color: #fff;
  margin: auto;
}

.contact-list li a div h4 {
  font-size: 1rem;
  color: #0E2642;
  margin: 0;
  font-weight: 600;
  margin-top: 21px;
  text-align: center;
}

.contact-list li a div h4 span {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-top: 19px;
  color: #0E2642;
}


section.contactpage {
  padding-bottom: 8rem;
}
.footer-top div {
  flex: 1;
}

.footer-top p {
  color: var(--white);
  width: 70%;
  margin: 1.5rem 0 0;
}

/* Scroll to Top Button Styles */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.scroll-top-btn.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Arrow Icon */
.arrow-up {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-135deg);
  margin-top: 5px;
}