:root {
  --black: #000000;
  --white: #ffffff;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font Sizes */
  --font-normal: 2.0em;
  --font-small: 0.8125rem;
  /* Sidebar */
  --sidebar-width: 242px;
  --content-max-width: 860px;
}

/* HAMBURGER MENU */
.hamburger-menu {
  display: block;
  position: absolute; /* Ensure it stays at the top-left */
  top: 10px; /* Adjust vertical alignment */
  left: 10px; /* Adjust horizontal alignment */
  cursor: pointer;
  font-size: 20px;
  user-select: none;
  z-index: 1000; /* Ensure it stays above other elements */
  width: 40px;  /* Makes the entire hamburger area clickable */
  height: 40px; /* Adjust height to match */
  }
  
  .checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  }
  
  .checkmark span {
  width: 32px;
  height: 2px;
  background-color: white;
  position: absolute;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  
  .checkmark span:nth-child(1) {
  top: 10%;
  }
  
  .checkmark span:nth-child(2) {
  top: 50%;
  }
  
  .checkmark span:nth-child(3) {
  top: 90%;
  }
  
  /* ACTIVE STATE */
  .hamburger-menu.active .checkmark span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  }
  
  .hamburger-menu.active .checkmark span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  }
  
  .hamburger-menu.active .checkmark span:nth-child(3) {
  transform: translateX(-50px);
  opacity: 0;
  }

/* PAGE TITLE */
.heading {
  font-family: 'Helvetica Neue', Arial, sans-serif; /* Clean sans-serif font */
  font-size: 2.5rem; /* Large, prominent text */
  font-weight: lighter; /* Light weight for elegance */
  text-transform: uppercase; /* All caps for a strong look */
  text-align: center; /* Center align the text */
  color: #b4b4b4; /* Neutral dark gray */
  margin: 20px 0; /* Add space around the heading */
  padding-bottom: 10px; /* Space between text and underline */

  /* Animation setup */
  opacity: 0; /* Initially hidden */
  transform: translateY(20px); /* Start slightly below */
  animation: fadeInUp 1s ease-out forwards; /* Fade and slide in */
}

/* Keyframes for the animation */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}
  
/*OPTIMIZING FOR MOBILE*/

form {
width: 100%;
max-width: 100%;
padding: 0 10px;  /* Ensure padding on both sides */
box-sizing: border-box;  /* Include padding in width calculations */
}

input, select, textarea {
width: 100%;
max-width: 100%;
margin-bottom: 10px;
box-sizing: border-box;
}

header {
position: relative;
z-index: 10;  /* Ensure the header is always on top */
}

/* Responsive styling for mobile */
@media (max-width: 768px) {
  header {
    padding: 10px; /* Reduce padding for smaller screens */
  }
  
  .container-1 {
    display: flex; /* Flex to allow the button to remain visible */
    justify-content: flex-end; /* Align to the right */
    width: 100%; /* Full width to ensure button visibility */
  }
  
  header .button {
    font-size: 14px; /* Slightly smaller text */
    padding: 8px 12px; /* Adjust button padding */
    position: relative; /* Change position to relative for better visibility */
    right: 0; /* Align button to the right */
    margin: 10px 0; /* Add margin for spacing */
  }
  }
  
.menu {
z-index: 11;  /* Ensure the menu has a higher z-index */
}

@media (max-width: 768px) {
.content {
    font-size: 16px;  /* Adjust font size for mobile */
    padding: 10px;    /* Add padding for spacing */
}

img {
    max-width: 100%;  /* Ensure images don't overflow */
    height: auto;     /* Maintain aspect ratio */
}

}

/* Hover effect */
img:hover {
  transform: scale(1.03); /* Slight zoom effect on hover */
}

/*SCROLLBAR*/

html {
scrollbar-width: thin; /* For Firefox */
scrollbar-color: #990c0c #ffffff; /* For Firefox */
}

body::-webkit-scrollbar {
width: 12px; /* Width of the scrollbar */
}

body::-webkit-scrollbar-track {
background: #920e0e; /* Background of the track */
border-radius: 10px; /* Rounded corners */
}

