/* Define the font faces */
@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-75: #1A1A1A;
  --color-black-100: #1C1C1C;
  --color-black-200: #333333;
  --color-black-300: #4D4D4D;
  --color-black-250: #BFBFBF;
  --color-black-400: #666666;
  --color-black-500: #808080;

  --color-yellow: #FFD332;
  --color-blue-500: #0080FF;
  --color-Orange-500: #FF6000;
  --color-red: #D92D3A;
  --color-green-700: #015845;
  --color-Chartreuse : #CDF546;
  --color-green-200: #247462;
  --color-yellow-200: #D9D359;
  --color-Orange-200: #D99855;
}

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

body {
    overflow-x: hidden;
}

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown{
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.desktop-only {
  display: block;
}

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

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

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

  .nav-links {
    gap: 20px;
  }

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

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

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

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

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

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

  .nav-links {
    gap: 15px;
  }

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

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

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

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

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

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

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

@media screen and (min-width: 320px) and (max-width: 768px) {
    /* 1. Make the dropdown menus full width and static */
    .services-menu, 
    .products-menu {
        position: static;     /* Remove the "floating" behavior */
        width: 100% !important; /* Take up full width of the container */
        height: auto;         /* Let the content define the height */
        padding: 10px 15px;   /* Reduce padding for smaller screens */
        box-shadow: none;     /* Optional: remove shadow for a cleaner look */
        border-radius: 0;
    }

    /* 2. Fix the link alignment inside the menu */
    .menu-column, 
    .menu-column1 {
        padding-right: 0;     /* Remove large right padding */
        display: flex;
        flex-direction: column;
    }

    .menu-column a, 
    .menu-column1 a {
        font-size: 16px;      /* Slightly smaller text for mobile */
        padding: 8px 10px;    /* Better spacing for touch targets */
        line-height: 1.5;     /* Tighten up the height */
        display: block;
        width: 100%;
    }

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

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

  .menu-toggle {
    display: block;
  }

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

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

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

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

  .dropdown-arrow {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 10px;
  }

  /* .mobile-cta .cta-text {
    color: #0;
  } */

  .cta-button {
    width: 100%;
  }

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

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

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

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

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

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

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

  .nav-links {
    padding: 15px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .nav-header {
    padding: 8px;
  }

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

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

  .mobile-cta {
    height: 38px;
  }

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

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

  .nav-header {
    padding: 6px;
  }

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

  .nav-links {
    padding: 10px;
  }

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

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

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

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

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

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

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

[data-theme="dark"] .header-wrapper:not(.scrolled) .logo img {
    content: url("../Assets/images/KM_SOFT_dark.svg");
}

[data-theme="dark"] .nav-header {
    background: transparent;
}

    .nav-links img {
        filter: invert(0);
    }
[data-theme="dark"] .nav-item {
    color: #FFFFFF;
}

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

[data-theme="dark"] .dropdown-arrow {
    filter: invert(1);
}

[data-theme="dark"] .nav-links img {
    filter: invert(1);
}

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

[data-theme="dark"] .cta-button {
    background: #ffffff;
    color: #000;
    border: none;
}

[data-theme="dark"] .cta-button:hover {
    background: #e0e0e0;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

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

[data-theme="dark"] .nav-item-wrapper {
    border-bottom-color: #333;
} */










/* ========================================
   HERO SECTION STYLES
   ======================================== */
.hero-section {
    width: 100%;
    max-width: 1920px;
    min-height: 800px;
    background: #ffffff;
    padding: 130px 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================
   HERO CONTAINER
========================= */

.hero-container {
    width: 100%;
    max-width: 1440px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* TITLE */

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 70px;
    font-weight: 600;
    line-height: 125%;
    color: #111111;
}

.hero-title span {
    color: #8a8a8a;
}

/* DESCRIPTION */

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 160%;
    color: #333333;
    max-width: 620px;
}

/* BUTTON */

.hero-button {
    width: fit-content;
    padding: 12px 22px;
    background: #111111;
    border: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-button span {
    color: #ffffff;
    font-size: 18px;
}

.hero-button:hover {
    transform: translateY(-2px);
}

/* =========================
   HERO IMAGE
========================= */

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    width:100%;
    max-width:520px;
    height:auto;
    object-fit:contain;
    display:block;
}



/* ========================================
   RESPONSIVE BREAKPOINTS - HERO SECTION
   ======================================== */

/* Extra Large Desktop (1920px) */
@media screen and (min-width: 1920px) {
    .hero-section {
        padding: 130px 240px;
    }
    
    .hero-container {
        max-width: 1680px;
        gap: 100px;
    }
}

/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    
    .hero-section {
        padding: 100px 130px;
    }
    
    .hero-container {
        max-width: 1440px;
        gap: 80px;
    }
    
    .image-frame {
        max-width: 460px;
        height: 660px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    
    .hero-section {
        padding: 100px 130px;
    }
    
    .hero-container {
        max-width: 1200px;
        height: auto;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 58px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .image-frame {
        max-width: 420px;
        height: 600px;
        padding: 26px;
    }
}

/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-section {
        padding: 30px 60px 50px 60px;
    }
    
    .hero-container {
        gap: 50px;
    }
    
    .hero-title {
        font-size: 52px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .image-frame {
        max-width: 380px;
        height: 540px;
        padding: 24px;
    }
}

/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    
    .hero-section {
        padding: 40px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        order: 1;
        max-width: 100%;
    }
    
    .hero-image {
        order: 2;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 52px;
        line-height: 1.2;
        max-width: 100%;
    }
    
    .hero-description {
        font-size: 18px;
        max-width: 100%;
        margin: auto;
    }
    
    .image-frame {
        max-width: 400px;
        height: 570px;
        padding: 22px;
        margin: 0 auto;
    }
    
    .hero-button {
        max-width: 300px;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
    .hero-section {
        padding: 20px 30px 40px 30px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.15;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .image-frame {
        max-width: 100%;
        width: 100%;
        height: auto;
        aspect-ratio: 486 / 700;
        padding: 20px;
    }
    
    .hero-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {
    .hero-section {
        padding: 20px 24px 35px 24px;
    }
    
    .hero-container {
        gap: 35px;
    }
    
    .hero-title {
        font-size: 38px;
        line-height: 1.15;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .image-frame {
        padding: 18px;
    }
    
    .hero-button {
        width: 100%;
        max-width: 140px;
        padding: 13px 20px;
    }
    
    .hero-button span {
        font-size: 16px;
    }
}

/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {
    .hero-section {
        padding: 20px 20px 32px 20px;
    }
    
    .hero-container {
        gap: 32px;
    }
    
    .hero-title {
        font-size: 34px;
        line-height: 1.15;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .image-frame {
        padding: 16px;
    }
}

/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {
    .hero-section {
        padding: 28px 16px 28px 16px;
    }
    
    .hero-container {
        gap: 28px;
    }
    
    .hero-title {
        font-size: 30px;
        line-height: 1.15;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .image-frame {
        padding: 14px;
    }
    
    .hero-button {
        padding: 12px 16px;
    }
    
    .hero-button span {
        font-size: 15px;
    }
}

/* ========================================
   DARK MODE (Optional)
   ======================================== */
/* 
[data-theme="dark"] body {
    background: #0d0d0d;
}

[data-theme="dark"] .hero-section {
    background: #0d0d0d;
}

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

[data-theme="dark"] .hero-description {
    color: #bfbfbf;
}

[data-theme="dark"] .hero-button {
    border-color: #ffffff;
}

[data-theme="dark"] .hero-button span {
    color: #ffffff;
}

[data-theme="dark"] .hero-button .arrow-icon {
    color: #ffffff;
}

[data-theme="dark"] .hero-button:hover {
    background: #ffffff;
    border-color: #ffffff;
}

[data-theme="dark"] .hero-button:hover span {
    color: #000000;
}

[data-theme="dark"] .hero-button:hover .arrow-icon {
    color: #000000;
} */








/* ========================================
   LOGO SECTION STYLES
   ======================================== */
.logo-section {
    width: 100%;
    max-width: 1920px;
    height: 100px;
    background-color: var(--color-white);
    padding-bottom: 100px;
}

.logo-slider-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
    margin-top: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;
    padding-top: -20px;
    padding-bottom: 10px;
    color: var(--color-black-100);
}

.trusted-logos{
    display:flex;
    align-items:center;
    gap: 160px;
    flex-wrap:nowrap;
}

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

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


/* Extra Large Desktop (1920px) */
@media screen and (min-width: 1920px) {
    .trusted-logos{
        gap: 200px;
    }

    .trusted-text {
        font-size: 20px;
    }
}

/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .trusted-logos{
        gap: 150px;
    }

    .trusted-text {
        font-size: 18px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .trusted-logos{
        gap: 100px;
    }

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

/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .trusted-logos{
        gap: 80px;
    }

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

/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .trusted-logos{
        gap: 60px;
    }

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

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
    .trusted-logos{
        gap: 40px;
    }

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

/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {
    .trusted-logos{
        gap: 100px;
    }

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


/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {
    .trusted-logos{
        gap: 50px;
    }

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


/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {
    .trusted-logos{
        gap: 50px;
    }

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








/* ========================================
   Approach SECTION STYLES
   ======================================== */
.Approach {
    width: 100%;
    max-width: 1920px;
    height: 617px;
    padding: 120px 240px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-white-25);
}

.left-text {
    width: 100%;
    max-width: 342px;
    height: 100px;
}   

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

.right-text {
    width:708px;
  height:377px;

  display:flex;
  flex-direction:column;
  justify-content:space-between; 
}

.right-text 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)
}




/* Extra Large Desktop (1920px) */
@media screen and (min-width: 1920px) {
    .Approach {
        padding: 120px 240px;
    }

    .left-text h2 {
        font-size: 40px;
    }

    .right-text p {
        font-size: 18px;
    }
}

    /* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .Approach {
        padding: 100px;
    }

    .left-text h2 {
        font-size: 40px;
    }

    .right-text p {
        font-size: 18px;
    }
}

    /* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .Approach {
        padding: 80px;
    }

    .left-text h2 {
        font-size: 36px;
    }

    .right-text p {
        font-size: 18px;
    }
}


    /* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .Approach {
        padding: 60px;
    }

    .left-text h2 {
        font-size: 32px;
    }

    .right-text {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    } 

    .right-text p {
        font-size: 18px;
    }
}

    /* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .Approach {
        padding: 40px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .left-text h2 {
        width: 100%;
        font-size: 34px;
        margin-top: 0;
        text-align: left;
        margin-left: -172px;
    }

    .right-text {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    } 

    .right-text p {
        font-size: 16px;
    }
}


/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
    .Approach {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: left;
        gap: 20px;
    }

    .left-text h2 {
        width: 342px;
        height: 76px;
        font-size: 28px;
        margin-top: 0;
        text-align: left;
        margin-left: -20px;
    }

    .right-text {
        gap: 10px;
        width: 100%;
    } 

    .right-text p {
        font-size: 15px;
    }
}

/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {
    .Approach {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: left;
        gap: 20px;
    }

    .left-text h2 {
        width: 342px;
        height: 76px;
        font-size: 28px;
        margin-top: 0;
        text-align: left;
        margin-left: -20px;
    }

    .right-text {
        gap: 10px;
        width: 100%;
    } 

    .right-text p {
        font-size: 15px;
    }
}

/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {
    .Approach {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: left;
        gap: 20px;
    }
    
    .left-text h2 {
        width: 342px;
        height: 76px;
        font-size: 28px;
        margin-top: 0;
        text-align: left;
        margin-left: -20px;
    }


    .right-text {
        gap: 10px;
        width: 100%;
    } 

    .right-text p {
        font-size: 15px;
    }
}

/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {
    .Approach {
        padding: 20px;
        height: 710px;
        display: flex;
        flex-direction: column;
        justify-content: left;
        gap: 20px;
    }
    
    .left-text h2 {
        width: 100%;
        height: 76px;
        font-size: 28px;
        margin-top: 0;
        text-align: left;
        margin-left: 0px;
    }
    
    .right-text {
        gap: 10px;
        width: 100%;
    } 

    .right-text p {
        font-size: 15px;
    }
}







/* ========================================
   Branding Services Section STYLES
   ======================================== */
.Services {
    width: 100%;
    max-width: 1920px;
    height: 100%;
    max-height: 1376px;
    padding: 120px 240px;
    gap: 60px;
    background-color: var(--color-white);
}

.Services1 {
    width: 100%;
    max-width: 1440px;
    height: 1120px;
    gap: 60px;
    margin: auto;
}

.Services-text {
    width: 100%;
    max-width: 728px;
    height: 120px;
    gap: 12px;
    margin: auto;
}

.Services1 h2 {
    width: 100%;
    max-width: 728px;
    height: 50px;
    font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 125%;
    letter-spacing: 0%;
    color: var(--color-black-100);
    text-align: center;
    margin: auto;
}

.Services1 p {
    width: 100%;
    max-width: 728px;
    height: 58px;
    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);
    text-align: center;
    margin: auto;
}

.Services-box {
    width: 100%;
    max-width: 1440px;
    height: 956px;  
    gap: 40px;
}

.Services-box1 {
    width: 100%;
    max-width: 1440px;
    height: 956px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding-top: 60px;
    row-gap: 40px;
    column-gap: 24px;
}

.arrow-t {
    margin: auto 0;
}

.services-card1 {
    width: 100%;
    max-width: 464px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.services-card1 img {
    width: 100%;
    max-width: 464px;
    height: 100%;
    max-height: 250px;
}

.text-arrow {
    display: flex;
    justify-content: space-between;
}

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

.services-card1 p {
    height: auto;
    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);
    text-align: left;
    margin: 0;
}


/* Extra Large Desktop (1920px) */
 /* @media screen and (min-width: 1920px) {
    .Services {
        padding: 120px 240px;
    }

    .Services1 {
        width: 100%;
        max-width: 1440px;
        height: 1120px;
        gap: 60px;
        margin: auto;
    }

    .Services-text {
        width: 100%;
        max-width: 728px;
        height: 120px;
        gap: 12px;
        margin: auto;
    }

    .Services-box {
        width: 100%;
        max-width: 1440px;
        height: 956px;  
        gap: 40px;
    }

    .Services-box1 {
        width: 1440px;
        height: 956px;
        gap: 24px;
        display: grid;
        grid-template-columns: repeat(3,1fr);
        padding-top: 60px;
    }

    .services-card1 {
        width: 100%;
        max-width: 464px;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px
    }

    .services-card1 img {
        width: 100%;
        max-width: 464px;
        height: 100%;
        max-height: 250px;
    }

    .text-arrow h3 {
        font-size: 22px;
    }

    .services-card1 p {
        font-size: 18px;
    }
} */

/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .Services {
        padding: 100px;
        width: 100%;
        height: auto;
    }

    .Services1 {
        width: 100%;
        max-width: 1440px;
        height: auto;
    }

    .services-card1 {
        width: 100%;
        height: 100%;
    }

    .Services1 h2 {
        font-size: 40px;
    }

    .Services1 p {
        font-size: 18px;
    }

    .Services-box1 {
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }

    .services-card1 img {
        width: 100%;
        height: 242px;
    }

    .text-arrow h3 {
        font-size: 22px;
    }

    .services-card1 p {
        font-size: 18px;
    }
}


    /* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .Services {
        padding: 60px;
        width: 100%;
        height: auto;
    }

    .Services1 {
        width: 100%;
        max-width: 1440px;
        height: auto;
    }

    .Services1 h2 {
        font-size: 40px;
    }

    .Services1 p {
        font-size: 18px;
    }

    .services-card1 {
        width: 100%;
        max-width: 355px;
    }

    .Services-box1 {
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }

    .services-card1 img {
        width: 100%px;
        height: 214px;
    }

    .text-arrow h3 {
        font-size: 22px;
    }

    .services-card1 p {
        font-size: 18px;
    }
}

    /* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .Services {
        padding: 60px;
        width: 100%;
        height: 1570px;
        max-height: 1570px;
    }

    .Services1 {
        width: 100%;
        max-width: 1440px;
        height: auto;
    }
    

    .Services1 h2 {
        font-size: 35px;
    }

    .Services1 p {
        font-size: 16px;
    }

    .Services-box1 {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        row-gap: 32px;
        column-gap: 105px;
    }

    .services-card1 img {
        width:397px;
        height: 214px;
    }

    .text-arrow h3 {
        font-size: 20px;
    }

    .services-card1 p {
        font-size: 16px;
    }
}
    /* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .Services {
        padding: 40px;
        width: 100%;
        height: 1640px;
        max-height: 1625px;
    }

    .Services1 {
        width: 100%;
        max-width: 1440px;
        height: auto;
    }
    
    .services-card1 {
        width: 100%;
        max-width: 332px;
        height: 100%;
    }

    .Services1 h2 {
        font-size: 35px;
    }

    .Services1 p {
        font-size: 16px;
    }

    .Services-box1 {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        row-gap: 40px;
        column-gap: 24px;
    }

    .services-card1 img {
        width: 100%;
        height: 214px;
    }

    .text-arrow h3 {
        font-size: 20px;
    }

    .services-card1 p {
        font-size: 16px;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
    .Services {
        padding: 40px;
        width: 100%;
        height: 1640px;
        max-height: 1635px;
    }

    .Services1 {
        width: 100%;
        max-width: 1440px;
        height: auto;
    }
    
    .services-card1 {
        width: 100%;
        max-width: 332px;
        height: 100%;
    }

    .Services1 h2 {
        font-size: 35px;
    }

    .Services1 p {
        font-size: 16px;
    }

    .Services-box1 {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        row-gap: 40px;
        column-gap: 24px;
    }

    .services-card1 img {
        width: 100%;
        height: 214px;
    }

    .text-arrow h3 {
        font-size: 20px;
    }

    .services-card1 p {
        font-size: 16px;
    }
}

/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {
    .Services {
        padding: 40px;
        width: 100%;
        height: 1742px;
        max-height: 1750px;
    }

    .Services1 {
        width: 100%;
        max-width: 1440px;
        height: auto;
    }
    
    .services-card1 {
        width: 100%;
        max-width: 332px;
        height: 100%;
    }

    .Services1 h2 {
        font-size: 35px;
    }

    .Services1 p {
        font-size: 16px;
    }

    .Services-box1 {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        row-gap: 40px;
        column-gap: 24px;
    }

    .services-card1 img {
        width: 100%;
        height: 214px;
    }

    .text-arrow h3 {
        font-size: 20px;
    }

    .services-card1 p {
        font-size: 16px;
    }
}

/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {
    .Services {
        padding: 20px;
        width: 100%;
        height: 2935px;
        max-height: 3100px;
    }

    .Services1 {
        width: 100%;
        max-width: 1440px;
        height: auto;
    }
    
    .services-card1 {
        width: 100%;
        max-width: 332px;
        height: 100%;
        margin: auto;
    }

    .Services1 h2 {
        font-size: 35px;
    }

    .Services1 p {
        font-size: 16px;
        margin-top: 45px;
    }

    .Services-box1 {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        row-gap: 40px;
        column-gap: 24px;
    }

    .services-card1 img {
        width: 100%;
        height: 214px;
    }

    .text-arrow h3 {
        font-size: 20px;
    }

    .services-card1 p {
        font-size: 16px;
        margin-top: 0;
    }
}
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {
    .Services {
        padding: 20px;
        width: 100%;
        height: 3030px;
        max-height: 3100px;
    }

    .Services1 {
        width: 100%;
        max-width: 1440px;
        height: auto;
    }
    
    .services-card1 {
        width: 100%;
        max-width: 332px;
        height: 100%;
    }

    .Services1 h2 {
        font-size: 35px;
    }

    .Services1 p {
        font-size: 16px;
        margin-top: 45px;
    }

    .Services-box1 {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        row-gap: 40px;
        column-gap: 24px;
    }

    .services-card1 img {
        width: 100%;
        height: 214px;
    }

    .text-arrow h3 {
        font-size: 20px;
    }

    .services-card1 p {
        font-size: 16px;
        margin-top: 0;
    }
}






/* ========================================
   Problems Section STYLES
   ======================================== */
.problems {
    width: 100%;
    max-width: 1920px;
    height: auto;
    min-height: 926px;
    padding: 120px 240px;
    gap: 60px;
    background-color: var(--color-white-25);
}

.problems1 {
    width: 100%;
    max-width: 1440px;
    height: auto;
    margin: auto;
}

.main-text {
    width: 100%;
    max-width: 708px;
    height: auto;
    margin: auto;
}

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

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

.problems-box {
    width: 100%;
    max-width: 1440px;
    height: auto;
    min-height: 508px;
    gap: 24px;
}

.problems-box1 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding-top: 60px;
    gap: 24px;
}

.problems-card1 {
    width: 100%;
    max-width: 464px;
    height: 241px;
    padding: 30px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    padding: 15px;
    background-color: var(--color-white);
}

.problems-card1 h3 {
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-black-100);
}

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




/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .problems {
        padding: 100px;
    }

    .main-text h2 {
        font-size: 40px;
    }

    .main-text p {
        font-size: 18px;
    }

    .problems-card1 h3 {
        font-size: 22px;
    }

    .problems-card1 p {
        font-size: 18px;
    }
}


/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .problems {
        padding: 60px;
        min-height: 800px;
        margin-top: 60px;
    }

    .main-text h2 {
        font-size: 35px;
    }

    .main-text p {
        font-size: 16px;
    }

    .problems-card1 h3 {
        font-size: 20px;
    }

    .problems-card1 p {
        font-size: 16px;
    }
}
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .problems {
        padding: 60px;
        min-height: 800px;
    }   

    .problems-card1 {
        width: 100%;
        max-width: 464px;
        height: 275px;
    }

    .main-text h2 {
        font-size: 40px;
    }

    .main-text p {
        font-size: 18px;
    }

    .problems-card1 h3 {
        font-size: 22px;
    }

    .problems-card1 p {
        font-size: 18px;
    }
}
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .problems {
        padding: 60px;
        min-height: 800px;
    }

    .problems-box1 {
        grid-template-columns: repeat(2,1fr);
        gap: 24px;
    }
    
    .problems-card1 {
        width: 100%;
        max-width: 332px;
        height: 251px;
    }
    
    .main-text h2 {
        font-size: 40px;
    }

    .main-text p {
        font-size: 16px;
    }

    .problems-card1 h3 {
        font-size: 20px;
    }

    .problems-card1 p {
        font-size: 16px;
    }
}


/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
    .problems {
        padding: 40px;
        min-height: 800px;
    }

    .problems-box1 {
        grid-template-columns: repeat(2,1fr);
        gap: 24px;
    }

    .problems-card1 {
        width: 100%;
        max-width: 332px;
        height: 251px;
    }
    
    .main-text h2 {
        font-size: 40px;
    }

    .main-text p {
        font-size: 16px;
    }

    .problems-card1 h3 {
        font-size: 20px;
    }

    .problems-card1 p {
        font-size: 16px;
    }
}

/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {
    .problems {
        padding: 40px;
        min-height: 800px;
    }

    .problems-box1 {
        grid-template-columns: repeat(2,1fr);
        gap: 24px;
    }

    .problems-card1 {
        width: 100%;
        max-width: 332px;
        height: 310px;
    }
    
    .main-text h2 {
        font-size: 40px;
    }

    .main-text p {
        font-size: 16px;
    }

    .problems-card1 h3 {
        font-size: 20px;
    }

    .problems-card1 p {
        font-size: 16px;
    }
}


/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {
    .problems {
        padding: 40px;
        min-height: 800px;
    }

    .problems-box1 {
        grid-template-columns: repeat(1,1fr);
        gap: 24px;
    }

    .problems-card1 {
        width: 100%;
        max-width: 332px;
        height: 251px;
    }
    
    .main-text h2 {
        font-size: 28px;
    }

    .main-text p {
        font-size: 15px;
    }

    .problems-card1 h3 {
        font-size: 18px;
    }

    .problems-card1 p {
        font-size: 15px;
    }
}

/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {
    .problems {
        padding: 40px;
        min-height: 800px;
    }

    .problems-box1 {
        grid-template-columns: repeat(1,1fr);
        gap: 24px;
    }

    .problems-card1 {
        width: 100%;
        max-width: 332px;
        height: 251px;
    }

    .main-text h2 {
        font-size: 28px;
    }

    .main-text p {
        font-size: 15px;
    }

    .problems-card1 h3 {
        font-size: 18px;
    }

    .problems-card1 p {
        font-size: 15px;
    }
}







/* !=========first page =============  */
.Built {
    width: 100%;
    max-width: 1920px;
    height: 100%;
    min-height: 845px;
    padding: 120px 240px;
    gap: 10px;
    background: var(--color-black-100);
}

.Built-text {
    width: 100%;
    max-width: 609px;
    height: 91px;
}

.Built-text h1 {
    width: 100%;
    max-width: 609px;
    font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 125%;
    letter-spacing: 0%;
    color: var(--color-white-25);
}
 
.Built-text p{
    width: 100%;
    max-width: 609px;
    height: 29px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--color-white-50);
}

