@define-mixin atSmall {
  @media (min-width: 576px) {
    @mixin-content; } }
@define-mixin atMedium {
  @media (min-width: 768px) {
    @mixin-content; } }
@define-mixin atLarge {
  @media (min-width: 992px) {
    @mixin-content; } }
@define-mixin atExtraLarge {
  @media (min-width: 1200px) {
    @mixin-content; } }
body {
  font-family: 'Roboto', sans-serif;
  background: #262533;
  color: #8f8f8f;
  font-size: 0.875rem;
  font-weight: 300; }

h1,
h2,
h3 {
  font-family: 'Oswald', sans-serif; }

p {
  margin-bottom: 20px; }

a:hover {
  text-decoration: none; }

ul {
  margin: 0;
  padding: 0;
  list-style-type: none; }

button {
  cursor: pointer; }

.btn:focus {
  outline: 0;
  box-shadow: none; }

.form-control:hover,
.form-control:focus {
  outline: 0;
  box-shadow: none; }

.owl-carousel .owl-item img {
  width: auto !important; }

.section-margin {
  margin-top: 60px;
  margin-bottom: 60px; }
  @media (min-width: 992px) {
    .section-margin {
      margin-top: 115px;
      margin-bottom: 115px; } }



/* NAVBAR BRAND Logo POSITION */
.navbar-brand {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
    background: transparent !important;
    padding: 0;
    margin: 0;
    box-shadow: none !important;
    position: sticky;
}

/* LOGO IMAGE */
.navbar-brand img {
    width: 120px;
    height: auto;
    object-fit: contain;
    image-rendering: crisp-edges; /* keeps logo sharp */
}

/* Larger screens */
@media (min-width: 1200px) {
    .navbar-brand img {
        width: 150px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .navbar-brand img {
        width: 110px;
    }
}

/* Mobile screens */
@media (max-width: 600px) {
    .navbar-brand {
        top: 6px;
        left: 6px;
    }
    .navbar-brand img {
        width: 95px;
    }
}
/* brand logo ends */

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

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

.section-intro__title {
  font-size: 0.75rem;
  color: #9A826C;
  margin-bottom: 1rem;
  text-transform: uppercase; }
  .section-intro__title.left-border {
    padding-left: 35px;
    position: relative; }
    .section-intro__title.left-border:after {
      content: "";
      display: block;
      min-width: 20px;
      height: 2px;
      background: #9A826C;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 0; }
.section-intro__subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 2.625rem;
  color: #fff;
  margin-bottom: 1.5rem; }
  .section-intro__subtitle.bottom-border {
    padding-bottom: 30px;
    margin-bottom: 50px;
    position: relative; }
    .section-intro__subtitle.bottom-border:after {
      content: "";
      display: block;
      height: 2px;
      min-width: 100px;
      position: absolute;
      bottom: 0;
      left: 0;
      background: #9A826C; }
  .section-intro__subtitle.small {
    font-size: 2rem; }

/* Home Banner Area css
============================================================================================ */
/* =============================
   OPEN STATE (FINAL + CLEAN)
============================= */

.open .side_menu,
.nav-open .side_menu {
  right: 0 !important;
}

.open .canvus_menu .toggle_icon span {
  background: transparent !important;
}

.open .canvus_menu .toggle_icon span:before {
  transform: rotate(45deg);
  top: 0px;
}

.open .canvus_menu .toggle_icon span:after {
  width: 30px;
  transform: rotate(-45deg);
  bottom: 0px;
}

/* =============================
   CANVUS MENU (TOGGLE WRAPPER)
============================= */

.canvus_menu {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 30000;
}

/* Tan Square Behind Toggle */
.canvus_menu .float-right {
  width: 100px;
  height: 100px;
  position: fixed;
  top: 0;
  right: 0;
  padding: 15px;
  background: #9A826C;
  z-index: 30001;
}

@media (max-width: 1200px) {
  .canvus_menu .float-right {
    width: 70px;
    height: 70px;
  }
}

/* =============================
   HAMBURGER ICON
============================= */

.canvus_menu .toggle_icon {
  cursor: pointer;
  position: fixed;
  top: 27px;
  right: 32px;
  width: 30px;
  height: 20px;
  padding: 20px;
  background: transparent;
  z-index: 30002 !important;
}

@media (max-width: 1200px) {
  .canvus_menu .toggle_icon {
    top: 13px;
    right: 20px;
  }
}

/* Hamburger bars */
.canvus_menu .toggle_icon span {
  height: 2px;
  width: 20px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 0;
  transition: 0.5s ease;
}

.canvus_menu .toggle_icon span:before,
.canvus_menu .toggle_icon span:after {
  content: "";
  height: 2px;
  background: #000;
  position: absolute;
  right: 0;
  transition: 0.5s ease;
}

.canvus_menu .toggle_icon span:before {
  width: 30px;
  top: -10px;
}

.canvus_menu .toggle_icon span:after {
  width: 25px;
  bottom: -10px;
}

/* =============================
   OFFCANVAS PANEL — FINAL VERSION
============================= */

.side_menu {
  position: fixed;
  top: 0;
  right: -29%;
  width: 29%;
  height: 100vh;
  background: #262533;
  padding: 40px 20px;
  z-index: 30000 !important;
  transition: right 0.35s ease;
  overflow-y: auto;
  opacity: 0.95;
}

@media (max-width: 575px) {
  .side_menu {
    max-width: 75%;
    right: -75%;
  }
}

/* =============================
   MENU CONTENT
============================= */

.side_menu .menu_right {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.side_menu .menu_right li {
  margin-bottom: 25px;
}

.side_menu .menu_right li a {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-transform: capitalize;
  transition: 0.3s ease;
}

.side_menu .menu_right li a:hover {
  color: #9A826C;
}


/* Home Banner Area css
============================================================================================ */
/* PROJECT PAGE HERO - FIXED HEIGHT & CENTERED TEXT */
.hero-banner {
  padding: 100px 0 50px 0; }
  @media (min-width: 992px) {
    .hero-banner {
      padding: 125px 0 100px 0; } }
  @media (min-width: 1200px) {
    .hero-banner {
      padding: 165px 0; } }
.hero-banner.project-bg {
    position: relative;
    height: 45vh;              /* reduce height */
    min-height: 330px;         /* stable on mobile */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;   /* centers everything */
    text-align: center;
    padding: 0 20px;
    background: url("../img/3D/Aerial View.jpg") left center no-repeat;
}

/* Dark gradient overlay for readability */
.hero-banner.project-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.45)
    );
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.hero-banner p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #eee;
}