body::-webkit-scrollbar-thumb {
background-color: #1a1a1a; /* Scrollbar color */
border-radius: 10px; /* Rounded corners */
border: 2px solid #333; /* Border for the scrollbar thumb */
}

body::-webkit-scrollbar-thumb:hover {
background-color: #555; /* Color when hovered */
}

body::-webkit-scrollbar-thumb:active {
background-color: #777; /* Color when clicked */
}

/* Scroll reveal animation */
.section {
  opacity: 1; /* Initial state for the reveal effect */
  transform: translateY(20px); /* Initial position */
  scroll-behavior: smooth;
}  

/* SIGN IN AND SIGN UP POP UP */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Darker overlay for better contrast */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup.hidden {
  display: none;
}

.popup-content {
  position: relative;
  padding: 25px 40px;
  border-radius: 12px; /* Softer corners */
  background: rgba(0, 0, 0, 0.8); /* Semi-transparent for visibility */
  box-shadow: 0px 8px 28px -9px rgba(0, 0, 0, 0.45);
  overflow: hidden; /* Ensures waves stay inside */
  text-align: center;
}

/* Waves styling */
.wave {
  position: absolute;
  width: 420px; /* Reduced width */
  height: 550px; /* Reduced height */
  background: linear-gradient(744deg, #3f3f3f, #7c7c7c 60%, #2c2c2c);
  opacity: 0.4;
  border-radius: 40%;
  animation: wave 15s infinite linear; /* Faster animation */
}

.wave1 {
  top: -30%; /* Adjusted position */
  left: -40%;
  animation-duration: 15s;
}

.wave2 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-duration: 12s;
}

.wave3 {
  top: 50%;
  left: 0;
  animation-duration: 18s;
}

/* Animating the rotation */
@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Headline and description styling */
.popup-content h2,
.popup-content p {
  position: relative;
  font-weight: lighter;
  color: #ffffff;
  z-index: 10; /* Keeps text above waves */
}

.popup-content h2 {
  margin-bottom: 15px;
  font-size: 2.0em;
}

.popup-content p {
  margin-bottom: 25px;
  font-size: 1.1em;
}

/* Buttons container */
.popup-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  z-index: 10; /* Keeps buttons above waves */
}

/* Buttons container */
.popup-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  position: relative; /* Ensure layering works */
  z-index: 20; /* Higher than waves */
}

.popup-buttons .btn {
  padding: 1.3em 3em;
  text-decoration: none;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #f7f7f7;
  background-color: #000000c5;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.popup-buttons .btn:hover {
  background-color: #460000cb;
  color: #fff;
}

.popup-buttons .btn:active {
  transform: translateY(-1px);
}

/* Animation for smooth appearance */
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*THEME*/

.theme-switch__checkbox:checked + .theme-switch__container {
  background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container:hover {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em)
}

