/* DATE: June 9 2025  */

*, *:before, *:after {
  box-sizing: border-box;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}


:root {
  --space-sm: 4em;
  --stack-cards-gap: 4em;
}

html {
  scroll-behavior: smooth;

}

@media (max-width: 768px) {
  html::-webkit-scrollbar {
    display: none;
  }
}

/* .module {
  cursor: url('image/cursor.png'), auto;	
} */
/* Reset and base */
@font-face {
    font-family: 'BergenSans2';
    src: url('font/BergenSans 2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'BergenSans_normal';
    src: url('font/BergenSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }


  .new-section {
    display: flex; 
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 2em;
  }
  
  .intro {
    height: 80vh;
    background-color: #1a1a1a;
  }
  
  .stack-cards {
    list-style: none;
    width: 75%;
    margin: 0;
    margin-bottom: 200px;
    padding: 0;
     display: block;          /* or flex with column */
  flex-direction: column; 
  }

  .services-section {
    max-width: 100%;
  }
  
  .stack-cards__item  {
    position: sticky;
    top: var(--space-sm);
    transform-origin: center top;
    
    /* background: #EFEFEF; */
    width: 100%;
    height: 400px;
    /* border: 1px solid lightgrey; */
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    margin: 0 0 2em 0;

    will-change: transform;
    transition: transform 0.15s ease-out;
  }
    .stack-cards__item2  {
    position: sticky;
    top: var(--space-sm);
    transform-origin: center top;
    
    /* background: #EFEFEF; */
    width: 100%;
    height: 400px;
    /* border: 1px solid lightgrey; */
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    margin: 0 0 2em 0;

    will-change: transform;
    transition: transform 0.15s ease-out;
  }

     @media (max-width: 400px) {
    .stack-cards__item2  {
      overflow-x: hidden;
      overflow-y: visible;
    }
  }
  
 
  
  body {

    cursor: url('image/cursor.png'), auto;
    margin: 0;
    padding: 0;
    height: 100%;


    min-height: 100vh;
    font-weight: 300;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* overflow: hidden; ÃƒÂ¢Ã‚ÂÃ…â€™ remove this */
    overflow-x: hidden; /* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ optional: keep horizontal hidden */
    /* background-color: #eff8e2; */
    font-family: 'BergenSans2';
    background: linear-gradient(60deg, #ffffff, #fff2ed, #ffe1d5);
  }

  .cursor {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    z-index: 111;
    border: 1px solid #fff;
    transition: all 0.2s ease-out;
    animation: moveCursor1 .5s infinite alternate;
}

@media (max-width: 630px) {
.cursor{
  display: none;
  visibility: hidden;
}
}

.expand {
    background: transparent;
    animation: moveCursor2 .5s forwards;
    border: 1px solid yellow;
}

@keyframes moveCursor1 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(.8);
    }
}

@keyframes moveCursor2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2.5);
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulseGradient {
  0% {
    background: radial-gradient(circle closest-side, rgba(255, 178, 137, 0.4), transparent);
  }
  20% {
    background: radial-gradient(circle closest-side, rgba(255, 190, 130, 0.45), transparent);
  }
  40% {
    background: radial-gradient(circle closest-side, rgba(245, 200, 121, 0.5), transparent);
  }
  60% {
    background: radial-gradient(circle closest-side, rgba(255, 210, 130, 0.45), transparent);
  }
  80% {
    background: radial-gradient(circle closest-side, rgba(255, 165, 120, 0.4), transparent);
  }
  100% {
    background: radial-gradient(circle closest-side, rgba(255, 178, 137, 0.4), transparent);
  }
}


@keyframes grainMove {
  0% { transform: translate(-50%, -50%) translate(0, 0); }
  25% { transform: translate(-50%, -50%) translate(-1px, 1px); }
  50% { transform: translate(-50%, -50%) translate(1px, -1px); }
  75% { transform: translate(-50%, -50%) translate(-1px, -1px); }
  100% { transform: translate(-50%, -50%) translate(1px, 1px); }
}


  
  .header-iframe {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: #000; */
    overflow: hidden; /* ÃƒÂ¢Ã‚Â¬Ã¢â‚¬Â¦ÃƒÂ¯Ã‚Â¸Ã‚Â Recommended: prevent unexpected scroll if iframe overflows */
  }
  
/* Show desktop by default */
.desktop-iframe {
  display: block;
}

.mobile-iframe {
  display: none;
}

/* When screen is less than or equal to 430px wide, show mobile */
.iframe-wrapper {
  width: 100%;
  height: 100vh; /* or adjust as needed */
}

@media (min-width: 430px) {
  .desktop-iframe {
    display: block;
  }
  .mobile-iframe {
    display: none;
  }
}

/* On screens ÃƒÂ¢Ã¢â‚¬Â°Ã‚Â¤ 430px, show mobile iframe instead */
@media (max-width: 430px) {
  .desktop-iframe {
    display: none;
  }
  .mobile-iframe {
    display: block;
  }
}


.iframe-wrapper {
  width: 100%;
  height: 100vh; /* or another height depending on layout */
}


  /* .container_mouse {
    margin-top: auto;
    text-align: center;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 2rem;
    cursor: pointer;
  }
   */
  .container_mouse .mouse-btn {
    margin: 10px auto;
    width: 40px;
    height: 80px;
    border: 4px solid black;
    border-radius: 30px;
    display: flex;
  }
  
  .container_mouse .mouse-btn .mouse-scroll {
    display: block;
    width: 20px;
    height: 20px;
    background: linear-gradient(170deg, rgba(122, 122, 124, 0.918), rgb(123, 124, 124));
    border-radius: 50%;
    margin: auto;
    animation: scrolling 1s linear infinite;
  }
  
  
  @keyframes scrolling {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(20px);
    }
  }

  .corner-action-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
  
    background: #ff5c2d;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;

    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 92, 45, 0.3);
    transition: all 0.3s ease;
  }

  .corner-action-btn:hover {
    background: #ff3d00;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px rgba(255, 92, 45, 0.4);
  }
  
  /* Iframe background */
  .iframe-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
  
  }
  
  
  .iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
    /* pointer-events: none;  */
  }



  .navbar {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 60%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 60px;
    padding: 10px 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease-in-out;   /* keep your hide/reveal anim */
  }