.Built-card {
    width: 100%;
    max-width: 1440px;
    height: 470px;
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding-top: 60px;
}

.Built-text1 {
    width: 100%;
    max-width: 330px;
    height: 100%;
    min-height: 410px;
    padding: 40px;
    border: 1px solid var(--color-black-300);
    background-color: var(--color-black-100);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

    /* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .Built {
        width: 100%;
        height: 100%;
        padding: 100px;
    }

    .Built-card {
        width: 100%;
        height: 475px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .Built {
        width: 100%;
        min-height: 682px;
        padding: 60px;
    }
}

    /* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .Built {
        padding: 60px;
        height: 100%;
        min-height: 1055px;
        margin: auto;
    }

    .Built-text1 {
        height: 90%;
        min-height: 370px;
        margin: auto;
    }

    .Built-card {
        height: 840px;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        padding-top: 20px;
    }

    .Built-text h1 {
        font-size: 34px;
    }

    .Built-text p {
        font-size: 16px;
    }

    .Built-text1 h1 {
        font-size: 20px;
    }

    .Built-text1 p {
        font-size: 16px;
    }

}


/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .Built {
        padding: 60px;
        height: 100%;
        min-height: 1055px;
        margin: auto;
    }

    .Built-text1 {
        height: 90%;
        min-height: 370px;
        margin: auto;
    }

    .Built-card {
        height: 840px;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        padding-top: 20px;
    }

    .Built-text h1 {
        font-size: 34px;
    }

    .Built-text p {
        font-size: 16px;
    }

    .Built-text1 h1 {
        font-size: 20px;
    }

    .Built-text1 p {
        font-size: 16px;
    }
}  

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
    .Built {
        padding: 40px;
        height: 100%;
        min-height: 1055px;
        margin: auto;
    }

    .Built-text1 {
        height: 90%;
        min-height: 370px;
        margin: auto;
    }

    .Built-card {
        height: 840px;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        padding-top: 20px;
    }

    .Built-text {
        width: 100%;
        max-width: 510px;
    }

    .Built-text h1 {
        width: 100%;
        max-width: 510px;
        font-size: 34px;
    }

    .Built-text p {
        width: 100%;
        max-width: 510px;
        font-size: 16px;
    }

    .Built-text1 h1 {
        font-size: 20px;
    }

    .Built-text1 p {
        font-size: 16px;
    }

}

/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {
    .Built {
        padding: 40px;
        height: 100%;
        min-height: 999px;
        margin: auto;
    }

    .Built-text1 {
        height: 90%;
        min-height: 370px;
        margin: auto;
    }

    .Built-card {
        height: 840px;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        padding-top: 20px;
    }

    .Built-text {
        width: 100%;
        max-width: 510px;
    }

    .Built-text h1 {
        width: 100%;
        max-width: 510px;
        font-size: 34px;
    }

    .Built-text p {
        width: 100%;
        max-width: 510px;
        font-size: 16px;
    }

    .Built-text1 h1 {
        font-size: 20px;
    }

    .Built-text1 p {
        font-size: 16px;
    }

}

/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {
    .Built {
        padding: 40px;
        height: 100%;
        min-height: 1700px;
        margin: auto;
    }

    .Built-text1 {
        height: 90%;
        min-height: 335px;
        margin: auto;
    }

    .Built-card {
        height: 1480px;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        padding-top: 70px;
    }

    .Built-text {
        width: 100%;
        max-width: 320px;
    }

    .Built-text h1 {
        width: 100%;
        max-width: 395px;
        font-size: 34px;
    }

    .Built-text p {
        width: 100%;
        max-width: 395px;
        font-size: 16px;
    }

    .Built-text1 h1 {
        font-size: 20px;
    }

    .Built-text1 p {
        font-size: 16px;
    }

}

/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {
        .Built {
        padding: 40px;
        height: 100%;
        min-height: 1653px;
        margin: auto;
    }

    .Built-text1 {
        height: 90%;
        min-height: 330px;
        margin: auto;
    }

    .Built-card {
        height: 1510px;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        padding-top: 70px;
    }

    .Built-text {
        width: 100%;
        max-width: 290px;
    }

    .Built-text h1 {
        width: 100%;
        max-width: 290px;
        font-size: 34px;
    }

    .Built-text p {
        width: 100%;
        max-width: 290px;
        font-size: 16px;
    }

    .Built-text1 h1 {
        font-size: 20px;
    }

    .Built-text1 p {
        font-size: 16px;
    }

}

/* !=========first page =============  */






/* !=========first page =============  */
.view-project {
    width: 100%;
    max-width: 1920px;
    height: 100%;
    min-height: 2604px;
}

.our-work {
    width: 100%;
    max-width: 1920px;
    height: 100%;
    min-height: 300px;
    background-color: var(--color-white);
    padding-top: 120px;
}

.our-work h2 {
    width: 100%;
    max-width: 708px;
    height: 100%;
    font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-black-100);
    margin: auto;
}

