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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   RESET AND BASE
   ======================================== */
* {
    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) {
    .services-menu, 
    .products-menu {
        position: static;   
        width: 100% !important; 
        height: auto;      
        padding: 10px 15px;
        box-shadow: none;    
        border-radius: 0;
    }

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

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

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

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

  .menu-toggle {
    display: block;
  }

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

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

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

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

  .dropdown-arrow {
    display: none;
  }

  .desktop-only {
    display: none;
  }

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

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

  .cta-button {
    width: 100%;
  }

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

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

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

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

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

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

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

  .nav-links {
    padding: 15px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .nav-header {
    padding: 8px;
  }

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

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

  .mobile-cta {
    height: 38px;
  }

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

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

  .nav-header {
    padding: 6px;
  }

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

  .nav-links {
    padding: 10px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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






/* ========================================
   HERO SECTION STYLES
   ======================================== */
/* Hero Section */
.hero-section {
    width: 100%;
    max-width: 1920px;
    min-height: 820px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 100px;
    position: relative;
    margin-top: 0;
}

.hero-container {
    width: 100%;
    max-width: 1680px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    margin: 0 auto;
}

/* ========================================
   CONTENT SECTION
   ======================================== */

.hero-content {
    width: 100%;
    max-width: 708px;
    display: flex;
    flex-direction: column;
    margin-left: 125px;
    gap: 20px;
    padding-left: 0;
}

.hero-title  {
    width: 100%;
    max-width: 708px;
    font-family: 'Inter Display', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 60px;
    line-height: 125%;
    letter-spacing: 0%;
    color: var(--color-black-100);
}

.hero-description {
    width: 100%;
    max-width: 708px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--color-black-200);
    margin: 0;
}

.services-menu a {
    text-decoration: none;
}

.hero-button {
    min-width: 180px;
    width: fit-content;
    padding: 12px 20px;
    background: transparent;
    border: 0.5px solid var(--color-black-100);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    font-family: inherit;
}

.hero-button span {
    color: var(--color-black-100);
    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;
}

.hero-button .arrow-icon {
    width: 20px;
    height: 20px;
    color: var(--color-black-100);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hero-button:hover {
    background: var(--color-black-100);
    border-color: var(--color-black-100);
}

.hero-button:hover span {
    color: var(--color-white);
}

.hero-button:hover .arrow-icon {
    color: var(--color-white);
    transform: translate(3px, -3px);
}

/* ========================================
   IMAGE SECTION
   ======================================== */

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
   
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 486px;
    height: 700px;
    padding: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.image-frame img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

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

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

    
}

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

    .hero-content {
        margin-left: 0;
    }
    
    .image-frame {
        max-width: 460px;
        height: 660px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .hero-section {
        padding: 30px 80px 60px 80px;
    }
    
    .hero-container {
        max-width: 1200px;
        gap: 60px;
    }

    .hero-content {
        margin-left: 0;
    }
    
    .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-content {
        margin-left: 0;
    }
    
    .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: 20px 40px 50px 40px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        order: 1;
        max-width: 100%;
        text-align: center;
        margin-left: 0;
    }
    
    .hero-image {
        order: 2;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 1.2;
        max-width: 100%;
        margin: auto;
    }
    
    .hero-description {
        font-size: 16px;
        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;
        margin-left: 0;
    }
    
    .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-content {
        margin-left: 0;
    }
    
    .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: 100%;
        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-content {
        margin-left: 0;
    }

    .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 {
        width: 100%;
        padding: 40px 20px;
    }

    .hero-content {
        width: 100%;
        margin-left: 0;
    }
    
    .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;
} */


/* ========================================
   STARTUP GROWTH SECTION
   ======================================== */
.startup-growth-section {
    width: 100%;
    background: var(--color-white-25);
    padding: 80px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.startup-growth-container {
    max-width: 1920px;
    width: 100%;
    background: var(--color-white-25);
    border: 16px solid var(--color-green-700);
    padding: 100px 80px;
    position: relative;
}

/* Content Layout */
.startup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
    justify-content: center;
    margin-top: -200px;
}

/* Title Styling */
.startup-title {
    width: 100%;
    font-family: 'Inter Display', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 60px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--color-black-100);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Description Styling */
.startup-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--color-black-200);
    margin: 0;
}

