html, body {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #0a0a0a;
    color: #fff;
    font-family: 'Varela Round', sans-serif;
}

.logox {
    color: rgb(216, 184, 0);
    font-size: 40px;
    
      font-family: 'Staatliches', cursive;
  
}
@font-face {
  font-family: 'Calisto-MT';
  src: url(../fonts/Calisto-MT.ttf); }

@font-face {
  font-family: 'Calisto-MT-Italic';
  src: url(../fonts/Calisto-MT-Italic.ttf); }

@font-face {
  font-family: 'Calisto-MT-Bold';
  src: url(../fonts/Calisto-MT-Bold.ttf); }

/* Colors */
/* Universal style */
* {
  margin: 0;
  padding: 0;
  font-family: "Calisto-MT"; }

.linkingWhite {
  font-size: 30px;
  color: #fff;
}

.linking { 
  font-size: 30px;
  color: #c18f59;
}

@media (max-width: 998px) {
  .finalStatic {
    position: absolute !important;
    left: 59px !important;
    
  }
}

.finalTextEdit {
  font-family: 'Varela Round', sans-serif;
}


.finalStatic {  
  position: relative;
  left: 410px;

}
.site-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
  @media (max-width: 1250px) {
    .site-container {
      width: 90%; } }

.historyPic {
  border: 4px solid #c18f59 !important;
}      
.universal-h2 {
  font-size: 48px;
  text-align: center;
  color: #222; }
  @media (max-width: 1250px) {
    .universal-h2 {
      font-size: 38px; } }
  @media (max-width: 668px) {
    .universal-h2 {
      font-size: 30px; } }

.universal-h2-bckg {
  background-image: url("../images/double-line.svg");
  background-repeat: no-repeat;
  background-position: center bottom; }

/* Universal style end */
/* Includes */
.site-navigation {
  position: absolute;
  top: 4.6%;
  width: 100%;
  z-index: 2; }

.site-navigation-inner {
  display: flex;
  align-items: center;
  justify-content: space-between; }
.doFont {
  font-family: 'Karma', serif !important;
}
.textFont {
  font-family: 'Karma', serif !important;
  font-size: 18px  !important;
}

.myName {
  font-family: 'Sacramento', cursive !important;
  
}

.finalImage {
  font-family: 'Sacramento', cursive !important;
  font-weight: lighter !important;
  font-size: 50px !important;
  
}

.finalImageMod {
  font-family: 'Sacramento', cursive !important;
 

}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
    right: 0;
}

body.menu-open {
    overflow: hidden;
}

.mobile-navigation__ul {
    padding: 80px 20px 20px;
    margin: 0;
    list-style: none;
}

.mobile-navigation__ul li {
    margin: 15px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease-out;
}

.mobile-menu.active .mobile-navigation__ul li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-navigation__ul a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    display: inline-block;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-navigation__ul a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #c18f59;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.mobile-navigation__ul a:hover:after {
    width: 70%;
}

.mobile-navigation__ul a i {
    margin-right: 10px;
    color: #c18f59;
}

