/* Define the font faces */
/* JUST Sans */
@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-500: #808080;

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

/* =====================================================
   GLOBAL RESET & BASE STYLES
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

button {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* =====================================================
   HEADER STYLES
   ===================================================== */
.header-wrapper {
    width: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
    background: transparent;
}


.header-wrapper.scrolled {
    border-bottom: 1px solid #c1c4c8;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.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: var(--color-black);
}

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

.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;
}

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

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

.nav-item a{
    color: var(--color-white);
}

.nav-item:hover {
    transform: translateY(-2px);
}

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

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

.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-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:#fff;
  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:#fff;
  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;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-black-100);
}

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

.dropdown-menu a:hover{
    background: var(--color-white-25);
}

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

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

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

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.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-black-100);
}

.mobile-cta {
    display: none;
}

.desktop-only {
    display: block;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    min-height: 100vh;
    margin: 0 auto;
    background: url("../Assets/images/Hero_BG.webp") no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.hero-section {
    display: flex;
    width: 100%;
    max-width: 1920px;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
    margin: 0 auto;
    padding: 120px 20px 80px;
    overflow: hidden;
    position: relative;
}

.hero-content-container {
    display: flex;
    width: 100%;
    max-width: 1032px;
    min-width: 320px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    gap: 20px;
}

.hero-title {
    color: var(--color-white);
    text-align: center;
    font-weight: 700;
    margin: 0;
    padding: 0;
    font-family: 'Inter Display', sans-serif;
    font-style: Bold;
    font-size: 100px;
    line-height: 125%;
    letter-spacing: 0%;
}

.hero-description {
    color: var(--color-white);
    text-align: center;
    font-family: 'Inter', sans-serif;
    line-height: 160%;
    max-width: 800px;
    font-style: Regular;
    margin: 0 auto;
    padding: 0 20px;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0%;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.hero-cta {
    display: flex;
    min-width: 180px;
    width: 180px;
    height: 48px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* text style */
.hero-cta-text {
    color: var(--color-black-100);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 135%;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

/* arrow hidden */
.arrow-icon {
    margin-left: 0;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 18px;
}

/* hover effect */
.hero-cta:hover {
    background: #fcfcf9;
}

/* show arrow on hover */
.hero-cta:hover .arrow-icon {
    margin-left: 10px;
    opacity: 1;
    max-width: 20px;
}

.hero-cta-text img {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: auto;
}

.hero-secondary-cta {
    display: flex;
    min-width: 160px;
    padding: 12px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid var(--color-white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-secondary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

/* =====================================================
   FRAME SECTION (Creative Studio)
   ===================================================== */
.frame {
    display: flex;
    width: 100%;
    max-width: 1800px;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    margin-top: auto;
    position: absolute;
    color: var(--color-white);
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
}

.frame-left,
.frame-right {
    color: var(--color-white);
    letter-spacing: 0;
    line-height: 1.4;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
}

.frame-right {
    text-align: right;
    color: var(--color-white);
}
.frame.div{
  color: var(--color-white);
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

/* Desktop */
@media (max-width: 1440px) {
    .nav-header {
        padding: 10px 60px;
        width: 100%;
        margin: 0;
    }
    
    .frame {
        padding: 0 60px;
        width: 1440px;
    }
}

/* =================================
   NAVBAR RESPONSIVE - 1024px
   ================================= */

@media (max-width: 1024px) {
    .header-wrapper {
        width: 1024px;
    }

    .nav-header{
        padding: 10px 0;
        margin: 0;
        width: 100%;
    }

    .nav-links{
        gap: 1.4rem;
    }

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

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

    .cta-button{
        width: 160px;
        height: 44px;
        padding: 10px 18px;
    }

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

    .services-menu{
        width: 340px;
        padding: 18px 24px;
    }

    .products-menu{
        width: 440px;
        padding: 18px 24px;
    }

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

    .menu-column a,
    .menu-column1 a{
        font-size: 16px;
    }

    .hero-title {
        font-size: 84px;
    }

    .frame {
        padding: 0 30px;
        bottom: 40px;
        width: 98%;
    }
}

/* Mobile - 768px */
/* Tablet Responsive */
@media (max-width: 768px) {

    .header-wrapper{
        width: 100%;
    }

    .nav-header{
        padding: 12px 30px;
        width: 100%;
    }

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

    /* Show hamburger menu */
    .menu-toggle{
        display:block;
    }

    /* Navigation Menu */
    .nav-links{
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
        display: none;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-item{
        color:#1C1C1C;
        font-size:17px;
        width:100%;
    }

    .nav-item a{
        color:#1C1C1C;
    }

    /* Dropdown menu fix */
    .services-menu,
    .products-menu{
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: none;
        padding: 10px 0;
        background-color: transparent;
    }

    .services-arrow, .products-arrow {
        filter: brightness(1) invert(1);
    }

    .menu-column{
        padding-right:0;
    }

    /* CTA Button */
    .cta-button{
        display: none;
        width:100%;
        height:46px;
        margin-top:10px;
    }

    .cta-text{
        font-size:16px;
        color: var(--color-white);
    }

    /* Hide desktop CTA */
    .desktop-only{
        display:none;
    }

    /* Mobile CTA */
    .mobile-cta{
        display:block;
        width:100%;
        background-color: var(--color-green-700);
    }

    /* Hero Section */
    .hero-title{
        width:100%;
        font-size:48px;
        line-height:1.3;
    }

}

/* Small Mobile - 576px */
@media (max-width: 576px) {
    .nav-header {
        padding: 10px 15px;
        width: 100%;
    }

    .logo img {
        max-height: 24px;
    }
    
    .hero-section {
        padding: 80px 15px 50px;
    }
    
    .hero-content-container {
        gap: 20px;
    }
    
    .hero-text-container {
        gap: 16px;
    }
    
    .hero-buttons {
        gap: 12px;
        width: 100%;
    }

    .hero-cta,
    .hero-secondary-cta {
        width: 100%;
        max-width: 300px;
        padding: 12px 30px;
    }
    
    .frame {
        margin-top: 30px;
        gap: 10px;
    }
}

/* Extra Small - 480px */
@media (max-width: 480px) {
    /* .hero-wrapper {
    background-position: center top;
  } */

  /* HERO SECTION */
  .hero-section {
    padding: 90px 16px 60px;
    gap: 24px;
  }

  .hero-content-container {
    max-width: 100%;
    gap: 20px;
  }

    .services-arrow, .products-arrow {
        filter: brightness(1) invert(1);
    }

  /* TEXT */
  .hero-title {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero-description {
    width: 100%;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
  }

  /* BUTTONS */
  .hero-buttons {
    gap: 14px;
  }

  .hero-cta,
  .hero-secondary-cta {
    min-width: 100%;
    padding: 12px 24px;
  }

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

  /* FRAME SECTION */
  .frame {
    position: relative;
    left: auto;
    transform: none;
    margin-top: 40px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .frame-left,
  .frame-right {
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }
}

/* =========================
   MOBILE RESPONSIVE 425px
   ========================= */

@media (max-width: 425px) {

    .header-wrapper {
        width: 425px;
    }

    .nav-header{
        padding: 10px 20px;
        width: 100%;
    }

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

    /* Show hamburger */
    .menu-toggle{
        display:block;
    }

    /* Mobile Menu */
    .nav-links{
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
        display: none;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-item{
        color:#1C1C1C;
        font-size:16px;
        width:100%;
    }

    .nav-item a{
        color:#1C1C1C;
    }

    /* Dropdown Fix for Mobile */

    .services-menu,
    .products-menu{
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        padding: 10px 0;
        background-color: transparent;
    }

    .services-arrow, .products-arrow {
        filter: brightness(1) invert(1);
    }

    .menu-column{
        padding-right: 0;
    }

    /* CTA Button */

    .cta-button{
        width: 100%;
        height: 44px;
        margin-top: 10px;
    }

    .cta-text{
        font-size: 15px;
        color: var(--color-white);
    }

    /* Mobile CTA */

    .desktop-only{
        display:none;
    }

    .mobile-cta{
        display:block;
        width:100%;
        background-color: var(--color-green-700);
    }

    .hero-title {
        width: 100%;
    font-size: 40px;
    line-height: 1.25;
  }
}

@media (min-width: 376px) and (max-width: 420px) {
    .header-wrapper {
        width: 100%;
    }

    .nav-header {
        width: 100%;
    }
}

/* =================================
   MOBILE RESPONSIVE - 375px
   ================================= */

@media (max-width: 375px) {
    .header-wrapper {
        width: 380px;
    } 

    .nav-header{
        padding: 10px 20px;
        width: 100%;
    }

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

    /* show hamburger */
    .menu-toggle{
        display: block;
    }

    /* mobile menu */
    .nav-links{
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        padding: 20px;
        gap: 20px;
        display: none;
    }

    .nav-links.active{
        display: flex;
    }

    .nav-item{
        font-size: 16px;
        color: #1C1C1C;
        width: 100%;
    }

    .nav-item a{
        color: #1C1C1C;
    }

    /* dropdown fix */
    .services-menu,
    .products-menu{
        position: static;
        width: 100%;
        height: 100%;
        box-shadow: none;
        padding: 10px 0;
        background-color: transparent;
    }

    .services-arrow, .products-arrow {
        filter: brightness(1) invert(1);
    }

    /* CTA button mobile */
    .cta-button{
        width: 100%;
        height: 44px;
        justify-content: center;
    }

    .cta-text{
        font-size: 15px;
        display: flex;
        justify-content: center;
        color: #FFFFFF;
    }

    /* hide desktop CTA */
    .desktop-only{
        display: none;
    }

    .mobile-cta{
        display: block;
        width: 100%;
        background-color: var(--color-green-700);
    }

}

@media (min-width: 320px) and (max-width: 375px){
    .header-wrapper {
        width: 100%;
    }

    .nav-header {
        max-width: 100%;
    }
}

/* ===============================
   MOBILE RESPONSIVE (320px)
================================*/
@media (max-width:320px){
.header-wrapper {
    width: 330px;
}

/* NAVBAR */
.nav-header{
    padding:10px 16px;
    width: 100%;
}

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

/* show hamburger */
.menu-toggle{
    display:block;
}

/* hide desktop button */
.desktop-only{
    display:none;
}

/* mobile menu */
.nav-links{
    position:fixed;
    top:60px;
    left:-100%;
    width:100%;
    height:100vh;
    background:#ffffff;
    flex-direction:column;
    align-items:flex-start;
    padding:25px 20px;
    gap:20px;
    transition:0.3s;
}

.services-arrow, .products-arrow {
    filter: brightness(1) invert(1);
}

.nav-links.active{
    left:0;
    width: 320px;
    height: auto;
}

.nav-item{
    color:#121212;
    font-size:16px;
    width:100%;
}

.nav-item a{
    color:#121212;
}

/* dropdown mobile */
.services-menu,
.products-menu{
    position:static;
    width:100%;
    height:auto;
    box-shadow:none;
    padding:10px 0;
    background-color: transparent;
}

.products-menu{
    flex-direction:column;
}

/* mobile CTA */
.mobile-cta{
    display:block;
    width:100%;
}

.cta-button{
    width:100%;
    background-color: var(--color-green-700);
}

/* HERO SECTION */

.hero-section{
    padding:120px 16px 60px;
}

.hero-content-container{
    min-width:auto;
}

.hero-title{
    width:100%;
    font-size:36px;
    line-height:1.3;
}

.hero-description{
    width:100%;
    font-size:14px;
    padding:0;
}

/* hero buttons */

.hero-buttons{
    flex-direction:column;
    gap:12px;
    width:100%;
}

.hero-cta,
.hero-secondary-cta{
    width:100%;
}

/* FRAME SECTION */

.frame{
    width:100%;
    padding:0 16px;
    flex-direction:column;
    gap:6px;
    text-align:center;
    bottom: -150px;
}

.frame-left,
.frame-right{
    font-size:13px;
    white-space:normal;
}

.frame-right{
    text-align:center;
}

}








/* ===================== ABOUT US — BASE (Desktop First) start ===================== */
.about-us {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 160px 100px;
    background: var(--color-white-50);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Paragraph Text */
.we-are-a-technology {
    width: 1480px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 160%;
}

/* Span Colors + Weights */
.text-wrapper { 
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: Light;
    font-size: 40px;
    line-height: 160%;
    letter-spacing: -2%;
    color: var(--color-black-200);
}

.span { 
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    line-height: 160%;
    letter-spacing: -1%;
    color: var(--color-black-100);
}

.text-wrapper-2 { 
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    line-height: 160%;
    letter-spacing: -1%;
    color: var(--color-black-100);
}

.text-wrapper-3 { 
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    line-height: 160%;
    letter-spacing: -1%;
    color: var(--color-black-100);
}

/* Button Container */
.about-us .button-responsive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 195px;
    height: 48px;
    padding: 12px 20px;
    border-radius: 8px;
    border: 0.5px solid var(--color-black-100);
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
    width: fit-content;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-us .button-responsive:hover .arrow::after {
    transform: translate(2px, -2px);
}

/* Text inside button */
/* Button */
.about-us .button {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    text-align: center;
    text-transform: capitalize;
    color: var(--color-black-100);
}

/* Arrow container */
.about-us .arrow {
    margin-left: 8px;
}

/* Arrow hidden */
.about-us .arrow::before {
    content: "↗";
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover */
.about-us .button:hover .arrow::before {
    opacity: 1;
}

/* ===================== TABLET (max-width: 1080px) ===================== */
@media (max-width: 1440px) {
    .we-are-a-technology {
        max-width: 100%;
        font-size: clamp(20px, 2.2vw, 42px);
        line-height: clamp(30px, 2.8vw, 56px);
    }
}

/* ===================== TABLET (max-width: 1080px) ===================== */
@media (max-width: 1080px) {
    .about-us {
        padding: 120px 60px;
        gap: 20px;
    }

    .we-are-a-technology {
        max-width: 100%;
        font-size: clamp(20px, 2.2vw, 36px);
        line-height: clamp(30px, 2.8vw, 56px);
    }

    .button-responsive {
        padding: 10px 20px;
        gap: 6px;
    }

    .button {
        font-size: 16px;
    }

    .arrow::after {
        font-size: 18px;
    }

    .arrow img {
        width: 18px;
        height: 18px;
    }
}

/* ===================== MOBILE (max-width: 768px) ===================== */
@media (max-width: 768px) {
    .about-us {
        padding: 80px 40px;
        gap: 20px;
    }

    .we-are-a-technology {
        font-size: 22px;
        line-height: 160%;
    }
}

/* ===================== MOBILE (max-width: 480px) ===================== */
@media (max-width: 480px) {
    .about-us {
        padding: 60px 20px;
        gap: 16px;
    }

    .we-are-a-technology {
        font-size: 18px;
        line-height: 28px;
    }

    .button-responsive {
        width: fit-content;
        padding: 10px 18px;
        gap: 6px;
        border-radius: 6px;
    }

    .button {
        font-size: 14px;
        line-height: 20px;
    }

    .arrow::after {
        font-size: 16px;
    }

    .arrow img {
        width: 16px;
        height: 16px;
    }
}

/* Mobile Responsive - 425px */
@media (max-width: 425px) {

.about-us{
    padding: 60px 20px;
    gap: 16px;
}

/* Paragraph */
.we-are-a-technology{
    width: 100%;
    font-size: 18px;
    line-height: 28px;
}

/* Span Text */
.text-wrapper,
.span,
.text-wrapper-2,
.text-wrapper-3{
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
}

/* Button */
.about-us .button-responsive{
    width: fit-content;
    height: auto;
    padding: 10px 16px;
}

/* Button Text */
.about-us .button{
    font-size: 16px;
}

/* Arrow */
.about-us .arrow{
    width: 16px;
    height: 16px;
}

.about-us .arrow::after{
    font-size: 16px;
}

}


/* Mobile Responsive (375px) */
@media (max-width: 375px) {

    .about-us {
        padding: 60px 20px;
        gap: 16px;
    }

    .we-are-a-technology {
        width: 100%;
        font-size: 20px;
        line-height: 32px;
    }

    .text-wrapper,
    .span,
    .text-wrapper-2,
    .text-wrapper-3 {
        font-size: 20px;
        line-height: 32px;
    }

    .about-us .button-responsive {
        height: 44px;
        padding: 10px 16px;
    }

    .about-us .button {
        font-size: 16px;
        line-height: 22px;
    }

    .about-us .arrow {
        width: 18px;
        height: 18px;
    }

    .about-us .arrow::after {
        font-size: 18px;
    }

}

/* Mobile Responsive - 320px */
@media (max-width: 320px) {

.about-us{
    padding: 60px 20px;
    gap: 16px;
}

/* Paragraph */
.we-are-a-technology{
    width: 100%;
    font-size: 18px;
    line-height: 28px;
}

/* Text styles */
.text-wrapper,
.span,
.text-wrapper-2,
.text-wrapper-3{
    font-size: 18px;
    line-height: 28px;
}

/* Button */
.about-us .button-responsive{
    height: 40px;
    padding: 8px 16px;
}

/* Button text */
.about-us .button{
    font-size: 14px;
}

/* Arrow */
.about-us .arrow{
    width: 16px;
    height: 16px;
    background-color: none;
}

.about-us .arrow::after{
    font-size: 16px;
}

}

/* ============================
   DARK MODE FOR ABOUT US
   ============================ 
@media (prefers-color-scheme: dark) {

    .about-us {
        background-color: #0D0D0D;
        color: #E6E6E6;
    }

    .about-us .we-are-a-technology {
        color: #E6E6E6;
    }

    .about-us .text-wrapper,
    .about-us .text-wrapper-3 {
        color: #CCCCCC;
    }

    .about-us .text-wrapper-2 {
        color: #E6E6E6;
    }

    .about-us .span {
        color: #FFFFFF;
    }

    .about-us .button-responsive {
        background: transparent;
        border-color: #E6E6E6;
    }

    .about-us .button-responsive:hover {
        background: #E6E6E6;
        border-color: #E6E6E6;
    }

    .about-us .button-responsive:hover .button {
        color: #0D0D0D;
    }

    .about-us .button {
        color: #E6E6E6;
    }

    .about-us .arrow::after {
        color: #E6E6E6;
    }

    .about-us .button-responsive:hover .arrow::after {
        color: #0D0D0D;
    }

    .about-us .arrow img {
        filter: brightness(0) invert(1);
    }

    .about-us .button-responsive:hover .arrow img {
        filter: brightness(0) invert(0);
    }
} */

/* ===================== ABOUT US — BASE (Desktop First) ends ===================== */










/* our products start */
.our-products {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 855px;
    background-color: var(--color-black-100);
    padding: 100px 0;
}

.our-products .frame {
    display: flex;
    flex-direction: column;
    max-width: 1720px;
    align-items: center;
    gap: 60px;
    padding: 0 100px;
    margin-top: 122px;

}

.our-products .div {
    display: flex;
    flex-direction: column;
    max-width: 708px;
    height: 81px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.our-products .text-wrapper {
    position: relative;
    width: fit-content;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-yellow);
}


.our-products .text-wrapper-2 {
    position: relative;
    color: var(--color-white);
    font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 125%;
    letter-spacing: 0%;
    white-space: nowrap;
}

.our-products .frame-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    width: 100%;
}

.our-products .frame-2 {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.our-products .build-wrapper {
    position: relative;
    width: 80%;
    max-width: 952px;
    height: auto;
    background-color: var(--color-white);
    border: 1px solid  var(--color-white-25);
    overflow: hidden;
}

.our-products .build {
    width: 952px;
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-products .build img,
.our-products .build video {
    width: 777px;
    height: 503px;
    display: block;
    object-fit: contain;
    
    border-radius: 16px;
    margin-top: 82px;
    border: 10px solid rgba(0,0,0,0.2);
    gap: 10px;
} 

.our-products .frame-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    flex: 1;
}

.our-products .frame-4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    width: 100%;
}

.our-products .text-wrapper-3 {
    position: relative;
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 26px;
    line-height: 135%;
    letter-spacing: 0%;
    color: var(--color-white);
}

.our-products .para-ourproducts {
        position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--color-white);
    margin-bottom: 15px;
    width: 448px;
}

/* button */
.our-products .frame-5 {
    display: inline-flex;
    align-items: flex-start;
    gap: 20px;
}

/* common button style */
.our-products .button,
.our-products .button-wrapper {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    width: 180px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* first button */
.our-products .button {
    background-color: var(--color-white);
}

/* second button */
.our-products .button-wrapper {
    border: 0.5px solid var(--color-white);
}

/* hover effects */
.our-products .button:hover {
    background-color: var(--color-white-100);
}

.our-products .button-wrapper:hover {
    background-color: rgba(255,255,255,0.1);
}

/* text */
.btn-text-button {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    width: 180px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-black-100);
}

.btn-text {
    position: relative;
    width: fit-content;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    color: var(--color-white);
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 135%;
    white-space: nowrap;
}

/* arrow hidden */
.arrow-icon {
    margin-left: 0;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* show arrow on hover */
.button:hover .arrow-icon,
.button-wrapper:hover .arrow-icon {
    margin-left: 10px;
    opacity: 1;
    max-width: 20px;
}

.our-products .frame-6 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
}

.our-products .product-dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.our-products .rectangle {
    position: relative;
    width: 8px;
    height: 20px;
    background-color: var(--color-yellow);
    border-radius: 20px;
}

.our-products .ellipse {
    position: relative;
    width: 8px;
    height: 8px;
    background-color: var(--color-black-250);
    border-radius: 4px;
}

/* Large Desktop - 1920px */
@media (min-width: 1920px) {
    .our-products .frame {
        max-width: 1720px;
        padding: 0 100px;
    }
}

/* =========================
   1440px Responsive
   ========================= */

@media (max-width:1440px){

.our-products{
    padding:80px 0;
    min-height: 750px;
}

.our-products .frame{
    max-width:1320px;
    padding:0 60px;
    margin-top:100px;
    gap:50px;
}

.our-products .text-wrapper-2{
    font-size:34px;
}

.our-products .frame-2{
    gap:30px;
}

/* Product Image Container */
.our-products .build-wrapper{
    width:70%;
    max-width:850px;
}

.our-products .build{
    height:480px;
    width: 100%;
}

.our-products .build img,
.our-products .build video{
    width:650px;
    height:auto;
    margin-top:60px;
}

/* Right content */
.our-products .frame-3{
    gap:18px;
}

.our-products .text-wrapper-3{
    font-size:22px;
}

.our-products .para-ourproducts{
    font-size:16px;
    line-height:170%;
    width: 100%;
}

/* Buttons */
.our-products .button,
.our-products .button-wrapper{
    width:170px;
    padding:10px 18px;
}

.our-products .button-2,
.our-products .button-3{
    font-size:16px;
}

/* Dots navigation */
.our-products .frame-6{
    right:30px;
}

}

/* =================================
   OUR PRODUCTS - 1024px RESPONSIVE
   ================================= */

@media (max-width:1024px){

.our-products{
    padding:80px 0;
}

/* main container */
.our-products .frame{
    padding:0 40px;
    gap:50px;
    margin-top: 0;
}

/* section heading */
.our-products .text-wrapper-2{
    font-size:34px;
}

/* product layout */
.our-products .frame-2{
    gap:30px;
    flex-direction:row;
}

/* product image container */
.our-products .build-wrapper{
    width:60%;
}

/* image/video resize */
.our-products .build{
    height:auto;
    width: 100%;
}

.our-products .build img,
.our-products .build video{
    width: 94%;
    max-width:600px;
    height:auto;
    margin: 20px 20px 0 20px;
}

/* text section */
.our-products .frame-3{
    width:40%;
}

.our-products .text-wrapper-3{
    font-size:22px;
}

.our-products .para-ourproducts{
    font-size:16px;
    width: 100%;
}

/* buttons */
.our-products .frame-5{
    gap:15px;
}

.our-products .button,
.our-products .button-wrapper{
    width:160px;
    padding:10px 16px;
}

/* slider dots */
.our-products .frame-6{
    right:20px;
}

}

/* =================================
   OUR PRODUCTS – TABLET (768px)
   ================================= */

@media (max-width:768px){

.our-products{
    width: 100%;
    padding:80px 40px;
    min-height: 866px;
}

/* container */
.our-products .frame{
    width: 100%;
    padding:0 ;
    gap:40px;
    margin-top: -200px;
}

/* title area */
.our-products .div{
    max-width:100%;
    height:auto;
}

.our-products .text-wrapper{
    font-size:16px;
}

.our-products .text-wrapper-2{
    font-size:32px;
}

.our-products .frame-4 {
    text-align: left;
}

/* layout stack */
.our-products .frame-2{
    flex-direction:column;
    gap:30px;
}

/* product image box */
.our-products .build-wrapper{
    width: 90%;
    padding: 0 10px;
    margin-left: 42px;
}

.our-products .build{
    height:auto;
    padding:20px 20px 0 20px;
    width: 100%;
}

.our-products .build img,
.our-products .build video{
    width:100%;
    height:auto;
    margin-top:0;
}

/* text content */
.our-products .frame-3{
    width:100%;
}

.our-products .text-wrapper-3{
    font-size:22px;
}

.our-products .para-ourproducts{
    font-size:16px;
    width: 100%;
}

/* buttons */
.our-products .frame-5{
    flex-wrap:wrap;
}

.our-products .button,
.our-products .button-wrapper{
    width:160px;
}

.our-products .button-2,
.our-products .button-3{
    font-size:16px;
}

/* side dots */
.our-products .frame-6{
    right:20px;
}

}

/* =================================
   OUR PRODUCTS - 425px RESPONSIVE
   ================================= */

@media (max-width:425px){

.our-products{
    padding:60px 20px;
    min-height:auto;
}

/* section container */
.our-products .frame{
    padding:0;
    gap:40px;
    margin-top:60px;
    top: 0;
}

/* heading */
.our-products .text-wrapper{
    font-size:16px;
}

.our-products .text-wrapper-2{
    font-size:28px;
    white-space:normal;
    text-align:center;
}

/* product layout */
.our-products .frame-2{
    flex-direction:column;
    gap:30px;
}

/* image container */
.our-products .build-wrapper{
    width:100%;
    margin: 0;
}

/* image/video */
.our-products .build{
    height:auto;
    padding:20px 20px 0 20px;
    width: 100%;
}

.our-products .build img,
.our-products .build video{
    width:100%;
    height:auto;
    margin-top:0;
    border:6px solid rgba(0,0,0,0.2);
}

/* content */
.our-products .frame-3{
    gap:15px;
}

.our-products .text-wrapper-3{
    font-size:20px;
    margin: auto;
}

.our-products .para-ourproducts{
    font-size:16px;
    line-height:170%;
    width: 100%;
}

/* buttons */
.our-products .frame-5{
    flex-direction:column;
    width:100%;
}

.our-products .button,
.our-products .button-wrapper{
    width:100%;
}

/* side dots hide on mobile */
.our-products .frame-6{
    display:none;
}

}

/* =================================
   OUR PRODUCTS MOBILE 375px
================================= */

@media (max-width:375px){

.our-products{
    padding:60px 0;
    min-height:auto;
}

/* container */
.our-products .frame{
    padding:0 16px;
    gap:30px;
    margin-top: 0px;
    top: 0;
}

/* heading block */
.our-products .div{
    height:auto;
}

.our-products .text-wrapper{
    font-size:14px;
}

.our-products .text-wrapper-2{
    font-size:26px;
    white-space:normal;
    text-align:center;
}

/* layout stack */
.our-products .frame-2{
    flex-direction:column;
    gap:30px;
}

/* image wrapper */
.our-products .build-wrapper{
    width:100%;
    margin: 0;
}

/* image size */
.our-products .build{
    height:auto;
    padding:20px 20px 0 20px;
    width: 100%;
}

.our-products .build img,
.our-products .build video{
    width:100%;
    height:auto;
    margin-top:0;
    border-width:6px;
}

/* text content */
.our-products .frame-3{
    align-items:center;
    text-align:center;
}

.our-products .text-wrapper-3{
    font-size:20px;
    margin: auto;
}

.our-products .para-ourproducts{
    font-size:15px;
    line-height:160%;
    width: 100%;
}

/* buttons */
.our-products .frame-5{
    flex-direction:column;
    width:100%;
}

.our-products .button,
.our-products .button-wrapper{
    width:100%;
}

/* slider dots */
.our-products .frame-6{
    display: none;
    position:relative;
    flex-direction:row;
    justify-content:center;
    top:auto;
    right:auto;
    transform:none;
    margin-top:20px;
}

}

/* =================================
   OUR PRODUCTS - 320px RESPONSIVE
   ================================= */

@media (max-width:320px){

.our-products{
    padding:60px 0;
    min-height:auto;
}

/* container */
.our-products .frame{
    padding:0 16px;
    gap:30px;
    margin-top: 0px;
    top: 0;
}

/* heading container */
.our-products .div{
    max-width:100%;
    height:auto;
}

/* yellow label */
.our-products .text-wrapper{
    font-size:14px;
}

/* main heading */
.our-products .text-wrapper-2{
    font-size:24px;
    text-align:center;
    white-space:normal;
}

/* product row */
.our-products .frame-2{
    flex-direction:column;
    gap:25px;
}

/* image container */
.our-products .build-wrapper{
    width:100%;
    margin: 0;
}


/* image/video */
.our-products .build{
    height:auto;
    padding: 0 12px;
    width: 100%;
    margin: 0;
}



.our-products .build img,
.our-products .build video{
    width:100%;
    height:auto;
    margin-top:20px;
    border-width:6px;
}

/* text area */
.our-products .frame-3{
    width:100%;
}

/* title */
.our-products .text-wrapper-3{
    font-size:20px;
    margin: auto;
}

/* description */
.our-products .para-ourproducts{
    font-size:14px;
    line-height:160%;
    width: 100%;
}

/* buttons */
.our-products .frame-5{
    flex-direction:column;
    width:100%;
}

.our-products .button,
.our-products .button-wrapper{
    width:100%;
}

/* dots navigation */
.our-products .frame-6{
    display: none;
    position:static;
    flex-direction:row;
    justify-content:center;
    margin-top:20px;
}

}


/* our products end */








/* we spark your business starts */

/* .case-imgMOST WRAPPER */
.business-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 120px 240px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

/* LEFT SIDE CONTENT */
.business-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 60px;
}

.business-left {
    width: 464px;
    height: 186px;
    display: flex;
    flex-direction: column;
    gap: 16px;

    position: sticky;
    top: 120px;
}

.business-left h2 {
        font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0;
    color: var(--color-black-100);
    width: 103%;
}

.subtitle {
    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;
}

/* LEARN MORE LINK */
.learn-more span {
        display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-blue-500);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
}

.learn-more span {
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 12px;
}

/* Arrow using CSS */
.learn-more::after {
    content: '→';
    font-size: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: translateX(4px);
}

/* RIGHT SIDE CARDS */
.business-right {
    width: 100%;
    max-width: 830px;
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.card {
    background: var(--color-white-25);
    padding: 32px;
    border: 0.5px solid var(--color-white-100);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}


.card h3 {
    font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-black-100);
    margin: 0;
}

.card p {
    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;
}

/* TRUSTED SECTION */
.trusted-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.trusted-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-black-100);
}

/* IMPORTANT */
.logo-slider-wrapper {
    width: 100%;          /* ✅ responsive */
    max-width: 1920px;    /* ✅ desktop limit */
    margin: 0 auto;       /* ✅ center align */
    overflow: hidden;     
    position: relative;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
}

.trusted-logos img {
    height: 28px;
    width: auto;
    flex-shrink: 0;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.trusted-logos img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* લોગો ને ડાબી બાજુ ખસેડવા માટેનું લોજિક */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 30px)); /* અડધા લિસ્ટ પછી ફરી શરૂ થશે */
    }
}

/* PROJECT SECTION */
.project-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: var(--color-black);
    padding: 120px 60px;
    position: relative;
    box-sizing: border-box;
}

/* Header */
.header {
    text-align: center;
    color: var(--color-white);
    margin-bottom: 80px;
}

.location {
    color: var(--color-yellow);
    font-size: 20px;
}

.title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

/* Grid layout */
.grid-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
}

/* Project structure */
.project {
    position: relative;
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.project-title {
    color: var(--color-white);
    font-size: 28px;
    margin-top: 15px;
    line-height: 1.3;
}

/* Tags */
.tags {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.tags span {
    background: var(--color-black-100);
    border: 1px solid var(--color-black-500);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--color-white);
}

/* About box */
.about-box {
    color: var(--color-white);
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.6;
}

.view-btn {
    border: 1px solid var(--color-white);
    padding: 10px 20px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--color-white);
    margin-top: 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.view-btn:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* ============================
   DARK MODE — WE SPARK YOUR BUSINESS
   ============================ 
@media (prefers-color-scheme: dark) {

    .business-section {
        background: #0D0D0D;
        color: #E6E6E6;
    }

    .business-left h2 {
        color: #FFFFFF;
    }

    .business-left .subtitle {
        color: #BFBFBF;
    }

    .learn-more {
        color: #5B8DEF;
    }

    .learn-more:hover {
        color: #7BA5F3;
    }

    .learn-more::after {
        color: #5B8DEF;
    }

    .business-right .card {
        background: #1A1A1A;
        color: #E6E6E6;
        border-color: #333333;
    }

    .business-right .card:hover {
        border-color: #555555;
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
    }

    .business-right .card h3 {
        color: #FFFFFF;
    }

    .business-right .card p {
        color: #BFBFBF;
    }

    .trusted-section .trusted-text {
        color: #E6E6E6;
    }

    .trusted-logos img {
        filter: brightness(0) invert(1) grayscale(100%) opacity(0.6);
    }

    .trusted-logos img:hover {
        filter: brightness(0) invert(1) grayscale(0%) opacity(1);
    }
} */

/* ==================== LARGE DESKTOP - 1920px ==================== */
@media (min-width: 1920px) {
    .business-section {
        padding: 120px 240px;
    }
    
    .project-section {
        padding: 120px 60px;
    }
}

/* ==================== DESKTOP/LAPTOP - 1280px to 1919px ==================== */
@media (max-width: 1919px) and (min-width: 1280px) {
    .business-section {
        padding: 100px 180px;
        gap: 100px;
    }
    
    .business-left h2 {
        font-size: 38px;
    }
    
    .business-right {
        gap: 18px;
    }
    
    .trusted-logos {
        gap: 70px;
    }
    
    .project-section {
        padding: 100px 50px;
    }
    
    .grid-container {
        gap: 100px;
    }
    
    .title {
        font-size: 44px;
    }
}

/* ==================== SMALL LAPTOP - 1024px to 1279px ==================== */
@media (max-width: 1279px) and (min-width: 1024px) {
    .business-section {
        padding: 90px 120px;
        gap: 90px;
    }
    
    .business-container {
        gap: 50px;
        height: 100%;
        width: 100%;
    }
    
    .business-left h2 {
        font-size: 36px;
    }

    .business-left {
        height: 100%;
    }
    
    .subtitle {
        font-size: 17px;
        line-height: 27px;
    }
    
    .learn-more {
        font-size: 17px;
    }
    
    .business-right {
        gap: 18px;
    }
    
    .card {
        padding: 28px;
    }
    
    .card h3 {
        font-size: 21px;
    }
    
    .card p {
        font-size: 16px;
        line-height: 26px;
    }
    
    .trusted-logos {
        gap: 60px;
    }
    
    .project-section {
        padding: 90px 45px;
    }
    
    .grid-container {
        gap: 90px;
    }
    
    .title {
        font-size: 42px;
    }
    
    .project-title {
        font-size: 26px;
    }
}

/* ==================== TABLET - 768px to 1023px ==================== */
@media (max-width: 1023px) and (min-width: 768px) {
    .business-section {
        padding: 80px 60px;
        gap: 80px;
    }
    
    .business-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .business-left {
        max-width: 100%;
        gap: 12px;
        position: relative;
        margin-top: -100px;
    }
    
    .business-left h2 {
        font-size: 34px;
    }
    
    .subtitle {
        font-size: 16px;
        line-height: 26px;
    }
    
    .learn-more {
        font-size: 16px;
    }
    
    .business-right {
        max-width: 100%;
        gap: 16px;
        margin-top: 60px;
    }
    
    .card {
        padding: 26px;
    }
    
    .card h3 {
        font-size: 20px;
    }
    
    .card p {
        font-size: 15px;
        line-height: 24px;
    }
    
    .trusted-logos {
        gap: 50px;
    }
    
    .trusted-logos img {
        max-height: 30px;
    }
    
    .project-section {
        padding: 80px 40px;
    }
    
    .header {
        margin-bottom: 60px;
    }
    
    .title {
        font-size: 38px;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .project-title {
        font-size: 24px;
    }
    
    .tags span {
        padding: 7px 14px;
        font-size: 13px;
    }
    
    .about-box {
        font-size: 16px;
    }
    
    .view-btn {
        padding: 9px 18px;
        font-size: 15px;
    }
}

/* ==================== MOBILE LARGE - 440px to 767px ==================== */
@media (max-width: 767px) and (min-width: 440px) {
    .business-section {
        padding: 60px 30px;
        gap: 60px;
    }
    
    .business-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .business-left {
        max-width: 100%;
        gap: 10px;
        position: relative;
        margin-top: -100px;
    }
    
    .business-left h2 {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 15px;
        line-height: 24px;
    }
    
    .learn-more {
        font-size: 15px;
    }
    
    .business-right {
        max-width: 100%;
        gap: 14px;
        margin-top: 60px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card h3 {
        font-size: 19px;
    }
    
    .card p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .trusted-text {
        font-size: 16px;
    }
    
    .trusted-logos {
        gap: 40px;
    }
    
    .trusted-logos img {
        max-height: 28px;
    }
    
    .project-section {
        padding: 60px 30px;
    }
    
    .header {
        margin-bottom: 50px;
    }
    
    .location {
        font-size: 16px;
    }
    
    .title {
        font-size: 32px;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .project-title {
        font-size: 22px;
    }
    
    .tags span {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .about-box {
        font-size: 15px;
    }
    
    .view-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ==================== MOBILE MEDIUM - 375px to 439px ==================== */
@media (max-width: 439px) and (min-width: 375px) {
    .business-section {
        padding: 50px 25px;
        gap: 50px;
    }
    
    .business-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .business-left {
        max-width: 100%;
        position:relative;
        margin-top: -100px;
    }
    
    .business-left h2 {
        font-size: 26px;
    }
    
    .subtitle {
        font-size: 14px;
        line-height: 22px;
    }
    
    .learn-more {
        font-size: 14px;
    }
    
    .business-right {
        max-width: 100%;
        gap: 12px;
        margin-top: 90px;
    }
    
    .card {
        padding: 18px;
    }
    
    .card h3 {
        font-size: 18px;
    }
    
    .card p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .trusted-text {
        font-size: 15px;
    }
    
    .trusted-logos {
        gap: 30px;
    }
    
    .trusted-logos img {
        max-height: 26px;
    }
    
    .project-section {
        padding: 50px 25px;
    }
    
    .header {
        margin-bottom: 45px;
    }
    
    .location {
        font-size: 15px;
    }
    
    .title {
        font-size: 28px;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .tags span {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .about-box {
        font-size: 14px;
    }
    
    .view-btn {
        padding: 7px 14px;
        font-size: 13px;
    }
}

/* ==================== MOBILE SMALL - 320px to 374px ==================== */
@media (max-width: 374px) {
    .business-section {
        padding: 40px 20px;
        gap: 40px;
    }
    
    .business-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .business-left {
        max-width: 100%;
        gap: 12px;
        position:relative;
        margin-top: -100px;
    }
    
    .business-left h2 {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 13px;
        line-height: 21px;
    }
    
    .learn-more {
        font-size: 13px;
    }
    
    .business-right {
        max-width: 100%;
        gap: 12px;
        margin-top: 75px;
    }
    
    .card {
        padding: 16px;
    }
    
    .card h3 {
        font-size: 17px;
    }
    
    .card p {
        font-size: 13px;
        line-height: 21px;
    }
    
    .trusted-text {
        font-size: 14px;
    }
    
    .trusted-logos {
        gap: 25px;
        max-width: 320px;
    }
    
    .trusted-logos img {
        max-height: 24px;
    }
    
    .project-section {
        padding: 40px 20px;
    }
    
    .header {
        margin-bottom: 40px;
    }
    
    .location {
        font-size: 14px;
    }
    
    .title {
        font-size: 26px;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-title {
        font-size: 19px;
        margin-top: 12px;
    }
    
    .tags {
        gap: 8px;
        margin-top: 8px;
    }
    
    .tags span {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .about-box {
        font-size: 13px;
        margin-top: 15px;
    }
    
    .view-btn {
        padding: 6px 12px;
        font-size: 12px;
        margin-top: 15px;
    }
}

@media (max-width: 320px) {
    .business-section {
        padding: 40px 20px;
        gap: 40px;
    }
    
    .business-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .business-left {
        max-width: 100%;
        gap: 12px;
        position:relative;
        margin-top: -100px;
    }
    
    .business-left h2 {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 13px;
        line-height: 21px;
    }
    
    .learn-more {
        font-size: 13px;
    }
    
    .business-right {
        max-width: 100%;
        gap: 12px;
        margin-top: 75px;
    }
    
    .card {
        padding: 16px;
    }
    
    .card h3 {
        font-size: 17px;
    }
    
    .card p {
        font-size: 13px;
        line-height: 21px;
    }
    
    .trusted-text {
        font-size: 14px;
    }
    
    .trusted-logos {
        gap: 30px;
    }

    .trusted-logos img {
        height: 18px;
    }
    
    .project-section {
        padding: 40px 20px;
    }
    
    .header {
        margin-bottom: 40px;
    }
    
    .location {
        font-size: 14px;
    }
    
    .title {
        font-size: 26px;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-title {
        font-size: 19px;
        margin-top: 12px;
    }
    
    .tags {
        gap: 8px;
        margin-top: 8px;
    }
    
    .tags span {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .about-box {
        font-size: 13px;
        margin-top: 15px;
    }
    
    .view-btn {
        padding: 6px 12px;
        font-size: 12px;
        margin-top: 15px;
    }
}

/* we spark your business ends */





/*.  our work section starts*/


/* Outer Wrapper - Matches hero collage section */
.outer {
    width: 100%;
    display: flex;
    max-width: 1920px;
    margin: 0 auto;
    justify-content: center;
    background: var(--color-black-100);
    padding: 120px 60px;
    box-sizing: border-box;
}

/* Main Portfolio Container */
.portfolio-container {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    position: relative;
    margin: 0 auto;
    min-height: 2730px;
}

/* --- Header Section (Top Center) --- */
.header-section {
    width: 49.17%; /* 708px / 1440px */
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.location-text {
    width: 310px;
    height: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-yellow);
}

.studio-title {
    width: 294px;
    height: 48px;
    font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-white);
}

/* --- Common Case Study Styles --- */
.case-study {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
} 

.case-study-image {
    height: auto;
    width: 550px;
    height: 600px;
    object-fit: cover;
}

.case-study-details {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.case-study-name {
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-white);
}

.tags-container {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.tags-container.large-gap {
    gap: 16px;
}

.tag {
    padding: 5px 20px;
    background: var(--color-black-100);
    border-radius: 30px;
    outline: 0.50px var(--color-black-200) solid;
    outline-offset: -0.50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.tag-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--color-white);
}

 /* ========================================
   COMING SOON OVERLAY
   ======================================== */

.case-study-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 549.9px;
    height: 600px;
    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;
}


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

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

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

 .coming-soon:hover .case-study-image {
    transform: scale(1);
}

/* .case-study-image {
    transition: transform 0.5s ease;
}  */


/* --- Specific Case Study Positioning & Sizing --- */

/* Case Study 1: Simon Says */
.case-study-1 {
    left: 0px;
    top: 151px;
    width: 570px;
}

.case-study.case-study-1:hover {
    width: 570px;
    padding: 10px;
    background-color: var(--color-black-50);
    transition: all 0.7s ease;
} 

/* Case Study 2: Cartwheel Store */
.case-study-2 {
    left: 29.17%; 
    top: 1185px;
    width: 570px; 
}

.case-study-2 .large-image {
    aspect-ratio: 600 / 650;
}

.case-study.case-study-2:hover {
    width: 570px;
    padding: 10px;
    background-color: var(--color-black-50);
    transition: all 0.7s ease;
}

/* Case Study 3: Nubooks */
.case-study-3 {
    left: 54.86%; 
    top: 401px;
    width: 45.14%;
}

.case-study-3 .extra-large-image {
    aspect-ratio: 650 / 745;
}

/* --- Bottom Section (Trainer X + CTA) --- */
.bottom-section {
    width: 100%;
    max-width: 1440px;
    left: 0px;
    top: 2020px;
    position: absolute;
    display: inline-flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Case Study 4: Trainer X */
.case-study-4 {
    position: static;
    flex-direction: column;
    width: 570px;
}

.case-study.case-study-4:hover {
    width: 570px;
    padding: 10px;
    background-color: var(--color-black-50);
    transition: all 0.7s ease;
}

/* CTA/Description (Bottom Right) */
.cta-description {
    width: 34.72%;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.description-text {
    align-self: stretch;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--color-white);
    width: 101%;
}

.view-all-btn {
    min-width: 180px;
    padding: 12px 20px;
    border-radius: 8px;
    outline: 0.5px solid var(--color-white);
    outline-offset: -0.5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* hover background */
.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* text */
.button-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    text-transform: capitalize;
    color: var(--color-white);
    display: flex;
    align-items: center;
}

/* arrow hidden */
.button-icon {
    margin-left: 0;
    opacity: 0;
    width: 20px;
    height: 20px;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 18px;
}

/* hover → show arrow */
.view-all-btn:hover .button-icon {
    margin-left: 10px;
    opacity: 1;
    max-width: 20px;
}

/* ===============================
   1440px Responsive
================================= */

@media (max-width: 1440px){

.outer{
    padding: 100px 120px;
}

/* container */
.portfolio-container{
    max-width:1200px;
    margin:auto;
}

/* header */
.header-section{
    width:60%;
}

.location-text{
    font-size:17px;
}

.studio-title{
    font-size:36px;
}

/* images */
.case-study-image{
    width:100%;
    height:auto;
}

/* case study width adjust */
.case-study-1{
    width:42%;
}

.case-study-2{
    width:45%;
    margin-top: 100px;
}

.case-study-3{
    width:48%;
}

.case-study-4{
    width:42%;
}

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

/* bottom section */
.bottom-section{
    width:100%;
    gap:60px;
    margin-top: 100px;
}

/* CTA */
.cta-description{
    width:38%;
}

.description-text{
    width:100%;
    font-size:17px;
}

/* button */
.view-all-btn{
    min-width:170px;
}
}

/* ===============================
   1024px Responsive
================================= */

@media (max-width: 1024px) {

.outer{
    padding: 100px 60px;
}

/* portfolio layout */
.portfolio-container{
    position: relative;
    min-height: auto;
}

/* header */
.header-section{
    width: 100%;
    position: static;
    transform: none;
    margin-bottom: 60px;
}

.location-text{
    font-size:17px;
}

.studio-title{
    font-size:36px;
}

/* grid for first projects */
.case-img{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
    margin-bottom: 80px;
}

/* common case study */
.case-study{
    position: static;
    width:100%;
}

/* images */
.case-study-image{
    width:100%;
    height:auto;
}

/* cartwheel center */
.case-study.case-study-2{
    width: 500px;
    margin: 0 auto;
}

.case-study-2 .large-image{
    width:100%;
    height:auto;
}

/* bottom section */
.bottom-section{
    position: static;
    margin-top:60px;
    display:flex;
    justify-content:space-between;
    gap:40px;
}

/* trainer x */
.case-study-4{
    width:48%;
}

/* description */
.cta-description{
    width:48%;
}

.description-text{
    width:100%;
    font-size:17px;
}

/* button */
.view-all-btn{
    width:fit-content;
}

}

/* ===============================
   TABLET RESPONSIVE (768px)
   =============================== */
@media (max-width: 768px) {

.outer{
    padding: 80px 20px;
}

/* remove absolute layout */
.portfolio-container{
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* header */
.header-section{
    position: static;
    transform: none;
    width: 100%;
}

.location-text{
    font-size:16px;
}

.studio-title{
    font-size:32px;
}

.case-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.case-study-2.large-image {
    width: 400px;
    height: 433px;
}

.case-study.case-study-2 {
    width: 400px;
    margin: auto;
    height: 540px;
}

.case-study-image{
    width: 352px;
    height: 384px;
}

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

/* bottom section */
.bottom-section{
    position: static;
    flex-direction: column;
    gap:40px;
}

/* trainer x */
.case-study-4{
    width:100%;
    margin-bottom: 0;
}

/* CTA */
.cta-description{
    width:100%;
}

.description-text{
    width: 430px;
    font-size:16px;
}

/* button */
.view-all-btn{
    width:fit-content;
}

}

/* =========================
   MOBILE 425px
========================= */
@media (max-width:425px){

.outer{
    padding:60px 16px;
}

.portfolio-container{
    min-height:auto;
    position:relative;
    display:flex;
    flex-direction:column;
    gap:60px;
}

/* Header */
.header-section{
    position:relative;
    width:100%;
    left:auto;
    transform:none;
    top:auto;
}

.location-text{
    width:100%;
    font-size:16px;
}

.studio-title{
    width:100%;
    font-size:30px;
}

/* Case Studies */
.case-study{
    position:relative;
    width:100% !important;
    left:auto !important;
    top:auto !important;
}

/* Images */
.case-study-image{
    width:100%;
    height:auto;
}

.case-img{
    display:grid;
    grid-template-columns: 1fr ;
    gap:30px;
}

/* Overlay fix */
.coming-soon-overlay{
    width:100%;
    height:100%;
}

.coming-soon-overlay span{
    font-size:24px;
}

/* Bottom Section */
.bottom-section{
    position:relative;
    top:auto;
    left:auto;
    flex-direction:column;
    gap:40px;
    align-items:flex-start;
}

.case-study-4{
    width:100%;
}

.cta-description{
    width:100%;
}

.description-text{
    width: 100%;
    font-size:16px;
}

/* Tags */
.tag-text{
    font-size:14px;
}

.view-all-btn{
    width:100%;
    justify-content:center;
}

}

/* ===============================
   MOBILE 375px
================================ */
@media (max-width: 375px) {

.outer{
    padding: 60px 20px;
}

.portfolio-container{
    position: static;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Header */
.header-section{
    position: static;
    width: 100%;
    transform: none;
}

.location-text{
    width: 100%;
    font-size: 16px;
}

.studio-title{
    width: 100%;
    font-size: 30px;
}

/* Case studies stack */
.case-study{
    position: static;
    width: 100%;
}

.case-study-1,
.case-study-2,
.case-study-3{
    left: auto;
    top: auto;
    width: 100%;
}

.case-study-image{
    width: 100%;
    height: auto;
}

.case-img{
    display:grid;
    grid-template-columns: 1fr;
    gap:30px;
}

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

/* Bottom section */
.bottom-section{
    position: static;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.case-study-4{
    width: 100%;
}

.cta-description{
    width: 100%;
}

.description-text{
    width: 100%;
    font-size: 16px;
}

.view-all-btn{
    width: 100%;
    justify-content: center;
}

}

/* ===============================
   320px Mobile Responsive
================================*/
@media (max-width: 320px) {

.outer{
    padding:60px 16px;
}

.portfolio-container{
    position: static;
    min-height: auto;
}

/* Header */
.header-section{
    position: static;
    transform: none;
    width:100%;
    margin-bottom:40px;
}

.location-text{
    width:100%;
    font-size:14px;
}

.studio-title{
    width:100%;
    font-size:28px;
}

/* Case studies layout */
.case-study{
    position: static;
    width:100%;
    margin-bottom:40px;
}

.case-study-image{
    width:100%;
    height:auto;
}

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

.case-img{
    display:grid;
    grid-template-columns: 1fr;
    gap:30px;
}

.coming-soon-overlay span{
    font-size:22px;
}

/* Bottom section */
.bottom-section{
    position: static;
    flex-direction: column;
    gap:40px;
}

.case-study-4{
    width:100%;
}

.cta-description{
    width:100%;
}

.description-text{
    width:100%;
    font-size:16px;
}

.view-all-btn{
    width:100%;
    justify-content:center;
}

/* tags */
.tag-text{
    font-size:14px;
}

}
/*.  our work section ends*/









/* ==================== BASE STYLES ==================== */
.service-area {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  background: var(--color-white);
  padding: 80px 160px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* HEADING */
.service-area .service-heading {
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-black-100);
}

/* WRAPPER */
.service-wrapper {
    width: 1370px;
    height: 570px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* HIDE RADIO */
.service-toggle {
  display: none;
}

/* IMAGE HOLDER */
.visual-panel {
  width: 300px;
  height: 400px;
  position: relative;
}

/* IMAGES */
.visual-item {
  width: 310px;
  height: 420px;
   position: absolute;
  object-fit: cover;
  inset: 0;

  opacity: 0 ;
  transition: all 0.5s ease; 
  z-index: 9999;
}

/* COMMON VISIBLE RULE */
#srv-brand:checked ~ .visual-panel .img-brand,
#srv-uiux:checked ~ .visual-panel .img-brand,
#srv-uiux:checked ~ .visual-panel .img-uiux,
#srv-apps:checked ~ .visual-panel .img-brand,
#srv-apps:checked ~ .visual-panel .img-uiux,
#srv-apps:checked ~ .visual-panel .img-apps,
#srv-webdev:checked ~ .visual-panel .img-brand,
#srv-webdev:checked ~ .visual-panel .img-uiux,
#srv-webdev:checked ~ .visual-panel .img-apps,
#srv-webdev:checked ~ .visual-panel .img-webdev,
#srv-ecommerc:checked ~ .visual-panel .img-brand,
#srv-ecommerc:checked ~ .visual-panel .img-uiux,
#srv-ecommerc:checked ~ .visual-panel .img-apps,
#srv-ecommerc:checked ~ .visual-panel .img-webdev,
#srv-ecommerc:checked ~ .visual-panel .img-ecomm,
#srv-mvp:checked ~ .visual-panel .img-brand,
#srv-mvp:checked ~ .visual-panel .img-uiux,
#srv-mvp:checked ~ .visual-panel .img-apps,
#srv-mvp:checked ~ .visual-panel .img-webdev,
#srv-mvp:checked ~ .visual-panel .img-ecomm,
#srv-mvp:checked ~ .visual-panel .img-mvp {
  opacity: 1;
}

/* 1 */
.img-brand {
  transform: translate(-60px, -40px) rotate(-15deg);
  z-index: 1;
}

/* 2 */
.img-uiux {
  transform: translate(-30px, -20px);
  z-index: 2;
}

/* 3 */
.img-apps {
  transform: translate(0px, 0px) rotate(5deg);
  z-index: 3;
}

/* 4 */
.img-webdev {
  transform: translate(30px, 30px) rotate(12deg);
  z-index: 4;
}

/* 5 */
.img-ecomm {
  transform: translate(60px, 50px) rotate(15deg);
  z-index: 5;
}

/* 6 */
.img-mvp {
  transform: translate(90px, 70px) rotate(18deg);
  z-index: 6;
}

.visual-item:hover {
  transform: scale(1.5) rotate(10deg);
}

/* SHOW IMAGE */
#srv-brand:checked ~ .visual-panel .img-brand,
#srv-uiux:checked ~ .visual-panel .img-uiux,
#srv-webdesign:checked ~ .visual-panel .img-webdesign,
#srv-apps:checked ~ .visual-panel .img-apps,
#srv-webdev:checked ~ .visual-panel .img-webdev,
#srv-ecommerc:checked ~ .visual-panel .img-ecomm,
#srv-mvp:checked ~ .visual-panel .img-mvp
/* #srv-nocode:checked ~ .visual-panel .img-nocode,
#srv-ai:checked ~ .visual-panel .img-ai,
#srv-cloud:checked ~ .visual-panel .img-cloud,
#srv-qa:checked ~ .visual-panel .img-qa */{
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* MENU */
.service-menu label {
  font-size: 60px;
  font-family: 'Inter Display', sans-serif;
  font-style: bold;
  font-weight: 800;
  color: var(--color-white-200);
  line-height: 1.8;
  cursor: pointer;
  transition: color .3s;
}

.service-menu  {
  width: 624px;
  height: 580px;
}

/* ACTIVE TEXT */
#srv-brand:checked ~ .service-menu label[for="srv-brand"],
#srv-uiux:checked ~ .service-menu label[for="srv-uiux"],
#srv-webdesign:checked ~ .service-menu label[for="srv-webdesign"],
#srv-apps:checked ~ .service-menu label[for="srv-apps"],
#srv-webdev:checked ~ .service-menu label[for="srv-webdev"],
#srv-ecommerc:checked ~ .service-menu label[for="srv-ecommerc"],
#srv-mvp:checked ~ .service-menu label[for="srv-mvp"]
/* #srv-nocode:checked ~ .service-menu label[for="srv-nocode"],
#srv-ai:checked ~ .service-menu label[for="srv-ai"],
#srv-cloud:checked ~ .service-menu label[for="srv-cloud"],
#srv-qa:checked ~ .service-menu label[for="srv-qa"] */{
  color: var(--color-black-100);
}

/* @media (prefers-color-scheme: dark) {
    .service-area {
        background-color: #141414;
    }

    .service-area .service-heading {
        color: #FFFFFF;
    }

    .service-menu label {
        color: #8b8b8b;
    }

    #srv-brand:checked ~ .service-menu label[for="srv-brand"],
    #srv-uiux:checked ~ .service-menu label[for="srv-uiux"],
    #srv-apps:checked ~ .service-menu label[for="srv-apps"],
    #srv-webdev:checked ~ .service-menu label[for="srv-webdev"],
    #srv-ecommerc:checked ~ .service-menu label[for="srv-ecommerc"],
    #srv-mvp:checked ~ .service-menu label[for="srv-mvp"]
    /* #srv-nocode:checked ~ .service-menu label[for="srv-nocode"],
    #srv-ai:checked ~ .service-menu label[for="srv-ai"],
    #srv-cloud:checked ~ .service-menu label[for="srv-cloud"],
    #srv-qa:checked ~ .service-menu label[for="srv-qa"]  { 
color: #ffffff;
}
} */

/* ==================== ULTRA WIDE / 4K / 1920px+ ==================== */
@media (min-width: 1920px) {

  .service-area {
    padding: 120px 137px 120px 140px;
  }

  .service-heading {
    font-size: 50px;
    margin-bottom: 80px;
  }

  .service-wrapper {
    max-width: 1800px;
    margin: 0 auto;
  }

  /* Bigger image */
  .visual-panel {
    width: 360px;
    height: 480px;
  }

  .visual-item {
    width: 300px;
    height: 400px;
    margin-left: 50px;
    
  }

  /* Bigger menu text */
  .service-menu label {
    font-size: 60px;
    line-height: 1.4;
  }

}

/* ==================== DESKTOP/LAPTOP - 1440px to 1919px ==================== */
@media (max-width: 1919px) and (min-width: 1440px) {
    .service-area {
    padding: 80px 30px 80px 140px;
  }

  .service-heading {
    font-size: 38px;
    margin-bottom: 50px;
  }

  .service-wrapper {
    gap: 252px;
    width: 100%;
  }

  .service-menu {
    margin-right: 145px;
  }

  /* Image size */
  .visual-panel,
  .visual-item {
    width: 280px;
    height: 380px;
    margin-left: 60px;
  }

  /* Menu text */
  .service-menu label {
    font-size: 54px;
    line-height: 1.7;
  }

  .service-menu label1 {
    font-size: 54px;
    line-height: 1.7;
  }
}

/* ==================== LAPTOP - 1280px to 1439px ==================== */
@media (max-width: 1439px) and (min-width: 1280px) {

  .service-area {
    padding: 70px 120px;
  }

  .service-heading {
    font-size: 36px;
  }

  .service-wrapper {
    gap: 60px;
  }

  /* Resize image panel */
  .visual-panel,
  .visual-item {
    width: 260px;
    height: 360px;
  }

  /* Reduce big text */
  .service-menu label {
    font-size: 48px;
    line-height: 1.7;
  }

  .service-menu label1 {
    font-size: 48px;
    line-height: 1.7;
  }
}


/* ==================== SMALL LAPTOP - 1024px to 1279px ==================== */
@media (max-width: 1279px) and (min-width: 1024px) {
     .service-area {
        width: 100%;
    padding: 70px 20px 0 75px;
  }

  .service-heading {
    font-size: 34px;
    margin-bottom: 50px;
  }

  .service-wrapper {
    gap: 60px;
    width: 100%;
    height: auto;
  }

  .service-menu {
    height: auto;
    margin-right: -120px;
    margin-bottom: 50px;
  }

  /* Image size down */
  .visual-panel,
  .visual-item {
    width: 260px;
    height: 360px;
    margin-left: 15px;
  }

  /* Menu text size down */
  .service-menu label {
    font-size: 48px;
    line-height: 1.7;
  }

  .service-menu label1 {
    font-size: 48px;
    line-height: 1.7;
  }

  /* Safer hover scale for laptops */
  .visual-item:hover {
    transform: scale(1.2) rotate(8deg);
  }
}

/* ==================== TABLET - 768px to 1023px ==================== */
@media (max-width: 1023px) and (min-width: 768px) {
    .service-area {
    padding: 70px 50px;
  }

  .service-heading {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
  }

  .service-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 120px;
    width: 100%;
    height: 10%;
    margin-top: 80px;
  }

  /* IMAGE FIRST */
  .visual-panel {
    order: 1;
    width: 260px;
    height: 360px;
  }

  .visual-item {
    width: 260px;
    height: 360px;
  }

  /* TEXT SECOND */
  .service-menu {
    order: 2;
    height: auto;
  }

  .service-menu label {
    font-size: 42px;
    line-height: 1.6;
  }

  .service-menu label1 {
    font-size: 42px;
    line-height: 1.6;
  }

  /* Disable hover zoom on tablets */
  .visual-item:hover {
    transform: rotate(0) scale(1);
  }
}

/* ==================== MOBILE LARGE - 600px to 767px ==================== */
@media (max-width: 767px) and (min-width: 600px) {
    
  .service-area {
    padding: 60px 40px;
  }

  .service-heading {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
  }

  /* Stack image first, text below */
  .service-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .visual-panel {
    order: 1;
    width: 240px;
    height: 320px;
  }

  .visual-item {
    width: 240px;
    height: 320px;
  }

  .service-menu {
    order: 2;
    text-align: center;
  }

  .service-menu label {
    font-size: 34px;
    line-height: 1.6;
  }

  .service-menu label1 {
    font-size: 34px;
    line-height: 1.6;
  }

  /* Disable hover zoom on touch devices */
  .visual-item:hover {
    transform: rotate(0) scale(1);
  }
}

/* ==================== MOBILE MEDIUM - 440px to 599px ==================== */
@media (max-width: 599px) and (min-width: 440px) {
    .service-area {
    padding: 50px 28px;
  }

  .service-heading {
    font-size: 26px;
    margin-bottom: 40px;
    text-align: center;
  }

  .service-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  /* IMAGE FIRST */
  .visual-panel {
    order: 1;
    width: 200px;
    height: 280px;
  }

  .visual-item {
    width: 200px;
    height: 280px;
  }

  /* TEXT SECOND */
  .service-menu {
    order: 2;
    text-align: center;
  }

  .service-menu label {
    font-size: 30px;
    line-height: 1.6;
  }

  .service-menu  {
  width: 281px;
}

  /* Disable hover zoom on mobile */
  .visual-item:hover {
    transform: rotate(0) scale(1);
  }
}

/* ==================== MOBILE SMALL - 375px to 439px ==================== */
@media (max-width: 425px) {
    .service-area {
    padding: 45px 24px;
  }

  .service-area .service-heading {
    font-size: 30px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 55px;
  }

  .service-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
  }

  /* IMAGE FIRST */
  .visual-panel {
    order: 1;
    width: 220px;
    height: 300px;
  }

  .visual-item {
    width: 220px;
    height: 300px;
  }

  /* TEXT SECOND */
  .service-menu {
    order: 2;
    text-align: left;
  }

  .service-menu label {
    font-size: 26px;
    line-height: 1.6;
  }

  .service-menu  {
  width: 281px;
  margin-top: 165px;
}

  /* Disable hover zoom on mobile */
  .visual-item:hover {
    transform: rotate(0) scale(1);
  }
}

/* ==================== MOBILE EXTRA SMALL - 320px to 374px ==================== */
@media (max-width: 375px) {
  .service-area {
    padding: 40px 40px;
  }
  .service-area .service-heading{
    font-size: 22px;
    width: 90%;
    text-align: center;
    margin-bottom: 50px;
  }

  .service-wrapper {
    flex-direction: column;
    grid-template-columns: 1fr;
    height: auto;
    width: 100%;
    gap: 0;
  }

  .service-menu {
    margin-top: 0;
  }

  .service-menu label {
    font-size: 24px;
    text-align: center;
    align-items: center;
  }

  .service-menu  {
  width: 281px;
  height: auto;
}

  .visual-panel {
    width: 250px;
    height: 350px;
  }
  .visual-item {
    width: 200px;
    height: 280px;
    margin-left: 20px;
    object-fit: contain;
  }
}


/*crafting solutions*/











/* what our clinet say start */
/* MAIN WRAPPER 1920PX */
/* BASE STYLES - Desktop First (1920px design) */
/* what our client say start */
/* BASE STYLES - Desktop First (1920px design) */
.testimonial-section {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 100px;
    background: var(--color-white-50);
    box-sizing: border-box;
}

.header {
    position: relative; /* અથવા sticky/fixed જે તમે વાપર્યું હોય */
    z-index: 999;
}

/* HEADER SECTION */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

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

/* ARROW CONTROLS */
.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    border: 1px solid #E6E6E6;
    cursor: pointer;
    font-size: 18px;
    color: var(--color-black-100);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    background: #f8f8f8;
}

.arrow-btn:active {
    transform: scale(0.98);
}

.counter {
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--color-black-100);
    text-align: center;
}

/* CAROUSEL */
/* Hide scrollbar but keep scroll working */
.testimonial-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;

    -ms-overflow-style: none;
    scrollbar-width: none;
    
}
/* Chrome, Safari, Opera */
.testimonial-carousel::-webkit-scrollbar {
    display: none;
}


/* TESTIMONIAL CARD */
.testimonial-card {
    max-width: 700px;
    height: 400px;
    flex-shrink: 0;
    padding: 40px;
    background: var(--color-white);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    scroll-snap-align: start;   
}


/* TEXT AREA */
.testimonial-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    height: auto;
    font-style: Regular;
    font-size: 20px;
    line-height: 180%;
    letter-spacing: 0%;
    color: var(--color-black-100);
    margin: 0 0 30px 0;
}

/* .testimonial-card p::-webkit-scrollbar {
    width: 6px;
}

.testimonial-card p::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
} */

/* FOOTER */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-black-100);
    display: block;
}

.author span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-black-200);
}



/* FEATURED IN SECTION */
.featured-in {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.featured-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-black-100);
}

.forbes-logo {
    font-family: 'Times New Roman', Times, serif;
    font-size: 36px;
    font-weight: bold;
    color: #0D0D0D;
    letter-spacing: 1px;
} 


/* ============================
   DARK MODE — TESTIMONIAL SECTION
   ============================
@media (prefers-color-scheme: dark) {

    .testimonial-section {
        background: #0D0D0D;
        color: #E6E6E6;
    }

    .testimonial-header h2 {
        color: #FFFFFF;
    }

    .arrow-btn {
        background: #1A1A1A;
        color: #E6E6E6;
        border-color: #333333;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .arrow-btn:hover {
        background: #262626;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .counter {
        color: #E6E6E6;
    }

    .testimonial-card {
        background: #1A1A1A;
        color: #E6E6E6;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .testimonial-card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .testimonial-card p {
        color: #CCCCCC;
    }

    .testimonial-card p::-webkit-scrollbar-thumb {
        background: #444;
    }

    .author-name {
        color: #FFFFFF;
    }

    .author span {
        color: #BFBFBF;
    }

    .author img {
        opacity: 0.95;
    }

.featured-label {
    color: #BFBFBF;
}

.forbes-logo {
    color: #FFFFFF;
}

} */

/* ========================================
   MEDIA QUERIES - Breakpoint Adjustments
   ======================================== */

/* Large Desktop (1440px - 1920px) */
@media (max-width: 1920px) and (min-width: 1441px) {
    .testimonial-section {
        padding: 100px 80px;
    }
}

/* Desktop/Laptop (1280px - 1440px) */
@media (max-width: 1440px) {
    .testimonial-section {
        padding: 80px 60px;
    }
    
    .testimonial-header {
        margin-bottom: 50px;
    }
    
    .testimonial-header h2 {
        font-size: 38px;
    }
    
    .testimonial-card {
        min-width: 600px;
        height: auto;
    }
    .testimonial-footer {
      align-items: flex-start;
      gap: 20px;
  }
  .featured-in {
      align-items: flex-start;
  }
  .forbes-logo { font-size: 28px; }
  .featured-label { font-size: 12px; }
}

/* Small Laptop (1024px - 1279px) */
@media (max-width: 1279px) {
    .testimonial-section {
        padding: 70px 50px;
    }
    
    .testimonial-header h2 {
        font-size: 36px;
    }
    
    .testimonial-card {
        min-width: 550px;
        height: auto;
        padding: 35px;
    }
    
    .testimonial-card p {
        font-size: 17px;
        max-height: 250px;
    }
    .testimonial-footer {
      align-items: flex-start;
      gap: 20px;
  }
  .featured-in {
      align-items: flex-start;
  }
  .forbes-logo { font-size: 28px; }
  .featured-label { font-size: 12px; }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
    .testimonial-section {
        padding: 60px 40px;
    }
    
    .testimonial-header {
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .testimonial-header h2 {
        font-size: 32px;
    }
    
    .arrow-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .counter {
        font-size: 16px;
    }
    
    .testimonial-card {
        min-width: 500px;
        padding: 30px;
        height: auto;
    }
    
    .testimonial-card p {
        font-size: 16px;
        max-height: 220px;
    }
    
    .testimonial-carousel::-webkit-scrollbar {
        display: none;
    }

    .testimonial-footer {
      align-items: flex-start;
      gap: 20px;
  }
  .featured-in {
      align-items: flex-start;
  }
  .forbes-logo { font-size: 28px; }
  .featured-label { font-size: 12px; }
}

/* Large Mobile / Small Tablet (480px - 767px) */
@media (max-width: 767px) {
  .testimonial-section {
    padding: 40px 16px;
  }

  /* CAROUSEL */
  .testimonial-carousel {
    gap: 16px;
    padding-bottom: 0;
    overflow-x: auto;
  }

  /* CARD – FULL WIDTH */
  .testimonial-card {
    min-width: 100%;
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    scroll-snap-align: center;
  }

  /* TEXT – NO CUT */
  .testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    max-height: none;
    overflow: visible;
  }

  /* FOOTER STACK */
  .testimonial-footer {
    align-items: flex-start;
    gap: 16px;
  }

  /* AUTHOR */
  .author img {
    width: 44px;
    height: 44px;
  }

  .author-name {
    font-size: 16px;
  }

  .author span {
    font-size: 13px;
  }

  /* FEATURED IN */
  .featured-in {
    align-items: flex-start;
  }

  .forbes-logo {
    font-size: 26px;
  }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .testimonial-section {
        padding: 40px 20px;
    }
    
    .testimonial-header {
        margin-bottom: 30px;
    }
    
    .testimonial-header h2 {
        font-size: 24px;
    }
    
    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .testimonial-controls {
        gap: 15px;
    }
    
    .counter {
        font-size: 14px;
        min-width: 40px;
    }
    
    .testimonial-carousel {
        gap: 12px;
    }
    
    .testimonial-card {
        min-width: calc(100% - 30px);
        padding: 20px;
        height: auto;
    }
    
    .testimonial-card p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .author img {
        width: 45px;
        height: 45px;
    }
    
    .author-name {
        font-size: 15px;
    }
    
    .author span {
        font-size: 12px;
    }
    .testimonial-footer {
      align-items: flex-start;
      gap: 20px;
  }
  .featured-in {
      align-items: flex-start;
  }
  .forbes-logo { font-size: 28px; }
  .featured-label { font-size: 12px; }
}

/* Extra Small Devices (< 320px) */
@media (max-width: 319px) {
    .testimonial-section {
        padding: 30px 15px;
    }
    
    .testimonial-card {
        min-width: 100%;
        padding: 15px;
        height: auto;
    }
    
    .testimonial-header h2 {
        font-size: 22px;
    }
    .testimonial-footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
  }
  .featured-in {
      align-items: flex-start;
  }
  .forbes-logo { font-size: 28px; }
  .featured-label { font-size: 12px; }
}

/* what our client say ends */











/* why partner with us start */
/* BASE STYLES - Desktop First (1920px design) */
.partner-section {
    max-width: 1920px;  /* Maximum width for large screens */
    width: 100%;        /* Fluid width for smaller screens */
    margin: 0 auto;
    padding: clamp(60px, 8.33vw, 160px) clamp(20px, 12.5vw, 240px);
    background: var(--color-black-100);
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 4.17vw, 80px);
    box-sizing: border-box;
}

/* HEADER SECTION */
.partner-header {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 0.42vw, 8px);
    align-items: center;
}

.partner-header .sub-title {
    color: var(--color-yellow);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 4%;
    text-align: center;
}

.partner-header .title {
    font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-white);
    }

/* CARDS CONTAINER */
.partner-cards {
    display: flex;
    justify-content: space-between;
    gap: clamp(30px, 8.33vw, 160px);
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

/* INDIVIDUAL CARD */
.partner-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 1.25vw, 24px);
    text-align: center;
    min-width: 0; /* Prevents flex item overflow */
}

.partner-card .icon {
    flex-shrink: 0;
}

.partner-card .icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* CARD TEXT */
.card-text {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 0.625vw, 12px);
}

