/*-----------------------------------------------------------------------------------

	Theme Name: Personala
	Theme URI: http://
	Description: The Multi-Purpose Onepage Template
	Author: his7am
	Author URI: http://themeforest.net/user/his7am
	Version: 1.0

-----------------------------------------------------------------------------------*/
/* ----------------------------------------------------------------

	== Table Of Content

		01 Basic
		02 Buttons
		03 Navbar
		04 Header
		05 Hero
		06 Resume
		07 Services
		08 Numbers
		09 Portfolio
		10 Testimonials
		11 Blog
		12 Contact
		13 Footer
		14 Responsive
	

---------------------------------------------------------------- */
/* ----------------------------------------------------------------
				01 Basic
-----------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none !important;
  list-style: none;
}

body {
  color: #333;
  line-height: 1.3;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden !important;
}

.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 20px;
  max-width: 100%;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* float bar*/
   .floating-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
      animation: bubbleFloat 0.8s ease-out;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      transform-origin: bottom right;
      pointer-events: auto;
    }

    .floating-container.hidden {
      animation: bubbleShrink 0.5s ease-in forwards;
      pointer-events: none;
    }

    .floating-container.hidden .whatsapp,
    .floating-container.hidden .bottom-row {
      animation: fadeOut 0.3s ease-in forwards;
    }

    .icon-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      animation: bubbleRise 0.6s ease-out;
      position: relative;
      overflow: hidden;
      z-index: 1001;
    }

    .icon-btn::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 50%;
    }

    .icon-btn:hover::before {
      opacity: 1;
    }

    .icon-btn:nth-child(1) { animation-delay: 0.1s; }
    .icon-btn:nth-child(2) { animation-delay: 0.2s; }
    .icon-btn:nth-child(3) { animation-delay: 0.3s; }

    .icon-btn:hover {
      transform: scale(1.15) translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .icon-btn:active {
      transform: scale(0.9);
      animation: bubbleSquish 0.2s ease-out;
    }

    .icon-btn img {
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }

    .icon-btn:hover img {
      transform: scale(1.2);
    }

    .messenger { 
      background: linear-gradient(135deg, #00A8FF, #0097E6);
      animation-delay: 0.1s;
    }
    .whatsapp { 
      background: linear-gradient(135deg, #25D366, #128C7E);
      animation-delay: 0.2s;
    }
    .close-btn { 
      background: linear-gradient(135deg, #34A853, #2E7D32);
      animation-delay: 0.3s;
    }

    .bottom-row {
      display: flex;
      align-items: center;
      gap: 10px;
      animation: bubbleSlide 0.6s ease-out 0.4s both;
      z-index: 1001;
    }

    .hotline-bar {
      background: linear-gradient(135deg, #0094FF, #007ACC);
      color: white;
      padding: 12px 18px;
      border-radius: 25px;
      box-shadow: 0 4px 15px rgba(0, 148, 255, 0.3);
      font-size: 14px;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      animation: bubbleGlow 2s infinite;
      position: relative;
      overflow: hidden;
    }

    .hotline-bar::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s ease;
    }

    .hotline-bar:hover::before {
      left: 100%;
    }

    .hotline-bar:hover {
      transform: scale(1.08) translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 148, 255, 0.4);
    }

    .hotline-bar a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease;
      text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

    .hotline-bar a:hover {
      color: #f0f0f0;
    }

    .reopen-btn {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00A8FF, #0097E6);
      border: none;
      box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      animation: bubbleBounce 0.8s ease-out;
      position: relative;
      overflow: hidden;
      z-index: 1000;
    }

    .reopen-btn::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 50%;
    }

    .reopen-btn:hover::before {
      opacity: 1;
    }

    .reopen-btn:hover {
      transform: scale(1.15) translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 168, 255, 0.4);
    }

    .reopen-btn:active {
      transform: scale(0.9);
      animation: bubbleSquish 0.2s ease-out;
    }

    .reopen-btn img {
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }

    .reopen-btn:hover img {
      transform: scale(1.2);
    }

    /* Bubble Animation Keyframes */
    @keyframes bubbleFloat {
      0% {
        transform: translateX(100px) scale(0.3);
        opacity: 0;
      }
      50% {
        transform: translateX(-10px) scale(1.1);
      }
      100% {
        transform: translateX(0) scale(1);
        opacity: 1;
      }
    }

    @keyframes bubbleShrink {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(0.8);
        opacity: 0.8;
      }
      100% {
        transform: scale(0) translateX(50px);
        opacity: 0;
      }
    }

    @keyframes fadeOut {
      0% {
        opacity: 1;
        transform: scale(1);
      }
      100% {
        opacity: 0;
        transform: scale(0.8);
      }
    }

    @keyframes bubbleRise {
      0% {
        transform: scale(0) translateY(20px);
        opacity: 0;
      }
      60% {
        transform: scale(1.2) translateY(-5px);
      }
      80% {
        transform: scale(0.9) translateY(2px);
      }
      100% {
        transform: scale(1) translateY(0);
        opacity: 1;
      }
    }

    @keyframes bubbleSlide {
      0% {
        transform: translateY(30px) scale(0.8);
        opacity: 0;
      }
      100% {
        transform: translateY(0) scale(1);
        opacity: 1;
      }
    }

    @keyframes bubbleBounce {
      0% {
        transform: scale(0) translateY(50px);
        opacity: 0;
      }
      50% {
        transform: scale(1.3) translateY(-10px);
      }
      70% {
        transform: scale(0.9) translateY(5px);
      }
      100% {
        transform: scale(1) translateY(0);
        opacity: 1;
      }
    }

    @keyframes bubbleSquish {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(0.8, 1.2);
      }
      100% {
        transform: scale(1);
      }
    }

    @keyframes bubbleGlow {
      0% {
        box-shadow: 0 4px 15px rgba(0, 148, 255, 0.3);
      }
      50% {
        box-shadow: 0 4px 25px rgba(0, 148, 255, 0.5), 0 0 20px rgba(0, 148, 255, 0.3);
      }
      100% {
        box-shadow: 0 4px 15px rgba(0, 148, 255, 0.3);
      }
    }

    /* Responsive bubble animations */
    @media (max-width: 768px) {
      .floating-container {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      
      .icon-btn {
        width: 45px;
        height: 45px;
      }
      
      .icon-btn img {
        width: 20px;
        height: 20px;
      }
      
      .hotline-bar {
        font-size: 12px;
        padding: 10px 15px;
        border-radius: 20px;
      }
    }

/*end*/

.dark-theme {
  background: #131414;
  color: #eee;
}
.dark-theme .title:before {
  background: #222;
}
.dark-theme .nav-scroll {
  background: #181818;
}
.dark-theme .nav-scroll .icon-bar {
  color: #eee;
}
.dark-theme .nav-scroll .navbar-nav .nav-link {
  color: #eee;
}
.dark-theme .nav-scroll .logo {
  color: #fff;
}
.dark-theme .nav-scroll .logo:hover {
  color: #fff;
}
.dark-theme .hero .hero-img:after {
  background: #181818;
}
.dark-theme .services .active {
  border-color: #222;
}
.dark-theme .services .active.bolt:before, .dark-theme .services .active.bolt:after {
  background: #131414;
}
.dark-theme .services .bord {
  border-color: #222;
}
.dark-theme .portfolio .item-img-overlay:before, .dark-theme .portfolio .item-img-overlay:after {
  background: #181818;
}
.dark-theme .blog .pitem .content {
  background: #181818;
}
.dark-theme .blog .pitem .content h3 {
  color: #ccc;
}
.dark-theme .blog .pitem .content .more, .dark-theme .blog .pitem .content p {
  border-color: #222;
}
.dark-theme footer {
  background: #181818;
}

h1, h2, h3, h4, h5, h6, .logo {
  font-family: 'Josefin Sans', sans-serif;
}

p {
  font-size: 15px;
  color: #a3a3a3;
  line-height: 1.6;
  word-spacing: 1px;
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

span, a, a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
}

.title {
  display: inline-block;
  font-size: 36px;
  padding-bottom: 10px;
  position: relative;
  z-index: 2;
}
.title:after {
  content: '';
  width: 60px;
  height: 1px;
  background: #C49B66;
  position: absolute;
  bottom: 0;
  left: calc(50% - 30px);
}
.title:before {
  content: '';
  width: 100%;
  height: 1px;
  background: rgba(1, 1, 1, 0.05);
  position: absolute;
  bottom: 0;
  left: 0;
}

.title-left {
  text-align: left;
  margin-bottom: 30px;
}
.title-left:after {
  left: 0;
}

.bg-gray {
  background: #f7f7f7;
}
.bg-gray .title:before {
  background: #ddd;
}
.bg-gray .owl-theme .owl-dots .owl-dot span {
  background: #777;
}

.o-hidden {
  overflow: hidden;
}

.position-re {
  position: relative;
}

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

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-img .title:before {
  background: rgba(255, 255, 255, 0.1);
}

.section-padding {
  padding: 100px 0;
}

.section-ptb {
  padding: 80px 0;
}

.section-pt {
  padding: 80px 0 0;
}

.section-pb {
  padding: 0 0 80px;
}

.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cd-headline {
  font-size: 3rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 4.4rem;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 6rem;
  }
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* xclip */
.cd-headline.clip span {
  display: inline-block;
  padding: .2em 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 2px;
  height: 70%;
  background-color: #aebcb9;
  display: none; /* Hide the cursor */
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline b.is-visible {
  opacity: 1;
  font-weight: 900;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(150, 150, 150, 0.4);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #C49B66;
}

/* ----------------------------------------------------------------
				02 Buttons
-----------------------------------------------------------------*/
.buton {
  position: relative;
  cursor: pointer;
}
.buton button, .buton a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  width: 130px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.buton button:before, .buton a:before {
  content: attr(back);
  font-family: "Font Awesome\ 5 Free";
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  color: #C49B66;
  border: 1px solid #C49B66;
  line-height: 38px;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: translateY(-100%) rotateX(90deg);
          transform: translateY(-100%) rotateX(90deg);
}
.buton button:after, .buton a:after {
  content: attr(front);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #C49B66;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: translateY(0) rotateX(0deg);
          transform: translateY(0) rotateX(0deg);
}
.buton button:hover:before, .buton a:hover:before {
  -webkit-transform: translateY(0) rotateX(0deg);
          transform: translateY(0) rotateX(0deg);
}
.buton button:hover:after, .buton a:hover:after {
  -webkit-transform: translateY(100%) rotateX(90deg);
          transform: translateY(100%) rotateX(90deg);
}

.buton-bord button:before, .buton-bord a:before {
  background: #C49B66;
  color: #fff;
}
.buton-bord button:after, .buton-bord a:after {
  background: transparent;
  color: #C49B66;
  border: 1px solid #C49B66;
}

.buton-lg button, .buton-lg a {
  width: 160px;
}

.buton-dark button:before, .buton-dark a:before {
  color: #222;
  border: 1px solid #222;
}
.buton-dark button:after, .buton-dark a:after {
  background: #222;
}

/* ----------------------------------------------------------------
				03 Navbar
-----------------------------------------------------------------*/
.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
}
.navbar .icon-bar {
  color: #fff;
}
.navbar .navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 600;
  color: #eee;
  letter-spacing: .5px;
  margin: 15px 5px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.navbar .navbar-nav .active {
  color: #C49B66 !important;
}

.nav-scroll {
  background: #fff;
  border-bottom: 1px solid rgba(12, 12, 12, 0.04);
  padding: 0;
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  z-index: 999;
}
.nav-scroll .icon-bar {
  color: #222;
}
.nav-scroll .navbar-nav .nav-link {
  color: #222;
}
.nav-scroll .logo {
  padding: 15px 0;
  color: #111;
}
.nav-scroll .logo:hover {
  color: #111;
}

.logo {
  padding: 15px 0;
  width: 90px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.logo:hover {
  color: #fff;
}

.logo img {
  max-width: 100%;
  height: auto;
  width: 80px;  /* Optional: sets a base width */
}

.logo img {
  width: 100%;
  height: auto;
  max-width: 80px; /* Prevents it from getting too large */
}


/* ----------------------------------------------------------------
				04 Header
-----------------------------------------------------------------*/
.header {
  min-height: 100vh;
}
.header .caption {
  margin-top: 50px;
}
.header .caption h2 {
  font-weight: 200;
}
.header .caption h1 {
  margin: 10px 0;
  font-size: 70px;
}
.header .arrow {
  position: absolute;
  bottom: 5vh;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 13px;
  z-index: 8;
}
.header .arrow i {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.header .arrow i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.header .arrow i:hover:after {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

/* ----------------------------------------------------------------
				05 Hero
-----------------------------------------------------------------*/
.hero .hero-img {
  padding: 0 20px 0 0;
  position: relative;
  -webkit-transition: all .4s;
  transition: all .4s;
}
.hero .hero-img:hover {
  padding: 0 0 0 20px;
}
.hero .hero-img:hover:after {
  background: #C49B66;
  left: 5px;
  top: -15px;
  right: 15px;
  bottom: 15px;
}
.hero .hero-img:after {
  content: '';
  background: #f5f5f5;
  position: absolute;
  left: 15px;
  right: 5px;
  top: 15px;
  bottom: -15px;
  z-index: -1;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.hero .content p {
  margin-bottom: 15px;
}
.hero .content p span {
  font-weight: 700;
}
.hero .content .social-icon span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  border: 1px solid #eee;
  margin: 15px 5px 15px 0;
  cursor: pointer;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.hero .content .social-icon span:hover {
  background: #C49B66;
  border-color: #C49B66;
  color: #fff;
}
.hero .content .buton {
  margin-top: 30px;
}

/* ----------------------------------------------------------------
				06 Resume
-----------------------------------------------------------------*/
.resume {
  background-attachment: fixed;
  padding: 50px 0;
}
.resume .title {
  margin-bottom: 40px;
  letter-spacing: 2px;
}
.resume .item h5 {
  font-size: 25px;
  font-weight: 400;
}
.resume .item .icon {
  font-size: 30px;
  color: #C49B66;
  margin-bottom: 15px;
}
.resume .item li {
  margin-bottom: 30px;
}
.resume .item li:last-child {
  margin-bottom: 0;
}
.resume .item li h6 {
  color: #eee;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  margin-bottom: 5px;
}
.resume .item li p {
  color: #999;
}
.resume .skills .skill {
  margin-bottom: 30px;
}
.resume .skills .skill:last-child {
  margin-bottom: 0;
}
.resume .skills .skill h6 {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
}
.resume .skills .skill h6 span {
  padding: 4px 8px 0;
  font-size: 10px;
  float: right;
  background: rgba(80, 80, 80, 0.3);
  position: relative;
  top: 8px;
}
.resume .skills .skill .skills-progress {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(80, 80, 80, 0.3);
}
.resume .skills .skill .skills-progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5%;
  background: #C49B66;
  -webkit-transition: all 1s;
  transition: all 1s;
}

/* ----------------------------------------------------------------
				07 Services
-----------------------------------------------------------------*/
.services .item {
  text-align: center;
  padding: 40px 15px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border-radius: 15px;
  background: transparent;
  animation: serviceFadeIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.services .item:nth-child(1) { animation-delay: 0.1s; }
.services .item:nth-child(2) { animation-delay: 0.2s; }
.services .item:nth-child(3) { animation-delay: 0.3s; }
.services .item:nth-child(4) { animation-delay: 0.4s; }
.services .item:nth-child(5) { animation-delay: 0.5s; }
.services .item:nth-child(6) { animation-delay: 0.6s; }
.services .item:nth-child(7) { animation-delay: 0.7s; }
.services .item:nth-child(8) { animation-delay: 0.8s; }
.services .item:nth-child(9) { animation-delay: 0.9s; }
.services .item:nth-child(10) { animation-delay: 1.0s; }

.services .item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(196, 155, 102, 0.15);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,248,248,0.9));
  border-radius: 20px;
}

.services .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(196, 155, 102, 0.05), rgba(196, 155, 102, 0.1));
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.services .item:hover::before {
  opacity: 1;
}

.services .item .icon {
  font-size: 40px;
  color: #C49B66;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.services .item:hover .icon {
  transform: scale(1.2) rotate(5deg);
  color: #B8860B;
  text-shadow: 0 4px 8px rgba(196, 155, 102, 0.3);
}

.services .item .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(196, 155, 102, 0.1), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
  z-index: -1;
}