.our-work p {
    width: 100%;
    max-width: 708px;
    height: 100%; 
    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-200);
    margin: auto;
}

.kaiso,
 .Trainer,
 .Cart{
    width: 100%;
    max-width: 1920px;
    height: 100%;
    min-height: 768px;
    padding: 120px 240px;
    display: flex;
    justify-content: space-between;
}

.kaiso {
    background-color: var(--color-white-25);
}

.Trainer {
    background-color: var(--color-white);
}

.Cart {
    background-color: var(--color-white-25);
}

.kaiso-text,
.Trainer-text,
.Cart-text {
    width: 100%;
    max-width: 464px;
    height: 100%;
    min-height: 235px;
    gap: 20px;
}

.kaiso-text h3,
.Trainer-text h3,
.Cart-text h3 {
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-black-100);
    margin-bottom: 10px;
}

.kaiso-text p,
.Trainer-text p,
.Cart-text p{
    width: 100%;
    max-width: 464px;
    font-family:'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--color-black-100);
    margin-bottom: 20px;
}

.kaiso-btn,
.Trainer-btn,
.Cart-btn {
    width: 100%;
    max-width: 180px;
    height: 46px;
    border-radius: 8px;
    padding: 12px 28px;
    background-color: var(--color-black-100);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.2%;
    text-align: center;
    text-transform: capitalize;
    color: var(--color-white);
}