.card-text .card-title {
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 2%;
    color: var(--color-white);
}

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

/* ========================================
   MEDIA QUERIES - Breakpoint Adjustments
   ======================================== */

/* Large Desktop (1440px - 1920px) */
@media (max-width: 1920px) and (min-width: 1441px) {
    .partner-section {
        padding: 140px 200px;
    }
    
    .partner-cards {
        gap: 120px;
    }
}

/* Desktop/Laptop (1280px - 1440px) */
@media (max-width: 1440px) {
    .partner-section {
        padding: 120px 100px;
    }
    
    .partner-cards {
        gap: 80px;
    }
}

/* Small Laptop (1024px - 1279px) */
@media (max-width: 1279px) {
    .partner-section {
        padding: 100px 60px;
        gap: 60px;
    }
    
    .partner-cards {
        gap: 60px;
    }
    
    .partner-header .title {
        font-size: 32px;
    }
}

/* Tablet Landscape (769px - 1023px) */
@media (max-width: 1023px) {
    .partner-section {
        padding: 80px 40px;
        gap: 50px;
    }
    
    .partner-cards {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        max-width: 600px;
    }
    
    .partner-card {
        width: 100%;
        max-width: 500px;
    }
    
    .partner-header .title {
        font-size: 28px;
    }
}