.services .item:hover .icon::after {
  transform: translate(-50%, -50%) scale(1);
}

.services .item h6 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.services .item:hover h6 {
  color: #B8860B;
  transform: scale(1.05);
}

.services .item p {
  transition: all 0.3s ease;
  line-height: 1.6;
}

.services .item:hover p {
  color: #555;
}

.services .active {
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
  position: relative;
  animation: serviceActiveGlow 2s ease-in-out infinite;
}

.services .active.bolt:before, .services .active.bolt:after {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  bottom: -15px;
  z-index: 4;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.services .active.bolt:before {
  left: -15px;
}

.services .active.bolt:after {
  right: -15px;
}

.services .active:hover.bolt:before,
.services .active:hover.bolt:after {
  background: #C49B66;
  transform: scale(1.2);
  box-shadow: 0 6px 12px rgba(196, 155, 102, 0.3);
}

.services .bord {
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.services .bord:hover {
  border-bottom-color: #C49B66;
  box-shadow: 0 2px 4px rgba(196, 155, 102, 0.2);
}

/* Service Animation Keyframes */
@keyframes serviceFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceActiveGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(196, 155, 102, 0);
  }
  50% {
    box-shadow: 0 0 20px rgba(196, 155, 102, 0.1);
  }
}

/* Service section title animation */
.services .section-head {
  animation: titleSlideIn 0.8s ease-out;
}