/* Years Badge */
.years-badge {
    display: flex;
    align-items: center;
    gap: 20px;
}

.years-number {
    font-family: 'Inter Display', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 300px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-black-100);
    letter-spacing: -5px;
}

.years-text {
    font-family: 'Inter Display', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    text-transform: uppercase;
    color: var(--color-black-100);
    text-transform: uppercase;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

/* Reviews Section */
.reviews-section {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.customer-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    object-fit: cover;
    margin-left: -15px;
}

.avatar:first-child {
    margin-left: 0;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stars {
    display: flex;
    gap: 3px;
}

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


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

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

@media (max-width: 1440px) {

    .startup-growth-section {
        padding: 60px 60px;
    }

    .startup-growth-container {
        padding: 80px 60px;
    }

    .startup-content {
        gap: 60px;
    }

    .startup-title {
        font-size: 50px;
        line-height: 130%;
    }

    .startup-description {
        font-size: 16px;
    }

    .years-number {
        font-size: 220px;
    }

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

    .content-right {
        margin-top: -150px;
        gap: 30px;
    }

    .avatar {
        width: 45px;
        height: 45px;
    }

    .star {
        font-size: 18px;
    }

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

/* Desktop - 1200px */
@media screen and (max-width: 1200px) {
    .startup-growth-section {
        padding: 60px 80px;
    }
    
    .startup-growth-container {
        padding: 70px 50px;
        border-width: 12px;
    }
    
    .startup-content {
        gap: 50px;
    }
    
    .startup-title {
        font-size: 42px;
    }
    
    .startup-description {
        font-size: 16px;
    }
    
    .years-number {
        font-size: 130px;
    }
    
    .years-text {
        font-size: 15px;
    }
    
    .avatar {
        width: 45px;
        height: 45px;
        margin-left: -12px;
    }
    
    .star {
        font-size: 18px;
    }
}

/* ===============================
   Responsive for 1024px
================================*/
@media (max-width: 1024px) {

    .startup-growth-section {
        padding: 60px 40px;
    }

    .startup-growth-container {
        padding: 80px 50px;
        border-width: 12px;
    }

    .startup-content {
        gap: 50px;
    }

    .content-right {
        margin-top: 0;
        align-items: flex-start;
    }

    /* Title */
    .startup-title {
        font-size: 42px;
        line-height: 130%;
    }

    /* Description */
    .startup-description {
        font-size: 16px;
    }

    /* Big Number */
    .years-number {
        font-size: 180px;
        letter-spacing: -3px;
    }

    /* Vertical text */
    .years-text {
        font-size: 16px;
    }

    /* Avatars */
    .avatar {
        width: 40px;
        height: 40px;
    }

    /* Stars */
    .star {
        font-size: 18px;
    }

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

}

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

    .startup-growth-section{
        padding: 40px 20px;
    }

    .startup-growth-container{
        padding: 40px 25px;
        border-width: 10px;
    }

    .startup-content{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-right{
        align-items: center;
        margin-top: 0;
    }

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

    .startup-description{
        font-size: 16px;
        text-align: center;
    }

    .years-badge{
        justify-content: center;
    }

    .years-number{
        font-size: 120px;
        letter-spacing: -2px;
    }

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

    .reviews-section{
        justify-content: center;
        flex-wrap: wrap;
    }

    .avatar{
        width: 40px;
        height: 40px;
    }

    .star{
        font-size: 18px;
    }

    .loved-text{
        font-size: 14px;
        text-align: center;
    }

}

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

    .startup-growth-section {
        padding: 40px 20px;
    }

    .startup-growth-container {
        padding: 40px 20px;
        border-width: 10px;
    }

    .startup-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .content-left {
        align-items: center;
    }

    .content-right {
        align-items: center;
        margin-top: 0;
        gap: 20px;
    }

    .startup-title {
        font-size: 32px;
        line-height: 130%;
    }

    .startup-description {
        font-size: 16px;
    }

    .years-badge {
        flex-direction: column;
        gap: 10px;
    }

    .years-number {
        font-size: 120px;
        letter-spacing: -2px;
    }

    .years-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 14px;
        text-align: center;
    }

    .reviews-section {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .avatar {
        width: 40px;
        height: 40px;
    }

    .star {
        font-size: 16px;
    }

    .loved-text {
        font-size: 14px;
        text-align: center;
    }
}

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

.startup-growth-section{
    padding: 40px 20px;
}

.startup-growth-container{
    padding: 40px 20px;
    border-width: 8px;
}

.startup-content{
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Text Section */
.content-left{
    gap: 20px;
}

.startup-title{
    font-size: 32px;
    line-height: 130%;
}

.startup-description{
    font-size: 14px;
}

/* Right Side */
.content-right{
    align-items: center;
    margin-top: 0;
    gap: 20px;
}

/* Years Badge */
.years-badge{
    justify-content: center;
    gap: 10px;
}

.years-number{
    font-size: 120px;
    letter-spacing: -2px;
}

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

/* Reviews */
.reviews-section{
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.avatar{
    width: 35px;
    height: 35px;
}

.star{
    font-size: 16px;
}

.loved-text{
    font-size: 13px;
}

}

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

    .startup-growth-section {
        padding: 40px 15px;
    }

    .startup-growth-container {
        padding: 30px 20px;
        border-width: 8px;
    }

    .startup-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-right {
        align-items: flex-start;
        margin-top: 0;
        gap: 20px;
    }

    .startup-title {
        font-size: 28px;
        line-height: 130%;
    }

    .startup-description {
        font-size: 14px;
    }

    .years-badge {
        gap: 10px;
    }

    .years-number {
        font-size: 100px;
        letter-spacing: -2px;
    }

    .years-text {
        font-size: 12px;
    }

    .avatar {
        width: 35px;
        height: 35px;
        margin-left: -10px;
    }

    .star {
        font-size: 16px;
    }

    .loved-text {
        font-size: 13px;
    }
}
/* ========================================
   DARK THEME — STARTUP GROWTH SECTION
   ======================================== */

/* [data-theme="dark"] .startup-growth-section {
    background: #0d0d0d;
}

[data-theme="dark"] .startup-growth-container {
    background: #1a1a1a;
}

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

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

[data-theme="dark"] .years-number {
    color: #e6e6e6;
}

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

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













/* ========================================
   OUR MISSION SECTION
   ======================================== */

.card-item {
    position: sticky;
    top: 150px;
    display: flex;
    align-items: center;
}

/* stacking order */
.mission { z-index: 1; }
.vision { z-index: 2; }
.strength { z-index: 3; }

.our-mission-container {
    width: 100%;
    height: 342px;
    background: var(--color-black-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 120px;
    position: relative; 
}

.our-mission-container {
    width: 100%;
    max-width: 1920px;
}

.our-mission-content {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 100px;
    align-items: end;
}

.our-mission-left {
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
}

.our-mission-title {
    font-family: 'Inter Display', sans-serif;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 100px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--color-black-400);
    margin: 0;
}

.our-mission-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

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

/* ========================================
   OUR VISION SECTION
   ======================================== */

.our-vision-container {
    width: 100%;
    height: 342px;
    background: var(--color-black-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 120px;
    position: relative;
   
    border-left: none;
    border-right: none;
}

.our-vision-container {
    width: 100%;
    max-width: 1920px;
}

.our-vision-content {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 100px;
    align-items: end;
}

.our-vision-left {
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
}

.our-vision-title {
    font-family: 'Inter Display', sans-serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 0.9;
    color: var(--color-black-400);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
}

.our-vision-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.our-vision-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-white-100);
    margin: 0;
}

/* ========================================
   OUR STRENGTH SECTION
   ======================================== */

.our-strength-container {
    width: 100%;
    height: 342px;
    background: var(--color-black-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 120px;
    position: relative;
}

.our-strength-container {
    width: 100%;
    max-width: 1920px;
}

.our-strength-content {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 100px;
    align-items: end;
}

.our-strength-left {
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
}

.our-strength-title {
    font-family: 'Inter Display', sans-serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 0.9;
    color: var(--color-black-400);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
}

.our-strength-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.our-strength-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-white-100);
    margin: 0;
}