/* Tablet Portrait (481px - 768px) */
@media (max-width: 768px) {
    .partner-section {
        padding: 70px 30px;
        gap: 45px;
    }
    
    .partner-header .sub-title {
        font-size: 16px;
    }
    
    .partner-header .title {
        font-size: 26px;
    }
    
    .partner-cards {
        gap: 35px;
        max-width: 500px;
    }
    
    .partner-card {
        max-width: 450px;
    }
    
    .card-text .card-title {
        font-size: 19px;
    }
    
    .card-text .card-desc {
        font-size: 15px;
    }
}

/* Large Mobile (376px - 480px) */
@media (max-width: 480px) {
    .partner-section {
        padding: 60px 20px;
        gap: 40px;
    }
    
    .partner-header .sub-title {
        font-size: 15px;
    }
    
    .partner-header .title {
        font-size: 24px;
    }
    
    .partner-cards {
        flex-direction: column;
        gap: 32px;
    }
    
    .partner-card {
        width: 100%;
        gap: 18px;
    }
    
    .card-text .card-title {
        font-size: 18px;
    }
    
    .card-text .card-desc {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    .partner-section {
        padding: 50px 16px;
        gap: 35px;
    }
    
    .partner-header .sub-title {
        font-size: 14px;
    }
    
    .partner-header .title {
        font-size: 22px;
    }
    
    .partner-cards {
        gap: 28px;
    }
    
    .partner-card {
        gap: 16px;
    }
    
    .partner-card .icon img {
        width: 40px;
        height: 40px;
    }
    
    .card-text .card-title {
        font-size: 17px;
    }
    
    .card-text .card-desc {
        font-size: 13px;
        line-height: 20px;
    }
}

/* Extra Small Devices (< 320px) */
@media (max-width: 319px) {
    .partner-section {
        padding: 40px 12px;
        gap: 30px;
    }
    
    .partner-header .title {
        font-size: 20px;
    }
    
    .partner-cards {
        gap: 24px;
    }
    
    .card-text .card-title {
        font-size: 16px;
    }
    
    .card-text .card-desc {
        font-size: 12px;
        line-height: 18px;
    }
}
/* why partner with us ends */




/*next gen tech*/
.tech-stack{
    width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 120px 240px;
  background: var(--color-white-50);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Header */

.sub-title{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-blue-500);
}

.title{
    font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-black-100);
    margin-bottom: 25px;
}

