/* -----------------------------------------------------
   1. Font Imports & Basic Global Styles
   ----------------------------------------------------- */
   @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

   /* Hide the three traffic-light dots in top-left */
   .menu-circle {
     display: none;
   }
   
   /* Reset some basics */
   * {
     outline: none;
     box-sizing: border-box;
   }
   
   /* CSS Variables */
   :root {
     --theme-bg-color: rgba(16 18 27 / 40%);
     --border-color: rgba(113 119 144 / 25%);
     --theme-color: #f9fafb;
     --inactive-color: rgb(113 119 144 / 78%);
     --body-font: "Poppins", sans-serif;
     --hover-menu-bg: rgba(12 15 25 / 30%);
     --content-title-color: #999ba5;
     --content-bg: rgb(146 151 179 / 13%);
     --button-inactive: rgb(249 250 251 / 55%);
     --dropdown-bg: #21242d;
     --dropdown-hover: rgb(42 46 60);
     --popup-bg: rgb(22 25 37);
     --search-bg: #bba0dc9b;
     --overlay-bg: rgba(36, 39, 59, 0.3);
     --scrollbar-bg: rgb(1 2 3 / 40%);
   }
   
   /* Light mode overrides */
   .light-mode {
     --theme-bg-color: rgb(255 255 255 / 31%);
     --theme-color: #3c3a3a;
     --inactive-color: #333333;
     --button-inactive: #3c3a3a;
     --search-bg: rgb(255 255 255 / 31%);
     --dropdown-bg: #f7f7f7;
     --overlay-bg: rgb(255 255 255 / 30%);
     --dropdown-hover: rgb(236 236 236);
     --border-color: rgb(255 255 255 / 35%);
     --popup-bg: rgb(255 255 255);
     --hover-menu-bg: rgba(255 255 255 / 35%);
     --scrollbar-bg: rgb(255 253 253 / 57%);
     --content-title-color: --theme-color;
   }
   
   /* Smooth font rendering */
   html {
     box-sizing: border-box;
     -webkit-font-smoothing: antialiased;
   }
   
   /* -----------------------------------------------------
      2. Body: Remove Centering, Make Full-Page
      ----------------------------------------------------- */
   body {
     font-family: var(--body-font);
     margin: 0;            /* Remove default margin */
     padding: 0;           /* Remove extra padding */
     width: 100%;
     min-height: 100vh;    /* Let it fill full height */
   
     /* Keep your background image if you like */
     background-image: url(https://wallpapershome.com/images/wallpapers/macos-big-sur-1280x720-dark-wwdc-2020-22655.jpg);
     background-size: cover;
     background-position: center;
   }
   
   /* -----------------------------------------------------
      3. Video BG
      ----------------------------------------------------- */
   .video-bg {
     position: fixed;
     right: 0;
     top: 0;
     width: 100%;
     height: 100%;
   }
   .video-bg video {
     width: 100%;
     height: 100%;
     object-fit: cover;
   }
   
   /* Basic global img handling */
   img {
     max-width: 100%;
   }
   
   /* -----------------------------------------------------
      4. Dark-Light Switch
      ----------------------------------------------------- */
   .dark-light {
     position: fixed;
     bottom: 50px;
     right: 30px;
     background-color: var(--dropdown-bg);
     box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.2);
     padding: 8px;
     border-radius: 50%;
     z-index: 3;
     cursor: pointer;
   }
   .dark-light svg {
     width: 24px;
     flex-shrink: 0;
     fill: #ffce45;
     stroke: #ffce45;
     transition: 0.5s;
   }
   .light-mode .dark-light svg {
     fill: transparent;
     stroke: var(--theme-color);
   }
   
   /* Light Mode overlay effect on the background */
   body.light-mode:before,
   body.light-mode .video-bg:before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100vh;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgb(255 255 255 / 45%) 100%);
     backdrop-filter: saturate(3);
   }
   
   /* -----------------------------------------------------
      5. Main .app Container: Full Page, No "Card" Look
      ----------------------------------------------------- */
   .app {
     width: 100%;
     min-height: 100vh;           /* fill full height */
     display: flex;
     flex-direction: column;
     position: relative;
   
     /* Remove "card" constraints: */
     /* background-color: var(--theme-bg-color); */ /* You can keep if you want tinted BG */
     /* border-radius: 14px; */
     /* max-width: 1250px; */
     /* max-height: 860px; */
     /* height: 90vh; */
     /* backdrop-filter: blur(20px); */
     /* -webkit-backdrop-filter: blur(20px); */
   
     font-size: 15px;
     font-weight: 500;
     overflow: hidden; /* can remove if you want */
   }
   
   /* -----------------------------------------------------
      6. Header, Menus, Search, etc.
      (Mostly unchanged except for removing .menu-circle)
      ----------------------------------------------------- */
   .header {
     display: flex;
     align-items: center;
     flex-shrink: 0;
     height: 58px;
     width: 100%;
     border-bottom: 1px solid var(--border-color);
     padding: 0 30px;
     white-space: nowrap;
   }
   @media screen and (max-width: 480px) {
     .header {
       padding: 0 16px;
     }
   }
   .header-menu {
     display: flex;
     align-items: center;
   }
   .header-menu a {
     padding: 20px 30px;
     text-decoration: none;
     color: var(--inactive-color);
     border-bottom: 2px solid transparent;
     transition: 0.3s;
   }
   @media screen and (max-width: 610px) {
     .header-menu a:not(.main-header-link) {
       display: none;
     }
   }
   .header-menu a.is-active,
   .header-menu a:hover {
     color: var(--theme-color);
     border-bottom: 2px solid var(--theme-color);
   }
   
   /* Example "notify" dot near the menu item */
   .notify {
     position: relative;
   }
   .notify:before {
     content: "";
     position: absolute;
     background-color: #3a6df0;
     width: 6px;
     height: 6px;
     border-radius: 50%;
     right: 20px;
     top: 16px;
   }
   @media screen and (max-width: 1055px) {
     .notify {
       display: none;
     }
   }
   
   /* .menu-circle was removed or hidden above */
   
   .search-bar {
     height: 40px;
     display: flex;
     width: 100%;
     max-width: 400px;
     padding-left: 16px;
     border-radius: 4px;
   }
   .search-bar input {
     width: 100%;
     height: 100%;
     border: none;
     background-color: var(--search-bg);
     border-radius: 4px;
     font-family: var(--body-font);
     font-size: 15px;
     font-weight: 500;
     padding: 0 20px 0 40px;
     box-shadow: 0 0 0 2px rgb(134 140 160 / 2%);
     background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg ...%3e");
     background-size: 14px;
     background-repeat: no-repeat;
     background-position: 16px 48%;
     color: var(--theme-color);
   }
   .search-bar input::placeholder {
     font-family: var(--body-font);
     color: var(--inactive-color);
     font-size: 15px;
     font-weight: 500;
   }
   
   /* Header right side: notifications, profile, etc. */
   .header-profile {
     display: flex;
     align-items: center;
     padding: 0 16px 0 40px;
     margin-left: auto;
     flex-shrink: 0;
   }
   .header-profile svg {
     width: 22px;
     color: #f9fafb;
     flex-shrink: 0;
   }
   .notification {
     position: relative;
   }
   .notification-number {
     position: absolute;
     background-color: #3a6df0;
     width: 16px;
     height: 16px;
     border-radius: 50%;
     font-size: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     right: -6px;
     top: -6px;
   }
   .notification + svg {
     margin-left: 22px;
   }
   @media screen and (max-width: 945px) {
     .notification + svg {
       display: none;
     }
   }
   .profile-img {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid var(--theme-color);
     margin-left: 22px;
   }
   
   /* If wide mode triggers a narrower layout */
   .wide .header-menu,
   .wide .header-profile {
     display: none;
   }
   .wide .search-bar {
     max-width: 600px;
     margin: auto;
     transition: 0.4s;
     box-shadow: 0 0 0 1px var(--border-color);
     padding-left: 0;
   }
   .wide .menu-circle {
     margin-right: 0;
   }
   
   /* -----------------------------------------------------
      7. Main Layout: .wrapper, .left-side, .main-container
      ----------------------------------------------------- */
   .wrapper {
     display: flex;
     flex-grow: 1;
     overflow: hidden;
   }
  



   @media screen and (max-width: 945px) {
     .left-side {
       display: none;
     }
   }
   
   .side-wrapper + .side-wrapper {
     margin-top: 20px;
   }
   .side-title {
     color: var(--inactive-color);
     margin-bottom: 14px;
   }
   .side-menu {
     display: flex;
     flex-direction: column;
     white-space: nowrap;
   }
   .side-menu a {
     text-decoration: none;
     color: var(--theme-color);
     display: flex;
     align-items: center;
     font-weight: 400;
     padding: 10px;
     font-size: 14px;
     border-radius: 6px;
     transition: 0.3s;
   }
   .side-menu a:hover {
     background-color: var(--hover-menu-bg);
   }
   .side-menu svg {
     width: 16px;
     margin-right: 8px;
   }
   
   /* Notification indicator for "Updates" */
   .updates {
     position: relative;
     top: 0;
     right: 0;
     margin-left: auto;
     width: 18px;
     height: 18px;
     font-size: 11px;
   }
   
   /* The main (top) header inside the main container */
   .main-header {
     display: flex;
     align-items: center;
     border-bottom: 1px solid var(--border-color);
     height: 58px;
     flex-shrink: 0;
   }
   .main-header .header-menu {
     margin-left: 150px;
   }
   @media screen and (max-width: 1055px) {
     .main-header .header-menu {
       margin: auto;
     }
   }
   .main-header .header-menu a {
     padding: 20px 24px;
   }
   
   /* The main content area (excluding the left side) */
   .main-container {
     display: flex;
     flex-direction: column;
     flex-grow: 1;
   }
   
   /* Link in main header */
   .menu-link-main {
     text-decoration: none;
     color: var(--theme-color);
     padding: 0 30px;
   }
   @media screen and (max-width: 1055px) {
     .menu-link-main {
       display: none;
     }
   }
   
   /* -----------------------------------------------------
      8. content-wrapper: (background, sections, etc.)
      ----------------------------------------------------- */
   .content-wrapper {
     display: flex;
     flex-direction: column;
     color: var(--theme-color);
     padding: 20px 40px;
     height: 100%;
     overflow: auto;
     background-color: var(--theme-bg-color);
   }
   @media screen and (max-width: 510px) {
     .content-wrapper {
       padding: 20px;
     }
   }
   .content-wrapper-header {
     display: flex;
     align-items: center;
     width: 100%;
     justify-content: space-between;
     background-image: url("https://www.transparenttextures.com/patterns/cubes.png"),
       linear-gradient(
         to right top,
         #cf4af3,
         #e73bd7,
         #f631bc,
         #fd31a2,
         #ff3a8b,
         #ff4b78,
         #ff5e68,
         #ff705c,
         #ff8c51,
         #ffaa49,
         #ffc848,
         #ffe652
       );
     border-radius: 14px;
     padding: 20px 40px;
   }
   @media screen and (max-width: 415px) {
     .content-wrapper-header {
       padding: 20px;
     }
   }
   .content-wrapper.overlay {
     pointer-events: none;
     transition: 0.3s;
     background-color: var(--overlay-bg);
   }
   
   /* Overlay behind pop-up or dropdown */
   .overlay-app {
     width: 100%;
     height: 100%;
     position: fixed;
     left: 0;
     top: 0;
     pointer-events: all;
     background-color: rgba(36, 39, 59, 0.8);
     opacity: 0;
     visibility: hidden;
     transition: 0.3s;
   }
   .overlay-app.is-active {
     visibility: visible;
     opacity: 1;
   }
   
   /* Title with an icon */
   .img-content {
     font-weight: 500;
     font-size: 17px;
     display: flex;
     align-items: center;
     margin: 0;
   }
   .img-content svg {
     width: 28px;
     margin-right: 14px;
   }
   
   /* Multi-line truncation for text blocks */
   .content-text {
     font-weight: 400;
     font-size: 14px;
     margin-top: 16px;
     line-height: 1.7em;
     color: #ebecec;
     display: -webkit-box;
     -webkit-line-clamp: 5;
     -webkit-box-orient: vertical;
     line-clamp: 4;
     overflow: hidden;
     text-overflow: ellipsis;
   }
   
   /* Container to keep text from stretching too wide */
   .content-wrapper-context {
     max-width: 350px;
   }
   
   /* Buttons in content */
   .content-button {
     background-color: #3a6df0;
     border: none;
     padding: 8px 26px;
     color: #fff;
     border-radius: 20px;
     margin-top: 16px;
     cursor: pointer;
     transition: 0.3s;
     white-space: nowrap;
   }
   .content-button:not(.open):hover {
     background: #1e59f1;
   }
   
   /* Example image in the content header */
  /* .content-wrapper-img {
     width: 186px;
     object-fit: cover;
     margin-top: -25px;
     object-position: center;
   }
   @media screen and (max-width: 570px) {
     .content-wrapper-img {
       width: 110px;
     }
   }*/
   /* Example image in the content header */