/* ========================================
   RESPONSIVE BREAKPOINTS - ALL SECTIONS
   ======================================== */

/* Large Desktop (1920px) */
@media screen and (min-width: 1920px) {
    .our-mission-container,
    .our-vision-container,
    .our-strength-container {
        padding: 0 140px;
        height: 350px;
    }

    .our-mission-content,
    .our-vision-content,
    .our-strength-content {
        grid-template-columns: 650px 1fr;
        gap: 120px;
        margin-top: 100px;
    }

    .our-mission-title,
    .our-vision-title,
    .our-strength-title {
        font-size: 90px;
    }

    .our-mission-text,
    .our-vision-text,
    .our-strength-text {
        font-size: 19px;
    }

    .our-mission-left,
    .our-vision-left,
    .our-strength-left,
    .our-mission-right,
    .our-vision-right,
    .our-strength-right {
        padding-bottom: 25px;
    }
}

/* Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .our-mission-container,
    .our-vision-container,
    .our-strength-container {
        padding: 0 120px;
        height: 350px;
    }

    .our-mission-content,
    .our-vision-content,
    .our-strength-content {
        grid-template-columns: 600px 1fr;
        gap: 100px;
    }

    .our-mission-title,
    .our-vision-title,
    .our-strength-title {
        font-size: 80px;
    }

    .our-mission-text,
    .our-vision-text,
    .our-strength-text {
        font-size: 18px;
    }
}

/* Medium Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .our-mission-container,
    .our-vision-container,
    .our-strength-container {
        padding: 0 80px;
        height: 320px;
    }

    .our-mission-content,
    .our-vision-content,
    .our-strength-content {
        grid-template-columns: 500px 1fr;
        gap: 80px;
    }

    .our-mission-title,
    .our-vision-title,
    .our-strength-title {
        font-size: 70px;
    }

    .our-mission-text,
    .our-vision-text,
    .our-strength-text {
        font-size: 17px;
        line-height: 1.65;
    }

    .our-mission-left,
    .our-vision-left,
    .our-strength-left,
    .our-mission-right,
    .our-vision-right,
    .our-strength-right {
        padding-bottom: 15px;
    }
}

/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .our-mission-container,
    .our-vision-container,
    .our-strength-container {
        padding: 0 60px;
        height: 300px;
    }

    .our-mission-content,
    .our-vision-content,
    .our-strength-content {
        grid-template-columns: 450px 1fr;
        gap: 60px;
    }

    .our-mission-title,
    .our-vision-title,
    .our-strength-title {
        font-size: 60px;
    }

    .our-mission-text,
    .our-vision-text,
    .our-strength-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .our-mission-left,
    .our-vision-left,
    .our-strength-left,
    .our-mission-right,
    .our-vision-right,
    .our-strength-right {
        padding-bottom: 15px;
    }
}

/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .our-mission-container,
    .our-vision-container,
    .our-strength-container {
        padding: 60px 40px;
        height: auto;
        min-height: 280px;
    }

    .our-mission-content,
    .our-vision-content,
    .our-strength-content {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
    }

    .our-mission-left,
    .our-vision-left,
    .our-strength-left {
        padding-bottom: 0;
    }

    .our-mission-right,
    .our-vision-right,
    .our-strength-right {
        padding-bottom: 0;
    }

    .our-mission-title,
    .our-vision-title,
    .our-strength-title {
        font-size: 54px;
    }

    .our-mission-text,
    .our-vision-text,
    .our-strength-text {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
    .our-mission-container,
    .our-vision-container,
    .our-strength-container {
        padding: 50px 30px;
        height: auto;
        min-height: auto;
    }

    .our-mission-content,
    .our-vision-content,
    .our-strength-content {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }

    .our-mission-left,
    .our-vision-left,
    .our-strength-left {
        padding-bottom: 0;
    }

    .our-mission-right,
    .our-vision-right,
    .our-strength-right {
        padding-bottom: 0;
    }

    .our-mission-title,
    .our-vision-title,
    .our-strength-title {
        font-size: 48px;
        line-height: 1;
    }

    .our-mission-text,
    .our-vision-text,
    .our-strength-text {
        font-size: 15px;
        line-height: 1.65;
    }
}

/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {
    .our-mission-container,
    .our-vision-container,
    .our-strength-container {
        padding: 45px 24px;
    }

    .our-mission-content,
    .our-vision-content,
    .our-strength-content {
        gap: 20px;
    }

    .our-mission-title,
    .our-vision-title,
    .our-strength-title {
        font-size: 42px;
    }

    .our-mission-text,
    .our-vision-text,
    .our-strength-text {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {
    .our-mission-container,
    .our-vision-container,
    .our-strength-container {
        padding: 40px 20px;
    }

    .our-mission-content,
    .our-vision-content,
    .our-strength-content {
        gap: 18px;
    }

    .our-mission-title,
    .our-vision-title,
    .our-strength-title {
        font-size: 36px;
    }

    .our-mission-text,
    .our-vision-text,
    .our-strength-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {
    .our-mission-container,
    .our-vision-container,
    .our-strength-container {
        padding: 35px 16px;
    }

    .our-mission-content,
    .our-vision-content,
    .our-strength-content {
        gap: 16px;
    }

    .our-mission-title,
    .our-vision-title,
    .our-strength-title {
        font-size: 32px;
    }

    .our-mission-text,
    .our-vision-text,
    .our-strength-text {
        font-size: 14px;
        line-height: 1.55;
    }
}









/* why choose us starts */
/* MAIN WRAPPER */
.choose-section {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--color-white-25);
}