/* ---------------- CATEGORY BAR ---------------- */

.tech-cat-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-bottom:40px;
}

.tech-categories{
    display: flex;
    width: 200%;
  flex-wrap: wrap;
  border-bottom: 1px var(--color-black-250) solid;
  overflow-x: auto;
  scrollbar-width: none; 
}

.category{
    flex: 1 1 auto;
    text-align: center;
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--color-black-100);
    cursor: pointer;
    white-space: nowrap;
}

.category.active{
border-bottom:2px solid var(--color-Orange-500);
font-weight: 500;
}

/* Arrows */

.arrow{
display:none;
cursor:pointer;
}

/* ---------------- TECH LIST ---------------- */

.tech-list{
display:none;
flex-wrap:wrap;
justify-content:center;
gap:30px;
}

.tech-list.active{
display:flex;
}

.tech-card{
width:140px;
height: 140px;
display:flex;
flex-direction:column;
align-items:center;
gap:16px;
}

.tech-card:hover {
    background-color: var(--color-white);
}

.tech-card img{
width:44px;
height:44px;
margin-top: 30px;
object-fit:contain;
}

.tech-name{
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 4%;
    text-align: center;
    text-transform: capitalize;
    color: var(--color-black-100);     
}

/*------------------------1440px-----------------------*/
@media (max-width: 1440px) {
  .tech-categories {
    flex-wrap: nowrap; 
    gap: 34px; 
  }

  .tech-categories .category {
    padding: 10px 20px;
    font-size: 16px;
    flex: 0 0 auto; 
  }

  .tech-header .title {
    font-size: 24px;
  }

  .tech-categories {
    align-items: center;
  }

  .tech-card {
    width: 100px;
    gap: 12px;
  }

  .arrow {
    display: none;
  }

  .tech-card .tech-name {
    font-size: 14px;
  }
}