.kaiso-img img,
.Trainer-img img,
.Cart-img img {
    width: 100%;
    max-width: 830px;
    height: 100%;
    min-height: 528px;
}

/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
.view-project {
    width: 100%;
    height: 100%;
    min-height: 2495px;
}
    .our-work{
        width: 100%;
        padding-top: 100px;
    }

.kaiso,
 .Trainer,
 .Cart {
    padding: 100px;
    width: 100%;
    height: 100%;
    min-height: 730px;
 } 

 .kaiso-img img,
.Trainer-img img,
.Cart-img img {
    width: 716px;
    height: 235px;
}
}


/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
.view-project {
    width: 100%;
    height: 100%;
    min-height: 2255px;
}

.our-work{
    width: 100%;
    padding-top: 80px;
}

.kaiso, 
.Trainer, 
.Cart {
    padding: 60px;
    width: 100%;
    height: 100%;
    min-height: 650px;
 } 

 .kaiso-img img,
.Trainer-img img,
.Cart-img img {
    width: 716px;
    height: 235px;
}
}


/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
.view-project {
    width: 100%;
    height: 100%;
    min-height: 2255px;
}

.our-work{
    width: 100%;
    padding-top: 80px;
}

.kaiso, 
.Trainer, 
.Cart {
    padding: 60px;
    width: 100%;
    height: 100%;
    min-height: 650px;
 } 

 .kaiso-img img,
