    html,
    body {
      height: 100%;
      margin: 0;
      padding: 0;
      font-family: Cinzel, sans-serif;
      background: #111;
      color: #fff;
      overflow-x: hidden;
      scrollbar-width: none;
      /* Firefox */
    }

    body::-webkit-scrollbar,
    html::-webkit-scrollbar {
      display: none;
      /* Chrome, Safari, Opera */
    }

    body {
      /* min-height: 100vh; */
      display: flex;
      flex-direction: column;
    }

    .scroll-animation {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
    }
	
	
.scroll-caption {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.0rem;
  margin-bottom: -2rem;
  letter-spacing: 5px;
  color: #bb9238;
  font-weight: 400;
  font-family: 'Cinzel', serif;
  text-align: center;
  z-index: 20;
  pointer-events: none;
}


    .scroll-animation img {
      position: absolute;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      top: 0;
      left: 0;
      opacity: 0;
      pointer-events: none;
    }

    .scroll-animation img.active {
      opacity: 1;
      z-index: 1;
    }


    .main-content {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: stretch;
      width: 100vw;
      min-height: 60vh;
      background: #0a0a0a;
      opacity: 0;
      pointer-events: none;
      transition: opacity 1s cubic-bezier(.4, 0, .2, 1);
      position: relative;
      z-index: 2;
    }

    .main-content.visible {
      opacity: 1;
      pointer-events: auto;
      z-index: 10;
    }
	
.gallery-section a {
  text-decoration: none;
  color: #bb9238; /* Match your h2 color or choose another */
  transition: color 0.3s ease;
}

.gallery-section a:hover {
  color: #ddd; /* Change this to your desired hover color */
  text-decoration: none; /* Keeps underline off */
}

.gallery-section {
  flex: 0 0 50%;
  padding: 3vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #242424;
  box-sizing: border-box;
}

.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: #bb9238;
  font-weight: 400;
}

.gallery-section p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #dddddd;
  font-family: 'Source Serif Pro', serif !important;
  font-weight: 300 !important;
  text-transform: none !important;
}

.gallery-section,
.gallery-section * {
  text-transform: none !important;
  text-decoration: none;
}

@media (max-width: 900px) {
  .main-content {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-section {
    /* width: 100vw; */
    /* height: 100vh; */
    /* max-width: 100vw; */
    /* min-height: 100vh; */
    padding: 20vw 4vw 20vw 4vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
    font-weight: 400;
    margin-left: 0;
  }

  .gallery-section p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 300 !important;
    text-align: justify;
  }
}
	

    @media (min-width: 601px) {
      .main-content.visible {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
		    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
        
      }
    }