/*-----------------1080px-------------------*/
@media (max-width: 1080px) {
  .tech-stack {
    padding: 80px 60px;
  }

  .tech-categories {
    flex-wrap: nowrap; 
    gap: 26px; 
  }

  .tech-categories .category {
    padding: 10px 20px;
    font-size: 16px;
    flex: 0 0 auto;
  }

  .tech-header .title {
    font-size: 24px;
  }

  .tech-categories {
    align-items: center;
  }

  .tech-card {
    width: 100px;
    gap: 12px;
  }

  .arrow {
    display: none;
  }

  .tech-card .tech-name {
    font-size: 14px;
  }
}

/* ---------------- 425px ---------------- */
@media (max-width: 768px){
.tech-categories {
    flex-wrap: nowrap;
    gap: 0px; 
  }

  .tech-categories .category {
    padding: 10px 20px;
    font-size: 16px;
    flex: 0 0 auto; 
  }

  .tech-stack {
    width: 100%;
    padding: 60px 20px;
    gap: 30px;
  }

  .tech-header .title {
    font-size: 24px;
  }

  .tech-categories {
    align-items: center;
  }

  .tech-card {
    width: 100px;
    gap: 12px;
  }

  .arrow {
    display: none;
  }

  .tech-card .tech-name {
    font-size: 14px;
  }
}