.content-wrapper-img {
    width: 186px; /* Maintain the existing width */
    height: 186px; /* Ensure height matches width for a perfect circle */
    border-radius: 50%; /* Make the image circular */
    object-fit: cover; /* Prevent distortion */
    object-position: center;
    margin-top: -25px; /* Maintain existing margin */
  }
  
  /* Media query for smaller screens */
  @media screen and (max-width: 570px) {
    .content-wrapper-img {
      width: 110px; /* Maintain responsive width */
      height: 110px; /* Match height to width for a circle */
      border-radius: 50%; /* Keep it circular in smaller screens */
    }
  }
  
   
   /* Section & Lists */
   .content-section {
     margin-top: 30px;
     display: flex;
     flex-direction: column;
   }
   .content-section-title {
     color: var(--content-title-color);
     margin-bottom: 14px;
   }
   .content-section ul {
     display: flex;
     flex-direction: column;
     width: 100%;
     height: 100%;
     justify-content: space-around;
     background-color: var(--content-bg);
     padding-left: 0;
     margin: 0;
     border-radius: 14px;
     border: 1px solid var(--theme-bg-color);
     cursor: pointer;
   }
   .content-section ul li {
     list-style: none;
     padding: 10px 18px;
     display: flex;
     align-items: center;
     font-size: 16px;
     width: 100%;
     height: 100%;
     white-space: nowrap;
     transition: 0.3s;
   }
   .content-section ul li:hover {
     background-color: var(--theme-bg-color);
   }
   .content-section ul li:hover:first-child {
     border-radius: 13px 13px 0 0;
   }
   .content-section ul li:hover:last-child {
     border-radius: 0 0 13px 13px;
   }
   .content-section ul li + li {
     border-top: 1px solid var(--border-color);
   }
   .content-section ul svg {
     width: 28px;
     border-radius: 6px;
     margin-right: 16px;
     flex-shrink: 0;
   }
   
   /* Product listing area */
   .products {
     display: flex;
     align-items: center;
     width: 150px;
   }
   @media screen and (max-width: 480px) {
     .products {
       width: 120px;
     }
   }
   
   /* Status area (e.g., "Updated") */
   .status {
     margin-left: auto;
     width: 140px;
     font-size: 15px;
     position: relative;
   }
   @media screen and (max-width: 700px) {
     .status {
       display: none;
     }
   }
   .status-circle {
     width: 6px;
     height: 6px;
     background-color: #396df0;
     position: absolute;
     border-radius: 50%;
     top: 4px;
     left: -20px;
   }
   .status-circle.green {
     background-color: #3bf083;
   }
   .status-button {
     font-size: 15px;
     margin-top: 0;
     padding: 6px 24px;
   }
   @media screen and (max-width: 390px) {
     .status-button {
       padding: 6px 14px;
     }
   }
   .status-button.open {
     background: none;
     color: var(--button-inactive);
     border: 1px solid var(--button-inactive);
   }
   .status-button:not(.open):hover {
     color: #fff;
     border-color: #fff;
   }
   
   /* A small dot menu next to each app */
   .menu {
     width: 5px;
     height: 5px;
     background-color: var(--button-inactive);
     border-radius: 50%;
     box-shadow: 7px 0 0 0 var(--button-inactive),
       14px 0 0 0 var(--button-inactive);
     margin: 0 12px;
   }
   @media screen and (max-width: 415px) {
     .adobe-product .menu {
       display: none;
     }
   }
   
   /* Dropdown menu styling */
   .dropdown {
     position: relative;
     height: 53px;
     width: 40px;
     top: -24px;
     display: flex;
     left: -5px;
     background: transparent;
     border: none;
     cursor: pointer;
   }
   .dropdown ul {
     position: absolute;
     background: var(--dropdown-bg);
     height: 110px;
     width: 120px;
     right: 0;
     top: 20px;
     pointer-events: none;
     opacity: 0;
     transform: translatey(10px);
     transition: all 0.4s ease;
   }
   .dropdown ul li a {
     text-decoration: none;
     color: var(--theme-color);
     font-size: 12px;
   }
   .dropdown.is-active ul {
     opacity: 1;
     pointer-events: all;
     transform: translatey(25px);
   }
   .dropdown.is-active ul li:hover {
     background-color: var(--dropdown-hover);
   }
   
   /* Right-aligned button wrapper */
   .button-wrapper {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     width: 187px;
     margin-left: auto;
   }
   @media screen and (max-width: 480px) {
     .button-wrapper {
       width: auto;
     }
   }
   
   /* -----------------------------------------------------
      9. Pop-up
      ----------------------------------------------------- */
   .pop-up {
     position: absolute;
     padding: 30px 40px;
     top: 50%;
     left: 50%;
     transform: (translate(-50%, -50%));
     overflow-y: auto;
     box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.4);
     transition: all 0.3s;
     z-index: 10;
     background-color: var(--popup-bg);
     width: 500px;
     visibility: hidden;
     opacity: 0;
     border-radius: 6px;
     display: flex;
     flex-direction: column;
     white-space: normal;
   }
   @media screen and (max-width: 570px) {
     .pop-up {
       width: 100%;
     }
   }
   .pop-up.visible {
     visibility: visible;
     opacity: 1;
   }
   .pop-up__title {
     padding-bottom: 20px;
     border-bottom: 1px solid var(--border-color);
     display: flex;
     justify-content: space-between;
     align-items: center;
   }
   .pop-up__subtitle {
     white-space: normal;
     margin: 20px 0;
     font-size: 14px;
     font-weight: 400;
     line-height: 1.8em;
   }
   .pop-up__subtitle a {
     color: var(--theme-color);
   }
   .content-button-wrapper .content-button.status-button.open.close {
     width: auto;
   }
   .content-section .close {
     margin-right: 0;
     width: 24px;
   }
   
   /* Checkboxes in the pop-up */
   .checkbox-wrapper {
     display: flex;
     align-items: center;
     font-size: 14px;
     font-weight: 400;
   }
   .checkbox-wrapper + .checkbox-wrapper {
     margin: 20px 0 40px;
   }
   .checkbox {
     display: none;
   }
   .checkbox + label {
     display: flex;
     align-items: center;
   }
   .checkbox + label:before {
     content: "";
     margin-right: 10px;
     width: 15px;
     height: 15px;
     border: 1px solid var(--theme-color);
     border-radius: 4px;
     cursor: pointer;
     flex-shrink: 0;
   }
   .checkbox:checked + label:before {
     background-color: #3a6df0;
     border-color: #3a6df0;
     background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg ...%3e");
     background-position: 50%;
     background-size: 12px;
     background-repeat: no-repeat;
   }
   
   .content-button-wrapper {
     margin-top: auto;
     margin-left: auto;
   }
   .content-button-wrapper .open {
     margin-right: 8px;
   }
   
   /* -----------------------------------------------------
      10. Apps Card
      ----------------------------------------------------- */
   /*.apps-card {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     width: calc(100% + 20px);
   }
   .app-card {
     display: flex;
     flex-direction: column;
     width: calc(33.3% - 20px);
     font-size: 16px;
     background-color: var(--content-bg);
     border-radius: 14px;
     border: 1px solid var(--theme-bg-color);
     padding: 20px;
     cursor: pointer;
     transition: 0.3s ease;
   }
   .app-card:hover {
     transform: scale(1.02);
     background-color: var(--theme-bg-color);
   }
   .app-card svg {
     width: 28px;
     border-radius: 6px;
     margin-right: 12px;
     flex-shrink: 0;
   }
   .app-card + .app-card {
     margin-left: 20px;
   }
   .app-card span {
     display: flex;
     align-items: center;
   }
   .app-card__subtext {
     font-size: 14px;
     font-weight: 400;
     line-height: 1.6em;
     margin-top: 20px;
     border-bottom: 1px solid var(--border-color);
     padding-bottom: 20px;
   }
   .app-card-buttons {
     display: flex;
     align-items: center;
     margin-left: auto;
     margin-top: 16px;
   }
   @media screen and (max-width: 1110px) {
     .app-card {
       width: calc(50% - 20px);
     }
     .apps-card .app-card:last-child {
       margin-top: 20px;
       margin-left: 0px;
     }
   }
   @media screen and (max-width: 565px) {
     .app-card {
       width: calc(100% - 20px);
       margin-top: 20px;
     }
     .app-card + .app-card {
       margin-left: 0;
     }
   }
   */
   .apps-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 20px; /* Spacing between cards */
    width: 100%;
  }
  
  .app-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--content-bg);
    border-radius: 14px;
    border: 1px solid var(--theme-bg-color);
    padding: 20px;
    cursor: pointer;
    transition: 0.3s ease;
    height: 300px; /* Fixed height for uniformity */
  }
  
  .app-card:hover {
    transform: scale(1.02);
    background-color: var(--theme-bg-color);
  }
  
  .app-card svg {
    width: 28px;
    border-radius: 6px;
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .app-card span {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .app-card__subtext {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 6; /* Limit to 6 lines */
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
  
  .app-card-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
  }
  
  /* Responsive Breakpoints */
  @media screen and (max-width: 1110px) {
    .apps-card {
      grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    }
  }
  
  @media screen and (max-width: 565px) {
    .apps-card {
      grid-template-columns: 1fr; /* 1 card per row */
    }
  }
  








   /*Scrollbar styling */
   ::-webkit-scrollbar {
     width: 6px;
     border-radius: 10px;
   }
   ::-webkit-scrollbar-thumb {
     background: var(--scrollbar-bg);
     border-radius: 10px;
   }
   
   /* -----------------------------------------------------
      11. Footer Styles (SpectacledCoder Footer)
      ----------------------------------------------------- */
   @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Luckiest+Guy&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Rammetto+One&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Belleza&family=Comic+Neue:wght@400;700&family=Cormorant+Infant&family=Poppins&family=Sahitya:wght@700&family=Ubuntu&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
   
   .spectacledcoder-footer {
     display: flex;
     flex-direction: column;
     margin: auto;
     margin-bottom: 0px;
     width: 100%;
     height: 500px;
     background: url("data:image/svg+xml;charset=utf-8,<svg ...>") no-repeat center center;
     background-size: cover;
     background-repeat: no-repeat;
     background-position: top;
   }
   
   .spectacledcoder-footer-heading {
     height: fit-content;
     font-family: 'Rammetto One', cursive;
     margin: auto;
     font-size: 2vw;
   }
   
   .spectacledcoder-footer-content {
     width: 100%;
     height: 80%;
     display: flex;
     margin: auto;
   }
   
   .spectacledcoder-footer-bottom {
     margin: auto;
     width: 100%;
     height: 20%;
     display: flex;
     font-family: 'Josefin Sans', sans-serif;
   }
   
   .spectacledcoder-footer-bottom-sec {
     margin: auto;
   }
   .spectacledcoder-footer-bottom-sec a {
     text-decoration: none;
     color: #0a0a0a;
   }
   .spectacledcoder-footer-bottom-sec a:hover {
     font-weight: 700;
   }
   
   .spectacledcoder-footer-section {
     margin: auto;
   }
   
   .d-footer-ul {
     list-style: none;
     font-family: 'Josefin Sans', sans-serif;
   }
   .d-footer-li {
     margin-bottom: 5px;
   }
   .d-footer-li:hover {
     cursor: pointer;
     transform: translateX(10px);
     transition: all 0.4s;
     font-weight: 700;
   }
   .d-footer-li-h {
     margin-bottom: 10px;
   }
   
   .logo {
     max-width: 120px;
     max-height: 120px;
     display: flex;
     margin: auto;
     margin-top: 10px;
   }
   .logo-head {
     font-family: 'Josefin Sans', sans-serif;
     margin: auto;
     display: flex;
   }
   .logo a {
     margin: auto;
     max-width: 100%;
   }
   
   /* Footer responsive rules */
   @media only screen and (max-width: 900px) {
     .spectacledcoder-footer {
       display: flex;
       flex-direction: column;
       margin: auto;
       margin-bottom: 0px;
       width: 100%;
       height: fit-content;
       background-size: cover;
       background-repeat: no-repeat;
       background-position: bottom;
       background: url("data:image/svg+xml;charset=utf-8,<svg ...>") no-repeat center center;
     }
     .spectacledcoder-footer-heading {
       height: fit-content;
       font-family: 'Rammetto One', cursive;
       margin: auto;
       font-size: 5vw;
     }
     .spectacledcoder-footer-content {
       width: 100%;
       height: 80%;
       display: flex;
       flex-direction: column;
     }
     .spectacledcoder-footer-bottom {
       margin: auto;
       margin-bottom: 0px;
       height: 20%;
       display: flex;
       flex-direction: column;
       font-family: 'Josefin Sans', sans-serif;
     }
     .logo-head b {
       font-family: 'Josefin Sans', sans-serif;
       margin: auto;
       text-align: center;
     }
     .d-footer-li {
       margin-bottom: 5px;
       margin-left: -40px;
       text-align: center;
     }
     .d-footer-li-h {
       margin-bottom: 10px;
       margin-left: -40px;
       text-align: center;
     }
   }



   /* Left Panel: Hidden by Default */
.left-side {
    position: fixed;
    top: 58px; /* Adjust to match your header height */
    left: 0;
    height: calc(100% - 58px); /* Adjust for header height */
    width: 240px; /* Set the width of the left panel */
    background-color: var(--theme-bg-color);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%); /* Hide off-screen */
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }
  
  /* Left Panel: Visible State */
  .left-side.is-active {
    transform: translateX(0); /* Slide in from the left */
  }
  
  /* Overlay for clicking outside */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background */
    z-index: 999; /* Below the left panel */
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
  }
  
  /* Overlay: Visible State */
  .overlay.is-active {
    visibility: visible;
    opacity: 1;
  }
  .image-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* css design coard for about page */
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: rgb(234, 181, 181);
  --black-color: hsl(0, 0%, 0%);
  --black-color-light: hsl(0, 0%, 40%);
  --white-color: hsl(0, 0%, 95%);
  --title-color: hsl(0, 0%, 0%);
  --text-color: hsl(0, 0%, 35%);
  --text-color-light: hsl(0, 0%, 64%);
  --body-color: hsl(0, 0%, 87%);
  --container-color: hsl(0, 100%, 37%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Bai Jamjuree", sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.75rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4.5rem;
    --h1-font-size: 3rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--theme-color);
  transition: background-color .4s; /* Pour le Dark theme */
}