.choose-left h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-black-100);
    margin-bottom: 40px;
}

/* BUTTON */


/* RIGHT SIDE GRID */
.choose-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.choose-card {
    padding: 40px 30px;
    border: 1px solid var(--color-white-200);
    border-radius: 12px;
    background: var(--color-white);
}

.choose-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-black-100);
}

.choose-card p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-black-200);
}

.choose-section {
  max-width: 1920px;
  margin: 0 auto;
  padding: 100px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--color-white);
  color: #1A1A1A;
}

/* LEFT SIDE */
.choose-left h2 {
  font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 44px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-black-100);
  margin-bottom: 40px;
}

.start-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--color-black-50);
  border-radius: 8px;
  color: var(--color-black-50);
  text-decoration: none;
  transition: 0.3s ease;
  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;
}

.start-btn:hover {
  background: #000000;
  color: #ffffff;
}

.arrow {
  font-size: 18px;
}

/* RIGHT SIDE */
.choose-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* BIG CARD */
.choose-card.big {
  padding: 35px;
}

/* SMALL CARD ROW */
.small-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD STYLE */
.choose-card {
  background: var(--color-white);
  border: 1px solid var(--color-white-200);
  border-radius: 16px;
  padding: 24px;
}

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

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

/* ---------- RESPONSIVENESS --------- */