/* ---------------- 425px ---------------- */
@media(max-width: 425px){
.tech-stack{
  padding:40px 12px;
  gap:20px;
}

/* Header */
.sub-title{
  font-size:14px;
}

.title{
  font-size:32px;
  line-height:28px;
}

/* Category wrapper */
.tech-cat-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
}

/* Arrows */
.arrow{
  display:flex;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#000;
  color:#fff;
  border:none;
  justify-content:center;
  align-items:center;
  font-size:16px;
}

/* Categories */
.tech-categories{
  flex:1;
  display:flex;
  justify-content:center;
  border-bottom:1px solid #ccc;
}

/* Hide all */
.category{
  display:none;
  font-size:14px;
}

/* Show active only */
.category.active{
  display:block;
  padding:8px 0;
  border-bottom: none;
}

/* Tech list vertical */
.tech-list{
  align-items:center;
  gap:14px;
}

/* Icon */
.tech-card img{
  width:36px;
  height:36px;
}

/* Name */
.tech-name{
  font-size:14px;
}
}

/* ---------------- 375px ---------------- */
@media(max-width:375px){
.tech-stack{
  padding:40px 12px;
  gap:20px;
}

/* Header */
.sub-title{
  font-size:14px;
}

.title{
  font-size:32px;
  line-height:28px;
}

/* Category wrapper */
.tech-cat-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
}