h1,
h2,
h3,
h4 {
  color: var(--theme-color);
  font-weight: var(--font-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== THEME ===============*/
.nav__buttons {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.change-theme {
  font-size: 1.25rem;
  color: var(--theme-color);
  cursor: pointer;
  transition: color .3s;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 4rem 2rem;
}

.section__title-1,
.section__title-2 {
  position: relative;
  font-size: var(--h1-font-size);
  width: max-content;
  margin: 0.75rem auto 2rem;
}

.section__title-1 span,
.section__title-2 span {
  z-index: 5;
  position: relative;
}

.section__title-1::after,
.section__title-2::after {
  content: "";
  width: 40px;
  height: 28px;
  background-color: hsla(14, 98%, 50%, 0.2);
  position: absolute;
  top: -4px;
  right: -8px;
}

.section__title-2::after {
  top: initial;
  bottom: -4px;
}

.geometric-box {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--first-color);
  rotate: -30deg;
}

.geometric-box::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid var(--black-color);
  left: -5px;
  top: -5px;
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== BUTTON ===============*/
.button,
.button__ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}

.button {
  background-color: var(--black-color);
  padding: 1.1rem 1.5rem;
  color: var(--white-color);
  font-weight: var(--font-medium);
  border-radius: 0.75rem;
  transition: background-color 0.4s;
}

.button i {
  font-size: 1.25rem;
}

.button:hover {
  background-color: var(--first-color);
}

.button__ghost {
  border: 3px solid var(--black-color);
  color: var(--black-color);
  padding: 0.5rem;
  border-radius: 0.7rem;
  transition: border 0.4s, color 0.4s;
}

.button__ghost i {
  font-size: 1.25rem;
}

.button__ghost:hover {
  border: 3px solid var(--first-color);
}

/*=============== ABOUT ===============*/
.about {
  background-color: var(--theme-bg-color);
  transition: background-color 0.4s;
}

.about__container {
  row-gap: 0;
}

.about__perfil {
  position: relative;
  justify-self: center;
  margin-block: 2.5rem 4.5rem;
}

.about__image {
  width: 220px;
}

.about__img {
  position: relative;
  border: 4px solid var(--white-color);
  z-index: 1;
  border-radius: 0.75rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
}

.about__shadow,
.about__line,
.about__box {
  position: absolute;
  border-radius: 0.75rem;
}

.about__shadow {
  width: 150px;
  height: 385px;
  background-color: var(--body-color);
  top: -2.5rem;
  right: -3.5rem;
  border-bottom: 4px solid var(--first-color);
  transition: background-color 0.4s;
}

.about__perfil .geometric-box {
  top: 1.5rem;
  right: -2.8rem;
}

.about__line {
  filter: invert(1);
  right: -1.25rem;
  top: 6rem;
  width: 50px;
  transition: filter 0.4s;
}

.about__box {
  width: 40px;
  height: 40px;
  background-color: var(--first-color);
  right: -0.5rem;
  bottom: 1.5rem;
}

.about__info {
  padding-left: 1.25rem;
}

.about__description {
  position: relative;
  color: var(--theme-color);
  margin-bottom: 1.5rem;
}

.about__description::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--theme-color);
  position: absolute;
  left: -1.75rem;
  top: 0.5rem;
}