.services .section-head .title {
  position: relative;
  overflow: hidden;
}

.services .section-head .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C49B66, transparent);
  transition: left 0.6s ease;
}

.services .section-head:hover .title::after {
  left: 100%;
}

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

/* ----------------------------------------------------------------
				08 Numbers
-----------------------------------------------------------------*/
.numbers {
  padding: 50px 0;
}
.numbers .item {
  text-align: center;
}
.numbers .item .icon {
  font-size: 30px;
  color: #C49B66;
  margin-bottom: 30px;
}
.numbers .item h2 {
  font-weight: 200;
  margin-bottom: 10px;
}

/* ----------------------------------------------------------------
				09 Portfolio
-----------------------------------------------------------------*/
.portfolio {
  overflow: hidden;
}
.portfolio .filtering span {
  padding: 8px 20px;
  margin: 0 5px;
  color: #777;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid #eee;
  border-radius: 10px;
}
.portfolio .filtering .active {
  color: #fff;
  background: #C49B66;
  border-color: #C49B66;
}
.portfolio .filtering .active:after {
  bottom: 0;
  top: calc(100% - 1px);
  opacity: 1;
}
.portfolio .filtering .active:before {
  top: 0;
  opacity: 1;
}
.portfolio .items {
  padding: 0 15px;
  margin-bottom: 30px;
}
.portfolio .item-img {
  position: relative;
  overflow: hidden;
}
.portfolio .item-img h5 {
  font-size: 18px;
  position: relative;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all .6s;
  transition: all .6s;
  opacity: 0;
  z-index: 5;
}
.portfolio .item-img h6 {
  color: #C49B66;
  font-size: 13px;
  position: relative;
  margin-bottom: 10px;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-transition: all .6s;
  transition: all .6s;
  opacity: 0;
  z-index: 5;
}
.portfolio .item-img .link {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #C49B66;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 5;
  opacity: 0;
}
.portfolio .item-img-overlay {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: transparent;
  z-index: 2;
}
.portfolio .item-img-overlay:before, .portfolio .item-img-overlay:after {
  content: '';
  position: absolute;
  width: 0;
  height: 50%;
  background: #fff;
  -webkit-transition: all .4s;
  transition: all .4s;
}
.portfolio .item-img-overlay:before {
  left: 0;
  top: 0;
}
.portfolio .item-img-overlay:after {
  right: 0;
  bottom: 0;
}
.portfolio .item-img-overlay:hover:before, .portfolio .item-img-overlay:hover:after {
  width: 100%;
}
.portfolio .item-img-overlay:hover h6, .portfolio .item-img-overlay:hover h5, .portfolio .item-img-overlay:hover .link {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* ----------------------------------------------------------------
				10 Testimonials
-----------------------------------------------------------------*/
.testimonials {
  background-attachment: fixed;
}
.testimonials .icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.testimonials .citem p {
  font-size: 18px;
  word-spacing: 2px;
  margin-bottom: 15px;
}
.testimonials .citem h5 {
  font-size: 16px;
  display: inline-block;
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
}
.testimonials .citem h5:after {
  content: "|";
  position: absolute;
  right: -5px;
  bottom: 4px;
}
.testimonials .citem h6 {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  margin: 15px 0;
}

/* ----------------------------------------------------------------
				11 Blog
-----------------------------------------------------------------*/
.blog .owl-carousel .owl-stage-outer {
  padding: 15px 0;
}
.blog .pitem {
  -webkit-box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.1);
}
.blog .pitem .post-img {
  position: relative;
}
.blog .pitem .post-img .tag {
  position: absolute;
  bottom: -15px;
  right: 15px;
  padding: 8px 22px;
  font-size: 11px;
  background: #C49B66;
  color: #fff;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}
.blog .pitem .content {
  padding: 45px 15px 15px;
  background: #fff;
}
.blog .pitem h3 {
  font-size: 22px;
  font-weight: 700;
  color: #666;
  margin-bottom: 15px;
}
.blog .pitem p {
  font-size: 14px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f7f7f7;
}
.blog .pitem .info {
  padding-top: 15px;
}
.blog .pitem .info span {
  font-size: 12px;
  color: #999;
}
.blog .pitem .info .more {
  color: #C49B66;
  border-bottom: 1px solid #eee;
}
.blog .pitem .info .by {
  float: right;
}

/* ----------------------------------------------------------------
				12 Contact
-----------------------------------------------------------------*/
.contact {
  background-attachment: fixed;
}
.contact .form input[type='text'],
.contact .form input[type='email'],
.contact .form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  background: rgba(10, 10, 10, 0.4);
  color: #fff;
  margin-bottom: 15px;
}
.contact .form textarea {
  height: 160px;
  max-height: 160px;
  max-width: 100%;
}
.contact .form button {
  background: transparent;
  border: 0;
}
.contact .info {
  margin-top: 50px;
}
.contact .info .item .icon {
  float: left;
  padding-top: 5px;
  font-size: 25px;
  color: #C49B66;
}
.contact .info .item .cont {
  margin-left: 45px;
  padding-left: 15px;
  border-left: 1px solid rgba(200, 200, 200, 0.4);
}
.contact .info .item .cont h6 {
  font-size: 14px;
}

