/* 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;
}

/* 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; 
    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 */


/*-------------------------------------
/*-------------------------------------
  8. FAQ Section
  --------------------------------------*/
.faq-section {
  padding: 120px 240px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  background-color: var(--color-white);
}

section#faq {
  max-width: 1920px;
  margin: auto;
  max-width: 1920px;
  margin: auto;
}

.faqs{
  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-red);
}

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

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.faq-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--color-white-200);
  width: 100%;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
}
.faq-item:hover {
  transform: translateX(5px);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* padding: 16px 0; */
  font-weight: 500;
}

.faq-question {
  font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--color-black-100);
  cursor: pointer;
  margin: 0;
  flex: 1;
  padding-right: 16px;
  transition: 0.3s;
}

.faq-answer {
    font-family: 'Inter Display', 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);
  margin-top: 0;
  padding: 16px 40px 0 0;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  max-height: 1000px;
}

.faq-answer[hidden] {
  display: block;
  max-height: 0;
  padding-top: 0;
  margin-bottom: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out, opacity 0.3s ease-in-out,
    padding 0.2s ease-in-out;
}
.faq-answer[hidden] {
  display: block;
  max-height: 0;
  padding-top: 0;
  margin-bottom: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out, opacity 0.3s ease-in-out,
    padding 0.2s ease-in-out;
}

.toggle-button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  margin-left: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.toggle-button:hover {
  transform: scale(1.1);
}

.toggle-button:focus {
  /* outline: 2px solid #4d4d4d; */
  border-radius: 4px;
}
.toggle-button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  margin-left: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--color-black-200);
}

.toggle-button:hover {
  transform: scale(1.1);
}

.toggle-button:focus {
  /* outline: 2px solid #4d4d4d; */
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.plus-icon,
.minus-icon {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 5px;
  left: 5px;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.plus-icon,
.minus-icon {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 5px;
  left: 5px;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

.minus-icon {
  width: 14px;
  height: 2px;
  position: absolute;
  top: 11px;
  left: 5px;
  object-fit: contain;
}
.minus-icon {
  width: 14px;
  height: 2px;
  position: absolute;
  top: 11px;
  left: 5px;
  object-fit: contain;
}

@media screen and (max-width: 1440px) {
  .faq-section {
    padding: 80px 40px;
  }

  .faq-container {
    width: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 1440px) {
  .faq-section {
    padding: 80px 40px;
  }
}

@media (max-width: 991px) {
  .faq-section {
    padding: 80px 40px;
  }
  @media (max-width: 991px) {
    .faq-section {
      padding: 80px 40px;
    }

    .faq-title {
      font-size: 28px;
    }
  }
  .faq-title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 40px 12px;
  }
  @media (max-width: 640px) {
    .faq-section {
      padding: 40px 12px;
    }

    .faq-title {
      font-size: 24px;
    }
    .faq-title {
      font-size: 24px;
    }

    .faq-question {
      font-size: 16px;
    }
    .faq-question {
      font-size: 16px;
    }

    .faq-answer {
      font-size: 14px;
    }
  }
  .faq-answer {
    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;
}

.footer-button a {
    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;
}

.button-text a {
    text-decoration: none;
}

/* 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*/