/* Logo */
.logo {
  height: 20px;
  transition: transform 0.3s ease-in-out;
  /* background-color: #000; */
  margin-top: 8%;
  

}

.logo:hover {
  transform: scale(1.02); /* or use rotate(360deg), translateX, etc. */
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
          /* clips anything that tries to spill */
  box-sizing: border-box;
}


.nav-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
  /* background-color: #000; */
  list-style: none;
  margin: 0;
  padding: 5px;
  
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
}

/* Nav links */
.nav-menu li a {
  position: relative;
  text-decoration: none;

  font-size: 16px;
  /* margin: 2rem; */
  font-weight: 400;
  color: #000;
  transition: transform 0.3s ease;

}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: black;
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  transform: scale(1.05);
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Add this new class for hiding the navbar */
.navbar--hidden {
  transform: translateY(-150%);
  transition: transform 0.4s ease-in-out;
}

/* Add transition to the default state */
.navbar {
  transition: transform 0.4s ease-in-out;
}

.cta-button {
  margin-left: auto;                /* pushes it hard right */
  background: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 4px 5px rgb(224, 149, 109);
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cta-button:hover {
  background: #f0f0f0;
  transform: scale(1.03);
}

  .intro-section {
    /* background: linear-gradient(to bottom, #eebea0 , #ffffff); */
    text-align: center;
    padding: 80px 20px;
    color: #111;
    z-index: 20;
    width: 100%;
    
  }
  
  .intro-section h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
  }
  
  .intro-section h2 .highlight {
    color: #ff5e00;
    font-weight: 700;
  }
  
  .intro-section h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .intro-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
  }
  
/* Centered header text above the iframe */
.hero-title {
    font-size: 300px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2rem;
    color: var(--color-primary);
    text-align: center;
    z-index: 3;
    pointer-events: none;
    animation: shadows 1.2s ease-in infinite;
    text-shadow:
      3px 3px 0 var(--color-secondary),
      6px 6px 0 var(--color-tertiary),
      9px 9px var(--color-quaternary),
      12px 12px 0 var(--color-quinary);
  }
  
  :root {
    --color-primary: #ffffff;
    --color-secondary: #ffae00;
    --color-tertiary: #ff5039;
    --color-quaternary: #f07a6a;
    --color-quinary: #f7c334;
  }
  
.text-shadows {
    text-shadow: 3px 3px 0 var(--color-secondary), 6px 6px 0 var(--color-tertiary),
      9px 9px var(--color-quaternary), 12px 12px 0 var(--color-quinary);
    font-weight: 400;
    text-transform: uppercase;
    font-size: calc(2rem + 5vw);
    text-align: center;
    margin: 0;
    color: var(--color-primary);
    animation: shadows 1.2s ease-in infinite;
    letter-spacing: 0.4rem;
  }
  
  @keyframes shadows {
    0% {
      text-shadow: none;
    }
    5% {
      transform: translate(-3px, -3px);
      text-shadow: 3px 3px 0 var(--color-secondary);
    }
    10% {
      transform: translate(-6px, -6px);
      text-shadow: 3px 3px 0 var(--color-secondary),
        6px 6px 0 var(--color-tertiary);
    }
    20% {
      transform: translate(-9px, -9px);
      text-shadow: 3px 3px 0 var(--color-secondary),
        6px 6px 0 var(--color-tertiary), 9px 9px var(--color-quaternary);
    }
    30% {
      transform: translate(-12px, -12px);
      text-shadow: 3px 3px 0 var(--color-secondary),
        6px 6px 0 var(--color-tertiary), 9px 9px var(--color-quaternary),
        12px 12px 0 var(--color-quinary);
    }
    40% {
      transform: translate(-12px, -12px);
      text-shadow: 3px 3px 0 var(--color-secondary),
        6px 6px 0 var(--color-tertiary), 9px 9px var(--color-quaternary),
        12px 12px 0 var(--color-quinary);
    }
    50% {
      text-shadow: 3px 3px 0 var(--color-secondary),
        6px 6px 0 var(--color-tertiary), 9px 9px var(--color-quaternary),
        12px 12px 0 var(--color-quinary);
    }
    60% {
      text-shadow: 3px 3px 0 var(--color-secondary),
        6px 6px 0 var(--color-tertiary), 9px 9px var(--color-quaternary);
    }
    80% {
      text-shadow: 3px 3px 0 var(--color-secondary),
        6px 6px 0 var(--color-tertiary);
    }
    90% {
      text-shadow: 3px 3px 0 var(--color-secondary);
    }
    100% {
      text-shadow: none;
    }
  }
  
  /*
    --color-primary: #5192ED;
    --color-secondary: #69A1F0;
    --color-tertiary: #7EAEF2;
    --color-quaternary: #90BAF5;
    --color-quinary: #A2C4F5;
  */
  