.about__list {
  list-style: square;
  color: var(--theme-color);
  margin-bottom: 3rem;
}

.about__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }
  .about__image {
    width: 180px;
  }
  .about__shadow {
    height: 330px;
    right: -2.5rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .about__container{
    grid-template-columns: 350px;
    justify-content: center;
  }
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
   .about__container {
    grid-template-columns: 460px 525px;
    gap: 1rem 9rem;
    align-items: center;
    padding-block: 1rem;
  }
  .about__perfil {
    order: -1;
    grid-row: 1 / 3;
  }
  .about__image {
    width: 350px;
  }
  .about__img {
    border: 6px solid var(--white-color);
  }
  .about__shadow {
    width: 240px;
    height: 615px;
    top: -4rem;
    right: -5.5rem;
    border-bottom: 6px solid var(--first-color);
  }
  .about__perfil .geometric-box {
    right: -4rem;
    top: 4.5rem;
  }
  .about__line {
    width: 80px;
    right: -2rem;
    top: 10rem;
  }
  .about__box {
    width: 64px;
    height: 64px;
    right: -.75rem;
  }
  .about__container .section__title-1 {
    align-self: flex-end;
    margin-inline: 0;
  }
  .about__info {
    align-self: flex-start;
    padding-left: 3rem;
  }
  .about__description {
    font-size: var(--h2-font-size);
    margin-bottom: 2rem;
  }
  .about__description::after {
    width: 32px;
    height: 2px;
    left: -3rem;
    top: 14px;
  }
  .about__list {
    margin-bottom: 5rem;
  }
  .about__buttons {
    justify-content: initial;
  }
  .button__ghost {
    padding: 0.75rem;
  }
  .button__ghost i {
    font-size: 1.5rem;
  }
}