.Trainer-img img,
.Cart-img img {
    object-fit: cover;
}
}

/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
.view-project {
    width: 100%;
    height: 100%;
    min-height: 2255px;
}

.our-work{
    width: 100%;
    padding-top: 40px;
    min-height: 180px;
}

.our-work h2 {
    font-size: 34px;
}

.our-work p{
    font-size: 16px;
}

.kaiso, 
.Trainer, 
.Cart {
    padding: 60px;
    width: 100%;
    height: 100%;
    min-height: 650px;
    flex-direction: column;
 } 

.kaiso-text, .Trainer-text, .Cart-text {
    min-height: 183px;
}

 .kaiso-text h3,
.Trainer-text h3,
.Cart-text h3  {
    font-size: 20px;
}

.kaiso-text p,
.Trainer-text p,
.Cart-text p {
    font-size: 28px;
}

.kaiso-img img,
.Trainer-img img,
.Cart-img img {
    max-width: 688px;
    min-height: 437px;
    object-fit: cover;
}
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
.view-project {
    width: 100%;
    height: 100%;
    min-height: 2255px;
}

.our-work{
    width: 100%;
    padding-top: 40px;
    min-height: 180px;
}

.our-work h2 {
    font-size: 34px;
}

.our-work p{
    font-size: 16px;
}

.kaiso, 
.Trainer, 
.Cart {
    padding: 40px;
    width: 100%;
    height: 100%;
    min-height: 650px;
    flex-direction: column;
 } 

.kaiso-text, .Trainer-text, .Cart-text {
    min-height: 183px;
}

 .kaiso-text h3,
.Trainer-text h3,
.Cart-text h3  {
    font-size: 20px;
}

.kaiso-text p,
.Trainer-text p,
.Cart-text p {
    font-size: 28px;
}

.kaiso-img img,
.Trainer-img img,
.Cart-img img {
    max-width: 688px;
    min-height: 437px;
    object-fit: cover;
}
}

/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {
.view-project {
    width: 100%;
    height: 100%;
    min-height: 2255px;
}

.our-work{
    width: 100%;
    padding-top: 40px;
    min-height: 180px;
}

.our-work h2 {
    font-size: 34px;
}

.our-work p{
    font-size: 16px;
}

.kaiso, 
.Trainer, 
.Cart {
    padding: 40px;
    width: 100%;
    height: 100%;
    min-height: 650px;
    flex-direction: column;
 } 

.kaiso-text, .Trainer-text, .Cart-text {
    min-height: 183px;
}

 .kaiso-text h3,
.Trainer-text h3,
.Cart-text h3  {
    font-size: 20px;
}

.kaiso-text p,
.Trainer-text p,
.Cart-text p {
    font-size: 28px;
}

.kaiso-img img,
.Trainer-img img,
.Cart-img img {
    max-width: 688px;
    min-height: 437px;
    object-fit: cover;
}
}

/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {
.view-project {
    width: 100%;
    height: 100%;
    min-height: 1255px;
}

.our-work{
    width: 100%;
    max-width: 390px;
    padding: 40px 20px 0 20px;
    min-height: 125px;
}

.our-work h2 {
    font-size: 34px;
}

.our-work p{
    font-size: 16px;
}

.kaiso, 
.Trainer, 
.Cart {
    padding: 20px;
    width: 100%;
    height: 100%;
    min-height: 490px;
    flex-direction: column;
 } 

.kaiso-text, .Trainer-text, .Cart-text {
    min-height: 204px;
    max-width: 350px;
}

 .kaiso-text h3,
.Trainer-text h3,
.Cart-text h3  {
    font-size: 20px;
}

.kaiso-text p,
.Trainer-text p,
.Cart-text p {
    font-size: 28px;
}

.kaiso-img img,
.Trainer-img img,
.Cart-img img {
    max-width: 350px;
    min-height: 222px;
}
}

/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {
    .view-project {
    width: 100%;
    height: 100%;
    min-height: 1255px;
}

.our-work{
    width: 100%;
    max-width: 390px;
    padding: 40px 20px 0 20px;
    min-height: 125px;
}

.our-work h2 {
    font-size: 34px;
}

.our-work p{
    font-size: 16px;
}

.kaiso, 
.Trainer, 
.Cart {
    padding: 20px;
    width: 100%;
    height: 100%;
    min-height: 490px;
    flex-direction: column;
 } 

.kaiso-text, .Trainer-text, .Cart-text {
    min-height: 204px;
    max-width: 350px;
}

 .kaiso-text h3,
.Trainer-text h3,
.Cart-text h3  {
    font-size: 20px;
}

.kaiso-text p,
.Trainer-text p,
.Cart-text p {
    font-size: 28px;
}

.kaiso-img img,
.Trainer-img img,
.Cart-img img {
    max-width: 350px;
    min-height: 222px;
}
}


/* !=========first page =============  */










/* !=========first page =============  */
/* Section */
.branding{
    width:100%;
    max-width: 1920px;
    height: 100%;
    min-height: 645px;
    padding: 120px 240px;
    background-color: var(--color-black-75);
}

/* Container */
.branding-container{
    max-width:1920px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Left Text */
.branding-text{
    width: 100%;
    max-width:586px;
    height: 100%;
    min-height: 100px;
}

.branding-text h2{
    font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 125%;
    letter-spacing: 0%;
    color: var(--color-white-25);
    margin-bottom:20px;
}

.branding-text p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--color-white-50);
    margin-bottom:25px;
}

.brand-btn{
    width: 100%;
    max-width: 260px;
    height: 46px;
    padding:12px 28px;
    border: 0.5px solid var(--color-white);
    background:transparent;
    color: var(--color-white);
    border-radius: 8px;
    cursor:pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 114.99999999999999%;
    letter-spacing: 0.2%;
    text-align: center;
    text-transform: capitalize;
}

/* Right Image */
.branding-image{
    position:relative;
    
}