.breadcrumb {
  padding: 0;
  background: transparent; }
  .breadcrumb span {
    cursor: initial !important; }
  .breadcrumb .btn {
    background: #9A826C;
    border-color: #9A826C;
    color: #000000; }
    .breadcrumb .btn.btn--rightBorder:after {
      background: #9A826C;
      right: -1.5rem; }
    .breadcrumb .btn:after {
      content: "|";
      margin: 0 5px 0 9px; }
    .breadcrumb .btn:last-child:after {
      content: ""; }
    .breadcrumb .btn:first-child {
      padding-right: 0; }
    .breadcrumb .btn:not(:first-child) {
      padding-left: 0; }

.btn {
  border: 2px solid #fff;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  padding: .5rem 1.6rem;
  position: relative;
  background: transparent; }
  .btn--rightBorder:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1.25rem;
    min-width: 1.25rem;
    height: 2px;
    background: #fff; }
  .btn--leftBorder:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -1.25rem;
    min-width: 1.25rem;
    height: 2px;
    background: #fff; }
  .btn:hover {
    background: #9A826C;
    border-color: #9A826C;
    color: #262533; }
    .btn:hover.btn--rightBorder:after {
      background: #9A826C; }
    .btn:hover.btn--leftBorder:before {
      background: #9A826C; }
  .btn.active {
    background: #9A826C;
    border-color: #9A826C;
    color: #262533; }
    .btn.active.btn--rightBorder:after {
      background: #9A826C; }
    .btn.active.btn--leftBorder:before {
      background: #9A826C; }
  .btn-dark {
    background: #262533;
    border-color: #262533;
    color: #9A826C;
    padding: .7rem 1.4rem; }
    .btn-dark.btn--rightBorder:after {
      background: #262533; }
    .btn-dark.btn--leftBorder:before {
      background: #262533; }
    .btn-dark:hover {
      background: #262533;
      color: #9A826C;
      border-color: #262533; }
      .btn-dark:hover.btn--rightBorder:after {
        background: #262533; }
      .btn-dark:hover.btn--rightBorder:before {
        background: #262533; }

.about__img {
  position: relative; }
  .about__img__date {
    display: inline-block;
    position: absolute;
    bottom: 11%;
    left: 13%;
    background: #9A826C;
    color: #ffffff;
    padding: .9rem 1.2rem 1rem 1.2rem;
    transition: all .4s; }
    .about__img__date h3 {
      font-size: 2rem;
      font-weight: 500;
      font-family: 'Oswald', sans-serif;
      margin-bottom: .2rem; }
    .about__img__date p {
      margin-bottom: 0;
      font-size: 0.75rem; }
    .about__img__date:hover {
      color: #000000;
      opacity: .96; }

.overview__single {
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.1);
  transition: all .4s; }
  .overview__single__icon {
    margin-right: 15px; }
    .overview__single__icon i,
    .overview__single__icon span {
      font-size: 2.625rem;
      color: #9A826C; }
  .overview__single .media-body h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    margin-bottom: .2rem; }
  .overview__single .media-body p {
    margin-bottom: 0; }
  .overview__single:hover {
    background: #9A826C;
    color: #262533; }
    .overview__single:hover h3 {
      color: #262533; }
    .overview__single:hover .overview__single__icon i,
    .overview__single:hover .overview__single__icon span {
      color: #262533; }

.tips-bg {
  background: #9A826C;
  padding: 90px 0; }
  .tips-bg .section-intro__subtitle {
    margin-bottom: 20px;
    color: #262533; }
  .tips-bg p {
    margin-bottom: 0;
    color: #262533; }
.tips .btn:hover {
  background: transparent;
  color: #262533; }

.form-subscribe .form-control {
  border-radius: 0;
  border: 0;
  font-size: 13px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff; }
  .form-subscribe .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5); }
.form-subscribe .btn-append {
  border: 0;
  padding: 0 .8rem;
  background: #9A826C; }
  .form-subscribe .btn-append i,
  .form-subscribe .btn-append span {
    font-size: 14px;
    color: #262533;
    font-weight: 800; }
.form-contact .form-group {
  margin-bottom: 10px; }
.form-contact .form-control {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  height: 40px;
  padding-left: 18px;
  font-size: 13px;
  color: #8f8f8f; }
.form-contact .different-control {
  min-height: 140px; }

.social-icons li {
  display: inline-block; }
  .social-icons li:not(:last-child) {
    margin-right: 20px; }
  .social-icons li a {
    display: block;
    color: #8f8f8f; }
    .social-icons li a:hover {
      color: #9A826C; }

.service__single {
  padding: 35px 27px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px; }
  .service__singleIcon {
    margin-right: 20px; }
    .service__singleIcon i,
    .service__singleIcon span {
      font-size: 24px;
      color: #9A826C; }
  .service__single h3 {
    font-size: 1.3125rem;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px; }
  .service__single p {
    margin-bottom: 0; }

.hero__slide {
  position: relative; }
  .hero__slide img {
    width: 100%;
    max-height: 500px; }
    @media (min-width: 1200px) {
      .hero__slide img {
        max-height: 900px; } }
  .hero__slideContent {
    position: absolute;
    width: 100%;
    bottom: 125px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 400px;
    padding: 50px 30px;
    z-index: 5; }
    @media (min-width: 1200px) {
      .hero__slideContent {
        margin-left: 340px; } }
    @media (max-width: 575px) {
      .hero__slideContent {
        bottom: 60px; } }
    .hero__slideContent:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      clip-path: polygon(58% 0, 65% 6%, 94% 6%, 94% 38%, 100% 43%, 100% 100%, 0 100%, 0 0);
      background: #262533;
      z-index: -1; }
    .hero__slideContent:before {
      content: "";
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: #262533;
      clip-path: polygon(58% 0, 65% 6%, 94% 6%, 94% 38%, 100% 43%, 100% 0);
      left: -35px;
      bottom: -28px;
      transform: rotate(180deg);
      z-index: 1; }
    .hero__slideContent--right {
      content: "";
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: #9A826C;
      clip-path: polygon(58% 0, 65% 6%, 94% 6%, 94% 38%, 100% 43%, 100% 0);
      left: 10px;
      top: -10px;
      z-index: 1; }
    .hero__slideContent h1 {
      font-size: 2rem;
      color: #fff;
      font-weight: 300;
      margin-bottom: 20px; }
    .hero__slideContent p {
      margin-bottom: 35px; }

.heroCarousel {
  position: relative; }

.heroCarousel .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%); }

.testimonial__slide blockquote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 25px; }
.testimonial__slide h3 {
  font-size: 1.3125rem;
  font-weight: 300;
  color: #fff; }
.testimonial__slide p {
  color: #777777; }

.owl-dots button:focus {
  outline: 0;
  box-shadow: none; }

.testimonialCarousel .owl-nav.disabled + .owl-dots {
  margin-top: 85px; }

.owl-theme .owl-dots .owl-dot span {
  margin: 0;
  min-width: 50px;
  height: 2px;
  border-radius: 0;
  outline: 2px solid transparent;
  background: #34343c;
  transition: 0.3s; }

.owl-theme .owl-dots .owl-dot.active span {
  height: 4px;
  background: #9A826C;
  border-radius: 3px;
  box-shadow: 0px 1px 0px #9A826C; }

.testimonialCarousel .owl-dots .owl-dot span {
  box-shadow: inset 0px 3px 0px 0px #262533; }

.contact-info__icon {
  margin-right: 20px; }
  .contact-info__icon i,
  .contact-info__icon span {
    font-size: 20px;
    color: #9A826C; }
.contact-info h3 {
  font-size: 1rem;
  font-weight: 300;
  color: #fff; }
  .contact-info h3 a {
    color: #fff; }

/* =================================== */
/*  Blog Styles
/* =================================== */
/*============ Start Blog Home Styles  =============*/
.blog-home-banner {
  background: url(../img/blog/blog-home-banner.jpg) bottom;
  background-size: cover;
  padding: 130px 0px; }
  .blog-home-banner h1 span {
    color: #9A826C; }
  .blog-home-banner .primary-btn {
    color: #fff;
    background: #9A826C; }
    .blog-home-banner .primary-btn:hover {
      color: #9A826C;
      background: #fff; }
  .blog-home-banner .overlay-bg {
    background: rgba(0, 0, 0, 0.3); }

.blog-header-content h1 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 414px) {
    .blog-header-content h1 {
      font-size: 30px; } }
.blog-header-content p {
  margin: 20px 0px; }

.post-content-area {
  padding-top: 80px; }
  .post-content-area .single-post {
    margin-bottom: 50px; }
    .post-content-area .single-post .meta-details {
      text-align: right;
      margin-top: 35px; }
      @media (max-width: 767px) {
        .post-content-area .single-post .meta-details {
          text-align: left; } }
      .post-content-area .single-post .meta-details .tags {
        margin-bottom: 30px; }
        .post-content-area .single-post .meta-details .tags li {
          display: inline-block;
          font-size: 14px; }
          .post-content-area .single-post .meta-details .tags li a {
            color: #fff;
            transition: all 0.3s ease 0s;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            -ms-transition: all 0.3s ease 0s; }
            .post-content-area .single-post .meta-details .tags li a:hover {
              color: #9A826C; }
      @media (max-width: 1024px) {
        .post-content-area .single-post .meta-details {
          margin-top: 0px; } }
    .post-content-area .single-post .user-name a,
    .post-content-area .single-post .date a,
    .post-content-area .single-post .view a,
    .post-content-area .single-post .comments a {
      color: #8f8f8f;
      margin-right: 10px;
      transition: all 0.3s ease 0s;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      -ms-transition: all 0.3s ease 0s; }
      .post-content-area .single-post .user-name a:hover,
      .post-content-area .single-post .date a:hover,
      .post-content-area .single-post .view a:hover,
      .post-content-area .single-post .comments a:hover {
        color: #9A826C; }
    .post-content-area .single-post .user-name .lnr,
    .post-content-area .single-post .date .lnr,
    .post-content-area .single-post .view .lnr,
    .post-content-area .single-post .comments .lnr {
      font-weight: 900;
      color: #9A826C; }
    .post-content-area .single-post .feature-img img {
      width: 100%; }
    .post-content-area .single-post .posts-title h3 {
      margin: 20px 0px;
      color: #fff;
      font-family: 'Oswald', sans-serif; }
    .post-content-area .single-post .excert {
      margin-bottom: 20px; }
    .post-content-area .single-post .primary-btn {
      background: transparent !important;
      color: #fff !important;
      transition: all 0.3s ease 0s;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      -ms-transition: all 0.3s ease 0s;
      border-radius: 0px !important;
      box-shadow: none !important;
      padding: 7px 32px;
      border: 1px solid #fff; }
      .post-content-area .single-post .primary-btn:hover {
        background: #9A826C !important;
        color: #000000 !important;
        border: 1px solid #9A826C; }

.posts-list .posts-title h3 {
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s; }
  .posts-list .posts-title h3:hover {
    color: #9A826C; }

.blog-pagination {
  padding-top: 60px;
  padding-bottom: 120px; }
  .blog-pagination .page-link {
    border-radius: 0; }
  .blog-pagination .page-item {
    border: none; }

.page-link {
  background: transparent;
  font-weight: 400; }

.blog-pagination .page-item.active .page-link {
  background-color: #9A826C;
  border-color: transparent;
  color: #fff; }

.blog-pagination .page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #8f8f8f;
  border: none; }

.blog-pagination .page-link .lnr {
  font-weight: 600; }

.blog-pagination .page-item:last-child .page-link,
.blog-pagination .page-item:first-child .page-link {
  border-radius: 0; }

.blog-pagination .page-link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #9A826C;
  border-color: #eee; }

.sidebar-widgets {
  padding-bottom: 120px; }

.widget-wrap {
  background: #3c3b48;
  padding: 20px 0px; }
  @media (max-width: 991px) {
    .widget-wrap {
      margin-top: 50px; } }
  .widget-wrap .single-sidebar-widget {
    margin: 30px 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #504f5b; }
    .widget-wrap .single-sidebar-widget:last-child {
      border-bottom: none;
      margin-bottom: 0px; }
  .widget-wrap .search-widget form.search-form input[type=text] {
    color: #fff;
    padding: 10px 22px;
    font-size: 14px;
    border: none;
    float: left;
    width: 80%;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    background: #504f5b; }
  .widget-wrap .search-widget ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff; }
  .widget-wrap .search-widget ::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff; }
  .widget-wrap .search-widget :-ms-input-placeholder {
    /* IE 10+ */
    color: #fff; }
  .widget-wrap .search-widget :-moz-placeholder {
    /* Firefox 18- */
    color: #fff; }
  .widget-wrap .search-widget form.search-form button {
    float: left;
    width: 20%;
    padding: 8px;
    background: #504f5b;
    color: #fff;
    font-size: 17px;
    border: none;
    cursor: pointer;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px; }
  .widget-wrap .search-widget form.search-form::after {
    content: "";
    clear: both;
    display: table; }
  .widget-wrap .user-info-widget {
    text-align: center; }
    .widget-wrap .user-info-widget a h4 {
      margin-top: 40px;
      margin-bottom: 5px;
      color: #fff;
      transition: all 0.3s ease 0s;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      -ms-transition: all 0.3s ease 0s; }
    .widget-wrap .user-info-widget .social-links li {
      display: inline-block;
      margin-bottom: 10px; }
      .widget-wrap .user-info-widget .social-links li a {
        color: #fff;
        padding: 10px;
        font-size: 14px;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s; }
        .widget-wrap .user-info-widget .social-links li a:hover {
          color: #9A826C; }
  .widget-wrap .popular-post-widget .popular-title {
    background: #9A826C;
    color: #262533;
    text-align: center;
    padding: 6px 0px;
    font-family: 'Oswald', sans-serif; }
  .widget-wrap .popular-post-widget .popular-post-list {
    margin-top: 30px; }
    .widget-wrap .popular-post-widget .popular-post-list .thumb img {
      width: 100%; }
  .widget-wrap .popular-post-widget .single-post-list {
    margin-bottom: 20px; }
    .widget-wrap .popular-post-widget .single-post-list .details {
      margin-left: 12px; }
      .widget-wrap .popular-post-widget .single-post-list .details h6 {
        font-weight: 600;
        margin-bottom: 10px;
        color: #fff;
        font-family: 'Oswald', sans-serif;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s; }
        .widget-wrap .popular-post-widget .single-post-list .details h6:hover {
          color: #9A826C; }
      .widget-wrap .popular-post-widget .single-post-list .details p {
        margin-bottom: 0px; }
  .widget-wrap .ads-widget img {
    width: 100%; }
  .widget-wrap .post-category-widget .category-title {
    background: #9A826C;
    color: #262533;
    text-align: center;
    padding: 6px 0px;
    font-family: 'Oswald', sans-serif; }
  .widget-wrap .post-category-widget .cat-list li {
    padding-top: 15px;
    padding-bottom: 8px;
    border-bottom: 2px dotted #eee;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s; }
    .widget-wrap .post-category-widget .cat-list li p {
      font-weight: 300;
      font-size: 14px;
      margin-bottom: 0px;
      transition: all 0.3s ease 0s;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      -ms-transition: all 0.3s ease 0s; }
    .widget-wrap .post-category-widget .cat-list li a {
      color: #8f8f8f; }
    .widget-wrap .post-category-widget .cat-list li:hover {
      border-color: #9A826C; }
      .widget-wrap .post-category-widget .cat-list li:hover p {
        color: #9A826C; }
  .widget-wrap .newsletter-widget .newsletter-title {
    background: #9A826C;
    color: #262533;
    text-align: center;
    padding: 6px 0px;
    font-family: 'Oswald', sans-serif; }
  .widget-wrap .newsletter-widget .col-autos {
    width: 100%; }
  .widget-wrap .newsletter-widget p {
    text-align: center;
    margin: 20px 0px; }
  .widget-wrap .newsletter-widget .bbtns {
    background: #9A826C;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 0; }
  .widget-wrap .newsletter-widget .input-group-text {
    background: #fff;
    border-radius: 0px;
    vertical-align: top; }
    .widget-wrap .newsletter-widget .input-group-text i {
      color: #ccc;
      margin-top: -1px; }
  .widget-wrap .newsletter-widget .form-control {
    border-left: none !important;
    border-right: none !important;
    border-radius: 0px;
    font-size: 13px;
    color: #ccc;
    padding: 9px;
    padding-left: 0px; }
    .widget-wrap .newsletter-widget .form-control:focus {
      box-shadow: none;
      border-color: #ccc; }
  .widget-wrap .newsletter-widget ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 13px;
    color: #ccc; }
  .widget-wrap .newsletter-widget ::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 13px;
    color: #ccc; }
  .widget-wrap .newsletter-widget :-ms-input-placeholder {
    /* IE 10+ */
    font-size: 13px;
    color: #ccc; }
  .widget-wrap .newsletter-widget :-moz-placeholder {
    /* Firefox 18- */
    font-size: 13px;
    color: #ccc; }
  .widget-wrap .newsletter-widget .text-bottom {
    margin-bottom: 0px; }
  .widget-wrap .tag-cloud-widget .tagcloud-title {
    background: #9A826C;
    color: #262533;
    text-align: center;
    padding: 6px 0px;
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif; }
  .widget-wrap .tag-cloud-widget ul li {
    display: inline-block;
    background: #fff;
    padding: 4px 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s; }
    .widget-wrap .tag-cloud-widget ul li:hover {
      background: #9A826C; }
    .widget-wrap .tag-cloud-widget ul li a {
      font-size: 12px;
      color: #000000; }

/*============ End Blog Home Styles  =============*/
/*============ Start Blog Single Styles  =============*/
.single-post-area {
  padding-top: 80px;
  padding-bottom: 80px; }
  .single-post-area .meta-details {
    margin-top: 20px !important; }
  .single-post-area .social-links li {
    display: inline-block;
    margin-bottom: 10px; }
    .single-post-area .social-links li a {
      color: #fff;
      padding: 7px;
      font-size: 14px;
      transition: all 0.3s ease 0s;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      -ms-transition: all 0.3s ease 0s; }
      .single-post-area .social-links li a:hover {
        color: #9A826C; }
  .single-post-area .quotes {
    margin-top: 20px;
    padding: 30px;
    background-color: #3c3b48;
    box-shadow: -20.84px 21.58px 30px 0px rgba(68, 68, 68, 0.1); }
  .single-post-area .arrow {
    position: absolute; }
    .single-post-area .arrow .lnr {
      font-size: 20px;
      font-weight: 600; }
  .single-post-area .thumb .overlay-bg {
    background: rgba(0, 0, 0, 0.8); }
  .single-post-area .navigation-area {
    border-top: 1px solid #eee;
    padding-top: 30px; }
    .single-post-area .navigation-area .nav-left {
      text-align: left; }
      .single-post-area .navigation-area .nav-left .thumb {
        margin-right: 20px;
        background: #000; }
        .single-post-area .navigation-area .nav-left .thumb img {
          transition: all 0.3s ease 0s;
          -webkit-transition: all 0.3s ease 0s;
          -moz-transition: all 0.3s ease 0s;
          -o-transition: all 0.3s ease 0s;
          -ms-transition: all 0.3s ease 0s; }
      .single-post-area .navigation-area .nav-left .lnr {
        margin-left: 20px;
        opacity: 0;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s; }
      .single-post-area .navigation-area .nav-left:hover .lnr {
        opacity: 1; }
      .single-post-area .navigation-area .nav-left:hover .thumb img {
        opacity: .5; }
      @media (max-width: 767px) {
        .single-post-area .navigation-area .nav-left {
          margin-bottom: 30px; } }
    .single-post-area .navigation-area .nav-right {
      text-align: right; }
      .single-post-area .navigation-area .nav-right .thumb {
        margin-left: 20px;
        background: #000; }
        .single-post-area .navigation-area .nav-right .thumb img {
          transition: all 0.3s ease 0s;
          -webkit-transition: all 0.3s ease 0s;
          -moz-transition: all 0.3s ease 0s;
          -o-transition: all 0.3s ease 0s;
          -ms-transition: all 0.3s ease 0s; }
      .single-post-area .navigation-area .nav-right .lnr {
        margin-right: 20px;
        opacity: 0;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s; }
      .single-post-area .navigation-area .nav-right:hover .lnr {
        opacity: 1; }
      .single-post-area .navigation-area .nav-right:hover .thumb img {
        opacity: .5; }
  @media (max-width: 991px) {
    .single-post-area .sidebar-widgets {
      padding-bottom: 0px; } }

.comments-area {
  background: #3c3b48;
  padding: 50px 20px;
  margin-top: 50px; }
  @media (max-width: 414px) {
    .comments-area {
      padding: 50px 8px; } }
  .comments-area h4 {
    text-align: center;
    margin-bottom: 50px; }
  .comments-area a {
    color: #fff; }
  .comments-area .comment-list {
    padding-bottom: 30px; }
    .comments-area .comment-list:last-child {
      padding-bottom: 0px; }
    .comments-area .comment-list.left-padding {
      padding-left: 25px; }
    @media (max-width: 413px) {
      .comments-area .comment-list .single-comment h5 {
        font-size: 12px; }
      .comments-area .comment-list .single-comment .date {
        font-size: 11px; }
      .comments-area .comment-list .single-comment .comment {
        font-size: 10px; } }
  .comments-area .thumb {
    margin-right: 20px; }
  .comments-area .date {
    font-size: 13px;
    color: #cccccc; }
  .comments-area .comment {
    color: #777777; }
  .comments-area .btn-reply {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 30px;
    display: block;
    font-weight: 600;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s; }
    .comments-area .btn-reply:hover {
      background-color: #9A826C;
      color: #000000;
      border: 1px solid #9A826C; }

.comment-form {
  background: #3c3b48;
  text-align: center;
  padding: 50px 20px;
  margin-top: 50px; }
  .comment-form h4 {
    text-align: center;
    margin-bottom: 50px; }
  .comment-form .name {
    padding-left: 0px; }
    @media (max-width: 991px) {
      .comment-form .name {
        padding-right: 0px; } }
  .comment-form .email {
    padding-right: 0px; }
    @media (max-width: 991px) {
      .comment-form .email {
        padding-left: 0px; } }
  .comment-form .form-control {
    padding: 12px;
    background: #504f5b;
    border: 1px solid #504f5b;
    border-radius: 0px;
    width: 100%;
    font-size: 13px;
    color: #777777; }
    .comment-form .form-control:focus {
      box-shadow: none;
      border: 1px solid #fff; }
  .comment-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 13px;
    color: #777; }
  .comment-form ::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 13px;
    color: #777; }
  .comment-form :-ms-input-placeholder {
    /* IE 10+ */
    font-size: 13px;
    color: #777; }
  .comment-form :-moz-placeholder {
    /* Firefox 18- */
    font-size: 13px;
    color: #777; }
  .comment-form .primary-btn {
    display: inline-block;
    margin-top: 20px;
    color: #000000;
    background: #9A826C;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s; }
    .comment-form .primary-btn:hover {
      background: #fff; }

/*============ End Blog Single Styles  =============*/
/* =================================== */
/*  Elements Page Styles
/* =================================== */
/*---------- Start Elements Page -------------*/
.whole-wrap {
  background-color: #f9f9ff; }

.generic-banner {
  margin-top: 60px;
  background-color: #9A826C;
  text-align: center; }
  .generic-banner .height {
    height: 600px; }
    @media (max-width: 575px) {
      .generic-banner .height {
        height: 400px; } }
  .generic-banner .generic-banner-content h2 {
    line-height: 1.2em;
    margin-bottom: 20px; }
    @media (max-width: 991px) {
      .generic-banner .generic-banner-content h2 br {
        display: none; } }
  .generic-banner .generic-banner-content p {
    text-align: center;
    font-size: 16px; }
    @media (max-width: 991px) {
      .generic-banner .generic-banner-content p br {
        display: none; } }

.generic-content h1 {
  font-weight: 600; }

.about-generic-area {
  background: #fff; }
  .about-generic-area p {
    margin-bottom: 20px; }

.white-bg {
  background: #fff; }

.section-top-border {
  padding: 50px 0;
  border-top: 1px dotted #eee; }

.switch-wrap {
  margin-bottom: 10px; }
  .switch-wrap p {
    margin: 0; }

/*---------- End Elements Page -------------*/
.sample-text-area {
  background: #f9f9ff;
  padding: 100px 0 70px 0; }

.sample-text {
  margin-bottom: 0; }

.text-heading {
  margin-bottom: 30px;
  font-size: 24px; }

.typo-list {
  margin-bottom: 10px; }

@media (max-width: 767px) {
  .typo-sec {
    margin-bottom: 30px; } }

@media (max-width: 767px) {
  .element-wrap {
    margin-top: 30px; } }

b,
sup,
sub,
u,
del {
  color: #9A826C; }

h1 {
  font-size: 36px; }

h2 {
  font-size: 30px; }

h3 {
  font-size: 24px; }

h4 {
  font-size: 18px; }

h5 {
  font-size: 16px; }

h6 {
  font-size: 14px; }

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5em; }

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
  color: #8f8f8f; }

.button-area {
  background: #f9f9ff; }
  .button-area .border-top-generic {
    padding: 70px 15px;
    border-top: 1px dotted #eee; }

.button-group-area .genric-btn {
  margin-right: 10px;
  margin-top: 10px; }
  .button-group-area .genric-btn:last-child {
    margin-right: 0; }

.genric-btn {
  display: inline-block;
  outline: none;
  line-height: 40px;
  padding: 0 30px;
  font-size: .8em;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s; }
  .genric-btn:focus {
    outline: none; }
  .genric-btn.e-large {
    padding: 0 40px;
    line-height: 50px; }
  .genric-btn.large {
    line-height: 45px; }
  .genric-btn.medium {
    line-height: 30px; }
  .genric-btn.small {
    line-height: 25px; }
  .genric-btn.radius {
    border-radius: 3px; }
  .genric-btn.circle {
    border-radius: 20px; }
  .genric-btn.arrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .genric-btn.arrow span {
      margin-left: 10px; }
  .genric-btn.default {
    color: #fff;
    background: #f9f9ff;
    border: 1px solid transparent; }
    .genric-btn.default:hover {
      border: 1px solid #f9f9ff;
      background: #fff; }
  .genric-btn.default-border {
    border: 1px solid #f9f9ff;
    background: #fff; }
    .genric-btn.default-border:hover {
      color: #fff;
      background: #f9f9ff;
      border: 1px solid transparent; }
  .genric-btn.primary {
    color: #fff;
    background: #9A826C;
    border: 1px solid transparent; }
    .genric-btn.primary:hover {
      color: #9A826C;
      border: 1px solid #9A826C;
      background: #fff; }
  .genric-btn.primary-border {
    color: #9A826C;
    border: 1px solid #9A826C;
    background: #fff; }
    .genric-btn.primary-border:hover {
      color: #fff;
      background: #9A826C;
      border: 1px solid transparent; }
  .genric-btn.success {
    color: #fff;
    background: #4cd3e3;
    border: 1px solid transparent; }
    .genric-btn.success:hover {
      color: #4cd3e3;
      border: 1px solid #4cd3e3;
      background: #fff; }
  .genric-btn.success-border {
    color: #4cd3e3;
    border: 1px solid #4cd3e3;
    background: #fff; }
    .genric-btn.success-border:hover {
      color: #fff;
      background: #4cd3e3;
      border: 1px solid transparent; }
  .genric-btn.info {
    color: #fff;
    background: #38a4ff;
    border: 1px solid transparent; }
    .genric-btn.info:hover {
      color: #38a4ff;
      border: 1px solid #38a4ff;
      background: #fff; }
  .genric-btn.info-border {
    color: #38a4ff;
    border: 1px solid #38a4ff;
    background: #fff; }
    .genric-btn.info-border:hover {
      color: #fff;
      background: #38a4ff;
      border: 1px solid transparent; }
  .genric-btn.warning {
    color: #fff;
    background: #f4e700;
    border: 1px solid transparent; }
    .genric-btn.warning:hover {
      color: #f4e700;
      border: 1px solid #f4e700;
      background: #fff; }
  .genric-btn.warning-border {
    color: #f4e700;
    border: 1px solid #f4e700;
    background: #fff; }
    .genric-btn.warning-border:hover {
      color: #fff;
      background: #f4e700;
      border: 1px solid transparent; }
  .genric-btn.danger {
    color: #fff;
    background: #f44a40;
    border: 1px solid transparent; }
    .genric-btn.danger:hover {
      color: #f44a40;
      border: 1px solid #f44a40;
      background: #fff; }
  .genric-btn.danger-border {
    color: #f44a40;
    border: 1px solid #f44a40;
    background: #fff; }
    .genric-btn.danger-border:hover {
      color: #fff;
      background: #f44a40;
      border: 1px solid transparent; }
  .genric-btn.link {
    color: #fff;
    background: #f9f9ff;
    text-decoration: underline;
    border: 1px solid transparent; }
    .genric-btn.link:hover {
      color: #fff;
      border: 1px solid #f9f9ff;
      background: #fff; }
  .genric-btn.link-border {
    color: #fff;
    border: 1px solid #f9f9ff;
    background: #fff;
    text-decoration: underline; }
    .genric-btn.link-border:hover {
      color: #fff;
      background: #f9f9ff;
      border: 1px solid transparent; }
  .genric-btn.disable {
    color: #222222, 0.3;
    background: #f9f9ff;
    border: 1px solid transparent;
    cursor: not-allowed; }

.generic-blockquote {
  padding: 30px 50px 30px 30px;
  background: #fff;
  border-left: 2px solid #9A826C; }

@media (max-width: 991px) {
  .progress-table-wrap {
    overflow-x: scroll; } }

.progress-table {
  background: #fff;
  padding: 15px 0px 30px 0px;
  min-width: 800px; }
  .progress-table .serial {
    width: 11.83%;
    padding-left: 30px; }
  .progress-table .country {
    width: 28.07%; }
  .progress-table .visit {
    width: 19.74%; }
  .progress-table .percentage {
    width: 40.36%;
    padding-right: 50px; }
  .progress-table .table-head {
    display: flex; }
    .progress-table .table-head .serial,
    .progress-table .table-head .country,
    .progress-table .table-head .visit,
    .progress-table .table-head .percentage {
      color: #fff;
      line-height: 40px;
      text-transform: uppercase;
      font-weight: 500; }
  .progress-table .table-row {
    padding: 15px 0;
    border-top: 1px solid #edf3fd;
    display: flex; }
    .progress-table .table-row .serial,
    .progress-table .table-row .country,
    .progress-table .table-row .visit,
    .progress-table .table-row .percentage {
      display: flex;
      align-items: center; }
    .progress-table .table-row .country img {
      margin-right: 15px; }
    .progress-table .table-row .percentage .progress {
      width: 80%;
      border-radius: 0px;
      background: transparent; }
      .progress-table .table-row .percentage .progress .progress-bar {
        height: 5px;
        line-height: 5px; }
        .progress-table .table-row .percentage .progress .progress-bar.color-1 {
          background-color: #6382e6; }
        .progress-table .table-row .percentage .progress .progress-bar.color-2 {
          background-color: #e66686; }
        .progress-table .table-row .percentage .progress .progress-bar.color-3 {
          background-color: #f09359; }
        .progress-table .table-row .percentage .progress .progress-bar.color-4 {
          background-color: #73fbaf; }
        .progress-table .table-row .percentage .progress .progress-bar.color-5 {
          background-color: #73fbaf; }
        .progress-table .table-row .percentage .progress .progress-bar.color-6 {
          background-color: #6382e6; }
        .progress-table .table-row .percentage .progress .progress-bar.color-7 {
          background-color: #a367e7; }
        .progress-table .table-row .percentage .progress .progress-bar.color-8 {
          background-color: #e66686; }

.single-gallery-image {
  margin-top: 30px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  height: 200px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s; }
  .single-gallery-image:hover {
    opacity: .8; }

.list-style {
  width: 14px;
  height: 14px; }

.unordered-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.82em !important; }
  .unordered-list li:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid #9A826C;
    background: #fff;
    top: 4px;
    left: 0;
    border-radius: 50%; }

.ordered-list {
  margin-left: 30px; }
  .ordered-list li {
    list-style-type: decimal-leading-zero;
    color: #9A826C;
    font-weight: 500;
    line-height: 1.82em !important; }
    .ordered-list li span {
      font-weight: 300;
      color: #8f8f8f; }

.ordered-list-alpha li {
  margin-left: 30px;
  list-style-type: lower-alpha;
  color: #9A826C;
  font-weight: 500;
  line-height: 1.82em !important; }
  .ordered-list-alpha li span {
    font-weight: 300;
    color: #8f8f8f; }

.ordered-list-roman li {
  margin-left: 30px;
  list-style-type: lower-roman;
  color: #9A826C;
  font-weight: 500;
  line-height: 1.82em !important; }
  .ordered-list-roman li span {
    font-weight: 300;
    color: #8f8f8f; }

.single-input {
  display: block;
  width: 100%;
  line-height: 40px;
  border: none;
  outline: none;
  background: #fff;
  padding: 0 20px; }
  .single-input:focus {
    outline: none; }

.input-group-icon {
  position: relative; }
  .input-group-icon .icon {
    position: absolute;
    left: 20px;
    top: 0;
    line-height: 40px;
    z-index: 3; }
    .input-group-icon .icon i {
      color: #797979; }
  .input-group-icon .single-input {
    padding-left: 45px; }

.single-textarea {
  display: block;
  width: 100%;
  line-height: 40px;
  border: none;
  outline: none;
  background: #fff;
  padding: 0 20px;
  height: 100px;
  resize: none; }
  .single-textarea:focus {
    outline: none; }

.single-input-primary {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #fff;
  padding: 0 20px; }
  .single-input-primary:focus {
    outline: none;
    border: 1px solid #9A826C; }

.single-input-accent {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #fff;
  padding: 0 20px; }
  .single-input-accent:focus {
    outline: none;
    border: 1px solid #eb6b55; }

.single-input-secondary {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #fff;
  padding: 0 20px; }
  .single-input-secondary:focus {
    outline: none;
    border: 1px solid #f09359; }

.default-switch {
  width: 35px;
  height: 17px;
  border-radius: 8.5px;
  background: #fff;
  position: relative;
  cursor: pointer; }
  .default-switch input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer; }
    .default-switch input + label {
      position: absolute;
      top: 1px;
      left: 1px;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: #9A826C;
      transition: all 0.2s;
      -webkit-transition: all 0.2s;
      -moz-transition: all 0.2s;
      -o-transition: all 0.2s;
      -ms-transition: all 0.2s;
      box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
      cursor: pointer; }
    .default-switch input:checked + label {
      left: 19px; }

.single-element-widget {
  margin-bottom: 30px; }

.primary-switch {
  width: 35px;
  height: 17px;
  border-radius: 8.5px;
  background: #fff;
  position: relative;
  cursor: pointer; }
  .primary-switch input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }
    .primary-switch input + label {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%; }
      .primary-switch input + label:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        border-radius: 8.5px;
        cursor: pointer;
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -o-transition: all 0.2s;
        -ms-transition: all 0.2s; }
      .primary-switch input + label:after {
        content: "";
        position: absolute;
        top: 1px;
        left: 1px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #fff;
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -o-transition: all 0.2s;
        -ms-transition: all 0.2s;
        box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
        cursor: pointer; }
    .primary-switch input:checked + label:after {
      left: 19px; }
    .primary-switch input:checked + label:before {
      background: #9A826C; }

.confirm-switch {
  width: 35px;
  height: 17px;
  border-radius: 8.5px;
  background: #fff;
  position: relative;
  cursor: pointer; }
  .confirm-switch input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }
    .confirm-switch input + label {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%; }
      .confirm-switch input + label:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        border-radius: 8.5px;
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -o-transition: all 0.2s;
        -ms-transition: all 0.2s;
        cursor: pointer; }
      .confirm-switch input + label:after {
        content: "";
        position: absolute;
        top: 1px;
        left: 1px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #fff;
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -o-transition: all 0.2s;
        -ms-transition: all 0.2s;
        box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
        cursor: pointer; }
    .confirm-switch input:checked + label:after {
      left: 19px; }
    .confirm-switch input:checked + label:before {
      background: #4cd3e3; }

.primary-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  cursor: pointer; }
  .primary-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }
    .primary-checkbox input + label {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      border-radius: 3px;
      cursor: pointer;
      border: 1px solid #f1f1f1; }
    .primary-checkbox input:checked + label {
      background: url(../img/elements/primary-check.png) no-repeat center center/cover;
      border: none; }

.confirm-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  cursor: pointer; }
  .confirm-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }
    .confirm-checkbox input + label {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      border-radius: 3px;
      cursor: pointer;
      border: 1px solid #f1f1f1; }
    .confirm-checkbox input:checked + label {
      background: url(../img/elements/success-check.png) no-repeat center center/cover;
      border: none; }

.disabled-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  cursor: pointer; }
  .disabled-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }
    .disabled-checkbox input + label {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      border-radius: 3px;
      cursor: pointer;
      border: 1px solid #f1f1f1; }
    .disabled-checkbox input:disabled {
      cursor: not-allowed;
      z-index: 3; }
    .disabled-checkbox input:checked + label {
      background: url(../img/elements/disabled-check.png) no-repeat center center/cover;
      border: none; }

.primary-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  position: relative;
  cursor: pointer; }
  .primary-radio input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }
    .primary-radio input + label {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      border-radius: 8px;
      cursor: pointer;
      border: 1px solid #f1f1f1; }
    .primary-radio input:checked + label {
      background: url(../img/elements/primary-radio.png) no-repeat center center/cover;
      border: none; }

.confirm-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  position: relative;
  cursor: pointer; }
  .confirm-radio input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }
    .confirm-radio input + label {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      border-radius: 8px;
      cursor: pointer;
      border: 1px solid #f1f1f1; }
    .confirm-radio input:checked + label {
      background: url(../img/elements/success-radio.png) no-repeat center center/cover;
      border: none; }

.disabled-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  position: relative;
  cursor: pointer; }
  .disabled-radio input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }
    .disabled-radio input + label {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      border-radius: 8px;
      cursor: pointer;
      border: 1px solid #f1f1f1; }
    .disabled-radio input:disabled {
      cursor: not-allowed;
      z-index: 3; }
    .disabled-radio input:checked + label {
      background: url(../img/elements/disabled-radio.png) no-repeat center center/cover;
      border: none; }

.default-select {
  height: 40px; }
  .default-select .nice-select {
    border: none;
    border-radius: 0px;
    height: 40px;
    background: #fff;
    padding-left: 20px;
    padding-right: 40px; }
    .default-select .nice-select .list {
      margin-top: 0;
      border: none;
      border-radius: 0px;
      box-shadow: none;
      width: 100%;
      padding: 10px 0 10px 0px; }
      .default-select .nice-select .list .option {
        font-weight: 300;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        line-height: 28px;
        min-height: 28px;
        font-size: 12px;
        padding-left: 20px; }
        .default-select .nice-select .list .option.selected {
          color: #9A826C;
          background: transparent; }
        .default-select .nice-select .list .option:hover {
          color: #9A826C;
          background: transparent; }
  .default-select .current {
    margin-right: 50px;
    font-weight: 300; }
  .default-select .nice-select::after {
    right: 20px; }

@media (max-width: 991px) {
  .left-align-p p {
    margin-top: 20px; } }

.form-select {
  height: 40px;
  width: 100%; }
  .form-select .nice-select {
    border: none;
    border-radius: 0px;
    height: 40px;
    background: #fff !important;
    padding-left: 45px;
    padding-right: 40px;
    width: 100%; }
    .form-select .nice-select .list {
      margin-top: 0;
      border: none;
      border-radius: 0px;
      box-shadow: none;
      width: 100%;
      padding: 10px 0 10px 0px; }
      .form-select .nice-select .list .option {
        font-weight: 300;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        line-height: 28px;
        min-height: 28px;
        font-size: 12px;
        padding-left: 45px; }
        .form-select .nice-select .list .option.selected {
          color: #9A826C;
          background: transparent; }
        .form-select .nice-select .list .option:hover {
          color: #9A826C;
          background: transparent; }
  .form-select .current {
    margin-right: 50px;
    font-weight: 300; }
  .form-select .nice-select::after {
    right: 20px; }

.footer-bg {
  background: url("../img/footer-bg.png") left center no-repeat;
  background-size: cover;
  padding-top: 110px;
  position: relative;
  z-index: 1; }
  .footer-bg:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(16, 15, 29, 0.28);
    z-index: -1; }
.footer__title {
  font-size: 1.3125rem;
  color: #fff;
  font-weight: 300;
  margin-bottom: 30px; }
.footer__link li {
  margin-bottom: .8rem; }
  .footer__link li a {
    color: #8f8f8f;
    text-transform: capitalize; }
.footer__bottom {
  padding: 1.3rem 0;
  margin-top: 65px; }
  .footer__bottom p {
    margin-bottom: 0; }
    .footer__bottom p a {
      color: #9A826C; }
  .footer__bottom.top-border {
    border-top: 1px solid #333333; }

/*# sourceMappingURL=style.css.map */


/* Gallery Item Container */
.gallery-item {
    padding: 10px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlide 0.10s forwards ease-out;
}

/* Premium Image Styling */
.gallery-img {
    width: 100%;
    height: 240px; /* Increased height for premium look */
    object-fit: cover; /* FIXES stretching – perfect crop */
    object-position: center; /* keeps important area centered */
    border-radius: 12px;
    display: block;

    /* Elegant depth shadow */
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transition: 0.35s ease;
}

/* Hover effects */
.gallery-img:hover {
    transform: scale(1.04);
    box-shadow: 0 14px 32px rgba(0,0,0,0.35);
    opacity: 0.95;
}

/* Snake Animations (unchanged) */
.gallery-item.row-1 {
    animation-name: snakeLeftToRight;
    animation-delay: calc(var(--i) * 0.20s);
}

.gallery-item.row-2 {
    animation-name: snakeRightToLeft;
    animation-delay: calc((5 - var(--i)) * 0.20s);
}

@keyframes snakeLeftToRight {
    0% { opacity: 0; transform: translateX(-60px) scale(.9); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes snakeRightToLeft {
    0% { opacity: 0; transform: translateX(60px) scale(.9); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}
.hero__slide {
    position: relative;
    height: 100vh;     /* Increase hero height */
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Ensures video ALWAYS fills area */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
/* Contact Hero */
.contact-hero {
    padding: 120px 0 70px;
    background: #1d1d26;
    color: #fff;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 600;
}

.contact-hero p {
    color: #bbb;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
}


/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #12121a;
    color: #fff;
}

/* Left Card */
.contact-info-card {
    background: #1c1c25;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #9A826C;
}

.contact-info-card .desc {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #ccc;
}

.info-block {
    margin-bottom: 25px;
}

.info-block h5 {
    font-size: 14px;
    color: #9A826C;
    margin-bottom: 5px;
}

.info-block p {
    font-size: 15px;
    color: #ccc;
}

.info-block a {
    color: #ccc;
    text-decoration: none;
}

.social-links a {
    font-size: 20px;
    margin-right: 12px;
    color: #9A826C;
    transition: .3s;
}

.social-links a:hover {
    color: #fff;
}


/* Form Card */
.contact-form-card {
    background: rgba(26, 26, 35, 0.75);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #9A826C;
}

/* Form Fields */
.form-control {
    background: #16161f;
    border: 1px solid #333;
    color: #eee;
    height: 50px;
    padding-left: 15px;
    transition: .3s;
    border-radius: 8px;
}

.form-control.msg {
    height: 140px;
    padding-top: 15px;
}

.form-control:focus {
    border-color: #9A826C;
    background: #1e1e28;
    color: #fff;
}


/* Submit Button */
.btn-submit {
    background: #9A826C;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    color: #fff;
    font-size: 1.1rem;
    transition: .3s;
}

.btn-submit:hover {
    background: #8b735e;
    transform: translateY(-2px);
}
/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

/* ================================
   FLOATING BUTTONS (LEFT + RIGHT)
================================ */

/* CALL BUTTON – LEFT */
.float-btn-left {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: #9A826C; /* Brand color */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.float-btn-left:hover {
    transform: scale(1.12);
}

/* WHATSAPP BUTTON – RIGHT */
.float-btn-right {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.float-btn-right:hover {
    transform: scale(1.12);
}
/* Pulse Animation */
@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(154, 130, 108, 0.0);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 18px rgba(154, 130, 108, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(154, 130, 108, 0.0);
    }
}

/* WhatsApp Green Pulse */
@keyframes pulse-glow-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(37, 211, 102, 0);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 18px rgba(37, 211, 102, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(37, 211, 102, 0);
    }
}

/* Apply Pulse to Call Button */
.call-btn {
    animation: pulse-glow 1.4s infinite ease-in-out;
}

/* Apply Pulse to WhatsApp Button */
.whatsapp-btn {
    animation: pulse-glow-whatsapp 1.2s infinite ease-in-out;
}

/* ================================
   BACK TO TOP ARROW (CENTER)
================================ */
.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: #1c1c25;
    color: #fff;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: 0.3s;
    z-index: 9998;
}

.back-to-top:hover {
    background: #9A826C;
    transform: translateX(-50%) scale(1.12);
}
.footer-social li {
    margin-bottom: 8px;
}

.footer-social li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #fff;
    transition: .3s;
}

.footer-social li a span {
    font-weight: 500;
}

.footer-social li a:hover {
    color: #9A826C; /* your bronze brand color */
}

.footer-social i {
    font-size: 20px;
}
/* ======================================================
   PREMIUM GALLERY — Studio 83 Design
   ====================================================== */

.premium-gallery .premium-gallery-item {
    padding: 12px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp 0.7s forwards ease-out;
    animation-delay: var(--delay);
}

@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.premium-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #1f1f1f;
    box-shadow: 0 10px 22px rgba(0,0,0,0.25);
    transition: 0.4s ease;
}

.premium-gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s ease;
    filter: brightness(80%);
}

.premium-gallery-card:hover img {
    transform: scale(1.08);
    filter: brightness(95%);
}

.premium-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: 0.4s ease;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 20px;
}

.premium-gallery-card:hover .premium-gallery-overlay {
    opacity: 1;
}

.overlay-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 4px;
    font-weight: 500;
}

.overlay-content p {
    color: #d4d4d4;
    font-size: 0.85rem;
    margin: 0;
}

/* Make carousel arrows minimal luxury */
.premium-gallery .owl-dots .owl-dot.active span {
    background: #9A826C !important;
    height: 6px;
}

/*
Optional: fullscreen view icon (future expansion)
*/
/* Fullscreen Viewer */
#fullscreenViewer {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(4px);
    animation: fadeIn .3s ease-out;
}

#fullscreenViewer img {
    max-width: 92%;
    max-height: 92%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

#closeViewer {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    transition: .3s ease;
}

#closeViewer:hover {
    color: #9A826C;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* ==============================================
   HERO OPTIMIZATION — 6.5 inch Mobile Screens
   Screen width: 360px – 430px 
   Screen height: 740px – 900px
================================================ */
@media (max-width: 440px) and (min-height: 700px) {

    /* Adjust hero video height for 6.5 inch screens */
    .hero-video {
        max-height: 50vh !important;
        width: 100%;
        object-fit: cover !important;
    }

    /* Slightly more spacing for aesthetic layout */
    .hero__slide {
        position: relative;
        padding-bottom: 25px;
    }

    /* Perfect center placement for text */
    .hero__slideContent {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 88%;
        padding: 12px 18px;
        text-align: center;
    }

    /* Perfect readable headline */
    .hero__slideContent h1 {
        font-size: 1.55rem !important;
        line-height: 1.35 !important;
        margin-bottom: 12px;
        font-weight: 500;
    }

    /* Description — Ideal for 6.5" screens */
    .hero__slideContent p {
        font-size: 1rem !important;
        line-height: 1.45 !important;
        margin-bottom: 12px;
    }

    /* CTA button — Increased size for thumb reach */
    .hero__slideContent a {
        font-size: 0.9rem !important;
        padding: 8px 18px !important;
        border-width: 2px;
        letter-spacing: 0.5px;
    }

    /* Prevent awkward spacing after hero */
    .hero {
        padding-bottom: 12px;
    }
}

/*index Project*/
/* PROJECTS SECTION TITLE — PREMIUM + button */
.project-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    margin-top: 10px;
}

/* Small gold section title */
.project-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #9A826C;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.project-section-title.left-border {
    padding-left: 40px;
    position: relative;
}

.project-section-title.left-border::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: #9A826C;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* RIGHT SIDE — View All link */
.view-all-link {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #d7c4aa;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: 0.3s ease;
    margin-right: 1rem;
}

.view-all-link:hover {
    color: #9A826C;
    border-bottom: 1px solid #9A826C;
}


/* MAIN PROJECT SECTION HEADING */
.project-section-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 2.75rem; 
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    transition: 0.3s ease;
}

.project-section-heading.bottom-border {
    padding-bottom: 28px;
    margin-bottom: 45px;
    position: relative;
}

.project-section-heading.bottom-border:after {
    content: "";
    display: block;
    height: 2px;
    width: 120px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #9A826C;
    opacity: 0.85;
}

.project-section-heading.small {
    font-size: 2rem;
}



/* PROJECT CARD */
.project-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 14px;
    transition: 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

/* HOVER EFFECT */
.project-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 40px rgba(0,0,0,0.45);
    border-color: rgba(255,255,255,0.2);
}

/* IMAGE */
.project-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.project-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.6s ease;
}

/* Zoom reveal on hover */
.project-card:hover .project-thumb img {
    transform: scale(1.12);
}

/* LIGHT SHINE EFFECT */
.project-card::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -120%;
    width: 240%;
    height: 240%;
    background: linear-gradient(
        130deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.09) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(20deg);
    transition: 1.2s;
    pointer-events: none;
}

.project-card:hover::before {
    top: 100%;
    left: 100%;
}

/* TITLE */
.project-title {
    margin-top: 18px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #f2e8d9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Oswald", sans-serif;
}

/* Optional subtle fade-in animation */
.project-card {
    opacity: 0;
    animation: fadeInUp 0.7s forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------
   ADVANCED PROJECT CARD (MEDIA + OVERLAY)
--------------------------------------------- */

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 0; /* Image will handle padding */
    height: 330px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    transition: 0.45s ease;
}

/* Zoom + Lift */
.project-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 45px rgba(0,0,0,0.45);
    border-color: rgba(255,255,255,0.20);
}

/* MEDIA LAYER */
.card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(.75);
    transition: 0.6s ease;
}

/* Zoom on hover */
.project-card:hover .card-media {
    filter: brightness(1);
    transform: scale(1.08);
}

.card-media img { 
    opacity: 0;
    visibility: hidden; 
}

/* OVERLAY */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 10%,
        rgba(0,0,0,0.85) 90%
    );
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 0;
    transition: 0.35s ease;
}

.project-card:hover .card-overlay {
    opacity: 1;
}

/* INNER CONTENT */
.overlay-inner {
    transform: translateY(25px);
    opacity: 0;
    transition: 0.45s ease;
}

.project-card:hover .overlay-inner {
    transform: translateY(0);
    opacity: 1;
}

/* TITLE */
.card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: #f2e8d9;
    letter-spacing: 0.8px;
}

/* EXCERPT */
.card-excerpt {
    margin: 10px 0 14px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255,255,255,0.85);
}

/* META */
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-count {
    font-size: 13px;
    color: #d1c2af;
}

.meta-cta {
    font-size: 14px;
    font-weight: 600;
    color: #e7dac3;
    text-decoration: none;
    transition: 0.3s;
}

.meta-cta:hover {
    color: #fff;
    text-decoration: underline;
}


/* ================================
   FLEX CONTAINER (Title + Back)
================================ */
.service-hero-flex {
    display: flex;
    justify-content: center; /* keeps title centered */
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    gap: 15px;
}

/* SERVICE TITLE */
.service-hero-flex h1 {
    flex: 1;
    text-align: center;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* BACK BUTTON — RIGHT SIDE */
.back-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Oswald', sans-serif;
    color: #d7c4aa;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s ease;
    padding: 4px 8px;
    border-bottom: 1px solid transparent;
    opacity: 0.9;
}

.back-link:hover {
    color: #9A826C;
    opacity: 1;
    border-bottom: 1px solid #9A826C;
}

/* DESCRIPTION UNDER TITLE */
.service-subtext {
    margin-top: 8px;
    font-size: 1.05rem;
    opacity: 0.85;
    text-align: center;
    color: #e8e3db;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Roboto', sans-serif;
}

/* ================================
   RESPONSIVE FIXES
================================ */
@media (max-width: 768px) {

    .service-hero-flex {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0 20px;
    }

    .back-link {
        position: static;
        transform: none;
        order: 2;
    }

    .service-hero-flex h1 {
        font-size: 2.2rem;
        order: 1;
    }

    .service-subtext {
        font-size: 0.95rem;
        max-width: 90%;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .service-hero-flex h1 {
        font-size: 1.9rem;
        letter-spacing: 0.5px;
    }
}
/* ================================
   PORTFOLIO IMAGE WRAPPER
   (Used on Services + Projects Pages)
================================ */

.portfolio__img {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
    transition: 0.45s ease;

    /* NEW – reduce footprint */
    max-width: 85%;
    margin: 0 auto;
}

/* IMAGE INSIDE */
.portfolio__img img {
    width: 100%;
    height: 300px; /* NEW – reduced height */
    border-radius: 18px;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(.22,1,.36,1);
}

/* HOVER: Zoom & subtle lift */
.portfolio__img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 22px 45px rgba(0,0,0,0.55);
    border-color: rgba(255,255,255,0.18);
}

.portfolio__img:hover img {
    transform: scale(1.12);
}

/* LIGHT GLASS SHINE EFFECT */
.portfolio__img::before {
    content: '';
    position: absolute;
    top: -180%;
    left: -180%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.08) 50%,
        rgba(255,255,255,0) 100%
    );
    transition: 1.1s ease;
    pointer-events: none;
    transform: rotate(25deg);
}

.portfolio__img:hover::before {
    top: 100%;
    left: 100%;
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
    .portfolio__img {
        border-radius: 14px;
        max-width: 100%;
    }
    .portfolio__img img {
        border-radius: 14px;
        height: 220px; /* smaller mobile height */
    }
}

/* ============================================================
   SERVICE PAGE – IMPROVED SPACING & ALIGNMENT
============================================================ */

/* Fix alignment for rows */
.portfolio .row {
    margin-bottom: 80px;
}

/* LEFT + RIGHT SPACING */
.portfolio .col-md-5,
.portfolio .col-md-7 {
    padding-left: 25px;
    padding-right: 25px;
}

/* Improve readability */
.portfolio .section-intro__subtitle.small {
    margin-bottom: 12px;
}

.portfolio p {
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 15px;
    color: #dcdcdc;
}

/* Button spacing */
.portfolio .btn--rightBorder {
    margin-top: 15px !important;
}

/* -------------------------------
   RESPONSIVE FIXES FOR MOBILE
-------------------------------- */
@media (max-width: 992px) {
    .portfolio .row {
        text-align: center;
    }

    .portfolio .col-md-5,
    .portfolio .col-md-7 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .portfolio__img {
        margin-bottom: 25px;
    }
}

/* Fade-up animation */
.portfolio .row {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s forwards;
}

.portfolio .row:nth-child(2) { animation-delay: 0.15s; }
.portfolio .row:nth-child(3) { animation-delay: 0.25s; }
.portfolio .row:nth-child(4) { animation-delay: 0.35s; }
.portfolio .row:nth-child(5) { animation-delay: 0.45s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   PREMIUM IMAGE FRAME — ULTRA MODE
================================ */
.premium-img-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    transition: 0.45s ease;
    box-shadow: 0 18px 45px rgba(0,0,0,0.40);
}

/* Smooth Float + Glow */
.premium-img-frame:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 28px 65px rgba(0,0,0,0.55);
    border-color: rgba(255,255,255,0.22);
}

/* Cinematic Light Sweep */
.premium-img-frame::after {
    content: '';
    position: absolute;
    top: -120%;
    left: -120%;
    width: 250%;
    height: 250%;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.09) 50%,
        rgba(255,255,255,0) 100%
    );
    opacity: 0;
    pointer-events: none;
    transform: rotate(25deg);
    transition: 1s ease;
}

.premium-img-frame:hover::after {
    opacity: 1;
    top: 100%;
    left: 100%;
}

/* Parallax Style Zoom */
.premium-img-frame img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 1.1s cubic-bezier(.22,1,.36,1),
                filter 0.4s ease;
}

.premium-img-frame:hover img {
    transform: scale(1.085) translateY(-4px);
    filter: brightness(1.08);
}



/* ================================
   SUGGESTION CARDS — PREMIUM
================================ */
.premium-suggestion-card {
    display: block;
    padding: 18px;
    background: rgba(255,255,255,0.03);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.35s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Motion + Depth */
.premium-suggestion-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 18px 45px rgba(0,0,0,0.50);
}

/* Subtle Shine */
.premium-suggestion-card::before {
    content: "";
    position: absolute;
    top: -160%;
    left: -160%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.06) 50%,
        rgba(255,255,255,0) 100%
    );
    opacity: 0;
    transition: 1s ease;
    pointer-events: none;
    transform: rotate(15deg);
}

.premium-suggestion-card:hover::before {
    opacity: 1;
    top: 100%;
    left: 100%;
}

/* IMAGE WRAPPER */
.suggestion-img-wrap {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

/* Smooth Zoom */
.suggestion-img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.9s cubic-bezier(.22,1,.36,1);
}

.premium-suggestion-card:hover .suggestion-img {
    transform: scale(1.14);
}

/* TITLE UNDER IMAGE */
.suggestion-title {
    margin-top: 16px;
    color: #e8dcc4;
    font-size: 1.15rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.premium-suggestion-card:hover .suggestion-title {
    color: #d1b89a;
}
/* ============================================
   SERVICE HERO IMAGE — PREMIUM CINEMATIC UI
============================================ */

.service-hero-img {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #0d0d0f;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 25px 55px rgba(0,0,0,0.55);
    transition: 0.55s ease-out;
    max-height: 420px;          /* Premium proportion */
}

/* Image inside */
.service-hero-img img {
    width: 100%;
    height: 420px;              /* Uniform premium height */
    object-fit: cover;
    border-radius: 22px;
    transition: transform 1.1s cubic-bezier(.22,1,.36,1),
                filter 0.5s ease;
}

/* Hover: soft parallax zoom + brightness */
.service-hero-img:hover img {
    transform: scale(1.12) translateY(-6px);
    filter: brightness(1.10);
}

/* Highlight border & elevate frame */
.service-hero-img:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.20);
    box-shadow: 0 35px 75px rgba(0,0,0,0.65);
}

/* Cinematic "shine sweep" */
.service-hero-img::after {
    content: "";
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        115deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.10) 50%,
        rgba(255,255,255,0) 100%
    );
    pointer-events: none;
    opacity: 0;
    transform: rotate(20deg);
    transition: 1.2s ease;
}

.service-hero-img:hover::after {
    opacity: 1;
    top: 100%;
    left: 100%;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .service-hero-img {
        border-radius: 18px;
        max-height: 320px;
    }

    .service-hero-img img {
        height: 320px;
        border-radius: 18px;
    }
}