/* === Responsive Adjustments === */
@media (max-width: 1024px) {
  .navbar {
    width: 80%;
    padding: 5px 16px;
  }

  .nav-menu {
    gap: 30px;

  }

  .cta-button {
    padding: 10px 30px;
    font-size: 14px;
  }

  .hero-title {
    font-size: 180px;
    letter-spacing: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    display: none;
;
    flex-direction: column;
    align-items: flex-start;
    width: 90%;
    padding: 10px 16px;
    height: auto;
    max-height: none;
    border-radius: 20px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 16px;
    margin: 10px 0 0 0;
    align-items: flex-start;
    width: 100%;
  }

  .cta-item {
    margin-left: 0;
  }

  .cta-button {
    width: 100%;
    padding: 12px;
    text-align: center;
  }

  .hero-title {
    font-size: 100px;
    letter-spacing: 0.5rem;
    padding: 0 20px;
    word-break: break-word;
  }

  .text-shadows {
    font-size: calc(1.5rem + 4vw);
    letter-spacing: 0.2rem;
    padding: 0 10px;
  }

  .corner-action-btn {
    /* position: absolute; */
    margin: auto auto auto auto;
    bottom: 10px;
    /* right: 10px; */
    z-index: 3;
 
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 64px;
    letter-spacing: 0.2rem;
  }

  .cta-button {
    font-size: 14px;
    padding: 10px;
  }

  .container_mouse .mouse-btn {
    display: none;
    width: 30px;
    height: 60px;
  }

  .container_mouse .mouse-btn .mouse-scroll {
     display: none;
    width: 15px;
    height: 15px;
  }
}


  /* RUNNING TEXT */
  :root {
    --gap: 4rem;
  }
  
  .container {
    width: 100vw;
    overflow: hidden;
  }
  
  .marquee {
    overflow: hidden;
    user-select: none;
    display: flex;
    gap: var(--gap);
    transform: rotate(0deg);
  }
  
  .marquee-content {
    list-style: none;
    flex-shrink: 0;
    display: flex;
    min-width: 100%;
    justify-content: space-between;

    align-items: center;
    gap: var(--gap);
    animation: marquee 24s linear infinite;
  }
  
  ul {
    list-style: none;
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
    /* No animation here! */
  }
  
  .text {
    background: linear-gradient(to right, #ffd15d, #ff6b01, #FE5001);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    font-size: 200px; 
    white-space: nowrap;
    clamp(2rem, 6vw, 8rem);
  }


/* Mobile fallback adjustments */
@media (max-width: 1200px) {
  :root {
    --gap: 2rem;
  }

  .text {
    font-size: clamp(2rem, 6vw, 8rem); /* Scales better across tablet sizes */
    letter-spacing: 2px;
  }
  
}

@media (max-width: 400px) {
  .text {
    font-size: clamp(1.8rem, 18vw, 5rem);
  }
}
  
  
  @keyframes marquee  {
    to {
      transform: translateX(calc(-50% - var(--gap)));
    }
  }
  
/* CARD STYLING */





.card-list {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh; /* Ensure scrollable area */
  padding: 20px 0; /* Optional: some padding top/bottom */
  top: 25vh;
  scroll-behavior: smooth;

  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */


  align-items: center;  

  scroll-padding-top: 2rem;
}

.card-list::-webkit-scrollbar {
  display: none;
}

.scroll-exit-space {
  height: 100vh;
  flex-shrink: 0;
}

.card {
    position: sticky;
    top: 0;
    background: linear-gradient(60deg, #FE5001, hsl(29, 100%, 64%),  #ff804e);
    background-size: 400% 400%; /* allow motion room */
    background-position: 0% 50%; /* initial position */
    background-blend-mode: hard-light;
 
    border-radius: 30px;
    padding: 30px;
    color: white;
    max-width: 50%;
    margin: auto;
    box-shadow: -25px 30px 60px rgba(255, 163, 109, 0.3);
    overflow: hidden;
    font-family: "Montserrat", sans-serif;

     scroll-snap-align: start;
     margin-top: 5rem;
     transition: transform 0.3s ease;
  }


 


/* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â Zoom out on hover */
.card:hover {
  transform: scale(1.01); /* Shrinks the image slightly */
}


  
  .card:first-child {
  margin-top: 0;
}
  .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    opacity: 0.6;
    z-index: -1;
  }
  .card__inner {
    will-change: transform;
    background: white;
    border-radius: 14px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px hsla(265.3, 20%, 10%, 0.35);
    transform-origin: center top;
  }
  
  .card__header {
    margin-bottom: 20px;
  }
  .card-title-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap; /* Allow wrap on smaller screens */
    /* background-color: #000000; */
  }
  
  .card__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between; /* pushes left and right */
    width: 100%;
    flex-wrap: nowrap; /* force them to stay on one line */
  }
  .card__tags {
    margin-left: auto;
    overflow: hidden;
    text-overflow: ellipsis;

  }
  
  .card__title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap; /* Optional: allows tags to wrap on small screens */
  }
  
  .card__title {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 0;
    margin: 0;
    color: #ffffff;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  .card__title:hover {
    text-decoration: none;
    color: #353535;
    transform: scale(1.02);
  }
  .card__chevron {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
  }
  
  .card__title:hover .card__chevron {
    opacity: 1;
    transform: translateX(0);
  }
  
  
  .card__tags {
    display: flex;
    gap: 10px;
    font-weight: 600;
    flex-shrink: 1;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 15px;


  }
  
  .card__tags span {
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 3px 5px 3px 10px;
    transition: all 0.3s ease;
    transform: scale(1);
  }
  
  .card__tags span:hover {
    background-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
  }
  
  
  .card__description {
    font-size: 14px;
    line-height: 1.4;
    color: #fffefe;
    margin: 0;
    max-width: 90%;
    font-family: "Montserrat", sans-serif;
  }
  
  .card__content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
  }
  
  /* IMAGE HANDLING */
  
  .card__image-container {
    margin-top: 20px;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 25rem;
    flex-shrink: 0;
  }
  
  .card__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 3s ease;
  }
  
  /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â Zoom out on hover */
  .card__image:hover {
    transform: scale(1.12); /* Shrinks the image slightly */
  }
  

  

  @-webkit-keyframes hue-rotate {
    from {
      -webkit-filter: hue-rotate(0);
      filter: hue-rotate(0);
    }
    to {
      -webkit-filter: hue-rotate(360deg);
      filter: hue-rotate(360deg);
    }
  }
  
  @keyframes hue-rotate {
    from {
      -webkit-filter: hue-rotate(0);
      filter: hue-rotate(0);
    }
    to {
      -webkit-filter: hue-rotate(360deg);
      filter: hue-rotate(360deg);
    }
  }
  
  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  
  /* CARD SCROLLING LAYOUT */
  
  .cards {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: repeat(var(--cards-count), var(--card-height));
    gap: 20px 0;
    top:0;
    position: sticky;
  }

  @media (max-width: 1024px) {
    .card {
      max-width: 70%;
      padding: 25px;
    }
  
    .card__title {
      font-size: 1.5rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  
    .card__tags {
      font-size: 14px;
      gap: 8px;
      flex-wrap: wrap;
    }
  
    .card__description {
      font-size: 14px;
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
    }
  
    .card__content {
      padding: 30px 20px;
    }
  }
  
  @media (max-width: 768px) {
    .card {
      max-width: 90%;
      padding: 20px;
      margin-top: 3rem;
    }
  
    .card__title {
      font-size: 0.8rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  
    .card__tags {
      font-size: 13px;
      flex-wrap: wrap;
      gap: 6px;
    }
  
    .card__description {
      font-size: 13px;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  
    .card__content {
      padding: 20px 15px;
    }
  
    .card__image-container {
      max-height: 18rem;
    }
  
    .stack-cards {
      width: 90%;
    }
  }
  
  @media (max-width: 480px) {
    .card {
      min-width: 135%;
      border-radius: 20px;
      padding: 15px;
      margin-left: -16%;

    }
  
    .card__title {
      font-size: 0.6rem;
      white-space: normal;
      overflow: visible;
      text-overflow: unset;
    }
  
    .card__tags {
      font-size: 12px;
      gap: 5px;
      flex-wrap: wrap;
    }
  
    .card__description {
      font-size: 12px;
      max-width: 100%;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
   
      text-overflow: ellipsis;
    }
  
    .card__content {
      padding: 15px 10px;
    }
  
    .card__image-container {
      max-height: 14rem;
      border-radius: 16px;
    }
  
    .stack-cards {
      width: 80%;
    }
    .js-stack-cards__item{
      width: 100%;
      /* background-color: #000; */
    }

  }
  
  
  /* SPACING UTILITIES */
  
  .space {
    height: 90vh;
  }
  
  .space--small {
    height: 40vh;
  }
  
  .space--smaller {
    height: 10vh;
  }
  /* RESPONSIVE STYLES */
  
  @media (max-width: 600px) {
    .card__inner {
      flex-direction: column;
    }
  
    .card__image-container {
      width: 100%;
    }
  
    .card__image {
      aspect-ratio: 16 / 9;
    }
  
    .card__title {
      font-size: 32px;
    }
  
    .card__description {
      font-size: 16px;
    }
  
    .card__content {
      padding: 30px 20px;
    }
  }


  /* SERVICE SCROLL */
  
  .service-scroll-list {
    display: flex;
    flex-direction: column;
    gap: 0; /* remove vertical gaps to let snapping be smooth */
    overflow-y: scroll;
    height: 100vh;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
    justify-content: center;
    align-items: center;
  }
  service-scroll-list::-webkit-scrollbar {
    display: none;
  }
  
.service-scroll-card {
  position: sticky;
  top: 0;
  scroll-snap-align: start;
  width: 80%;
  /* REMOVE height */
  /* height: 50%; */
  display: flex;
  margin: auto;
  justify-content: space-between;
  align-items: stretch;
  background: linear-gradient(to bottom right, #555, #333);
  border-radius: 2rem;
  padding: 3rem;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  gap: 2rem;
  font-family: "Montserrat", sans-serif;

  flex-wrap: wrap; /* Optional: allow better mobile behavior */
}

  
  .service-scroll-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    text-align: right;

  }
  
  .service-scroll-number {
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.8;
    margin-bottom: 1rem;
  }
  
  .service-scroll-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;  
  }
  
  .service-scroll-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
    text-align: right;
    margin-left: auto;       /* Pushes it to the right edge */
    padding-right: 0;        /* Optional: tune if needed */
    font-family: "Montserrat", sans-serif;
  }
  
  
  .service-scroll-tags {
    columns: 2;
    column-gap: 4rem;
    font-weight: 500;
    font-size: 1.2rem;
    opacity: 0.6;
    margin-left: auto;
    max-width: 60%; /* Adjust for layout balance */
    text-align: left;

    position: relative;
    display: inline-block;
    break-inside: avoid;
    margin-top: auto;
    margin-bottom: 3rem;
  }

  .service-scroll-tags span {
    display: block;
    margin-bottom: 0.75rem;
    text-align: right;
  
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .service-scroll-tags span:hover {
    transform: translateX(-2px);
    color: #ffd58f; /* or any highlight color */
  }
  
  
  .service-scroll-image-container {
    flex: 1;
    background: #d3d3d3;
    border-radius: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    aspect-ratio: 1;
    overflow: hidden;
  }
  
  
.service-scroll-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


  .service-scroll-image-container:hover .service-scroll-image {
    transform: scale(1.02);
  }
  
  .service-scroll-card-title-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap; /* Allow wrap on smaller screens */
    /* background-color: #000000; */
  }
  

  .service-scroll-tooltip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    background: #000;
    color: white;
    padding: 1rem;
    border-radius: 1.2rem;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    white-space: normal;
  }
  
  /* Tooltip from left column: position to the left */
  .service-scroll-tag-left .service-scroll-tooltip {
    right: 110%;
  }
  
  .service-scroll-tag-left .service-scroll-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #000;
  }
  
  /* Tooltip from right column: position to the right */
  .service-scroll-tag-right .service-scroll-tooltip {
    left: 110%;
  }
  
  .service-scroll-tag-right .service-scroll-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent #000 transparent transparent;
  }
  
  /* Show tooltip on hover */
  .service-scroll-tag:hover .service-scroll-tooltip {
    opacity: 1;
    visibility: visible;
  }

  @media (max-width: 1024px) {
    .service-scroll-card {
      flex-direction: column;
      align-items: center;
      padding: 2rem;
      width: 90%;
    }
  
    .service-scroll-left {
      text-align: center;
      align-items: center;
    }
  
    .service-scroll-card-title-part {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
    }
  
    .service-scroll-number {
      font-size: 2.5rem;
    }
  
    .service-scroll-title {
      font-size: 1.2rem;
      text-align: center;
    }
  
    .service-scroll-description {
      font-size: 0.9rem;
      text-align: center;
      margin: 1rem auto;
      padding: 0 1rem;
    }
  
    .service-scroll-tags {
      columns: 1;
      text-align: center;
      max-width: 90%;
      margin: 2rem auto;
    }
  
    .service-scroll-tags span {
      text-align: center;
    }
  
    .service-scroll-tooltip {
      width: 220px;
      font-size: 0.9rem;
    }
  
    .service-scroll-image-container {
      margin-top: 2rem;
      aspect-ratio: auto;
      width: 60%;
    }
  
    .service-scroll-image {
      max-width: 100%;
      max-height: 100%;
    }
  }
  
  
  @media (max-width: 768px) {
    .service-scroll-card {
      width: 95%;
      padding: 1.5rem;
      gap: 1.5rem;
    }
  
    .service-scroll-number {
      font-size: 2rem;
    }
  
    .service-scroll-title {
      font-size: 1rem;
    }
  
    .service-scroll-description {
      font-size: 0.85rem;
    }
  
    .service-scroll-tags {
      font-size: 0.9rem;
      column-gap: 2rem;
    }
  
    .service-scroll-image-container {
      width: 80%;
    }
  
    .service-scroll-tooltip {
      width: 200px;
      font-size: 0.85rem;
    }
  }
  
  
  @media (max-width: 480px) {
    .service-scroll-card {
      width: 100%;
      padding: 1rem;
      gap: 1rem;
      border-radius: 1.2rem;
      overflow-x: hidden;
      max-width: 120%;
    }
  
    .service-scroll-number {
      font-size: 1.5rem;
    }
  
    .service-scroll-title {
      font-size: 0.95rem;
    }
  
    .service-scroll-description {
      font-size: 0.8rem;
      padding: 0;
    }
  
    .service-scroll-tags {
      column-gap: 1rem;
      font-size: 0.8rem;
    }
  
    .service-scroll-tooltip {
      width: 180px;
      font-size: 0.8rem;
    }
  
    .service-scroll-image-container {
      width: 100%;
      border-radius: 1rem;
      margin-top: 0.1rem;
      /* display: none; */
    }
  
    .service-scroll-image {
      object-fit: contain;
      width: 100%;
      height: auto;
    }
  }
  
  
  
  .video-section {
    position: relative;
    margin: 40px 10%;
    border-radius: 25px;
    overflow: hidden;
    height: 60vh; 
  }
  
  .video-section__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  
  .video-section__background iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
  }
  
  .video-section__overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 2rem;
    backdrop-filter: brightness(0.6); /* Optional dimming */
  }

  .video-padding {
    height: 25rem;
    display: block;
  }
  
  @media (max-width: 1200px) {
    .video-padding {
      display: block;
    }
  }
  