/* Burger Menu Styles */
.burger-container {
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 999;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 3px;
    background-color: #c18f59;
    position: absolute;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.bar1 { top: 0; }
.bar2 { top: 50%; transform: translateY(-50%); }
.bar3 { bottom: 0; }

.change .bar1 {
    transform: rotate(-45deg) translate(-7px, 8px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: rotate(45deg) translate(-7px, -8px);
}

.menu-text {
    color: #c18f59;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Varela Round', sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

.menu-text:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #c18f59;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.burger-container:hover .menu-text {
    color: #fff;
}

.burger-container:hover .menu-text:after {
    width: 100%;
}

@media (max-width: 768px) {
    .burger-container {
        display: block;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-navigation__ul a {
        font-size: 20px;
        padding: 8px 16px;
    }
    
    .site-navigation-inner {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .mobile-navigation__ul a {
        font-size: 18px;
        padding: 6px 12px;
    }
    
    .burger-container {
        width: 25px;
        height: 20px;
    }
    
    .bar1, .bar2, .bar3 {
        width: 25px;
        height: 2px;
    }
}
.fh5co-top-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url("https://i.pinimg.com/originals/8b/05/d6/8b05d6d8f6eb3452aa4a4a0aad4fb397.jpg");
    background-position: center;
    background-size: cover;
    padding: 80px 0;
}
  .fh5co-top-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.9; }
  .fh5co-top-banner .site-container {
    position: relative;
    z-index: 1; }
  @media (max-width: 1600px) {
    .fh5co-top-banner {
      padding-top: 180px; } }
  @media (max-width: 1250px) {
    .fh5co-top-banner {
      padding-top: 130px; } }
  @media (max-width: 520px) {
    .fh5co-top-banner {
      padding-top: 105px; } }
  @media (min-width: 1600px) {
    .fh5co-top-banner {
      min-height: 100vh; } }

.top-banner__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.top-banner__text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .top-banner__text {
        padding: 0 15px;
    }
}
    .top-banner__inner .top-banner__text p {
      margin-bottom: 42px;
      color: #777; }
      @media (max-width: 768px) {
        .top-banner__inner .top-banner__text p {
          margin-bottom: 25px;
          font-size: 14px; } }
  .top-banner__inner .top-banner__h2 {
    font-size: 74px;
    letter-spacing: 3px;
    color: #fff;
    font-family: "Calisto-MT-Bold"; }
    @media (max-width: 1250px) {
      .top-banner__inner .top-banner__h2 {
        font-size: 50px; } }
    @media (max-width: 768px) {
      .top-banner__inner .top-banner__h2 {
        font-size: 35px; } }
  .top-banner__inner .top-banner__text-up .top-banner__h2 {
    margin-top: 15px; }
    @media (max-width: 768px) {
      .top-banner__inner .top-banner__text-up .top-banner__h2 {
        margin-top: 0; } }
  .top-banner__inner .top-banner__text-down {
    width: 100%;
    margin: 10px auto;
    text-align: center;
    padding: 0;
}
.top-banner__inner .top-banner__text-down .top-banner__h2 {
    margin: 10px 0;
    text-align: center;
    width: 100%;
}
  .top-banner__inner .top-banner__image {
    font-size: 0; }
    @media (max-width: 1250px) {
      .top-banner__inner .top-banner__image {
        width: 50%; }
        .top-banner__inner .top-banner__image img {
          width: 100%; } }
    @media (max-width: 520px) {
      .top-banner__inner .top-banner__image {
        width: 65%;
        margin-bottom: 20px; } }
  @media (max-width: 520px) {
    .top-banner__inner {
      flex-direction: column; } }

.brand-span {
  font-size: 14px;
  color: #c18f59;
  display: block;
  text-align: center;
  width: 100%;
}

.brand-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
  color: #c18f59;
  border: 1px solid #fff;
  transition: 0.3s ease; }
  .brand-button:hover, .brand-button:focus {
    color: #777; }

.fh5co-about-me {
  position: relative;
  margin: 193px 0 199px; }
  @media (max-width: 1250px) {
    .fh5co-about-me {
      margin: 150px 0; } }
  @media (max-width: 992px) {
    .fh5co-about-me {
      margin: 125px 0; } }

.about-me-bckg {
  position: absolute;
  background-image: url("../images/about-me-bckg.jpg");
  background-position: center;
  background-size: cover;
  height: 500px;
  top: -75px;
  right: 0;
  height: calc(100% + 150px);
  width: 70%;
  z-index: -1; }
  .about-me-bckg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7; }
  @media (max-width: 992px) {
    .about-me-bckg {
      width: 100%;
      padding-bottom: 15px; } }

.about-me-inner {
  display: flex;
  justify-content: space-between; }
  @media (max-width: 992px) {
    .about-me-inner {
      flex-direction: column;
      align-items: center; } }

.about-me-slider {
  position: relative; }
  .about-me-slider .slick-arrow {
    position: absolute;
    bottom: -18%; }
  .about-me-slider .slick-prev {
    left: 40%; }
    @media (max-width: 520px) {
      .about-me-slider .slick-prev {
        left: 34%; } }
  .about-me-slider .slick-next {
    right: 40%; }
    @media (max-width: 520px) {
      .about-me-slider .slick-next {
        right: 34%; } }

.span-arrow {
  bottom: 1px !important;
  padding: 10px 15px;
  cursor: pointer;
  color: #c18f59;
  border: 1px solid #c18f59;
  border-radius: 50%;
  transition: 0.3s ease; }
  .span-arrow:hover {
    color: #fff;
    border-color: #fff; }

.portfolio-wrapper {
  width: 390px;
  padding: 8px;
  text-align: center;
  background-color: #fff; }
  .portfolio-wrapper .portfolio__img {
    font-size: 0; }
    .portfolio-wrapper .portfolio__img img {
      width: 100%; }
  .portfolio-wrapper .portfolio__bottom {
    padding: 35px 0 95px;
    background-color: #f5f5f5; }
    @media (max-width: 992px) {
      .portfolio-wrapper .portfolio__bottom {
        padding: 25px 0; } }
  .portfolio-wrapper .portfolio__name {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 23px; }
    @media (max-width: 992px) {
      .portfolio-wrapper .portfolio__name {
        margin-bottom: 10px; } }
    .portfolio-wrapper .portfolio__name span {
      font-size: 90px;
      line-height: 75px;
      color: #c18f59;
      font-family: "Calisto-MT-Bold"; }
      @media (max-width: 992px) {
        .portfolio-wrapper .portfolio__name span {
          font-size: 65px;
          line-height: 62px; } }
  .portfolio-wrapper p {
    padding: 0 10%;
    line-height: 25px;
    font-style: italic;
    color: #777; }
    @media (max-width: 620px) {
      .portfolio-wrapper p {
        font-size: 15px;
        line-height: 20px; } }
  @media (max-width: 992px) {
    .portfolio-wrapper {
      margin-bottom: 20px; } }
  @media (max-width: 620px) {
    .portfolio-wrapper {
      width: 250px; } }

.about-me__text {
  width: 44%;
  margin-right: 80px;
  text-align: center; }
  .about-me__text .universal-h2 {
    color: #fff;
    padding-bottom: 20px;
    margin-bottom: 25px; }
  .about-me__text p {
    margin-bottom: 35px;
    line-height: 24px;
    color: #c18f59; }
    .about-me__text p span {
      font-size: 48px;
      color: #fff; }
    @media (max-width: 620px) {
      .about-me__text p {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 19px; } }
  .about-me__text h4 {
    margin-bottom: 7px;
    font-size: 25px;
    color: #c18f59; }
  .about-me__text .p-white {
    margin-bottom: 0;
    color: #fff; }
  @media (max-width: 1250px) {
    .about-me__text {
      width: 48%;
      margin-right: 40px; } }
  @media (max-width: 992px) {
    .about-me__text {
      width: 100%;
      margin-right: 0; } }

.slick-slide:focus {
  outline: none; }

.fh5co-books {
  margin-bottom: 122px; }
  .fh5co-books .universal-h2 {
    margin-bottom: 50px;
    padding-bottom: 20px; }
  .fh5co-books .books-brand-button {
    text-align: center; }
    .fh5co-books .books-brand-button .brand-button {
      font-size: 16px;
      text-transform: none;
      border-color: #c18f59; }
      .fh5co-books .books-brand-button .brand-button:hover {
        border-color: #777; }
  @media (max-width: 1250px) {
    .fh5co-books {
      margin-bottom: 60px; } }

.books {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 70px; }
  @media (max-width: 559px) {
    .books {
      justify-content: space-around; } }

.single-book {
  margin-bottom: 20px;
  text-align: center; }
  .single-book .single-book__img {
    position: relative;
    display: block;
    font-size: 0; }
    .single-book .single-book__img .single-book_download {
      opacity: 0;
      visibility: hidden;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      transition: 0.3s ease; }
      .single-book .single-book__img .single-book_download img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1; }
    .single-book .single-book__img:hover .single-book_download {
      visibility: visible;
      opacity: 0.7; }
  .single-book .single-book__title {
    margin: 19px 0 18px;
    font-size: 18px; }
  .single-book .single-book__price {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: #c18f59; }
  @media (max-width: 1250px) {
    .single-book {
      margin-right: 10px; }
      .single-book:last-child {
        margin-right: 0; } }

.rating {
  margin-top: 8px;
  unicode-bidi: bidi-override;
  direction: rtl; }
  .rating span {
    font-size: 23px;
    color: #ffd200;
    cursor: pointer; }
  .rating > span:hover:before, .rating > span:hover ~ span:before {
    content: "\2605";
    position: absolute; }

.fh5co-counter {
  position: relative;
  margin-bottom: 122px;
  padding: 100px 0;
  background-image: url("https://i.pinimg.com/originals/e4/b1/26/e4b1262dbe2f9c5647c6e1b221aa36a9.jpg");
  background-size: cover;
  background-position: center; }
  .fh5co-counter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c18f59;
    opacity: 0.9; }
  .fh5co-counter .site-container {
    position: relative;
    z-index: 1; }
  @media (max-width: 850px) {
    .fh5co-counter {
      padding: 50px 0 20px;
      margin-bottom: 50px; } }

.counter-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.single-count {
  width: 23%;
  text-align: center;
  color: #fff; }
  .single-count span {
    display: block;
    margin-bottom: 25px;
    font-size: 40px;
    font-weight: 900; }
  .single-count p {
    font-size: 20px;
    text-transform: uppercase; }
  @media (max-width: 850px) {
    .single-count {
      width: 48%;
      margin-bottom: 30px; }
      .single-count .count {
        font-size: 35px;
        margin-bottom: 15px; } }
  @media (max-width: 500px) {
    .single-count {
      width: 100%;
      padding-bottom: 10px;
      border-bottom: 1px solid #fff; } }

.single-count__text {
  display: flex;
  justify-content: center; }
  .single-count__text img {
    margin-right: 20px; }

.fh5co-blog {
  margin-bottom: 175px; }
  .fh5co-blog .universal-h2 {
    margin-bottom: 55px;
    padding-bottom: 20px; }
  @media (max-width: 620px) {
    .fh5co-blog {
      margin-bottom: 105px; } }

.blog-inner {
  display: flex;
  justify-content: space-between; }

.blog-slider .slick-slide {
  margin: 0 15px; }

.blog-slider .slick-list {
  margin: 0 -15px; }

.single-blog {
  display: flex !important; }
  .single-blog .single-blog__img {
    width: 50%;
    font-size: 0; }
  .single-blog .single-blog__text {
    width: 50%;
    padding: 7%;
    border: 3px solid #f5f5f5;
    border-left: 0; }
    .single-blog .single-blog__text h4 {
      margin-bottom: 5px;
      font-size: 24px;
      line-height: 33px; }
    .single-blog .single-blog__text span {
      display: block;
      margin-bottom: 15px;
      font-size: 14px;
      color: #c18f59;
      font-family: "Calisto-MT-Bold"; }
    .single-blog .single-blog__text p {
      color: #777;
      line-height: 21px; }
    @media (max-width: 992px) {
      .single-blog .single-blog__text {
        padding: 5%; }
        .single-blog .single-blog__text h4 {
          margin-bottom: 3px;
          font-size: 20px;
          line-height: 24px; }
        .single-blog .single-blog__text p {
          font-size: 14px;
          line-height: 19px; } }
    @media (max-width: 420px) {
      .single-blog .single-blog__text {
        padding: 3%; }
        .single-blog .single-blog__text h4 {
          font-size: 16px; }
        .single-blog .single-blog__text span {
          margin-bottom: 7px;
          font-size: 12px; }
        .single-blog .single-blog__text p {
          font-size: 13px;
          line-height: 16px; } }
  .single-blog:nth-child(even) h4 {
    color: #c18f59; }
  @media (max-width: 1250px) {
    .single-blog .single-blog__img img {
      width: 100%;
      height: 100%; } }

.blog-slider {
  position: relative; }
  .blog-slider .slick-arrow {
    position: absolute;
    bottom: -22%; }
  .blog-slider .slick-prev {
    left: 45.5%; }
    @media (max-width: 1250px) {
      .blog-slider .slick-prev {
        left: 40%; } }
    @media (max-width: 520px) {
      .blog-slider .slick-prev {
        left: 35%; } }
  .blog-slider .slick-next {
    right: 45.5%; }
    @media (max-width: 1250px) {
      .blog-slider .slick-next {
        right: 40%; } }
    @media (max-width: 520px) {
      .blog-slider .slick-next {
        right: 35%; } }
  .blog-slider .span-arrow:hover {
    color: #777;
    border-color: #777; }

.fh5co-quotes {
  position: relative;
  padding: 135px 0 172px;
  text-align: center;
  background-image: url("https://i.pinimg.com/originals/8f/64/71/8f6471bcbee1cbe4ea7b4afc51599bc1.jpg");
  background-position: center;
  background-size: cover; }
  .fh5co-quotes::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.9; }
  .fh5co-quotes .site-container {
    position: relative;
    z-index: 1; }
  .fh5co-quotes .universal-h2 {
    padding-bottom: 20px;
    margin-bottom: 30px;
    color: #fff !important; }
  .fh5co-quotes p {
    width: 43%;
    margin: 0 auto 45px;
    color: #fff;
    line-height: 24px; }
    @media (max-width: 620px) {
      .fh5co-quotes p {
        font-size: 14px;
        line-height: 19px; } }
  .fh5co-quotes img {
    margin: 0 auto 5px; }
  .fh5co-quotes h4 {
    margin-bottom: 5px;
    font-size: 25px;
    color: #c18f59; }
  .fh5co-quotes .slick-arrow {
    bottom: -8%; }
  .fh5co-quotes .slick-prev {
    left: 45.5%; }
    @media (max-width: 1150px) {
      .fh5co-quotes .slick-prev {
        left: 34%; } }
  .fh5co-quotes .slick-next {
    right: 45.5%; }
    @media (max-width: 1150px) {
      .fh5co-quotes .slick-next {
        right: 34%; } }
  @media (max-width: 1150px) {
    .fh5co-quotes {
      padding: 75px 0 95px; }
      .fh5co-quotes p {
        width: 90%; } }

.fh5co-social {
  position: relative;
  padding: 63px 0;
  background-image: url("https://i.pinimg.com/originals/ae/99/a1/ae99a13a033079a7956a0a54dbdbcad3.jpg");
  background-size: cover;
  background-position: center; }
  .fh5co-social::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c18f59;
    opacity: 0.9; }
  .fh5co-social .site-container {
    position: relative;
    z-index: 1; }
  @media (max-width: 620px) {
    .fh5co-social {
      padding: 40px 0; } }

.social {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .social h5 {
    font-size: 24px;
    color: #fff; }
  @media (max-width: 620px) {
    .social {
      flex-direction: column; } }

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(5px);
}

.social-link:hover {
  background: #c18f59;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(193, 143, 89, 0.3);
}

.social-link .material-icons {
  font-size: 24px;
  color: #fff;
}

/* Promo Announcement */
.promo-announcement {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(193, 143, 89, 0.95);
    color: white;
    text-align: center;
    padding: 8px 0;
    z-index: 1001;
    font-size: 14px;
    backdrop-filter: blur(5px);
}

.site-navigation {
    margin-top: 40px; /* Adjust for promo bar */
}

/* Responsive WhatsApp button */
.social-link .fab.fa-whatsapp {
    font-size: 24px;
}

@media (max-width: 768px) {
    .social-link {
        width: 40px;
        height: 40px;
    }
    .social-link .fab {
        font-size: 20px;
    }
}

/* Service Carousel Styles */
.service-carousel {
    position: relative;
    color: white;
    text-align: center;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    backdrop-filter: blur(5px);
}

.service-carousel .carousel-item {
    display: none;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInOut 1s ease;
    position: absolute;
    width: 100%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-carousel .carousel-item.active {
    display: block;
}

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

/* Add margin to main content to prevent overlap */
.fh5co-top-banner {
    padding-top: 120px;
}

.site-footer {
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.footer-column:hover {
    transform: translateY(-5px);
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #c18f59;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: rotate(360deg);
}

.footer-title {
    color: #c18f59;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #c18f59;
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(10px);
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    color: #c18f59;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-contact-info i {
    color: #c18f59;
    font-size: 20px;
}

.footer-social-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #c18f59;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.copyright {
    color: #aaa;
    font-size: 14px;
}

.copyright a {
    color: #c18f59;
    text-decoration: none;
}

/* Enhanced Email Contact Form */
.email-contact-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.email-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transform: translateY(50px);
    opacity: 0;
    animation: slideUpFade 1s ease forwards;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(193, 143, 89, 0.3);
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c18f59;
    box-shadow: 0 0 10px rgba(193, 143, 89, 0.2);
    outline: none;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group textarea + label {
    top: 20px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -20px;
    left: 0;
    font-size: 12px;
    color: #c18f59;
}

.submit-btn {
    background: linear-gradient(45deg, #c18f59, #8f6c3e);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(193, 143, 89, 0.3);
}

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

/* Mobile Navigation Enhancements */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
    right: 0;
}

body.menu-open {
    overflow: hidden;
}

.mobile-navigation__ul {
    padding: 80px 20px 20px;
    margin: 0;
    list-style: none;
}

.mobile-navigation__ul li {
    margin: 15px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease-out;
}

.mobile-menu.active .mobile-navigation__ul li {
    opacity: 1;
    transform: translateX(0);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation__ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.main-navigation__ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-navigation__ul li a:hover {
    color: #c18f59;
}

@media (max-width: 768px) {
    .site-navigation-inner {
        padding: 15px;
    }

    .main-navigation {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 10px 20px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .main-navigation__ul {
        width: 100%;
        justify-content: space-around;
        font-size: 14px;
    }

    .main-navigation__ul li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 12px;
        padding: 8px;
    }

    .main-navigation__ul li a i {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .site-container {
        padding-bottom: 70px;
    }
}

/* Remove old mobile menu styles */
.burger-container, .mobile-menu, .menu-text {
    display: none !important;
}

body.menu-open {
    overflow: visible !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
}

/* Project Showcase Styles */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-tab {
    background: transparent;
    border: 2px solid #c18f59;
    color: #fff;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-tab i {
    font-size: 18px;
}

.category-tab:hover {
    background: rgba(193, 143, 89, 0.1);
    transform: translateY(-2px);
}

.category-tab.active {
    background: #c18f59;
    color: #000;
}

.projects-container {
    position: relative;
    min-height: 400px;
}

.project-category {
    display: none;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-category.active {
    display: block;
    opacity: 1;
    position: relative;
}

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

.fade-in {
    opacity: 0;
    will-change: opacity, transform;
}

/* Custom Solutions Grid */
.custom-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.solution-card {
    background: rgba(193, 143, 89, 0.05);
    border: 1px solid rgba(193, 143, 89, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(193, 143, 89, 0.1);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: rgba(193, 143, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 28px;
    color: #c18f59;
}

.solution-card h3 {
    color: #c18f59;
    font-size: 24px;
    margin-bottom: 15px;
}

.solution-card p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.solutions-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-feature i {
    color: #c18f59;
    font-size: 16px;
}

.solution-feature span {
    color: #fff;
    font-size: 15px;
}

/* Add JetBrains Mono font for tech-style text */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

.typing-text {
    font-family: 'JetBrains Mono', monospace;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.5px;
    color: #c18f59;
    margin: 10px 0;
    white-space: normal;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .typing-text {
        font-size: 16px;
        padding: 0 15px;
        margin: 8px 0;
    }
}

.custom-solutions-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.custom-solutions-footer p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
}

.contact-button-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Fix site container width and responsiveness */
.site-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Ensure proper text wrapping */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

/* Fix image responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure proper spacing in mobile view */
@media (max-width: 768px) {
    .site-container {
        padding: 0 15px;
    }
    
    .contact-button-wrapper {
        gap: 15px;
    }
    
    .brand-button {
        width: 100%;
        text-align: center;
    }
}

/* Critical error prevention */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.site-navigation {
    z-index: 1000;
}

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

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

input, textarea, button {
    max-width: 100%;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Blog Section Styles */
.blog-section {
    padding: 60px 0 40px 0;
    background: rgba(0,0,0,0.85);
}
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
.blog-post {
    background: rgba(193,143,89,0.07);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 32px 24px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}
.blog-post-title {
    color: #c18f59;
    font-size: 1.5rem;
    margin-bottom: 18px;
    text-align: center;
}
.blog-post-embed {
    width: 100%;
    display: flex;
    justify-content: center;
}
.blog-post-embed iframe {
    border-radius: 8px;
    border: none;
    width: 100%;
    min-height: 400px;
    max-width: 504px;
}
@media (max-width: 600px) {
    .blog-post {
        padding: 16px 4px;
    }
    .blog-post-embed iframe {
        min-height: 300px;
        height: 350px;
    }
}