.branding-image img{
    width:100%;
    max-width: 708px;
    height: 100%;
    min-height: 450px;
}

/* Tags */
.tag{
    position:absolute;
    padding:13px 30px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
}

/* Tag colors */
.tag1{
    background:var(--color-green-200);
    color: var(--color-white-25);
    top:40px;
    left:-70px;
}

.tag2{
    background: var(--color-yellow-200);
    color: var(--color-white-25);
    top:98px;
    left:-30px;
}

.tag3{
    background: var(--color-Orange-200);
    color: var(--color-white-25);
    top:156px;
    left:-80px;
}

/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .branding {
        padding: 100px;
        min-height: 580px;
    }

    .branding-text {
        max-width: 492px;
    }

    .branding-image img {
        max-width: 598px;
        min-height: 380px
    }
}


/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .branding {
        padding: 60px;
        min-height: 500px;
    }

    .branding-text {
        max-width: 492px;
    }

    .branding-image img {
        max-width: 598px;
        min-height: 380px
    }
}

/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .branding {
        padding: 60px;
        min-height: 500px;
    }

    .branding-text {
        max-width: 400px;
    }

    .branding-image img {
        max-width: 447px;
        min-height: 380px
    }
}

/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .branding {
        padding: 60px;
    }

    .branding-container {
        flex-direction: column;
    }

    .branding-text {
        margin-right: 60px;
    }

    .branding-text h2{
        font-size: 34px;
    }

    .branding-text p {
        font-size: 16px;
    }

    .branding-image {
        margin-left: 58px;
        margin-top: 40px;
    }

    .branding-image img {
        max-width: 587px;
        min-height: 373px;
    }     
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
        .branding {
        padding: 20px;
    }

    .branding-container {
        flex-direction: column;
    }

    .branding-text h2{
        font-size: 34px;
    }

    .branding-text p {
        font-size: 16px;
    }

    .branding-image {
        margin-left: 58px;
        margin-top: 40px;
    }

    .branding-image img {
        max-width: 276px;
        min-height: 235px;
    }   
    
    .tag {
        padding: 8px 21px;
        width: 80%;
        max-width: 170px;
        font-size: 12px;
    }
    
    .tag1 {
        top: 10px;
        left: -75px;
    }

    .tag2 {
        top: 50px;
        left: -75px;
    }

    .tag3 {
        top: 90px;
        left: -75px;
    }
}
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {
            .branding {
        padding: 20px;
    }

    .branding-container {
        flex-direction: column;
    }

    .branding-text h2{
        font-size: 34px;
    }

    .branding-text p {
        font-size: 16px;
    }

    .branding-image {
        margin-left: 58px;
        margin-top: 40px;
    }

    .branding-image img {
        max-width: 276px;
        min-height: 235px;
    }   
    
    .tag {
        padding: 8px 21px;
        width: 80%;
        max-width: 170px;
        font-size: 12px;
    }
    
    .tag1 {
        top: 10px;
        left: -75px;
    }

    .tag2 {
        top: 50px;
        left: -75px;
    }

    .tag3 {
        top: 90px;
        left: -75px;
    }
}

/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {
        .branding {
        padding: 20px;
    }

    .branding-container {
        flex-direction: column;
    }

    .branding-text h2{
        font-size: 34px;
    }

    .branding-text p {
        font-size: 16px;
    }

    .branding-image {
        margin-left: 58px;
        margin-top: 40px;
    }

    .branding-image img {
        max-width: 276px;
        min-height: 235px;
    }   
    
    .tag {
        padding: 8px 21px;
        width: 80%;
        max-width: 170px;
        font-size: 12px;
    }
    
    .tag1 {
        top: 10px;
        left: -75px;
    }

    .tag2 {
        top: 50px;
        left: -75px;
    }

    .tag3 {
        top: 90px;
        left: -75px;
    }
}

/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {
            .branding {
        padding: 20px;
    }

    .branding-container {
        flex-direction: column;
    }

    .branding-text h2{
        font-size: 34px;
    }

    .branding-text p {
        font-size: 16px;
    }

    .branding-image {
        margin-left: 58px;
        margin-top: 40px;
    }

    .branding-image img {
        max-width: 276px;
        min-height: 235px;
    }   
    
    .tag {
        padding: 8px 21px;
        width: 80%;
        max-width: 170px;
        font-size: 12px;
    }
    
    .tag1 {
        top: 10px;
        left: -75px;
    }

    .tag2 {
        top: 50px;
        left: -75px;
    }

    .tag3 {
        top: 90px;
        left: -75px;
    }
}
/* !=========first page =============  */









/* !=========first page =============  */
.Explore {
    width: 1920px;
    height: 1160px;
    padding: 140px 240px;
    background-color: var(--color-white);
}

.Explore1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 1440px;
    height: 900px;
    gap: 146px;
}

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

    position: sticky;
    top: 120px;
}

.Explore-left h2{
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 46px;
    line-height: 125%;
    letter-spacing: 0%;
    color: var(--color-black-100);
}

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