/* Arrows */
.arrow{
  display:flex;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#000;
  color:#fff;
  border:none;
  justify-content:center;
  align-items:center;
  font-size:16px;
}

/* Categories */
.tech-categories{
  flex:1;
  display:flex;
  justify-content:center;
  border-bottom:1px solid #ccc;
}

/* Hide all */
.category{
  display:none;
  font-size:14px;
}

/* Show active only */
.category.active{
  display:block;
  padding:8px 0;
  border-bottom: none;
}

/* Tech list vertical */
.tech-list{
  align-items:center;
  gap:14px;
}

/* Icon */
.tech-card img{
  width:36px;
  height:36px;
}

/* Name */
.tech-name{
  font-size:14px;
}
}

/* ---------------- 320px SLIDER MODE ---------------- */
@media(max-width:320px){

.tech-stack{
  padding:40px 12px;
  gap:20px;
}

/* Header */
.sub-title{
  font-size:14px;
}

.title{
  font-size:32px;
  line-height:28px;
}

/* Category wrapper */
.tech-cat-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
}

/* Arrows */
.arrow{
  display:flex;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#000;
  color:#fff;
  border:none;
  justify-content:center;
  align-items:center;
  font-size:16px;
}

/* Categories */
.tech-categories{
  flex:1;
  display:flex;
  justify-content:center;
  border-bottom:1px solid #ccc;
}

/* Hide all */
.category{
  display:none;
  font-size:14px;
}

/* Show active only */
.category.active{
  display:block;
  padding:8px 0;
  border-bottom: none;
}

/* Tech list vertical */
.tech-list{
  align-items:center;
  gap:14px;
}

/* Icon */
.tech-card img{
  width:36px;
  height:36px;
}

/* Name */
.tech-name{
  font-size:14px;
}
}





/* MAIN WRAPPER */
.outerhero-collage {
    width: 100%;
    display: flex;
    max-width: 1920px;
    margin: 0 auto;
    justify-content: center;
    background: var(--color-white);
}

