@font-face {
  font-family: 'Inter';
  src: url('../Assets/Fonts/inter/Inter_18pt-Black.ttf') format('woff2');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../Assets/Fonts/inter/Inter_18pt-ExtraLight.ttf') format('woff2');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../Assets/Fonts/inter/Inter_18pt-Italic.ttf') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../Assets/Fonts/inter/Inter_18pt-Light.ttf') format('woff2');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../Assets/Fonts/inter/Inter_18pt-Medium.ttf') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../Assets/Fonts/inter/Inter_18pt-Regular.ttf') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../Assets/Fonts/inter/Inter_18pt-SemiBold.ttf') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../Assets/Fonts/inter/Inter_24pt-Bold.ttf') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../Assets/Fonts/inter/Inter_24pt-ExtraBold.ttf') format('woff2');
  font-weight: 800;
  font-style: normal;
}

/* INTER DISPLAY */
/* Regular */
@font-face {
  font-family: 'Inter Display';
  src: url('../Assets/Fonts/Woff2/InterDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: 'Inter Display';
  src: url('../Assets/Fonts/Woff2/InterDisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

/* SemiBold */
@font-face {
  font-family: 'Inter Display';
  src: url('../Assets/Fonts/Woff2/InterDisplay-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'Inter Display';
  src: url('../Assets/Fonts/Woff2/InterDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* ExtraBold */
@font-face {
  font-family: 'Inter Display';
  src: url('../Assets/Fonts/Woff2/InterDisplay-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}

/* Black */
@font-face {
  font-family: 'Inter Display';
  src: url('../Assets/Fonts/Woff2/InterDisplay-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Inter Display';
  src: url('../Assets/Fonts/Woff2/InterDisplay-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Inter Display';
  src: url('../Assets/Fonts/Woff2/InterDisplay-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}

:root {
  --color-white: #FFFFFF;
  --color-white-25: #FAFAFA;
  --color-white-50: #F2F2F2;
  --color-white-100: #E6E6E6;
  --color-white-200: #CCCCCC;

  --color-black: #000000;
  --color-black-50: #0D0D0D;
  --color-black-100: #1C1C1C;
  --color-black-200: #333333;
  --color-black-250: #BFBFBF;
  --color-black-400: #666666;
  --color-black-500: #808080;

  --color-yellow: #FFD332;
  --color-blue-500: #0080FF;
  --color-Orange-500: #FF6000;
  --color-red: #D92D3A;
  --color-green-700: #015845;
}


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

body {
    overflow-x: hidden;
}

/* =====================================================
   HEADER STYLES
   ===================================================== */
.logo img {
    height: auto;
    width: auto;
    max-height: 32px; 
}

/* Header Styles */
.header-wrapper {
  width: 100%;
  z-index: 999;
  position: relative;
  
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

/* Navigation */
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 100px;
  background: transparent;
  z-index: 9999;
  position: relative;
  height: 68px;
  transition: all 0.3s ease;
  max-width: 1920px;
  margin: auto;
}

/* When scrolled → becomes fixed */
.header-wrapper.scrolled {
  position: fixed;
  background: var(--color-white);
  border-bottom: 1px solid #c1c4c8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Push hero content below header */
/* .hero-section {
  padding-top: 90px;   
} */

/* Add a scroll class for when the user scrolls
.header-wrapper.scrolled {
  border-bottom: 1px solid var(--Neutral-colors-Default-Borders, #c1c4c8);
  background: var(--Neutral-colors-White, #fff);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
} */

.header-wrapper.scrolled .nav-item {
  color: var(--color-black);
}

.header-wrapper.scrolled .cta-button {
  background: var(--color-green-700);
}

.header-wrapper.scrolled .cta-text {
  color: var(--color-white);
}

.header-wrapper.scrolled .menu-toggle span {
  background-color: #121212;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
  cursor: pointer !important;
}

.logo img {
  height: auto;
  width: auto;
  max-height: 32px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.nav-item-wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  vertical-align: middle;
}

.services-arrow, .products-arrow {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  vertical-align: middle;
  transition: filter 0.3s ease;
  filter: brightness(0); 
}

.header-wrapper.scrolled .services-arrow, .header-wrapper.scrolled .products-arrow {
  filter: brightness(0);
}

.nav-links img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.dropdown-arrow{
    width:16px;
    height:auto;
    margin-left:6px;
    cursor:pointer;
    background:transparent;
    border:none;
    display:block;
}

.dropdown{
    position: relative;
}

.services-menu h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 160%;
    text-transform: uppercase;
    color: var(--color-black-500);
}

.services-menu h2{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 2;
    color: var(--color-black-100);
}

/* Services Dropdown */
.services-dropdown{
  position:relative;
}

.services-menu{
  position:absolute;
  top:35px;
  left:0;
  width:382px;
  height: 134px;
  background: var(--color-white);
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  display:none;
  flex-direction:column;
  padding:20px 30px;
}

.services-menu.show{
  display:flex;
}

/* Products Dropdown */
.products-dropdown{
  position:relative;
}

.products-menu{
  position:absolute;
  top:35px;
  left:0;
  width:500px;
  height: 200px;
  padding: 20px 30px;
  background: var(--color-white);
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  display:none;
}

.products-menu.show{
  display:flex;
}

.menu-column {
    padding-right: 50px;
}

.menu-column a{
    font-family: 'Inter', sans-serif;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-black-100);
    font-size: 18px;
    line-height: 2.3;
}

.menu-column1 a{
    font-family: 'Inter', sans-serif;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-black-100);
    font-size: 18px;
    line-height: 2.3;
}

.dropdown-menu a:hover{
    background:#f5f5f5;
}

.dropdown-menu.show{
    display:flex;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  outline: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-black);
  margin: 5px 0;
  border-radius: 3px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out,
    background-color 0.3s ease;
}

/* Navigation Links */
.nav-item {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-black);
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: letf;
    text-decoration: none;
}

.nav-item:hover {
  /* color: var(--primary-color); */
  transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 169px;
    height: 44px;
    padding: 12px 30px;
    background: var(--color-green-700);
    color: var(--color-white);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
  /* background-color: var(--primary-color); */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile CTA button - hidden by default on desktop */
.mobile-cta {
  display: none;
}

.desktop-only {
  display: block;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--color-white);
}

/* Responsive Styles for Header */
@media screen and (max-width: 1440px) {
  .nav-header {
    padding: 10px 40px;
  }
}

@media screen and (max-width: 1200px) {
  .nav-header {
    padding: 12px 40px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-item {
    font-size: 15px;
    text-align: left;
  }

  .cta-button {
    width: 160px;
    padding: 10px 25px;
  }

  .cta-text {
    font-size: 15px;
  }

  .logo img {
    max-height: 30px;
  }

  .header-wrapper.scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  }
}

@media screen and (max-width: 992px) {
  .nav-header {
    padding: 10px 2%;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-item {
    font-size: 14px;
    text-align: left;
  }

  .dropdown-arrow {
    width: 14px;
    height: 14px;
    margin-left: 4px;
  }

  .nav-links img {
    width: 14px;
    height: 14px;
  }

  .cta-button {
    width: 140px;
    padding: 8px 20px;
    height: 40px;
  }

  .cta-text {
    font-size: 14px;
  }

  .logo img {
    max-height: 28px;
  }

  .header-wrapper.scrolled {
    border-bottom-width: 1px;
  }
}

@media screen and (min-width: 320px) and (max-width: 768px) {
    .services-menu, 
    .products-menu {
        position: static;   
        width: 100% !important; 
        height: auto;      
        padding: 10px 15px;
        box-shadow: none;    
        border-radius: 0;
    }

    .menu-column, 
    .menu-column1 {
        padding-right: 0;   
        display: flex;
        flex-direction: column;
    }

    .menu-column a, 
    .menu-column1 a {
        font-size: 16px;     
        padding: 8px 10px;   
        line-height: 1.5;  
        display: block;
        width: 100%;
    }

    /* 3. Handle the 'show' state to ensure it works with flex */
    .services-menu.show, 
    .products-menu.show {
        display: flex;
        flex-direction: column;
        background-color: transparent;
    }
}

@media screen and (max-width: 768px) {
  .nav-header {
    padding: 12px 15px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 15px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, display 0.1s linear;
  }

  .header-wrapper.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e5e5e5;
  }

  .nav-links.active {
    display: flex;
    min-width: 100%;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    align-items: left;
    row-gap: 1.25rem;
    opacity: 1;
    transform: translateY(0);
  }
  .services-arrow.scrolled {
    color: #000;
  }

  .nav-item-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .dropdown-arrow {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 10px;
    background: var(--color-black);
  }

  .mobile-cta .cta-text {
    color: var(--color-white);
  }

  .cta-button {
    width: 100%;
  }

  /* Hamburger menu animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-black);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-black);
  }

  .logo img {
    max-height: 26px;
  }
}

@media screen and (max-width: 576px) {
  .nav-header {
    padding: 10px 12px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    margin: 4px 0;
  }

  .logo img {
    max-height: 24px;
  }

  .nav-links {
    padding: 15px;
  }

  .nav-item {
    font-size: 16px;
    padding: 8px 0;
    width: 100%;
    text-align: left;
    display: block;
  }

  .mobile-cta {
    padding: 10px 20px;
    margin-top: 8px;
  }

  .mobile-cta .cta-text {
    font-size: 15px;
  }

  .header-wrapper.scrolled {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  }

  .header-wrapper.scrolled .nav-links {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    font-size: 22px;
  }

  .nav-header {
    padding: 8px 10px;
  }

  .logo img {
    max-height: 26px;
  }

  .menu-toggle span {
    width: 20px;
    margin: 3px 0;
  }

  .nav-links {
    padding: 12px;
    gap: 12px;
  }

  .nav-item {
    font-size: 15px;
    text-align: left;
  }

  .mobile-cta {
    padding: 8px 15px;
    height: 40px;
  }

  .mobile-cta .cta-text {
    font-size: 14px;
  }

  .header-wrapper.scrolled {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  }
}

@media screen and (max-width: 375px) {
  .logo img {
    max-height: 24px;
  }

  .nav-header {
    padding: 8px;
  }

  .menu-toggle span {
    width: 18px;
    height: 1.5px;
  }

  .nav-item {
    font-size: 14px;
    text-align: left;
  }

  .mobile-cta {
    height: 38px;
  }

  .mobile-cta .cta-text {
    font-size: 13px;
  }
}

@media screen and (max-width: 320px) {
  .logo img {
    max-height: 18px;
  }

  .nav-header {
    padding: 6px;
  }

  .menu-toggle span {
    width: 16px;
    height: 1.5px;
    margin: 3px 0;
  }

  .nav-links {
    padding: 10px;
  }

  .nav-item {
    font-size: 13px;
    text-align: left;
  }

  .mobile-cta {
    height: 36px;
    padding: 6px 12px;
  }

  .mobile-cta .cta-text {
    font-size: 12px;
  }

  .hero-cta,
  .hero-secondary-cta {
    min-width: 100px;
    padding: 6px 10px;
  }

  .hero-cta .hero-cta-text,
  .hero-secondary-cta .hero-cta-text {
    font-size: 12px;
  }
}

   /* ========================================
   DARK THEME — HEADER SECTION (Toggle enabled)
   ======================================== */

/* [data-theme="dark"] body {
    background: #0D0D0D;
}

[data-theme="dark"] .header-wrapper {
    background: transparent;
    border-bottom: 1px solid transparent;
}

[data-theme="dark"] .logo img {
    content: url("Assets/images/km_soft_index_logo.webp ");
   
}

[data-theme="dark"] .nav-item {
    color: #ffffff;
}

[data-theme="dark"] .nav-item:hover {
    color: #ffffff;
}

[data-theme="dark"] .dropdown-arrow {
    filter: #ffffff;
}

[data-theme="dark"] .menu-toggle span {
    background: #ffffff;
}

[data-theme="dark"] .cta-button {
    background: #000000;
    
    border: 1px solid #ffffff;
}


[data-theme="dark"] .cta-text {
    color: #ffffff;
}  */







/* ========================================
   CASE STUDY HERO SECTION
   ======================================== */

.case-study-hero {
    width: 100%;
    max-width: 1920px;
    padding: 20px 120px; 
    height: auto; 
    min-height: 400px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 68px 120px 0; 
}

.case-study-container {
    width: 100%;
    max-width: 1600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin: 0 auto; 
}

.case-study-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-title {
    font-family: 'Inter Display', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 70px;
    line-height: 125%;
    letter-spacing: 0%;
    color: var(--color-black-100);
    margin-bottom: 0;
}

.case-study-description {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.case-study-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--color-black-100);
    max-width: 700px;
}

/* ========================================
   RESPONSIVE BREAKPOINTS (HERO)
   ======================================== */

@media screen and (max-width: 1440px) {
    .case-study-hero {
        padding: 0 60px;
        height: 350px;
    }
    .case-study-container {
        gap: 80px;
    }
    .case-study-title {
        font-size: 60px;
    }
    .case-study-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .case-study-hero {
        margin-top: -100px;
        height: 320px;
    }
    
    .case-study-container {
        gap: 70px;
    }
    
    .case-study-title {
        font-size: 48px;
    }
    
    .case-study-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .case-study-hero {
        margin-top: -100px;
        height: 300px;
        padding: 0 40px;
    }
    
    .case-study-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .case-study-title {
        font-size: 42px;
    }
    
    .case-study-text {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {

    .case-study-hero {
        margin-top: -100px;
        height: 280px;
        padding: 0 20px;
    }
    
    .case-study-title {
        font-size: 42px;
        text-align: left;
    }
    
    .case-study-text {
        font-size: 16px;
        width: 100%;
        max-width: 500px;
        display: inline;
        margin-right: auto;
        text-align: left;
    }
}

@media screen and (max-width: 576px) {

    .case-study-hero {
        margin-top: -100px;
        height: 260px;
        padding: 0 15px;
    }
    
    .case-study-title {
        font-size: 40px;
        text-align: left;
    }
    
    .case-study-text {
        font-size: 16px;
        text-align: left;
    }
}

@media screen and (max-width: 480px) {

    .case-study-hero {
        margin-top: -100px;
        height: 240px;
        padding: 0 12px;
    }
    
    .case-study-title {
        font-size: 40px;
        text-align: left;
    }
    
    .case-study-text {
        font-size: 18px;
        text-align: left;
    }
}

@media screen and (max-width: 375px) {

    .case-study-hero {
        height: 100px;
        max-height: 222px;
        padding: 0 10px;
        margin-top: -100px;
    }
    
    .case-study-title {
        font-size: 35px;
        width: 100%;
        text-align: left;
    }
    
    .case-study-text {
        font-size: 16px;
        width: 100%;
        text-align: left;
    }
}

@media screen and (max-width: 319px) {
    .case-study-hero {
        height: 200px;
        margin-top: -100px;
        padding: 0 8px;
    }
    
    .case-study-title {
        font-size: 24px;
    }
    
    .case-study-text {
        font-size: 11px;
    }
}

/* ========================================
   DARK THEME — CASE STUDY HERO SECTION (Toggle enabled)
   ======================================== */

/* [data-theme="dark"] .case-study-hero {
    background: #0D0D0D;
}

[data-theme="dark"] .case-study-title {
    color: #ffffff;
}

[data-theme="dark"] .case-study-text {
    color: #BFBFBF;
} */













/* ========================================
   CASE STUDIES GRID SECTION
   ======================================== */

.case-studies-grid-section {
    width: 100%;
    background: var(--color-white-50);
    padding: 60px 155px;
    min-height: 100vh;
}

.case-studies-grid-container {
    max-width: 1800px;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px 160px;
    align-items: start;
    grid-auto-flow: dense;
}

/* Case Study Card Styles */
.case-study-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: transparent;
}

.case-study-card.card-small {
    width: 100%;
    max-width: 670px;
}

.case-study-card.card-small:hover {
    width: 690px;
    padding: 10px;
    background-color: var(--color-white);
    transition: all 0.7s ease;
} 

.case-study-image {
    width: 100%;
    overflow: hidden;
    border-radius: 0px;
    cursor: pointer;
}

.case-study-image1  img{
    height: 600px; 
    width: 670px;
    border-radius: 0px;
}

.case-study-image2  img{
    height: 700px; 
    width: 670px;
    object-fit: cover;
    border-radius: 0px;
}

.case-study-image3 img{
    height: 660px; 
    width: 1196px;
    object-fit: cover;
    border-radius: 0px;
}

.case-study-image4  img{
    height: 700px; 
    width: 670px;
    border-radius: 0px;
}

.case-study-image5  img{
    height: 600px; 
    width: 740px;
    object-fit: cover;
    border-radius: 0px;
}

.case-study-image6  img{
    height: 600px; 
    width: 670px;
    object-fit: cover;
    border-radius: 0px;
}

.case-study-image7  img{
    height: 700px; 
    width: 670px;
    object-fit: cover;
    border-radius: 0px;
}

.case-study-image img {
    object-fit: cover;
    display: block;
    border-radius: 0px;
}

/* Coming Soon Overlay */
.coming-soon {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 670px;
    height: 700px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.coming-soon:hover .coming-soon-overlay {
    opacity: 1;
}

.coming-soon-overlay span {
    color: var(--color-yellow);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.coming-soon:hover .coming-soon-overlay span {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .coming-soon-overlay span {
        font-size: 24px;
    }
}

/* Card Size Variations */
.card-small .case-study-image {
    height: 600px;
}

.card-tall .case-study-image {
    height: 700px;
}

/* WIDE CARD: spans full grid but is shifted right
   to create a visible left gap on large screens */
.card-wide {
    height: 810px;
    grid-column: 1 / -1;   
    max-width: 1196px;    
    gap: 40px;      
    margin-left: auto;     
    margin-right: auto; 
}

/* you can tweak 80% above; e.g. 75% makes a bigger gap */
.card-wide .case-study-image {
    height: 600px;
}

.case-study-card.card-wide.card-wide-right:hover {
    width: 1196px;
    padding: 10px;
    background-color: var(--color-white);
    transition: all 0.7s ease;
}

/* Case Study Info */
.case-study-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-study-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.case-study-name {
    font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-black-100);
    margin: 0;
}

.case-study-desc {
    width: 660px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--color-black-200);
    margin: 0;
}

/* Tags */
.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.tag {
    padding: 5px 20px;
    background: var(--color-white);
    border-radius: 30px;
    border: 0.5px solid var(--color-white-200);
    color: var(--color-black-200);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   RESPONSIVE BREAKPOINTS (GRID)
   ======================================== */
/* @media (max-width:2260px){
    .case-study-image1  img{
        height: 585px;
        width: 780px;
    }

    .case-study-image2  img{
        height: 690px;
        width: 830px;
    }

    .case-study-image3  img{
        height: 638px;
        width: 1130px;
    }

    .case-study-image4  img{
        height: 585px;
        width: 780px;
    }

    .case-study-image5  img{
        height: 640px;
        width: 830px;
    }

    .case-study-image6  img{
        height: 585px;
        width: 780px;
    }

    .case-study-image7  img{
        height: 690px;
        width: 830px;
    }
    
    .case-study-desc {
        width: 92%;
    }
} */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .case-studies-grid-section {
        padding: 60px 120px;
    }

    .case-study-image1  img{
        height: 464px;
        width: 548px;
        border-radius: 0;
    }

    .card-small .case-study-image {
        height: 464px;
    }

    .case-study-image2  img{
        height: 563px;
        width: 547px;
        border-radius: 0;
    }

    .case-study-image3  img{
        height: 585px;
        width: 974px;
        border-radius: 0;
    }

    .case-study-image4  img{
        height: 464px;
        width: 548px;
        border-radius: 0;
    }

    .case-study-image5  img{
        height: 500 px;
        width: 547px;
        border-radius: 0;
    }

    .case-study-image6  img{
        height: 464px;
        width: 548px;
        border-radius: 0;
    }

    .case-study-image7  img{
        height: 563px;
        width: 547px;
        border-radius: 0;
    }

    .card-wide {
        width: 100%;
        max-width: 976px;
    }

    .case-study-desc {
        width: 100%;
    }
    
    .case-studies-grid-container {
        gap: 80px 80px;
    }

    .case-study-card {
        width: 100%;
        max-width: 545px;
    }

    .case-study-card.card-wide.card-wide-right {
        width: 100%;
        max-width: 1000px;
    }

    .case-study-card.card-small {
        width: 100%;
        max-width: 570px;
    }

    .coming-soon-overlay {
        width: 100%;
        height: 100%;
    }
}


@media screen and (max-width: 1440px) {
    .case-studies-grid-section {
        padding: 60px 120px;
    }

    .case-study-image1  img{
        height: 464px;
        width: 548px;
        border-radius: 0;
    }

    .card-small .case-study-image {
        height: 464px;
    }

    .case-study-image2  img{
        height: 563px;
        width: 547px;
        border-radius: 0;
    }

    .case-study-image3  img{
        height: 585px;
        width: 974px;
        border-radius: 0;
    }

    .case-study-image4  img{
        height: 464px;
        width: 548px;
        border-radius: 0;
    }

    .case-study-image5  img{
        height: 500 px;
        width: 547px;
        border-radius: 0;
    }

    .case-study-image6  img{
        height: 464px;
        width: 548px;
        border-radius: 0;
    }

    .case-study-image7  img{
        height: 563px;
        width: 547px;
        border-radius: 0;
    }

    .card-wide {
        width: 100%;
        max-width: 976px;
    }

    .case-study-desc {
        width: 100%;
    }
    
    .case-studies-grid-container {
        gap: 80px 80px;
    }

    .coming-soon-overlay {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .case-studies-grid-section {
        padding: 50px 50px;
    }
    
    .case-studies-grid-container {
        gap: 70px 70px;
    }
    
    .case-study-name {
        font-size: 22px;
    }

    .case-study-image1 img {
        width: 400px;
        height: 315px;
        border-radius: 0;
    }

    .case-study-image2 img {
        width: 400px;
        height: 370px;
        border-radius: 0;
    }

    .case-study-image3 img{
        width: 640px;
        height: 400px;
        border-radius: 0;
    }

    .case-study-image4 img {
        width: 400px;
        height: 315px;
        border-radius: 0;
    }

    .case-study-image5 img {
        width: 420px;
        height: 340px;
        border-radius: 0;
    }

    .case-study-image6 img {
        width: 400px;
        height: 315px;
        border-radius: 0;
    }

    .case-study-image7 img{
        width: 410px;
        height: 400px;
        border-radius: 0;
    }
    
    .case-study-desc {
        font-size: 17px;
        line-height: 26px;
    }
    
    .tag {
        font-size: 17px;
        line-height: 26px;
    }
}

@media screen and (max-width: 1024px) {

.case-studies-grid-section{
    padding: 60px 60px;
}

/* GRID */
.case-studies-grid-container{
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 60px;
}

/* REMOVE FIXED WIDTHS */
.case-study-image1 img,
.case-study-image2 img,
.case-study-image3 img,
.case-study-image4 img,
.case-study-image5 img,
.case-study-image6 img,
.case-study-image7 img{
    width: 100%;
}

/* HEIGHT ADJUST */
.case-study-image1 img{ height: 520px; }
.case-study-image2 img{ height: 560px; }
.case-study-image3 img{ height: 520px; }
.case-study-image4 img{ height: 500px; }
.case-study-image5 img{ height: 500px; }
.case-study-image6 img{ height: 500px; }
.case-study-image7 img{ height: 560px; }

.card-small .case-study-image {
    height: 500px;
}

.card-wide .case-study-image {
    height: 520px;
}

/* WIDE CARD */
.card-wide{
    max-width: 100%;
}

/* OVERLAY FIX */
.coming-soon-overlay{
    width: 100%;
    height: 100%;
}

/* TEXT */
.case-study-name{
    font-size: 22px;
}

.case-study-desc{
    font-size: 16px;
}

.tag{
    font-size: 16px;
    padding: 4px 16px;
}

}

/* Tablet - 992px */
@media screen and (max-width: 992px) {
    .case-studies-grid-section {
        padding: 40px 40px;
    }
    
    .case-studies-grid-container {
        gap: 60px 60px;
    }
    
    .card-small .case-study-image {
        height: 500px;
    }
    
    .card-tall .case-study-image {
        height: 600px;
    }
    
    .card-wide .case-study-image {
        height: 380px;
    }
    
    .case-study-name {
        font-size: 20px;
    }
    
    .case-study-desc {
        font-size: 16px;
        line-height: 24px;
    }
    
    .tag {
        font-size: 16px;
        padding: 4px 18px;
        line-height: 24px;
    }
}

/* Tablet Small - 768px */
@media screen and (max-width: 768px) {
    .case-studies-grid-section {
        padding: 40px;
        margin-top: -70px;
    }
    
    .case-studies-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .card-wide {
        grid-column: 1;
        max-width: 688px;
        height: 100%; 
        margin-left: 0;
    }
    
    /* .card-small .case-study-image,
    .card-tall .case-study-image,
    .card-wide .case-study-image {
        height: 400px;
    } */
    
    .case-study-name {
        font-size: 20px;
    }

    .case-study-image a{
        min-width: 400px;
        min-height: 315px;
    }

    .coming-soon-overlay {
        width: 100%;
        height: 100%;
    }

    .case-study-image1 img {
        width: 688px;
        height: 625px;
        border-radius: 0;
    }

    .case-study-image2 img {
        width: 688px;
        height: 729px;
        border-radius: 0;
    }

    .case-study-image3 img{
        width: 688px;
        height: 379px;
        border-radius: 0;
    }

    .case-study-image4 img {
        width: 688px;
        height: 729px;
        border-radius: 0;
    }

    .case-study-image5 img {
        width: 688px;
        height: 625px;
        border-radius: 0;
    }

    .case-study-image6 img {
        width: 688px;
        height: 625px;
        border-radius: 0;
    }

    .case-study-image7 img{
        width: 688px;
        height: 729px;
        border-radius: 0;
    }
    
    .case-study-desc {
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
    }
    
    .tag {
        font-size: 15px;
        padding: 4px 16px;
        line-height: 22px;
    }
}

/* Mobile Large - 576px */
@media screen and (max-width: 576px) {
    .case-studies-grid-section {
        padding: 30px 15px;
    }
    
    .case-studies-grid-container {
        gap: 40px;
    }
    
    .card-small .case-study-image,
    .card-tall .case-study-image,
    .card-wide .case-study-image {
        height: 350px;
    }
    
    .case-study-name {
        font-size: 18px;
    }
    
    .case-study-desc {
        font-size: 15px;
        line-height: 22px;
    }
    
    .tag {
        font-size: 14px;
        padding: 3px 14px;
        line-height: 20px;
    }

    .coming-soon-overlay {
        width: 100%;
        height: 100%;
    }
}

/* Mobile Medium - 480px */
@media screen and (max-width: 480px) {
    .case-studies-grid-section {
        padding: 30px 12px;
    }
    
    .case-studies-grid-container {
        gap: 35px;
    }
    
    .card-small .case-study-image,
    .card-tall .case-study-image,
    .card-wide .case-study-image {
        height: 320px;
    }
    
    .case-study-info {
        gap: 16px;
    }

    .case-study-image1 img {
        width: 400px;
        height: 305px;
        border-radius: 0;
    }

    .coming-soon-overlay {
        width: 100%;
        height: 100%;
    }

    .case-study-image2 img {
        width: 400px;
        height: 305px;
        border-radius: 0;
    }

    .case-study-image3 img{
        width: 400px;
        height: 305px;
        border-radius: 0;
    }

    .case-study-image4 img {
        width: 400px;
        height: 305px;
        border-radius: 0;
    }

    .case-study-image5 img {
        width:  400px;
        height: 305px;
        border-radius: 0;
    }

    .case-study-image6 img {
        width: 400px;
        height: 305px;
        border-radius: 0;
    }

    .case-study-image7 img{
        width: 400px;
        height: 375px;
        border-radius: 0;
    }
    
    .case-study-name {
        font-size: 18px;
    }
    
    .case-study-desc {
        font-size: 14px;
        line-height: 20px;
    }
    
    .tag {
        font-size: 13px;
        padding: 3px 12px;
        line-height: 18px;
    }
}

/* Mobile Small - 375px */
@media screen and (max-width: 375px) {
    .case-studies-grid-section {
        padding: 25px 10px;
    }
    
    .case-studies-grid-container {
        gap: 30px;
    }

    .coming-soon-overlay {
        width: 100%;
        height: 100%;
    }
    
    .card-small .case-study-image,
    .card-tall .case-study-image,
    .card-wide .case-study-image {
        height: 280px;
    }
    
    .case-study-name {
        font-size: 16px;
    }

    .case-study-image1 img {
        width: 355px;
        height: 100%;
        border-radius: 0;
    }

    .case-study-image2 img {
        width: 355px;
        height: 100%;
        border-radius: 0;
    }

    .case-study-image3 img{
        width: 355px;
        height: 100%;
        border-radius: 0;
    }

    .case-study-image4 img {
        width: 355px;
        height: 100%;
        border-radius: 0;
    }

    .case-study-image5 img {
        width: 355px;
        height: 100%;
        border-radius: 0;
    }

    .case-study-image6 img {
        width: 355px;
        height: 100%;
        border-radius: 0;
    }

    .case-study-image7 img{
        width: 355px;
        height: 100%;
        border-radius: 0;
    }
    
    .case-study-desc {
        font-size: 13px;
        line-height: 19px;
    }
    
    .tag {
        font-size: 12px;
        padding: 2px 10px;
        line-height: 16px;
        gap: 8px;
    }
    
    .case-study-tags {
        gap: 8px;
    }
}

@media (min-width:320px) and (max-width:420px){

    .case-studies-grid-section{
        padding:30px 12px;
    }

    .case-studies-grid-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .case-study-card{
        width:100%;
        max-width:100%;
    }

    /* Image container */
    .case-study-image{
        width:100%;
        height:260px;
        overflow:hidden;
    }

    /* All images responsive */
    .case-study-image img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    /* remove fixed widths from desktop */
    .case-study-image1 img,
    .case-study-image2 img,
    .case-study-image3 img,
    .case-study-image4 img,
    .case-study-image5 img,
    .case-study-image6 img,
    .case-study-image7 img{
        width:100%;
        height:100%;
    }

    /* wide card fix */
    .card-wide{
        height:auto;
        max-width:100%;
        gap:20px;
    }

    .case-study-desc{
        width:100%;
        font-size:14px;
        line-height:22px;
    }

    .case-study-name{
        font-size:18px;
    }

    .tag{
        font-size:12px;
        padding:4px 12px;
    }

}


/* Mobile Extra Small - 320px */
@media (max-width: 320px) {
    .case-studies-grid-section {
        padding: 20px 8px;
    }
    
    .case-studies-grid-container {
        gap: 25px;
    }
    
    .card-small .case-study-image,
    .card-tall .case-study-image,
    .card-wide .case-study-image {
        height: 250px;
    }

    .coming-soon-overlay {
        width: 100%;
        height: 100%;
    } 
    
    .case-study-name {
        font-size: 15px;
    }

    .case-study-card {
        width: 100%;
        max-width: 300px;
    }

    .case-study-image1 img {
        width: 305px;
        height: 100%;
        border-radius: 0;
    }

    .case-study-image2 img {
        width: 305px;
        height: 100%;
        border-radius: 0;
    }

    .case-study-image3 img{
        width: 305px;
        height: 100%;
        border-radius: 0;
    }

    .case-study-image4 img {
        width: 305px;
        height: 100%;
        border-radius: 0;
    }

    .case-study-image5 img {
        width: 305px;
        height: 100%;
        border-radius: 0;
    }

    .case-study-image6 img {
        width: 305px;
        height: 100%;
        border-radius: 0;
    }

    .case-study-image7 img{
        width: 305px;
        height: 100%;
        border-radius: 0;
    }
    
    .case-study-desc {
        width: 100%;
        max-width: 300px;
        font-size: 12px;
        line-height: 18px;
        border-radius: 0;
    }

    .case-study-image img{
        width: 305px;
        height: 100%;
        border-radius: 0;
    }
    
    .tag {
        font-size: 11px;
        padding: 2px 8px;
        line-height: 15px;
    }
}

/* ========================================
   CASE STUDIES GRID – DARK THEME SNIPPET (Toggle enabled)
   ======================================== */
/* 
[data-theme="dark"] .case-studies-grid-section {
    background: #0D0D0D;
}

[data-theme="dark"] .case-study-name {
    color: #F2F2F2;
}

[data-theme="dark"] .case-study-desc {
    color: #F2F2F2;
}

[data-theme="dark"] .tag {
    background: #000000;
    border-color: #CCCCCC;
    color: #b3b3b3;
} */