@media (max-width: 768px) {
  .video-padding {
    height: 15rem;
    display: block;
  }
  

  .video-section {
    height: 45vh;
    margin: 20px 3%;
    border-radius: 15px;
  }
  

  .video-section__overlay {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {

  .video-padding {
    height: 5rem;
    display: none;
  }
  

  .video-section {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .video-section__overlay {
    padding: 0.75rem;
    font-size: 0.9rem;
    flex-direction: column;
  }
}
  

  /* Footer */

  .footer-contact {
    padding: 60px 6%;
   
    text-align: center;
    font-family: 'Montserrat', sans-serif;
  }
  

  .footer-contact {
    /* padding: 60px 10%; */
    background-color: #fff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-contact__title {
    width: 100%;
    font-size: 13vw; /* responsive width-based sizing */
    font-weight: 800;
    /* margin-bottom: 60px; */
    text-transform: uppercase;
    line-height: 1;
    display: flex;
    justify-content: space-between;
  }
  
  
  @media (max-width: 1200px) {
    .footer-contact__title {
      font-size: 7rem;
    }
  }
  
  @media (max-width: 768px) {
    .footer-contact__title {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 480px) {
    .footer-contact__title {
      font-size: 2.5rem;
      /* width: 100%; */
    }
  }
  
  
  .gradient-text {
    background: linear-gradient(
      to right,
      #fc8210 20%,
rgb(255, 177, 108) 30%,
      #ff6417 40%,
rgb(255, 115, 28) 60%,
      #ff5100 70%,
      #ff8f5c 70%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 20s ease-in-out infinite alternate;
}
@keyframes textShine {
  0% {

      background-position: 0% 50%;
  }
  100% {
      background-position: 100% 50%;
  }
}
  
.footer-contact__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

  
  .footer-contact__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-contact__info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    gap: 40px;
    text-align: left;
  }
  
  .footer-contact__block {
    flex: 1;
    min-width: 150px;
  }
  
  .footer-contact__block h4 {
    color: #ff4f00;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .footer-contact__block p {
    margin: 0;
    font-size: 1rem;
    color: #111;
  }
  
  .footer-contact__socials a {
    color: #000;
    font-size: 1.2rem;
    margin-right: 20px;
    transition: opacity 0.3s;
  }
  
  .footer-contact__socials a:hover {
    opacity: 0.6;
  }
  
  .footer-contact__logo img {
    height: 100px;
  }
  
/* Ensure the logo stacks well on mobile */
.footer-contact__logo {
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: 0;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .footer-contact__bottom {
    flex-direction: column;
    align-items: flex-start; /* was center */
  }

  .footer-contact__content {
    width: 100%;
    align-items: flex-start; /* was center */
  }

  .footer-contact__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-contact__block {
    width: 100%;
    text-align: left;
  }

  .footer-contact__socials {
    margin-top: 10px;
    text-align: left;
  }

  .footer-contact__socials a {
    margin: 0 10px 0 0;
  }

  .footer-contact__logo {
    margin-top: 20px;
    align-self: flex-start;
  }
}



  /* Blog Page */


  .blog-page-section {
    position: relative;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f5ddd0 0%, #ffffff 80%);


    overflow: hidden;
  }
  
  .blog-page-title {
    color:rgb(255, 108, 40);

    font-size: 6.25rem;

    display: flex;
    margin: auto;
     text-align: center;
    justify-content: center;
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 0;
    margin-bottom: 0rem;
    font-family: "Montserrat", sans-serif;
    /* background-color: #000; */
  }
  @media (max-width: 480px) {

   .blog-page-title {
    font-size: 2rem;
  } 

  }
  .blog-header {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center;   /* Center items horizontally */
}

.blog-page-views {
    color: rgb(255, 108, 40);
    padding: 0.5%;
    background-color: #FF9D8A50;
    border-radius: 8px;
    font-size: 1.25rem;
    
    display: block; /* Treat the element as a block */
    width: fit-content; /* Make the block only as wide as its content */
    margin: 0 auto;
    justify-content: center;
    margin-bottom: 1rem;
}
  
  .blog-page-logo-container {
    /* background: #1e1e1e; */
    border-radius: 20px;
    padding: 5px;
    max-width: 82%;
    margin: 0 auto 2rem auto;
    text-align: center;
  }
  
   @media (max-width: 480px) {

    .blog-page-logo-container {
    /* background: #1e1e1e; */

    max-width: 82%;

  }
  } 
  .blog-page-logo-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }
  
  .blog-page-description {
    display: flex;
    justify-content: space-between;
    max-width: 80%;
    margin: 0 auto;
    font-size: 1.2rem;
    font-weight: 100;
    color: #333;
    margin-bottom: 2rem;
    /* background-color: #000; */
    font-family: "Montserrat", sans-serif;
  }
  
  .blog-page-year {
    white-space: nowrap;
  }
  
  .blog-page-footer {
    display: flex;
    flex-direction: row;
    gap: 2rem;

    margin: 0 auto;

    color: #222;



    display: flex;
    justify-content: space-between;
    max-width: 80%;
    margin: 0 auto;

    margin-bottom: 2rem;

  }
  
  .blog-page-footer-description {
    flex: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
  }
  

/* Responsive Breakpoints */

@media (max-width: 768px) {
  .blog-page-title {
    flex-direction: column;
    font-size: 2.5rem;
    text-align: center;
  }

  .blog-page-description,
  .blog-page-footer {
    flex-direction: column;
    font-size: 1rem;
  }

  .blog-page-footer-description {
    flex: 1 1 100%;
    text-align: center;
  }

  .blog-page-year {
    margin-top: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
 
  .blog-page-description {
    font-size: 0.95rem;
  }
}
  /* Decorative gradient overlays */
  .blog-page-gradient {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254,80,1,0.2) 0%, rgba(254,80,1,0) 80%);
    filter: blur(200px);
    z-index: 0;
  }
  
  .blog-page-top-right {
    top: -50px;
    right: -50px;
  }
  
  .blog-page-bottom-left {
    bottom: -50px;
    left: -50px;
  }
  
  .spacing-large {
    margin-top: 10%;
  }

  .blog-page-media-section {
    position: relative;
 
    padding: 4rem 2rem;
    overflow: hidden;
    

  }
  
  /* Top 3 image grid */
  .blog-page-card-grid {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    max-width: 80%;
    margin: 0 auto 1rem auto;
  }
  
  .blog-page-card {
    border-radius: 1rem;
    max-width: 25%;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Paragraph block */
  .blog-page-text-block {
    width: 80%;
  
    margin: 0 auto 5rem auto;
    text-align:center ;
    font-size: 1rem;
    /* color: #ea0909; */
    margin-top: 5rem;

  }

  /* Center image */
  .blog-page-feature-image {

    max-width: 50%;
   
    margin: 0 auto 3rem auto;
  }
  
  .blog-page-feature-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Text with button */
  .blog-page-post-preview {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
    font-family: "Montserrat", sans-serif;
  }
  
  .blog-page-post-preview h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111;
  }
  
  .blog-page-post-preview p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
  }
  
  .blog-page-button {
    padding: 0.75rem 2rem;
    border: 1px solid #000;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50px;
    transition: background 0.2s ease;
    background-color: white;
  }
  
  .blog-page-button:hover {
    background: #000;
    color: #fff;
  }
  @media (max-width: 1024px) {
    .blog-page-card-grid {
      justify-content: space-between;
      gap: 0.2rem;
    }
  
    .blog-page-card {
      max-width: 20%;
    }
  
    .blog-page-text-block,
    .blog-page-feature-image,
    .blog-page-post-preview {
      width: 90%;
    }
  }
  
  @media (max-width: 768px) {
    .blog-page-card {
      max-width: 100%;
    }
  
    .blog-page-feature-image {
      max-width: 100%;
      max-height: none;
      padding: 0 1rem;
    }
  
    .blog-page-post-preview h2 {
      font-size: 1.3rem;
    }
  
    .blog-page-post-preview p {
      font-size: 0.95rem;
    }
  
    .blog-page-button {
      width: 100%;
      max-width: 280px;
    }
  }
  
  @media (max-width: 480px) {
    .blog-page-card-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .blog-page-text-block {
      font-size: 0.95rem;
      padding: 0 1rem;
    }
  
    .blog-page-post-preview h2 {
      font-size: 1.15rem;
    }
  
    .blog-page-post-preview p {
      font-size: 0.9rem;
    }
  
    .blog-page-button {
      font-size: 0.95rem;
      padding: 0.65rem 1.5rem;
    }
  }
  
  /* Full width banner image */
  .blog-page-banner {
    max-width: 30%;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
  }
  
  .blog-page-banner-bottom {
    max-width: 30%;
    max-height: 50%;
    margin: 0 auto;
    border-radius: 1rem;
    /* overflow:; */

  }
  .blog-page-banner-bottom img {
    width: 100%;
    /* display:flex; */
    border-radius: 1rem;
   
  }
  
  

  .blog-page-banner img {
    width: 100%;
    display: block;
    border-radius: 1rem;
  }
  
  /* Background gradients */
  .blog-page-gradient {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254,80,1,0.2) 0%, rgba(254,80,1,0) 80%);
    filter: blur(150px);
    z-index: 0;
  }
  
  .blog-page-top-right {
    top: -50px;
    right: -50px;
  }
  
  .blog-page-bottom-left {
    bottom: -50px;
    left: -50px;
  }
  

  .blog-page-feature-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 4rem 0rem;
   
    flex-wrap: wrap;
    max-width: 80%;
    margin: 0 auto;
  }
  
  .blog-page-feature-text {
    flex: 1 1 50%;
    max-width: 50%;
    /* background-color: #000; */
  }
  
  .blog-page-feature-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111;
  }
  
  .blog-page-feature-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: "Montserrat", sans-serif;
  }
  
  .blog-page-feature-image {
    /* flex: 1 1 40%; */
    width: 40%;
    min-height: 250%;
    text-align: center;
  }
  
  .blog-page-feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  @media (max-width: 1024px) {
    .blog-page-banner {
      max-width: 90%;
    }
  
    .blog-page-feature-block {
      flex-direction: column;
      align-items: center;
      padding: 2rem 1rem;
    }
  
    .blog-page-feature-text {
      text-align: center;
      flex: 1 1 100%;
    }
  
    .blog-page-feature-text h2 {
      font-size: 1.75rem;
    }
  
    .blog-page-feature-text p {
      font-size: 0.95rem;
    }
  
    .blog-page-feature-image {
      width: 80%;
      height: auto;
    }
  }
  
  @media (max-width: 768px) {
    .blog-page-feature-text h2 {
      font-size: 1.5rem;
    }
  
    .blog-page-feature-text p {
      font-size: 0.9rem;
    }
  
    .blog-page-feature-image {
      width: 100%;
      max-width: 320px;
    }
  
    .blog-page-gradient {
      width: 200px;
      height: 200px;
      filter: blur(100px);
    }
  
    .blog-page-top-right,
    .blog-page-bottom-left {
      top: auto;
      bottom: auto;
      left: 0;
      right: 0;
    }
  }
  
  @media (max-width: 480px) {
    .blog-page-feature-text h2 {
      font-size: 1.3rem;
    }
  
    .blog-page-feature-text p {
      font-size: 0.85rem;
    }
  
    .blog-page-feature-image {
      width: 100%;
      max-width: 280px;
    }
  
    .blog-page-banner {
      border-radius: 0.75rem;
    }
  
    .blog-page-banner img {
      border-radius: 0.75rem;
    }
  
    .blog-page-gradient {
      width: 150px;
      height: 150px;
      filter: blur(75px);
    }
  }


  /* Main container */