/* MAIN COLLAGE AREA */
.hero-collage-section {
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 1330px;
     padding-top: calc(120px + 80px);
    position: relative;
    padding: 120px 240px;
    overflow-x: hidden;
    overflow-y: visible;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT WRAPPER - Centers everything */
.hero-collage-content-wrapper {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px; 
}

/* CENTER CONTENT */
.hero-collage-content {
    text-align: center;
    position: relative;
}

.hero-collage-title {
    font-family: 'Inter Display', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 90px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-collage-title .dark { 
    color: var(--color-black-100); 
}

.hero-collage-title .gray { 
    color: var(--color-blue-500); 
}

/* BUTTON */
/* BUTTON */
.hero-collage-btn {
    margin-top: -8px;
    padding: 12px 24px;
    background: var(--color-black-100);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 135%;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* arrow hidden */
.hero-collage-btn .arrow-icon {
    margin-left: 0;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 20px;
}

/* hover effect */
.hero-collage-btn:hover {
    background-color: var(--color-black-200);
    padding-right: 18px;
}

/* show arrow */
.hero-collage-btn:hover .arrow-icon {
    margin-left: 12px;
    opacity: 1;
    max-width: 30px;
}

/* IMAGE CONTAINER */
.hero-collage-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* IMAGE POSITIONS — FIXED & CONTAINED */
.hero-collage-images img {
    position: absolute;
    object-fit: cover;
    z-index: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* FIXED DESKTOP POSITIONS */
.img-top-left {
    top: 30px;
    left: 110px;
    width: 370px;
    height: 450px;
}

.img-top-right {
    top: 55px;
    right: 110px;
    width: 393px;
    height: 300px;
}

.img-bottom-left {
    bottom: 235px;
    left: 130px;
    width: 456px;
    height: 252px;
}

.img-bottom-right {
    bottom: 60px;
    right: 130px;
    width: 420px;
    height: 516px;
}

@media (max-width: 1440px) {
    .hero-collage-section {
        padding: 120px 80px;
        min-height: 890px; 
    }

    .hero-collage-title {
        margin-top: 60px;
        font-size: 72px; 
        line-height: 120%;
    }

    .img-top-left,
    .img-top-right,
    .img-bottom-left,
    .img-bottom-right {
        width: 18vw;      
        max-width: 280px;  
        height: auto;       
    }

    .img-top-left {
        top: 6%;
        left: 6%;
        width: 370px;
        height: 321px;
    }

    .img-top-right {
        top: 6%;
        right: 6%;
        width: 393px;
        height: 195px;
    }

    .img-bottom-left {
        bottom: 6%;
        left: 7%;
        width: 456px;
        height: 252px;
    }

    .img-bottom-right {
        bottom: 6%;
        right: 7%;
        width: 420px;
        height: 332px;
    }
}

@media (max-width: 1024px) {
    .hero-collage-section {
        padding: 80px 40px;
        min-height: 1020px; 
    }

    .hero-collage-title {
        margin-top: 55px;
    }

    .img-top-left,
    .img-top-right,
    .img-bottom-left,
    .img-bottom-right {
        width: 22vw;      
        max-width: 240px;  
        height: auto;      
    }

    .img-top-left {
        top: 5%;
        left: 4%;
        width: 264px;
        height: 318px;
    }

    .img-top-right {
        top: 5%;
        right: 4%;
        width: 264px;
        height: 212px;
    }

    .img-bottom-left {
        bottom: 6%;
        left: 5%;
        width: 335px;
        height: 185px;
    }

    .img-bottom-right {
        bottom: 5%;
        right: 5%;
        width: 264px;
        height: 282px;
    }
}

/* ==========================
   MOBILE RESPONSIVE
========================== */
@media (max-width: 768px) {
    .hero-collage-section {
        padding: 80px 20px;
        min-height: 998px;
    }

    .hero-collage-content-wrapper {
        margin-top: 30px;
    }

    .hero-collage-title {
        font-size: 52px;
        line-height: 120%;
        margin-top: 30px;
    }

    /* Smaller images on mobile */
    .img-top-left {
        top: 40px;
        left: 20px;
        width: 264px;
        height: 318px;
    }

    .img-top-right {
        top: 40px;
        right: 20px;
        width: 264px;
        height: 212px;
    }

    .img-bottom-left {
        bottom: 40px;
        left: 25px;
        width: 335px;
        height: 185px;
    }

    .img-bottom-right {
        bottom: 40px;
        right: 25px;
        width: 264px;
        height: 282px;
    }

    .hero-collage-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ==========================
   MOBILE RESPONSIVE
========================== */
@media (max-width: 425px) {
    .hero-collage-section {
        padding: 80px 20px;
        min-height: 710px;
    }

    .hero-collage-title {
        font-size: 42px; 
        line-height: 120%;
        margin-top: -125px;
    }

    .img-top-left {
        top: 40px;
        left: 20px;
        width: 180px;
        height: auto;
    }

    .img-top-right {
        top: 40px;
        right: 20px;
        width: 180px;
        height: auto;
    }

    .img-bottom-left {
        bottom: 40px;
        left: 25px;
        width: 180px;
        height: auto;
    }

    .img-bottom-right {
        bottom: 40px;
        right: 25px;
        width: 180px;
        height: auto;
    }
}

/* ==========================
   MOBILE RESPONSIVE
========================== */
@media (max-width: 375px) {
    .hero-collage-section {
        padding: 80px 20px;
        min-height: 599px;
    }

    .hero-collage-content-wrapper {
        margin-top: 30px;
    }

    .hero-collage-title {
        font-size: 30px;
        line-height: 120%;
        margin-top: -115px;
    }

    /* Smaller images on mobile */
    .img-top-left,
    .img-top-right,
    .img-bottom-left,
    .img-bottom-right {
        width: 45%;         
        height: auto;       
        max-width: 180px;    
    }

    .img-bottom-left{
        width: 45%;         
        height: auto;       
        max-width: 180px; 
        margin-left: -10px ;   
    }

    .img-bottom-right {
        width: 45%;         
        height: auto;       
        max-width: 180px; 
        margin-right: -10px;   
    }

    .hero-collage-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ==========================
   MOBILE RESPONSIVE
========================== */
@media (max-width: 320px) {
    .hero-collage-section {
        padding: 80px 20px;
        min-height: 599px;
    }

    .hero-collage-content-wrapper {
        margin-top: 30px;
    }

    .hero-collage-title {
        font-size: 30px;
        line-height: 120%;
        margin-top: -90px;
    }

    /* Smaller images on mobile */
    .img-top-left,
    .img-top-right,
    .img-bottom-left,
    .img-bottom-right {
        width: 45%;         
        height: auto;       
        max-width: 180px;    
    }

    .img-bottom-left{
        width: 45%;         
        height: auto;       
        max-width: 180px; 
        margin-left: -10px ;   
    }

    .img-bottom-right {
        width: 45%;         
        height: auto;       
        max-width: 180px; 
        margin-right: -10px;   
    }

    .hero-collage-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

 






/* ========================================
   BASE STYLES - Desktop First (1920px)
   ======================================== */

.footer-section {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    background: var(--color-white-50);
    border-top: 0.5px var(--color-white-100) solid;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* Container inside footer */
.footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 3.125vw, 60px);
    gap: clamp(40px, 6.25vw, 120px);
    box-sizing: border-box;
}

/* Top content row */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: start;
}

/* Left column with title and button */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.25vw, 24px);
    max-width: 500px;
}

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

.icon1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 50%;
}

.icon1 a img{
  transition:transform 0.3s ease;
}

.icon1 a:hover img{
  transform:scale(1.30);
}

/* button */
.footer-button {
    width: 100%;
    max-width: 100%;
    padding: 12px 20px;
    background: var(--color-black-100);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* text style */
.button-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    text-transform: capitalize;
    color: var(--color-white);
    display: flex;
    align-items: center;
}

/* arrow hidden */
.arrow-icon {
    margin-left: 0;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 20px;
}

/* show arrow on hover */
.footer-button:hover .arrow-icon {
    margin-left: 12px;
    opacity: 1;
    max-width: 30px;
}

/* Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 0.83vw, 16px);
    font-family: 'Inter', sans-serif;
    min-width: 140px;
}

.footer-column a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--color-black-200);
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--color-black-100);
}

.footer-column div {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--color-black-200);
}

.footer-column div a {
    color: var(--color-black-200);
}

.footer-column div a:hover {
    color: var(--color-black-100);
}

.column-title {
    font-family:'Inter', sans-serif;
    font-weight: 550;
    font-style: Medium;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--color-black-100);
}

/* Footer bottom row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--color-black-200);
}

.footer-bottom a{
    color: var(--color-black-200);
    text-decoration: none;
}

.footer-bottom div:last-child {
    text-align: right;
}

/* Image Section */
.footer-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-image img {
    width: 100%;
    max-width: 1800px;
    height: auto;
    object-fit: contain;
}

/* ========================================
   MEDIA QUERIES - Breakpoint Adjustments
   ======================================== */

/* Large Desktop (1440px - 1920px) */
@media (max-width: 1920px) and (min-width: 1441px) {
    .footer-section {
        padding: 0;
    }
    
    .footer-container {
        padding: 50px;
        gap: 100px;
    }
}

/* Desktop/Laptop (1280px - 1440px) */
@media (max-width: 1440px) {
    .footer-section {
        padding: 0px 0;
    }
    
    .footer-container {
        padding: 40px;
        gap: 80px;
    }
    
    .footer-top {
        gap: 50px;
    }
}

/* Small Laptop (1024px - 1279px) */
@media (max-width: 1279px) {
    .footer-section {
        padding: 0px 0;
    }
    
    .footer-container {
        padding: 30px;
        gap: 60px;
    }
    
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-left {
        grid-column: 1 / -1;  
        max-width: 100%;
    }
}

/* Tablet Portrait & Landscape (769px - 1023px) */
@media (max-width: 1023px) {
    .footer-section {
        padding: 0px 0;
    }
    
    .footer-container {
        padding: 25px;
        gap: 50px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 32px;
    }
    
    .footer-bottom {
        gap: 16px;
    }
    
    .footer-bottom div:last-child {
        text-align: left;
    }
}

/* Tablet (481px - 768px) */
@media (max-width: 768px) {
    .footer-section {
        padding: 0px 0;
    }
    
    .footer-container {
        padding: 20px;
        gap: 40px;
    }

    .icon1 {
        width: 30%;
    }
    
    .footer-top {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 32px 50px;
    }
    
    .footer-left {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 28px;
    }
    
    .footer-button {
        padding: 16px 24px;
    }
}

/* Large Mobile (376px - 480px) */
@media (max-width: 480px) {
    .footer-section {
        padding: 0px 0;
    }
    
    .footer-container {
        padding: 16px;
        gap: 32px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }
    
    .footer-left {
        grid-column: 1 / -1;
    }

    .icon1 {
        width: 100%;
        gap: 10px;
        display:flex;
        justify-content:center;   
        align-items:center;              
    }
    
    .footer-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .footer-button {
        width: 100%;
        padding: 16px 20px;
    }
    
    .footer-bottom {
        gap: 12px;
        font-size: 13px;
    }
    
    .footer-bottom div {
        text-align: left;
    }
}

/* Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    .footer-section {
        padding: 0px 0;
    }
    
    .footer-container {
        padding: 12px;
        gap: 28px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }
    
    .footer-title {
        font-size: 22px;
    }
    
    .button-text {
        font-size: 15px;
    }
    
    .footer-column {
        gap: 10px;
    }
    
    .footer-column a,
    .footer-column div,
    .column-title {
        font-size: 13px;
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        font-size: 12px;
        gap: 10px;
    }
}

/* Extra Small Devices (< 320px) */
@media (max-width: 320px) {
    .footer-container {
        padding: 10px;
        gap: 24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .icon {
        display: flex;
        justify-content: center;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .footer-bottom {
        font-size: 11px;
        display: flex;
        justify-content: space-between;
        gap: 12px;
    }
}


/* -------------------------------------------------------- */
/* AUTO DARK THEME - matches the user's system theme        */
/* -------------------------------------------------------- */
/* @media (prefers-color-scheme: dark) {
    .footer-section {
        background: #0D0D0D;
        border-top: 0.5px solid #333;
    }

    .footer-title {
        color: #FFFFFF;
    }

    .footer-button {
        background: #FFFFFF;
    }

    .footer-button:hover {
        background: #E6E6E6;
    }

    .footer-button .button-text {
        color: #000000;
    }

    .footer-button .button-arrow::before {
        color: #000000;
    }

    .footer-column,
    .footer-column div {
        color: #B3B3B3;
    }

    .footer-column a {
        color: #B3B3B3;
    }

    .footer-column a:hover,
    .footer-column div a:hover {
        color: #FFFFFF;
    }

    .column-title {
        color: #FFFFFF;
    }

    .footer-bottom {
        color: #999999;
    }

    .footer-image img {
        content: url("../Assets/images/KM SOFT dark.png");
    }
} */
/* Footer Outer Section start*/