.Explore-right {
    width: 100%;
    max-width: 830px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.explore-icon {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    padding: 14px;
    background-color: var(--color-white);
}

.icon-explore {
    width: 36px;
    height: 36px;
}

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

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

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

.view a{
    color: var(--color-blue-500);
    text-decoration: none;
}

.view:hover {
    gap: 12px;
}

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

.view:hover::after {
    transform: translateX(4px);
}

@media (max-width:1669px){

    .Explore{
        width:100%;
        height:auto;
        padding:130px 180px;
    }

    .Explore1{
        width:100%;
        max-width:1300px;
        height:auto;
        gap:100px;
        margin:auto;
    }

    .Explore-left{
        width:420px;
    }

    .Explore-left h2{
        font-size:42px;
    }

    .Explore-left p{
        font-size:17px;
    }

    .Explore-right{
        max-width:750px;
    }

}

@media (max-width:1500px){

    .Explore{
        padding:120px 120px;
    }

    .Explore1{
        max-width:1200px;
        gap:80px;
    }

    .Explore-left{
        width:380px;
    }

    .Explore-left h2{
        font-size:40px;
    }

    .Explore-right{
        max-width:700px;
        gap:30px;
    }

    .Explore-card{
        padding:25px;
        gap:25px;
    }

    .Explore-card h1{
        font-size:20px;
    }

    .Explore-card p{
        font-size:17px;
    }

}

@media (max-width: 1440px) {

  /* Container */
  .Explore {
    width: 100%;
    padding: 120px 80px; /* reduce padding */
    height: auto;
  }

  .Explore1 {
    width: 100%;
    max-width: 1320px; /* fits within smaller desktop */
    gap: 120px;
  }

  /* Left Column */
  .Explore-left {
    width: 100%;
    max-width: 420px; /* shrink slightly */
    top: 100px;
  }

  .Explore-left h2 {
    font-size: 40px; /* slightly smaller */
  }

  .Explore-left p {
    font-size: 16px;
  }

  /* Right Column */
  .Explore-right {
    width: 100%;
    max-width: 800px; /* slightly smaller */
    gap: 30px;
  }

  .Explore-card {
    padding: 24px; /* smaller padding */
  }

  .explore-icon {
    width: 56px;
    height: 56px;
    padding: 12px;
  }

  .icon-explore {
    width: 32px;
    height: 32px;
  }

  .Explore-card h1 {
    font-size: 20px;
  }

  .Explore-card p {
    font-size: 16px;
  }

  .view {
    font-size: 16px;
  }

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

}

@media (max-width: 1024px) {

  /* Container */
  .Explore {
    width: 100%;
    padding: 100px 40px;
    height: auto;
  }

  .Explore1 {
    width: 100%;
    max-width: 100%;
    flex-direction: column;  /* Stack left + right */
    gap: 60px;
    height: auto;
  }

  /* Left side */
  .Explore-left {
    width: 100%;
    max-width: 100%;
    position: relative;  /* remove sticky for smaller screens */
    top: 0;
    gap: 10px;
  }

  .Explore-left h2 {
    font-size: 36px;
    line-height: 130%;
  }

  .Explore-left p {
    font-size: 16px;
    line-height: 150%;
  }

  /* Right side */
  .Explore-right {
    width: 100%;
    max-width: 100%;
    gap: 20px;
  }

  /* Cards */
  .Explore-card {
    width: 100%;
    padding: 20px;
    gap: 20px;
  }

  .Explore-card h1 {
    font-size: 20px;
  }

  .Explore-card p {
    font-size: 16px;
  }

  /* Icons */
  .explore-icon {
    width: 56px;
    height: 56px;
    padding: 12px;
  }

  .icon-explore {
    width: 32px;
    height: 32px;
  }

  /* View link */
  .view {
    font-size: 16px;
  }

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

}

@media (max-width: 768px) {

  /* Container */
  .Explore {
    width: 100%;
    padding: 80px 20px;
    height: auto;
  }

  .Explore1 {
    flex-direction: column;
    width: 100%;
    gap: 40px;
    height: auto;
  }

  /* Left Column */
  .Explore-left {
    width: 100%;
    height: auto;
    position: static; /* remove sticky */
    top: auto;
    gap: 12px;
    text-align: center;
  }

  .Explore-left h2 {
    font-size: 32px;
    line-height: 130%;
  }

  .Explore-left p {
    font-size: 16px;
    line-height: 150%;
  }

  /* Right Column */
  .Explore-right {
    width: 100%;
    max-width: 100%;
    gap: 20px;
  }

  /* Cards */
  .Explore-card {
    width: 100%;
    padding: 20px;
  }

  .Explore-card h1 {
    font-size: 20px;
  }

  .Explore-card p {
    font-size: 16px;
  }

  .explore-icon {
    width: 48px;
    height: 48px;
    padding: 10px;
  }

  .icon-explore {
    width: 28px;
    height: 28px;
  }

  /* View link */
  .view {
    font-size: 16px;
  }

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

@media (max-width: 425px) {

  /* Container */
  .Explore {
    width: 100%;
    height: auto;
    padding: 60px 16px;
  }

  .Explore1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
    height: auto;
  }

  /* Left Column */
  .Explore-left {
    width: 100%;
    height: auto;
    position: static; /* remove sticky for mobile */
    top: auto;
    gap: 8px;
  }

  .Explore-left h2 {
    font-size: 24px;
    line-height: 130%;
  }

  .Explore-left p {
    font-size: 14px;
    line-height: 150%;
  }

  /* Right Column */
  .Explore-right {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  /* Explore Cards */
  .Explore-card {
    width: 100%;
    padding: 20px;
    gap: 20px;
  }

  .explore-icon {
    width: 50px;
    height: 50px;
    padding: 10px;
  }

  .icon-explore {
    width: 28px;
    height: 28px;
  }

  .Explore-card h1 {
    font-size: 18px;
  }

  .Explore-card p {
    font-size: 14px;
    line-height: 150%;
  }

  /* View link */
  .view {
    font-size: 14px;
  }

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

}

@media (max-width: 375px) {

  /* Container */
  .Explore {
    width: 100%;
    height: auto;
    padding: 60px 16px;
  }

  .Explore1 {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 40px;
  }

  /* Left column */
  .Explore-left {
    width: 100%;
    height: auto;
    position: static; /* remove sticky */
    top: 0;
    gap: 8px;
  }

  .Explore-left h2 {
    font-size: 24px;
    line-height: 130%;
  }

  .Explore-left p {
    font-size: 14px;
    line-height: 150%;
  }

  /* Right column */
  .Explore-right {
    width: 100%;
    max-width: 100%;
    gap: 20px;
  }

  /* Cards */
  .Explore-card {
    width: 100%;
    padding: 20px;
    gap: 16px;
  }

  .explore-icon {
    width: 48px;
    height: 48px;
    padding: 10px;
  }

  .icon-explore {
    width: 28px;
    height: 28px;
  }

  .Explore-card h1 {
    font-size: 18px;
  }

  .Explore-card p {
    font-size: 14px;
    line-height: 150%;
  }

  /* View link */
  .view {
    font-size: 14px;
  }

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

}

@media (max-width: 320px) {

  /* Container */
  .Explore {
    width: 100%;
    height: auto;
    padding: 40px 16px;
  }

  .Explore1 {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 30px;
  }

  /* Left Column */
  .Explore-left {
    width: 100%;
    height: auto;
    position: relative; /* remove sticky */
    top: 0;
    gap: 8px;
  }

  .Explore-left h2 {
    font-size: 22px;
    line-height: 130%;
  }

  .Explore-left p {
    font-size: 14px;
    line-height: 150%;
  }

  /* Right Column */
  .Explore-right {
    width: 100%;
    max-width: 100%;
    gap: 20px;
  }

  .Explore-card {
    width: 100%;
    padding: 16px;
    gap: 16px;
  }

  .explore-icon {
    width: 48px;
    height: 48px;
    padding: 10px;
  }

  .icon-explore {
    width: 24px;
    height: 24px;
  }

  .Explore-card h1 {
    font-size: 18px;
  }

  .Explore-card p {
    font-size: 14px;
    line-height: 150%;
  }

  .view {
    font-size: 14px;
    gap: 2px;
  }

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

  .view:hover {
    gap: 6px;
  }

}

/* !=========first page =============  */








/* !=========first page =============  */
/* SECTION */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 362px;
  background-color: var(--color-black-100);
  width: 1920px;
  height: 906px;
}

.container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 60px;
}

/* LEFT SIDE */
.left {
  flex: 1;
  width: 501px;
  height: 576px;
  gap: 20px;
    margin-left: -60px;
}

.left h1 {
  font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 46px;
    line-height: 125%;
    letter-spacing: 0%;
    color: var(--color-white);
    text-align: left;
}

.left p {
    width: 500px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: left;
    color: var(--color-white);
    padding-top: 15px;
}

.left img {
  margin-top: 30px;
  width: 100%;
  max-width: 446px;
  height: 341px;
}

/* RIGHT SIDE (FORM) */
.form-box {
  flex: 1;
  width: 630px;
  height: 626px;
  background: var(--color-white);
  padding: 40px;
}

/* INPUT */
.input-group {
  margin-bottom: 20px;
}

.input-group label {
  font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--color-black-100);
  display: block;
  margin-bottom: 5px;
}

.input-group input,
.input-group select {
  width: 100%;
  border: none;
  border-bottom: 0.5px solid var(--color-black-100);
  padding: 8px;
  background: transparent;
  outline: none;
  font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--color-black-200);
}

.input-group textarea {
      width: 100%;
      height: 69px;
  border: none;
  border-bottom: 0.5px solid var(--color-black-100);
  padding: 8px;
  background: transparent;
  outline: none;
  font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--color-black);
}

/* TWO COLUMN */
.row {
  display: flex;
  gap: 20px;
}

.file-text {
  display: flex;
  justify-content: space-between;
   border-bottom: 1px solid var(--color-white-200);
}

.row .input-group {
  flex: 1;
}

.input-group span {
  color: var(--color-red);
}

/* FILE UPLOAD */
.file-upload h2 {
  padding: 10px 0;
  cursor: pointer;
  color: var(--color-black-200);
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-style: Regular;
  line-height: 160%;
  letter-spacing: 0%;
  vertical-align: middle;
}

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

.form-footer small {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--color-black-500);
}

.form-footer a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-transform: lowercase;
  color: var(--color-blue-500);
  text-decoration: none;
}

/* BUTTON */
.send-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 80px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--color-white);
    background-color: var(--color-green-700);
}