/*conact page css*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root {
    --font-fam: "Hind", sans-serif;
    --main-transition: 500ms cubic-bezier(0.77, 0.33, 0.17, 1.01);
  }
  
  #container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 20px;
  }
  #link {
    width: 180px;
    font-family: var(--font-fam);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    position: relative;
    transition: var(--main-transition);
  }
  .letter {
    font-size: 40px;
    font-weight: 700;
    transition: var(--main-transition);
  }
  #container:hover > #link:not(hover) {
    opacity: 0.2;
  }
  #container:hover > #link:hover {
    opacity: 1;
  }
  
  #link:before {
    content: "Open";
    position: absolute;
    inset: 20px;
    z-index: -1;
    opacity: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    transform: translatey(20px);
    transition: var(--main-transition);
  }
  #link:hover::before {
    transform: translatey(0px);
    opacity: 1;
    color: #e63946;
  }
  
  #link:hover > .letter:nth-child(1) {
    transform: translate(-40px, -20px) rotate(20deg);
  }
  #link:hover > .letter:nth-child(2) {
    transform: translate(-30px, 20px) rotate(-20deg);
  }
  #link:hover > .letter:nth-child(3) {
    transform: translate(-20px, -20px) rotate(60deg);
  }
  #link:hover > .letter:nth-child(4) {
    transform: translate(-10px, 35px) rotate(-10deg);
  }
  #link:hover > .letter:nth-child(5) {
    transform: translate(10px, -35px) rotate(-70deg);
  }
  #link:hover > .letter:nth-child(6) {
    transform: translate(20px, 30px) rotate(15deg);
  }
  #link:hover > .letter:nth-child(7) {
    transform: translate(40px, -20px) rotate(90deg);
  }
  #link:hover > .letter:nth-child(8) {
    transform: translate(50px, 20px) rotate(-50deg);
  }
  


  