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

        .slider-column {
            width: 1400px;
            max-width: 100%;
            height: 415px;
            position: relative;
            overflow: hidden;
            margin: 0 auto; /* Center the column */
        }

        .slider {
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Align overlay to the left */
        }

        .overlay {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 20px;
            width: 400px; /* Fixed width for overlay */
            height: 415px; /* Match column height */
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
            border-radius: 0 10px 10px 0; /* Rounded corners on right side */
            animation: fadeInLeft 1s ease-out;
        }

        .overlay h2 {
            font-size: clamp(1.5rem, 2vw, 1.8rem);
            margin-bottom: 10px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .overlay p {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 4; /* Allow slightly more text */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .overlay a {
            display: inline-block;
            padding: 10px 20px;
            background: #ff5733;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            transition: background 0.3s, transform 0.3s;
            width: fit-content;
        }

        .overlay a:hover {
            background: #c70039;
            transform: scale(1.05);
        }

        /* Navigation Dots */
        .dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: #fff;
            opacity: 0.5;
            border-radius: 50%;
            cursor: pointer;
            transition: opacity 0.3s, transform 0.3s;
        }

        .dot.active {
            opacity: 1;
            transform: scale(1.2);
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 1400px) {
            .slider-column {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .slider-column {
                height: 350px;
            }

            .overlay {
                width: 300px;
                height: 350px;
                padding: 15px;
            }

            .overlay h2 {
                font-size: clamp(1.2rem, 3vw, 1.5rem);
            }

            .overlay p {
                font-size: clamp(0.8rem, 2.5vw, 0.9rem);
                -webkit-line-clamp: 3;
            }

            .overlay a {
                padding: 8px 15px;
            }
        }

        @media (max-width: 480px) {
            .slider-column {
                height: 300px;
            }

            .overlay {
                width: 250px;
                height: 300px;
                padding: 10px;
            }

            .overlay h2 {
                font-size: clamp(1rem, 4vw, 1.2rem);
            }

            .overlay p {
                font-size: clamp(0.7rem, 3vw, 0.8rem);
            }
        }


        /* content 2*/

        .mainWrapper {
    display: flex;
    width: 100%;
    max-width: 1400px;
    height: 415px;
    margin: 20px auto;
    gap: 20px;
    padding: 0 10px;
    margin-top: 50px;
}

.primarySection, .secondarySection {
    height: 100%;
}

.primarySection {
    flex: 1;
    min-width: 0;
}

.secondarySection {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    min-width: 0;
}

.featureAnchor, .tileAnchor {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featureAnchor {
    display: flex;
    align-items: flex-end; /* Align content to bottom */
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.featureContent {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    text-align: center;
    max-width: 80%;
    border-radius: 8px;
    margin-bottom: 20px; /* Add space from bottom edge */
}

.featureHeadline {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: text-decoration 0.2s ease;
}

.featureHeadline:hover {
    text-decoration: underline;
}

.featureSummary {
    font-size: 1rem;
    line-height: 1.4;
}

.tileBlock {
    height: 100%;
}

.tileAnchor {
    display: flex;
    align-items: flex-end; /* Move title to bottom */
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tileCaption {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 5px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px; /* Add space from bottom edge */
}

.featureAnchor:hover, .tileAnchor:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mainWrapper {
        flex-direction: column;
        height: auto;
        margin: 10px auto;
        padding: 0 5px;
    }

    .primarySection, .secondarySection {
        width: 100%;
        height: 300px; /* Adjusted for tablet */
    }

    .secondarySection {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 150px);
        gap: 10px;
    }

    .featureHeadline {
        font-size: 1.5rem;
    }

    .featureSummary {
        font-size: 0.9rem;
    }

    .tileCaption {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .primarySection, .secondarySection {
        height: 250px; /* Adjusted for mobile */
    }

    .secondarySection {
        grid-template-rows: repeat(4, 120px);
    }

    .featureHeadline {
        font-size: 1.2rem;
    }

    .featureSummary {
        font-size: 0.8rem;
    }

    .tileCaption {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
}

/*content 3*/
 .heroSectionContainer {
      width: 100%;
      max-width: 1400px;
      height: 415px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .backgroundImageLayer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.4) blur(5px); /* Low brightness and blur only for background */
      z-index: 1;
    }

    .contentWrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      padding: 30px;
      position: relative;
      z-index: 2; /* Above the background image */
    }

    .mediaEmbedBlock {
      flex: 1;
      max-width: 50%;
      animation: slideFromLeftEdge 1s ease-out;
    }

    .mediaEmbedBlock iframe {
      width: 100%;
      height: 350px;
      border-radius: 10px;
      border: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .infoOverlayPanel {
      flex: 1;
      max-width: 45%;
      color: #fff;
      padding: 20px;
      animation: slideFromRightEdge 1s ease-out;
    }

    .infoOverlayPanel h2 {
      font-size: clamp(24px, 4vw, 32px); /* Responsive font size */
      margin-bottom: 15px;
      line-height: 1.2;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2; /* Limit to 2 lines */
      -webkit-box-orient: vertical;
    }

    .infoOverlayPanel p {
      font-size: clamp(14px, 2.5vw, 16px); /* Responsive font size */
      margin-bottom: 20px;
      line-height: 1.5;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 4; /* Limit to 4 lines */
      -webkit-box-orient: vertical;
    }

    .infoOverlayPanel a {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ff6b6b;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s, transform 0.3s;
    }

    .infoOverlayPanel a:hover {
      background-color: #e55a5a;
      transform: translateY(-3px);
    }

    /* Animations */
    @keyframes slideFromLeftEdge {
      from {
        transform: translateX(-100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes slideFromRightEdge {
      from {
        transform: translateX(100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .contentWrapper {
        flex-direction: column;
        justify-content: center;
        padding: 20px;
      }

      .mediaEmbedBlock,
      .infoOverlayPanel {
        max-width: 100%;
        margin-bottom: 20px;
      }

      .mediaEmbedBlock iframe {
        height: 200px; /* Adjust height for tablets */
      }

      .infoOverlayPanel {
        text-align: center;
      }

      .infoOverlayPanel h2 {
        font-size: 28px;
      }

      .infoOverlayPanel p {
        font-size: 14px;
      }
    }

    @media (max-width: 768px) {
      .heroSectionContainer {
        height: auto; /* Allow height to adjust */
        padding-bottom: 20px;
      }

      .mediaEmbedBlock iframe {
        height: 180px; /* Smaller height for mobile */
      }

      .infoOverlayPanel h2 {
        font-size: 24px;
      }

      .infoOverlayPanel p {
        font-size: 13px;
        -webkit-line-clamp: 3; /* Reduce lines for mobile */
      }

      .infoOverlayPanel a {
        padding: 10px 20px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .mediaEmbedBlock iframe {
        height: 150px; /* Even smaller for small mobiles */
      }

      .infoOverlayPanel h2 {
        font-size: 20px;
      }

      .infoOverlayPanel p {
        font-size: 12px;
      }
    }

    /*article list*/
     .quixotic-vessel {
      display: flex;
      max-width: 1400px;
      margin: 40px auto;
      gap: 30px;
      padding: 0 20px;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .whimsical-tomes {
      flex: 2;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .zestful-tale {
      display: flex;
      align-items: center;
      background: linear-gradient(145deg, #ffffff, #f8f9fa);
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      height: 120px;
      animation: slideIn 0.5s ease-out forwards;
      opacity: 0;
      animation-delay: calc(var(--index) * 0.1s);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .zestful-tale:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .zestful-tale img {
      width: 200px;
      height: 120px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .zestful-tale:hover img {
      transform: scale(1.05);
    }

    .tale-caption {
      flex: 1;
      padding: 15px;
      font-size: 18px;
      color: #1a1a1a;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .tale-caption a {
      color: #1a1a1a;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .tale-caption a:hover {
      color: #e63946;
    }

    .view-count {
      font-size: 13px;
      color: #6b7280;
      margin-top: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .view-count i {
      font-size: 15px;
      color: #e63946;
    }

    .zestful-video {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      height: 360px;
      overflow: hidden;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .zestful-video iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .peculiar-wing {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .glimmer-poster {
      width: 100%;
      max-width: 320px;
      height: 280px;
      background: linear-gradient(145deg, #f8f9fa, #e9ecef);
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .glimmer-poster:hover {
      transform: scale(1.03);
    }

    .glimmer-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .glimmer-poster:hover img {
      transform: scale(1.05);
    }

    .anchored {
      position: sticky;
      top: 30px;
    }

    .mystic-revelry {
      position: relative;
      width: 100%;
      max-width: 320px;
      height: 180px;
      overflow: hidden;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .revelry-core {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .revelry-piece {
      min-width: 320px;
      height: 180px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      font-size: 16px;
      color: #fff;
      text-align: center;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
      border-radius: 12px;
      padding: 15px;
      position: relative;
      overflow: hidden;
    }

    .revelry-piece::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
      z-index: 1;
    }

    .revelry-piece span {
      position: relative;
      z-index: 2;
    }

    .revelry-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      border: none;
      padding: 12px;
      cursor: pointer;
      font-size: 20px;
      border-radius: 50%;
      transition: background 0.3s ease, transform 0.3s ease;
      z-index: 3;
    }

    .revelry-nav:hover {
      background: rgba(230, 57, 70, 0.8);
      transform: translateY(-50%) scale(1.1);
    }

    .revelry-nav:focus {
      outline: 2px solid #e63946;
      outline-offset: 2px;
    }

    .back {
      left: 15px;
    }

    .forth {
      right: 15px;
    }

    /* Animations */
    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .quixotic-vessel {
        flex-direction: column;
        margin: 20px auto;
        gap: 20px;
      }

      .peculiar-wing {
        align-items: center;
      }

      .glimmer-poster, .mystic-revelry {
        width: 100%;
        max-width: 400px;
      }

      .zestful-tale {
        height: 100px;
      }

      .zestful-tale img {
        width: 140px;
        height: 100px;
      }

      .tale-caption {
        font-size: 16px;
      }

      .view-count {
        font-size: 12px;
      }

      .zestful-video {
        height: 240px;
      }
    }

    @media (max-width: 480px) {
      .tale-caption {
        font-size: 14px;
      }

      .zestful-tale img {
        width: 120px;
        height: 100px;
      }

      .view-count {
        font-size: 10px;
      }

      .revelry-piece {
        font-size: 14px;
      }

      .zestful-video {
        height: 200px;
      }
    }


/*content 5 */
 .galleryHub {
            max-width: 1300px;
            width: 100%;
            margin: 0 auto;
            margin-top: 50px;
        }

        .imageMosaic {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }

        .visualBlock {
            flex: 1 1 calc(25% - 20px);
            max-width: 282px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .visualBlock img {
            width: 282px;
            height: 158px;
            object-fit: cover;
            display: block;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .visualBlock:hover img {
            transform: scale(1.05);
        }

        .visualBlock a {
            text-decoration: none;
            color: #333;
            display: block;
        }

        .visualBlock h3 {
            font-size: 16px;
            margin-top: 10px;
            line-height: 1.4;
            padding: 0 10px;
            transition: color 0.3s ease;
            position: relative;
        }

        .visualBlock h3::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #8B0000;
            bottom: -2px;
            left: 0;
            transition: width 0.3s ease;
        }

        .visualBlock:hover h3 {
            color: #8B0000;
        }

        .visualBlock:hover h3::after {
            width: 100%;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .visualBlock {
                flex: 1 1 calc(33.33% - 20px);
                max-width: 33.33%;
            }
        }

        @media (max-width: 768px) {
            .visualBlock {
                flex: 1 1 calc(50% - 20px);
                max-width: 50%;
            }

            .visualBlock img {
                width: 100%;
                height: auto;
                aspect-ratio: 282 / 158;
            }
        }

        @media (max-width: 480px) {
            .visualBlock {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }


       /* article card */
       
      /* Main section styling */
        .techStreamWrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            width: 100%;
        }

        /* Header styling */
        .techHeadlineBlock {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .techTitleText {
            font-size: 28px;
            font-weight: bold;
            color: #1a1a1a;
        }

        .techMoreLink {
            font-size: 16px;
            color: #464646;
            text-decoration: underline;
            transition: color 0.3s ease;
            font-weight: bold;
        }

        .techMoreLink:hover {
            color: #b30000;
            text-decoration: underline;
        }

        /* Carousel styling */
        .articleFlowContainer {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .articleSlideTrack {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .articleCardUnit {
            flex: 0 0 300px;
            height: 218px;
            margin-right: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .articleCardUnit:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .articleCardImage {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .articleCardTitle {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 10px;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            transition: background-color 0.3s ease;
        }

        .articleCardUnit:hover .articleCardTitle {
            background-color: rgba(0, 0, 0, 0.85);
        }

        /* Navigation buttons */
        .carouselNavButton {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 18px;
            transition: background-color 0.3s ease;
        }

        .carouselNavButton:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .navButtonPrev {
            left: 10px;
        }

        .navButtonNext {
            right: 10px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .techStreamWrapper {
                padding: 10px;
            }

            .techTitleText {
                font-size: 24px;
            }

            .techMoreLink {
                font-size: 14px;
            }

            .articleCardUnit {
                flex: 0 0 250px;
                height: 182px;
                margin-right: 15px;
            }

            .articleCardTitle {
                font-size: 12px;
                padding: 8px;
            }
        }

        @media (max-width: 480px) {
            .articleCardUnit {
                flex: 0 0 200px;
                height: 146px;
                margin-right: 10px;
            }

            .techTitleText {
                font-size: 20px;
            }

            .techMoreLink {
                font-size: 12px;
            }

            .carouselNavButton {
                padding: 8px;
                font-size: 14px;
            }

            .articleCardTitle {
                font-size: 10px;
                padding: 6px;
            }
        }