/* ----------------------------------------------------------------
				13 Footer
-----------------------------------------------------------------*/
.footer {
  padding: 50px 0;
  background: #111;
  text-align: center;
  height: 5%;
}
.footer p {
  font-size: 13px;
}

/* ----------------------------------------------------------------
				14 Responsive
-----------------------------------------------------------------*/
@media screen and (max-width: 991px) {
  .mb-md50 {
    margin-bottom: 50px;
  }

  .mb-md30 {
    margin-bottom: 30px;
  }

  .mb-md0 {
    margin-bottom: 0;
  }

  .navbar .navbar-collapse {
    max-height: 320px;
    overflow: auto;
    background: #111;
    text-align: center;
    padding: 10px 0;
  }
  .navbar .nav-link {
    margin: 10px auto !important;
  }

  .nav-scroll .navbar-collapse .nav-link {
    color: #fff !important;
  }
  .nav-scroll .navbar-collapse .active {
    color: #C49B66 !important;
  }

  .header .caption h1 {
    font-size: 50px;
  }

  .services .item {
    padding: 0;
  }
  .services .active {
    border: 0;
  }
  .services .bord {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .mb-sm50 {
    margin-bottom: 50px;
  }

  .mb-sm30 {
    margin-bottom: 30px;
  }
}

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