.theme-switch__circle-container:hover {
  left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__moon {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__clouds {
  bottom: -4.062em;
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__stars-container {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

  
.ui-switch input:checked+.slider .circle {
  left: calc(100% - var(--circle-diameter));
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjAiIHdpZHRoPSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiCiAgICAgICAgZD0iTTQuMiAyLjVsLS43IDEuOC0xLjguNyAxLjguNy43IDEuOC42LTEuOEw2LjcgNWwtMS45LS43LS42LTEuOHptMTUgOC4zYTYuNyA2LjcgMCAxMS02LjYtNi42IDUuOCA1LjggMCAwMDYuNiA2LjZ6IiAvPgo8L3N2Zz4=");
}

.ui-switch input:active+.slider .circle::before {
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  opacity: 1;
  width: 0;
  height: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  line-height: 1.15;
}
a{
  color: var(--black);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  font-weight: lighter;
  text-align: center;
}

/*HEADER*/

.header {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: var(--sidebar-width);
  background: var(--black);
  color: #fff
}

/*SITE TITLE */

.header .site-title {
  color:var(--white);
  display:block;
  text-decoration: none;
}

/* Shine Keyframes */
@keyframes shine {
  0% {
      background-position: 0;
  }
  60% {
      background-position: 200px;
  }
  100% {
      background-position: 240px;
  }
}

/* Fitness Title Styling */
.fitness-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #222;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
  background-position: 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Text gradient effect */
  
  animation: fadeZoomIn 2s ease-in-out forwards, shine 3s linear infinite; /* Combine animations */
  animation-fill-mode: forwards;
}

/* Fade-in and Zoom Keyframes */
@keyframes fadeZoomIn {
  0% {
      opacity: 0;
      transform: scale(0.8);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

.header {
  background: rgba(255, 255, 255, 0.3);
  border-color: transparent;
  font-size: 1rem;
  padding-top: 0.5rem
}

.header{
  background: rgb(0, 0, 0);
  border-color: transparent
}

/* NAVBAR TOGGLER */
.navbar-toggler {
background: none;
border: none;
padding: 0;
margin: 0;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
}

.navbar-toggler:focus {
outline: none;
}

/* NAV ITEMS */
.nav-item {
list-style: none;
margin: 4px 0;
background: linear-gradient(135deg, #000000, #000000);
border-radius: 8px;
box-shadow: 0 4px 8px rgb(0, 0, 0);
max-width: 250px;
width: 100%;
text-align: center;
transition: background 0.3s, transform 0.2s;
}

.nav-item:hover {
transform: scale(1.05);
}

.nav-link {
text-decoration: none;
padding: 8px 12px;
color: #e0e0e0;
font-weight: bold;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: color 0.3s;
}

.nav-link:hover {
color: #ffffff;
}

.nav-link i {
font-size: 18px;
transition: transform 0.3s;
}

.nav-item:hover i {
transform: rotate(10deg);
}

.nav-link, .nav-link-alt, .nav-link-custom {
transition: background-color 0.3s, color 0.3s;
padding: 10px 15px;
border-radius: 5px;
display: block;
text-decoration: none;
}

.nav-link.active, .nav-link-custom.active {
color: white;  /* Ensure text stays visible */
}

/* CONTACT BUTTON */
.nav-item-alt {
margin: 4px 0;
width: 100%;
max-width: 250px;
}

.nav-link-alt {
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
color: #f1f1f1;
padding: 10px 18px;
background-color: #5a5a5a;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s, transform 0.2s;
}

.nav-link-alt:hover {
text-decoration: none;
background-color: #4a4a4a;
transform: scale(1.05);
color: inherit; /* Prevent the link from changing color on hover */
}
  
  /* HOW IT WORKS BUTTON */
  .nav-item-custom {
  margin: 4px 0;
  background: linear-gradient(135deg, #000000, #000000);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 250px;
  transition: background 0.3s, transform 0.2s;
  }
  
  .nav-link-custom {
  text-decoration: none;
  color: #fff;
  font-weight: lighter;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background-color 0.3s, transform 0.2s;
  }
  
  .nav-link-custom:hover {
  text-decoration: none;
  color: #636160;
  transform: scale(1.05);
  }
  
/* SOCIAL ICONS */
.social-icons {
display: flex;
justify-content: center; /* Center icons horizontally */
gap: 16px; /* Space between icons */
margin-top: 12px;
}
.social-icons a {
font-size: 22px;
color: #f1f1f1;
transition: transform 0.2s;
}

.social-icons a:hover {
transform: scale(1.2);
}

@media (max-width: 600px) {
.nav-link, .nav-link-alt, .nav-link-custom {
    font-size: 14px;
}

.social-icons a {
    font-size: 20px;
}
}

/* NAVBAR */
.navbar {
display: flex;
align-items: center; /* Center items horizontally */
justify-content: center; /* Center items vertically */
padding: 10px;
background-color: #000000;
width: 100%;
gap: 20px; /* Space between elements */
}

.navbar-nav {
display: flex;
flex-direction: column; /* Arrange items in a column */
align-items: center; /* Center items horizontally */
list-style-type: none; /* Remove default list styling */
padding: 0; /* Remove default padding */
margin: 0; /* Remove default margin */
}

.header .navbar {
  padding: 2rem 1rem
}

.header .navbar-dark .navbar-toggler {
  border: none;
  padding: 0.25rem 0.6rem;
}

.header .navbar-dark {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1
}

.header .navbar-dark-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(256,256,256, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.header{
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  color: rgb(255, 255, 255);

}

.header .active {
  color: rgba(255, 255, 255, 0.5)
}

.header .active {
  text-decoration: none
}

.logo {
  display: block;
  width: 100px;
  height: auto;
  margin-top: -4px; /* Adjust this value to move it down */
}

/*SHARE BUTTON*/

.share-button {
cursor: pointer;
padding: 0.5em;
font-size: 1em;
font-weight: lighter;
width: 7em;
margin-top: -7px; /* Adjust this value to move it higher */
aspect-ratio: 1/0.25;
color: white;
background: #000000;
background-size: cover;
background-blend-mode: overlay;
border-radius: 0.5em;
outline: 0.1em solid #353535;
border: 0;
box-shadow: 0 0 1em 1em rgba(0, 0, 0, 0.1);
transition: all 0.3s ease-in-out;
position: relative;
}

.share-button:hover {
transform: scale(1.1);
box-shadow: black;
background: rgb(119, 11, 11);
outline: 0;
}

.icon {
fill: white;
width: 1em;
aspect-ratio: 1;
top: 0;
left: 0;
margin: auto;
transform: translate(-35%, 10%);
}

/* Modal Container */ 
.modal {
display: none; /* Hidden by default */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
z-index: 1000; /* Ensure modal is above everything */
}

/* Heading Styles */
h3 {
color: #fff;
font-weight: 450;
}

/* Modal Content */
.modal-content {
background: #000000b6; /* Semi-transparent black */
color: #000000; /* Text color inside the modal */
padding: 20px;
border-radius: 8px;
width: 100%; /* Make it responsive */
max-width: 400px; /* Limit the maximum width */
text-align: center;
position: relative; /* Position relative for the close button */
margin-top: 125px; /* Adjust margin as needed */
}

/* Close Button */
.close {
position: absolute;
top: 10px;
right: 15px;
color: white;
font-size: 30px;
cursor: pointer;
}

/* Additional Styles for Responsiveness */
@media (max-width: 500px) {
.modal-content {
    width: 90%; /* Make modal responsive on smaller screens */
}
}

/* social */ 
.wrapper {
display: inline-flex;
list-style: none;
height: 120px;
width: 100%;
padding-top: 40px;
font-family: "Poppins", sans-serif;
justify-content: center;
}

.wrapper .icon {
position: relative;
background: #fff;
border-radius: 50%;
margin: 10px;
width: 50px;
height: 50px;
font-size: 18px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon a {
color: inherit; /* Inherit the icon color */
text-decoration: none; /* Remove underline */
}

.wrapper .icon a:hover {
color: inherit; /* Prevent the link from changing color on hover */
}

/* Adjust tooltip styles */
.wrapper .tooltip {
position: absolute;
top: -40px; /* Adjusted for better alignment */
left: 50%; /* Center tooltip horizontally */
transform: translateX(-50%); /* Center tooltip */
font-size: 14px;
background: #fff;
color: #333; /* Set text color to dark for better visibility */
padding: 5px 8px;
border-radius: 5px;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
opacity: 0;
pointer-events: none;
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
position: absolute;
content: "";
height: 8px;
width: 8px;
background: #fff; /* Default background for pointer */
bottom: -3px;
left: 50%;
transform: translate(-50%) rotate(45deg);
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
opacity: 1;
visibility: visible;
pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

/* Icon hover styles */
.wrapper .facebook:hover {
background: #1877f2;
}

.wrapper .twitter:hover {
background: #393a3a;
}

.wrapper .instagram:hover {
background: #e4405f;
}

.wrapper .linkedin:hover {
background: #0077b5; /* LinkedIn color */
}

.wrapper .whatsapp:hover {
background: #25D366; /* WhatsApp color */
}

/* Tooltip colors for each icon */
.wrapper .facebook:hover .tooltip {
background: #1877f2; /* Facebook tooltip color */
color: #fff;
}

.wrapper .facebook:hover .tooltip::before {
background: #1877f2; /* Facebook tooltip pointer color */
}

.wrapper .twitter:hover .tooltip {
background: #393a3a; /* Twitter tooltip color */
color: #fff;
}

.wrapper .twitter:hover .tooltip::before {
background: #393a3a; /* Twitter tooltip pointer color */
}

.wrapper .instagram:hover .tooltip {
background: #e4405f; /* Instagram tooltip color */
color: #fff;
}

.wrapper .instagram:hover .tooltip::before {
background: #e4405f; /* Instagram tooltip pointer color */
}

.wrapper .linkedin:hover .tooltip {
background: #0077b5; /* LinkedIn tooltip color */
color: #fff;
}

.wrapper .linkedin:hover .tooltip::before {
background: #0077b5; /* LinkedIn tooltip pointer color */
}

.wrapper .whatsapp:hover .tooltip {
background: #25D366; /* WhatsApp tooltip color */
color: #fff;
}

.wrapper .whatsapp:hover .tooltip::before {
background: #25D366; /* WhatsApp tooltip pointer color */
}


/* Copy Section */
.copy-section {
margin: 20px 0;
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
}

.copy-section input {
width: 75%;
padding: 10px;
border: none;
border-bottom: 2px solid #555;
background: transparent;
color: white;
font-size: 16px;
outline: none;
}

[type="text"] {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  border: none;
}

.copy-section .copy-btn {
padding: 10px 16px;
background-color: #c00d0d;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s;
}

.copy-section .copy-btn:hover {
background-color: #810505;
}

/* Copy Link Section */
.copy-section {
margin-top: 20px;
display: flex;
justify-content: space-between;
background-color: #444;
padding: 10px;
border-radius: 8px;
display: flex;
align-items: center;
gap: 10px;
margin: 20px 0; /* Adjust margin as needed */
}

.copy-section input {
width: 75%;
background: none;
border: none;
color: white;
font-size: 16px;
padding: 5px;
outline: none;
}

.copy-btn {
cursor: pointer;
background-color: #990c0c;
color: white;
border: none;
border-radius: 4px;
padding: 8px;
font-size: 14px;
}

  #shareLink {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 15px;
  }

  .copy-btn {
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      background-color: #007bff;
      color: white;
      font-size: 14px;
      cursor: pointer;
      transition: background-color 0.3s ease;
  }

  .copy-btn:hover {
      background-color: #0056b3;
  }

  #customAlert {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #8a0808;
      color: #fff;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 300;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      opacity: 0;
      transition: opacity 0.3s ease, bottom 0.3s ease;
      z-index: 1000;
  }

  #customAlert.show {
      opacity: 1;
      bottom: 40px;
  }

  #customAlert.hidden {
      opacity: 0;
  }
  
/*SOCIAL ICON*/

.social-list a {
width: 32px;
height: 32px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background-color: #cccaca;
color: #000000;
text-decoration: none;
font-size: 16px;
transition: background-color 0.3s ease, transform 0.3s ease;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

/* Hover Effects for Individual Social Icons */
.social-list li:nth-child(1) a:hover {
background-color: #b81212; 
transform: scale(1.1);
}

.social-list li:nth-child(2) a:hover {
background-color: #1d85c5; 
transform: scale(1.1);
}

.social-list li:nth-child(3) a:hover {
background-color: #333;
transform: scale(1.1);
}

.social-list li:nth-child(4) a:hover {
background-color: #e4405f; 
transform: scale(1.1);
}

.social-list li:nth-child(5) a:hover {
background-color: #520e80; 
transform: scale(1.1);
}

/* Optional: Active State */
.social-list a:active {
transform: scale(0.95);
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}


.main-wrapper {
  margin-left: var(--sidebar-width);
  background: #fff;
}

.main-wrapper .container {
  max-width: var(--content-max-width);
}
.page-title {
  position:sticky;
  top:0;
  z-index:9999;
  transition:all .2s;
}
.sticky{
  padding:1em 0 !important;
}

.footer {
  text-align: center ;
  margin: 0 auto;
  padding: 25px 0; /* Adjust the padding as needed */
  font-size: 1em; /* Adjust the font size as needed */
  background-color: #535353; /* Optional: Add a background color */
  color: #ffffff; /* Optional: Change the text color */
  width: 100%; /* Ensure the footer spans the full width of the page */
}

.gradient{
  background: rgb(43,43,43);
  background: linear-gradient(151deg, var(--black) 0%, var(--black) 35%,var(--black) 100%) !important;
}
.content .post .title {
  font-size: 1.275rem
}

.content .post .title a {
  color: var(--black)
}

.content .post .title a:hover {
  color: var(--black)
}

.content .post .post-thumb {
  max-width: 160px;
  border-radius: 2px
}

.content .post .intro {
  font-size: 0.875rem
}

.content .post .more-link {
  font-size: var(--font-small);
}

.content .title {
  font-weight: bold;
  font-size: 2rem
}

.content .content-body p,
.content .content-body li {
  font-size: 1.125rem;
  line-height: 1.6
}

.content .content-body h1 {
  font-size: 2.125rem
}

.content .content-body h2 {
  font-size: 2rem
}

.content .content-body h3 {
  font-size: 1.75rem
}

.content .content-body h4 {
  font-size: 1.5rem
}

.content .content-body h5 {
  font-size: 1.25rem
}

.content .content-body h6 {
  font-size: 1.125rem
}

.content .image-caption {
  color: #8f8f8f;
  font-size: 0.875rem
}

.content .image-caption a {
  color: #8f8f8f;
  text-decoration: none
}

.content .blockquote {
  font-family: Georgia, "Times New Roman", Times, serif;
  border-left: 2px solid var(--black);
  font-size: 1.5rem
}

.content .blockquote p {
  font-size: 1.5rem
}

@media (prefers-reduced-motion: reduce) {
  .social-list a {
      transition: none
  }
  .btn {
      transition: none
  }
}

@media (min-width: 768px) {
 
  
}

@media (max-width: 991.98px) {
  .page-title {
      position:static;
  }
  .header {
      position: sticky;
      width: inherit;
      height: auto
  }

  .header .site-title {
    width: 100%;
    position: absolute;
    left: 0;
    top: 1.2rem;
    display:block;
}

  .header .btn-primary {
      width: 100%
  }

  .header .navbar {
      padding: 1rem
  }

  .main-wrapper {
      margin-left: 0
  }
}

@media (max-width: 767.98px) {
  
}

/* CONTACT FORM - Minimalistic Design */
.container-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 20px;
}

.card {
  width: 100%;
  max-width: 600px;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.contact {
  color: #333;
  font-size: 1.8rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inputBox {
  position: relative;
}

.inputBox input,
.inputBox textarea {
  width: 100%;
  padding: 16px 0;
  font-size: 16px;
  color: #333;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.inputBox textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.inputBox span {
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 16px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
}

.inputBox input:focus,
.inputBox textarea:focus {
  border-bottom-color: #333;
}

.inputBox input:focus ~ span,
.inputBox input:valid ~ span,
.inputBox textarea:focus ~ span,
.inputBox textarea:valid ~ span {
  transform: translateY(-20px);
  font-size: 12px;
  color: #333;
}

.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.enter {
  flex: 1;
  padding: 16px 24px;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enter:hover {
  background: #555;
  transform: translateY(-1px);
}

.form-reset-btn {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
}

.form-reset-btn:hover {
  background: #f5f5f5;
  color: #333;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container-1 {
    padding: 15px;
  }
  
  .card {
    padding: 30px 20px;
  }
  
  .contact {
    font-size: 1.5rem;
  }
  
  .form-buttons {
    flex-direction: column;
  }
  
  .inputBox input,
  .inputBox textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Formspree Powered Section */
.formspree-powered {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  font-size: 0.8em;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.formspree-powered span {
  color: #999;
  font-size: 0.8em;
}

.formspree-powered img {
  height: 16px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.formspree-powered a:hover img {
  opacity: 1;
}

@media (max-width: 600px) {
  .formspree-powered {
    font-size: 0.75em;
    gap: 4px;
  }
  
  .formspree-powered img {
    height: 14px;
  }
}