@media (max-width:1669px){

  .contact-section{
    width:100%;
    height:auto;
    padding:130px 200px;
  }

  .container{
    max-width:1100px;
    gap:50px;
  }

  .left{
    width:460px;
    margin-left:0;
  }

  .left h1{
    font-size:42px;
  }

  .left p{
    width:100%;
    font-size:17px;
  }

  .form-box{
    width:580px;
    height:auto;
  }

}

@media (max-width:1500px){

  .contact-section{
    padding:120px 140px;
  }

  .container{
    max-width:1000px;
    gap:40px;
  }

  .left{
    width:420px;
  }

  .left h1{
    font-size:40px;
  }

  .left img{
    max-width:400px;
    height:auto;
  }

  .form-box{
    width:520px;
    padding:35px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea{
    font-size:17px;
  }

}

@media (max-width: 1440px) {

  .contact-section {
    width: 100%;
    padding: 120px 100px; /* reduce horizontal padding */
    height: auto; /* allow height to adjust */
  }

  .container {
    gap: 40px; /* reduce space between left and right */
    flex-wrap: wrap; /* allow wrapping if needed */
  }

  /* LEFT SIDE */
  .left {
    width: 450px; /* reduce width */
    height: auto; 
    margin-left: 0; /* reset negative margin */
    gap: 16px;
  }

  .left h1 {
    font-size: 40px;
    line-height: 130%;
  }

  .left p {
    font-size: 16px;
    line-height: 150%;
  }

  .left img {
    max-width: 400px;
    height: auto;
  }

  /* RIGHT SIDE (FORM) */
  .form-box {
    width: 580px; /* slightly smaller form */
    height: auto;
    padding: 32px;
  }

  /* Inputs */
  .input-group input,
  .input-group select,
  .input-group textarea {
    font-size: 16px;
  }

  /* Footer text */
  .form-footer small,
  .form-footer a {
    font-size: 16px;
  }

  /* Button */
  button {
    font-size: 16px;
    padding: 10px 20px;
  }

  /* Two column rows */
  .row {
    gap: 16px;
  }
}

@media (max-width: 1024px) {

  /* Contact Section Container */
  .contact-section {
    width: 100%;
    padding: 100px 50px;
    height: auto;
    flex-direction: column; /* stack content if needed */
  }

  .container {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  /* LEFT SIDE */
  .left {
    width: 100%;
    height: auto;
    margin-left: 0;
    text-align: center; /* optional: center on smaller screens */
  }

  .left h1 {
    font-size: 36px;
    line-height: 130%;
    text-align: center;
  }

  .left p {
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin: auto;
  }

  .left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 20px auto 0 auto;
    display: block;
  }

  /* RIGHT SIDE (FORM) */
  .form-box {
    width: 100%;
    max-width: 600px;
    height: auto;
    padding: 30px 20px;
    margin: auto;
  }

  /* INPUT FIELDS */
  .input-group label {
    font-size: 16px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    font-size: 16px;
  }

  /* TWO COLUMN ROWS */
  .row {
    flex-direction: column;
    gap: 15px;
  }

  /* FOOTER */
  .form-footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .form-footer small,
  .form-footer a {
    font-size: 14px;
  }

  /* BUTTON */
  button {
    font-size: 16px;
    padding: 10px 20px;
  }

  /* FILE UPLOAD */
  .file-upload {
    font-size: 14px;
  }

}

@media (max-width: 768px) {

  /* CONTACT SECTION */
  .contact-section {
    flex-direction: column;
    padding: 80px 24px;
    width: 100%;
    height: auto;
    align-items: flex-start;
  }

  /* Container */
  .container {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  /* LEFT SIDE */
  .left {
    width: 100%;
    height: auto;
    margin-left: 0;
    gap: 12px;
  }

  .left h1 {
    font-size: 28px;
    line-height: 130%;
    text-align: left;
  }

  .left p {
    width: 100%;
    font-size: 16px;
    line-height: 150%;
  }

  .left img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }

  /* RIGHT SIDE (FORM) */
  .form-box {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 24px;
  }

  /* INPUTS */
  .input-group label {
    font-size: 16px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    font-size: 16px;
    padding: 6px;
  }

  /* TWO COLUMN ROWS */
  .row {
    flex-direction: column;
    gap: 12px;
  }

  .row .input-group {
    flex: 1;
  }

  /* FILE UPLOAD */
  .file-upload {
    font-size: 14px;
    padding: 8px 0;
  }

  /* FOOTER */
  .form-footer {
    flex-direction: column;
    gap: 12px;
  }

  .form-footer small,
  .form-footer a {
    font-size: 14px;
  }

  /* BUTTON */
  button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 425px) {

  /* Container */
  .contact-section {
    flex-direction: column;
    padding: 60px 16px;
    height: auto;
  }

  .container {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  /* LEFT SIDE */
  .left {
    width: 100%;
    height: auto;
    margin-left: 0;
    gap: 12px;
  }

  .left h1 {
    font-size: 24px;
    line-height: 130%;
  }

  .left p {
    font-size: 14px;
    line-height: 150%;
    width: 100%;
  }

  .left img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }

  /* RIGHT SIDE (FORM) */
  .form-box {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  /* INPUT */
  .input-group label {
    font-size: 14px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    font-size: 14px;
    padding: 6px;
  }

  /* TWO COLUMN ROWS → stack vertically */
  .row {
    flex-direction: column;
    gap: 15px;
  }

  /* FILE UPLOAD */
  .file-upload {
    font-size: 14px;
    padding: 8px 0;
  }

  /* FOOTER */
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .form-footer small,
  .form-footer a {
    font-size: 12px;
  }

  /* BUTTON */
  button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 375px) {

  /* Container */
  .contact-section {
    flex-direction: column;
    padding: 40px 16px;
    width: 100%;
    height: auto;
  }

  .container {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  /* LEFT SIDE */
  .left {
    width: 100%;
    height: auto;
    margin-left: 0;
    gap: 12px;
  }

  .left h1 {
    font-size: 24px;
    line-height: 130%;
    text-align: center;
  }

  .left p {
    font-size: 14px;
    line-height: 150%;
    text-align: center;
  }

  .left img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }

  /* RIGHT SIDE (FORM) */
  .form-box {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  /* INPUTS */
  .input-group label {
    font-size: 14px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    font-size: 14px;
    padding: 6px;
  }

  /* TWO COLUMN ROWS → stack vertically */
  .row {
    flex-direction: column;
  }

  .row .input-group {
    width: 100%;
  }

  /* FILE UPLOAD */
  .file-upload {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* FOOTER */
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .form-footer small,
  .form-footer a {
    font-size: 12px;
  }

  /* BUTTON */
  button {
    /* width: 100%; */
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 320px) {

  /* CONTACT SECTION */
  .contact-section {
    flex-direction: column;
    padding: 40px 16px;
    width: 100%;
    height: auto;
  }

  .container {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  /* LEFT SIDE */
  .left {
    width: 100%;
    height: auto;
    margin-left: 0;
    gap: 12px;
  }

  .left h1 {
    font-size: 22px;
    line-height: 130%;
    text-align: center;
  }

  .left p {
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    padding-top: 8px;
  }

  .left img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }

  /* RIGHT SIDE (FORM) */
  .form-box {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  /* INPUTS */
  .input-group label {
    font-size: 14px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    font-size: 14px;
    padding: 6px;
  }

  /* TWO COLUMN ROWS → STACKED */
  .row {
    flex-direction: column;
    gap: 12px;
  }

  .row .input-group {
    flex: 1;
  }

  /* FILE UPLOAD */
  .file-upload {
    font-size: 14px;
  }

  /* FORM FOOTER */
  .form-footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .form-footer small,
  .form-footer a {
    font-size: 12px;
  }

  /* BUTTON */
  button {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* !=========first page =============  */