.blog-page-container {
  position: relative;
  padding: 2rem 1rem;
  overflow: hidden;
}

/* Banner section */
.blog-page-banner-bottom {
  max-width: 320px;
  width: 100%;
  margin: 0 auto 3rem auto;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-page-banner-bottom img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
}

.blog-page-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

/* Background gradients */
.blog-page-gradient {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,80,1,0.2) 0%, rgba(254,80,1,0) 80%);
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
}

.blog-page-top-right {
  top: -50px;
  right: -50px;
}

.blog-page-bottom-left {
  bottom: -50px;
  left: -50px;
}

/* Feature block */
.blog-page-feature-block {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blog-page-feature-text {
  flex: 1;
  max-width: 500px;
  padding: 0 1rem;
}

.blog-page-feature-text h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
  line-height: 1.2;
  text-align: center;
}

.blog-page-feature-text p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-weight: 400;
}

.blog-page-feature-image {
  flex: 0 0 auto;
  width: 280px;
  max-width: 100%;
}

.blog-page-feature-image img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
  .blog-page-feature-block {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .blog-page-feature-text {
    max-width: 600px;
    order: 2;
  }

  .blog-page-feature-image {
    order: 1;
    width: 300px;
  }

  .blog-page-banner-bottom {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .blog-page-container {
    padding: 1.5rem 0.75rem;
  }

  .blog-page-feature-block {
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .blog-page-feature-text {
    padding: 0 0.5rem;
  }

  .blog-page-feature-image {
    width: 260px;
  }

  .blog-page-banner-bottom {
    max-width: 260px;
    margin-bottom: 2rem;
  }

  .blog-page-gradient {
    width: 200px;
    height: 200px;
    filter: blur(100px);
  }
}

@media (max-width: 480px) {
  .blog-page-container {
    padding: 1rem 0.5rem;
  }

  .blog-page-feature-block {
    gap: 1rem;
  }

  .blog-page-feature-text h2 {
    margin-bottom: 1rem;
  }

  .blog-page-feature-text p {
    margin-bottom: 1rem;
  }

  .blog-page-feature-image {
    width: 100%;
  }

  .blog-page-banner-bottom {
    max-width: 100%;
    border-radius: 0.75rem;
  }

  .blog-page-banner-bottom img,
  .blog-page-banner img {
    border-radius: 0.75rem;
  }

  .blog-page-feature-image img {
    border-radius: 1rem;
  }

  .blog-page-gradient {
    width: 150px;
    height: 150px;
    filter: blur(75px);
  }

  .blog-page-top-right {
    top: -25px;
    right: -25px;
  }

  .blog-page-bottom-left {
    bottom: -25px;
    left: -25px;
  }
}

@media (max-width: 360px) {
  .blog-page-feature-image {
    width: 220px;
  }

  .blog-page-banner-bottom {
    max-width: 220px;
  }

  .blog-page-feature-text {
    padding: 0;
  }
}

/* Hover effects for better interactivity */
@media (hover: hover) {
  .blog-page-feature-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .blog-page-feature-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  }

  .blog-page-banner-bottom img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .blog-page-banner-bottom img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }
}
  
  @keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.blog-page-media-section {
  animation: fadeIn 1s ease-in-out;
  animation-fill-mode: both;
}