/* Tablets (max 1024px) */
@media (max-width: 1024px) {
    .choose-section {
        padding: 60px 50px;
        grid-template-columns: 1fr;
    }

    .choose-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Tablets / Large Phones (max 768px) */
@media (max-width: 768px) {
    .choose-left h2 {
        font-size: 32px;
    }

    .choose-right {
        grid-template-columns: 1fr;
    }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
    .choose-section {
        padding: 40px 20px;
    }

    .choose-left h2 {
        font-size: 28px;
    }

    .choose-card h3 {
        font-size: 26px;
    }
}

@media (max-width: 375px) {
    .choose-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 40px;
  }

  /* LEFT SIDE */
  .choose-left h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .start-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* RIGHT SIDE */
  .choose-right {
    gap: 20px;
  }

  /* BIG CARD */
  .choose-card.big {
    padding: 28px;
  }

  /* SMALL CARDS -> STACK */
  .small-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ALL CARDS */
  .choose-card {
    padding: 26px;
  }

  .choose-card h3 {
    font-size: 24px;
  }

  .choose-card p {
    font-size: 14px;
    line-height: 1.5;
  }
}


/* ==========================================================
   SYSTEM DARK MODE — CHOOSE SECTION
   You will fill the property values.
   ========================================================== */
/* [data-theme="dark"] .choose-section {
    background-color: #0D0D0D;
}

[data-theme="dark"] .choose-left h2 {
    color: #E6E6E6;
}

[data-theme="dark"] .start-btn {
    color: #e6e6e6;
    border-color: #E6E6E6;
    background: #0D0D0D;
}

[data-theme="dark"] .start-btn:hover {
    background-color: #e6e6e6;
    color: #0D0D0D;
}

[data-theme="dark"] .arrow {
    color: #E6E6E6;
}

[data-theme="dark"] .choose-card {
    background: #141414;
    border-color: #333333;
}

[data-theme="dark"] .choose-card h3 {
    color: #E6E6E6;
}

[data-theme="dark"] .choose-card p {
    color: #E6E6E6;
} */




/* why choose us ends */