@media (min-width: 601px) {
  #mainContent::-webkit-scrollbar {
    display: none;
  }
  #mainContent {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

	.about-me a {
	text-decoration: none;
	color: #bb9238; /* Match your h2 color or choose another */
	transition: color 0.3s ease;
	}

	.about-me a:hover {
	color: #242424; /* Change this to your desired hover color */
	text-decoration: none; /* Keeps underline off */
	}

    .about-me {
      flex: 0 0 50%;
      padding: 3vw 5vw;
      display: flex;
      flex-direction: column;
      justify-content: center;
	  background: #dddddd;
	  box-sizing: border-box;
    }
	

    .about-me h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      letter-spacing: 1px;
      color: #bb9238;
      font-weight: 400;
    }
	
    .about-me h3 {
      font-size: 1.5rem;
      margin-bottom: 0rem;
      letter-spacing: 0px;
      color: #bb9238;
      font-weight: 400;
    }	

    .about-me p {
      font-size: 1.2rem;
      line-height: 1.7;
      color: #474747;
      text-transform: none !important;
      font-family: 'Source Serif Pro', serif !important;
      font-weight: 300 !important;
    }

    .about-me,
    .about-me * {
      text-transform: none !important;
	  text-decoration: none;
    }

    .reviews-section {
      flex: 0 0 50%;
      padding: 3vw 5vw;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
	  background: #242424;
	  box-sizing: border-box;
      /* Match About Me alignment */
    }

    .reviews-section h2 {
      /* Match About Me heading style */
      font-size: 2.5rem;
      margin-bottom: 1rem;
      letter-spacing: 1px;
      color: #bb9238;
      font-weight: 400;
      margin-left: 44px;
    }


    .carousel-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      gap: 16px;
    }

    .carousel {
      flex: 1;
      position: relative;
      border-radius: 12px;
      background: rgba(30, 30, 30, 0.8);
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    }

    .side-btn {
      background: rgba(30, 30, 30, 0.9);
      border: 2px solid #444;
      color: #fff;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      z-index: 5;
    }

    .side-btn:hover {
      background: #bb9238;
      color: #000;
      transform: scale(1.1);
      box-shadow: 0 0 10px #bb9238;
    }

    .carousel-controls.mobile {
      display: none;
    }

    #hamburgerIcon {
      stroke: #ffffff !important;
    }


    /* === MOBILE STYLES === */
    @media (max-width: 600px) {

      html,
      body {
        height: 100%;
        overflow: hidden;
      }

      .main-content {
        /* height: 100vh; */
        overflow-y: auto;
        -webkit-overflow-scrolling: auto !important;
      }


      body.mobile-scroll-locked {
        overflow: hidden;
      }

      .main-content {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      .carousel-wrapper {
        flex-direction: column;
        gap: 12px;
      }

      .carousel {
        width: 100%;
      }

      .side-btn {
        width: 44px;
        height: 44px;
        margin: 0;
      }

      .carousel-wrapper>.side-btn {
        order: 2;
      }

      .mobile-controls {
        display: flex;
        gap: 16px;
        justify-content: center;
        margin-top: 12px;

      }

      .carousel-wrapper>.side-btn {
        display: none;
        /* hide default placement */
      }

      .carousel-controls.mobile {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 12px;
        margin-bottom: 70px;
      }

      .carousel-controls.mobile .carousel-btn {
        width: 44px;
        height: 44px;
      }
    }

    .carousel::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      border-radius: 12px;
      z-index: 2;

      background:
        linear-gradient(to right, transparent 0%, #bb9238 50%, transparent 100%) top left / 200% 2px no-repeat,
        linear-gradient(to bottom, transparent 0%, #bb9238 50%, transparent 100%) top right / 2px 200% no-repeat,
        linear-gradient(to left, transparent 0%, #bb9238 50%, transparent 100%) bottom right / 200% 2px no-repeat,
        linear-gradient(to top, transparent 0%, #bb9238 50%, transparent 100%) bottom left / 2px 200% no-repeat;

      animation: borderRun 4s linear infinite;
    }

    @keyframes borderRun {
      0% {
        background-position:
          0% 0%, 100% 0%, 100% 100%, 0% 100%;
      }

      25% {
        background-position:
          100% 0%, 100% 0%, 100% 100%, 0% 100%;
      }

      50% {
        background-position:
          100% 0%, 100% 100%, 0% 100%, 0% 100%;
      }

      75% {
        background-position:
          0% 0%, 100% 100%, 0% 100%, 0% 0%;
      }

      100% {
        background-position:
          0% 0%, 100% 0%, 100% 100%, 0% 100%;
      }
    }

    .carousel-btn {
      background: rgba(30, 30, 30, 0.8);
      border: 2px solid #444;
      color: #fff;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .carousel-btn:hover {
      background: #bb9238;
      color: #000;
      transform: scale(1.1);
      box-shadow: 0 0 10px #bb9238;
    }


    .carousel-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);

    }

    .carousel-item {
      min-width: 100%;
      box-sizing: border-box;
      padding: 2rem 1.5rem;
      color: #ddd;
      font-size: 1.2rem;
      line-height: 1.7;
      text-align: left;
      text-transform: none;
      /* Ensure normal case for reviews */
      font-family: 'Source Serif Pro', serif !important;
      font-weight: 300 !important;

    }

    .carousel-controls {
      display: flex;
      justify-content: flex-end;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .carousel-btn {
      background: #222;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      cursor: pointer;
      font-size: 1.2rem;
      transition: background 0.2s;
    }

    .carousel-btn:hover {
      background: #444;
    }

    .logo-img {
      position: fixed;
      top: 18px;
      left: 32px;
      width: 100px;
      height: auto;
      z-index: 100;
      background: transparent;
      pointer-events: auto;
      user-select: none;
      transition: opacity 0.2s, width 0.2s;
      max-width: 30vw;
      min-width: 60px;
    }

    .main-content.visible~.logo-img,
    .logo-img.hide-logo {
      display: none !important;
    }

    .main-nav {
      position: fixed;
      top: 32px;
      right: 32px;
      left: auto;
      display: flex;
      align-items: center;
      gap: 32px;
      z-index: 101;
      background: transparent;
      justify-content: flex-end;
    }

    .main-nav a {
      color: #ddd;
      text-decoration: none;
      font-size: 1.15rem;
      font-family: inherit;
      letter-spacing: 1px;
      padding: 8px 18px;
      border-radius: 6px;
      transition: background 0.2s, color 0.2s;
    }

    .main-nav a:hover {
      background: #222;
      color: #bb9238;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: #fff;
      font-size: 2rem;
      position: fixed;
      top: 28px;
      right: 32px;
      z-index: 102;
      cursor: pointer;
      padding: 4px 10px;
    }
	
@media (max-width: 600px) {
  .scroll-animation img {
    width: 132vw;
    height: 80vh;
    object-fit: cover;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    /* Optional enhancements */
    border: none; /* Or add border if needed */
  }

  .scroll-animation img.active {
    opacity: 1;
    z-index: 1;
  }
}

@media (max-width: 600px) {
  .scroll-caption {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem; /* More responsive than px */
    letter-spacing: 2px; /* Reduce excessive spacing */
    color: #bb9238;
    font-weight: 400;
    font-family: 'Cinzel', serif;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* Realistic shadow */
    z-index: 20;
    pointer-events: none;
    margin: 0;
    width: 90%;
    max-width: 95%;
  }
}

    @media (max-width: 900px) {
      .main-content {
        flex-direction: column;
        align-items: stretch;
      }

      .about-me,
      .reviews-section {
        padding: 6vw 5vw;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }

      .reviews-section {
        padding-bottom: 40px;
        align-items: flex-start;
      }

      .carousel {
        max-width: 100%;
      }

      .logo-img {
        width: 90px;
        top: 12px;
        left: 16px;
        min-width: 48px;
        max-width: 24vw;
      }
    }

    @media (max-width: 600px) {
      .main-content.visible {
        position: relative !important;
        height: auto !important;
        overflow-y: auto !important;
      }





      .logo-img {
        width: 70px;
        top: 18px;
        left: 10px;
        min-width: 40px;
        max-width: 28vw;
      }

      .main-nav {
        flex-direction: column;
        align-items: flex-end;
        position: fixed;
        top: 68px;
        right: 0;
        left: auto;
        background: rgba(20, 20, 20, 0.98);
        width: auto;
        min-width: 140px;
        max-width: 80vw;
        padding: 0 0 0 0;
        gap: 0;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
        display: none;
      }

      .main-nav.open {
        display: flex;
      }

      .main-nav a {
        width: 100%;
        min-width: 120px;
        padding: 24px 0 24px 0px;
        font-size: 1.1rem;
        border-radius: 0;
        border-bottom: 1px solid #222;
        text-align: center;
      }

      .nav-toggle {
        display: block;
      }

      .main-content {
        flex-direction: column;
        align-items: stretch;
        min-height: 50vh;
        width: 100vw;
      }

      .about-me,
      .reviews-section {
        /* width: 100vw; */
		/* height: 100vh; */
        /* max-width: 100vw; */
		/* min-height: 100vh; */
		padding: 20vw 4vw 10vw 4vw;
        box-sizing: border-box;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
;
      }

      .about-me h2,
      .reviews-section h2 {
        font-size: 2rem;
        margin-bottom: 0.7rem;
        font-weight: 400;
        margin-left: 0;
      }

      .about-me p,
      .carousel-item {
        font-size: 1rem;
        line-height: 1.5;
        font-weight: 300 !important;
		text-align: justify;
      }

      .carousel {
        margin-top: 0.7rem;
        border-radius: 8px;
      }

      .carousel-controls {
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
        gap: 1rem;
      }

      .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
      }
    }

    /* ...existing styles... */
    .social-icons {
      display: flex;
      gap: 18px;
      justify-content: flex-end;
      align-items: center;
      position: fixed;
      right: 24px;
      bottom: 24px;
      left: auto;
      margin: 0;
      z-index: 120;
      background: none;
      box-shadow: none;
    }

    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 10%;
      background: #232323;
      color: #bbb;
      transition: background 0.2s, color 0.2s, transform 0.2s;
      text-decoration: none;
      font-size: 1rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .social-icon:hover {
      /* Only animate, do not use #bb9238 */
      background: #a57712 !important;
      /* color:  !important; */
      transform: translateY(-4px) scale(1.08);
    }

    /* Remove forced #bb9238 on hover for all icons */
    /* .social-icon.facebook:hover,
    .social-icon.email:hover,
    .social-icon.youtube:hover,
    .social-icon.linkedin:hover {
      background: #444 !important;
      color: #bb9238 !important;
    } */
/* Gallery Section Image */
.gallery-section-img {
  width: 600px;
  height: 608px;
  object-fit: cover;
  /* border-radius: 50%; */
  margin-bottom: 1.2rem;
  border: 1px solid #222;
  box-shadow: -10px 15px 20px 14px rgba(0, 0, 0, 0.18);
  display: block;
}

.blog-section-img {
  width: 600px;
  height: 400px;
  object-fit: cover;
  /* border-radius: 50%; */
  margin-bottom: 1.2rem;
  border: 1px solid #222;
  box-shadow: -10px 15px 20px 14px rgba(0, 0, 0, 0.18);
  display: block;
}

.blog-section-img h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: #bb9238;
  font-weight: 400;
}

    @media (max-width: 600px) {
      .social-icons {

        right: 10px;
        bottom: 10px;
        left: auto;
        gap: 12px;
      }

      .social-icon {
        width: 20px;
        height: 20px;
        font-size: 0.85rem;
      }
    }

    .profile-photo {
      width: 250px;
      height: 250px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 1.2rem;
      border: 1px solid #222;
      box-shadow: -10px 15px 20px 14px rgba(0, 0, 0, 0.18);
      display: block;
    }
	
    .profile-sign {
      width: 200px;
      height: 112px;
      object-fit: cover;
      margin-bottom: 1.2rem;
      display: block;
    }	

    @media (max-width: 600px) {
      body {
        height: 100%;
      }

      .profile-photo {
        width: 200px;
        height: 200px;
        margin-bottom: 0.7rem;
      }
	  .gallery-section-img {
        width: 353px;
        height: 353px;
        margin-bottom: 0.7rem;
      }
	  
	  .blog-section-img {
        width: 353px;
        height: 353px;
        margin-bottom: 0.7rem;
      }
	  	  
	  
	  .profile-sign {
      width: 150px;
      height: 80px;
      object-fit: cover;
      margin-bottom: 1.2rem;
      display: block;
		}
	}