.blog-page-title,
.blog-page-description,
.blog-page-footer,
.blog-page-text-block,
.blog-page-post-preview {
  animation: slideUpFade 0.8s ease forwards;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}


.blog-page-logo-container,
.blog-page-feature-image img,
.blog-page-card,
.blog-page-banner img {
  animation: scaleFade 1s ease forwards;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.blog-page-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-page-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


.blog-page-button {
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.blog-page-button:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}


/* ABOUT PAGE */
.about-section {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

.about-block {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin: 3rem 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.about-col-title {
  flex: 1;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
}

.about-col-text {
  flex: 2;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
}

/* Scroll animation trigger */
.about-fade-in.about-show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive stack on small screens */
@media (max-width: 768px) {
  .about-block {
    flex-direction: column;
  }

  .about-col-title {
    white-space: normal;
  }
}


/* FAQ SECTION */


.faq-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 100%;
  padding: 25px;
  /* background-color: #000; */
  /* margin: auto; */
}

.faq-title {
  font-size: 4.5rem;
  font-weight: 500;
  margin-left: auto;
  /* margin-right: 40px; */
  /* flex: 1; */
}

.accordion {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* background-color: #000; */
  margin-left: 5%;
  margin-right: auto;
  
}
.accordion-item {
  border-radius: 20px;
  background-color: #000; /* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ Move black background here */
  overflow: hidden;       /* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ Ensure rounded corners apply */
  transition: background 0.3s;
}

.accordion-header {
  background: none; /* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ Remove background here */
  color: rgb(210, 210, 210);
  padding: 20px;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: left;
  position: relative;
  width: 100%;
}


.accordion-header::after {
  content: '\25B2'; /* Upward caret */
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #1f1f1f;
  border-radius: 0 0 20px 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  color: white;
  font-family: "Montserrat", sans-serif;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 20px;
}


@media (max-width: 1024px) {
  .faq-title {
    font-size: 2rem;
  }

  .accordion-header {
    font-size: 1.1rem;
    padding: 16px;
  }

  .accordion-content {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .accordion-item.active .accordion-content {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
  }

  .faq-title {
    margin-left: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .accordion {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .accordion-header::after {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.75rem;
  }

  .accordion-header {
    font-size: 1rem;
  }

  .accordion-content {
    font-size: 0.9rem;
  }
}



/* Diary Home Section */
.diary-section-title {
  text-align: center;
  font-size: 6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  margin-top: 3rem;
  color: #ff804e;
  letter-spacing: 2px;
}

.diary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.diary-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.diary-card:hover {
  transform: translateY(-5px);
}

.diary-card-image {
  width: 100%;
  height: 200px; /* fixed height */
  object-fit: cover; /* ensures the image fills the box without distortion */
  border-radius: 15px;
  margin-bottom: 1rem;
  display: block;
}

.diary-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.diary-badge-shop {
  background: #fca5a5;
}

.diary-badge-tips {
  background: #86efac;
}

.diary-badge-fixing {
  background: #93c5fd;
}

.diary-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.diary-card-snippet {
  font-size: 0.875rem;
  color: #555;
  margin-bottom: 1rem;
}

.diary-card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.diary-avatar {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #ff804e;
  padding: 5px;

}

.diary-author-info {
  display: flex;
  flex-direction: column;
}

.diary-author {
  font-size: 0.85rem;
  font-weight: 600;
}

.diary-time {
  font-size: 0.75rem;
  color: #999;
}


@media (max-width: 1200px) {
  .diary-section-title {
    font-size: 4.5rem;
    margin-top: 2.5rem;
  }

  .diary-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    padding: 1.5rem;
  }

  .diary-card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .diary-section-title {
    font-size: 3.5rem;
    margin-top: 2rem;
  }

  .diary-grid {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .diary-card {
    padding: 1.25rem;
  }

  .diary-card-image {
    height: 160px;
  }

  .diary-card-title {
    font-size: 1rem;
  }

  .diary-card-snippet {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .diary-grid{
    overflow-x: hidden;
    max-width: 100vh;
  }
  .diary-section-title {
    font-size: 2.5rem;
    margin-top: 1.5rem;
  }

  .diary-card {
    padding: 1rem;
  }

  .diary-card-image {
    height: 140px;
  }

  .diary-avatar {
    width: 28px;
    height: 28px;
    padding: 4px;
  }

  .diary-author {
    font-size: 0.8rem;
  }

  .diary-time {
    font-size: 0.7rem;
  }
}

.diary-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.diary-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff804e;
  border-radius: 25px;
  opacity: 0.85;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.2rem 0.4rem;
  z-index: 10;
  cursor: pointer;
  display: none; /* default hidden, shown in media query */
}

.diary-carousel-btn.left {
  left: 0.5rem;
}

.diary-carousel-btn.right {
  right: 0.5rem;
}

@media (max-width: 700px) {
  .diary-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
    width: 100%;
    scroll-snap-type: x mandatory;
  }

  .diary-card {
    flex: 0 0 100%;
    max-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .diary-card.active {
    opacity: 1;
  }

  .diary-carousel-btn {
    display: block;
  }
}


/* Blog Page Dyna */

.blog-content {
  max-width: 80%;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.7;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #111;
}

.blog-content h1 { font-size: 2.25rem; }
.blog-content h2 { font-size: 1.875rem; }
.blog-content h3 { font-size: 1.5rem; }
.blog-content h4 { font-size: 1.25rem; }
.blog-content h5 { font-size: 1.125rem; }
.blog-content h6 { font-size: 1rem; }

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content ul,
.blog-content ol {
  padding-left: 2rem;       /* space before list */
  margin-bottom: 1rem;
  list-style-position: outside;
  display: block;           /* ensures vertical layout */
}

.blog-content ul {
  list-style-type: disc;
}

.blog-content ol {
  list-style-type: decimal;
}

.blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-content blockquote {
  border-left: 4px solid #ff804e;
  padding-left: 1rem;
  font-style: italic;
  background-color: #fff7f3;
  margin: 1.5rem 0;
}

.blog-content img {
  display: block;
  max-width: 100%;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-content img:hover {
  transform: scale(1.006);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.blog-content u {
  text-decoration: underline;
}

.blog-content s {
  text-decoration: line-through;
  color: #999;
}

.blog-banner-section {
  display: flex;
  justify-content: center;
}

.blog-banner-section img {
  width: 80%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}


.blog-banner-section img:hover {
  transform: scale(1.02);
}



/* Career Page */

.job-section {
  font-family: "Montserrat", sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 15rem;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.job-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.job-card h3 {
  font-size: 1.25rem;
  margin: 0 0 2rem;
  font-weight: 700;
}

.arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 5.5rem;
  font-size: 1.25rem;
  color: #555;
}

.job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 1rem;
  font-size: 0.9rem;
}

.logo {
  height: 24px;
  width: auto;
  margin-right: 0.5rem;
}
.view-button {
  background: black;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease; /* <- enables smooth animation */
}

.view-button:hover {
  background: #ff6600; /* or any hover color */
  transform: translateY(-2px) scale(1.05); /* optional lift and scale effect */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.bookmark {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* Background Color Classes */
.lavender {
  background: #f5f3ff;
}

.cream {
  background: #fff7ed;
}

.green {
  background: #ecfdf5;
}

.light-yellow {
  background: #fefce8;
}

.light-blue {
  background: #f0f9ff;
}

.rose {
  background: #fef2f2;
}

.orange {
  background:rgb(255, 237, 216);
}


/* CONTACT PAGE */

.contact-section {
  background: linear-gradient(to bottom, #ecfeff, #ffffff);
  padding: 4rem 1rem;

}

.contact-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-description {
  text-align: center;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  background: rgba(255, 255, 255, 0.62);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10.1px);
-webkit-backdrop-filter: blur(10.1px);
border: 1px solid rgba(255, 255, 255, 0.3);
}


@media (max-width: 500px) {
.contact-container {
margin-top: -5.6rem;
margin-bottom: 8rem;

}
}

@media (max-width: 400px) {
.contact-container {
margin-top: -9rem;
margin-bottom: 8rem;

}
}

@media (max-width: 300px) {
.contact-container {
margin-top: -10rem;
margin-bottom: 8rem;

}
}

.contact-info-box {
  background-image: url('image/Vartner_banner.png');
  background-size: cover;        /* Scales image to cover the box */
  background-repeat: no-repeat;  /* Prevents tiling */
  background-position: center;   /* Centers the image */
  
  color: white;
  flex: 1 1 300px;
  border-radius: 1rem;
  padding: 2rem;
}


.contact-info-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-info-subtitle {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;

}

.contact-input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-input-box {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}

.contact-input-group .contact-input-box {
  flex: 1 1 calc(50% - 0.5rem);
}

.contact-input-box label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #111827;
}

.contact-input-box input,
.contact-input-box textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  resize: vertical;
}

.contact-input-box input:focus,
.contact-input-box textarea:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}

.contact-button {
  background-color: #14b8a6;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #0d9488;
}