/* 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-100: #1C1C1C;
  --color-black-200: #333333;
  --color-black-250: #BFBFBF;
  --color-black-500: #808080;

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

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

body {
    background: #f8f9fa;
    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;
} */












/* !=========first page =============  */
.Custom1 {
    width: 100%;
    min-height: 860px;
    background-image: url("../Assets/images/Hero.webp");
    background-size: cover;        /* fills the section */
    background-position: center;   /* centers the image */
    background-repeat: no-repeat;  /* prevents repeating */
    padding: 116px 0px 0px;

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

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

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

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

.hero-title {
    width: 884px;
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 70px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-black-50);
}

.hero-title span {
    font-family: 'Inter Display', sans-serif;
    font-weight: 600;
    font-style: Medium;
    font-size: 70px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-black-50);
}

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

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

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

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

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


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

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

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

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

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

.logo-slider-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
    margin-top:40px;
}

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


@media (max-width:1669px){

    .Custom1{
        height:auto;
        padding:110px 0px 0px;
    }

    .hero-section{
        max-width:820px;
        padding:110px 20px 100px;
    }

    .hero-content-container{
        max-width:900px;
    }

    .hero-text-container{
        width:100%;
        max-width:820px;
    }

    .hero-title{
        width:109%;
        font-size:64px;
    }

    .hero-title span{
        font-size:64px;
    }

    .hero-description{
        width:100%;
        max-width:650px;
        font-size:17px;
    }

    .hero-buttons{
        gap:18px;
    }

.logo-slider-wrapper{
    width:100%;
    overflow:hidden; 
    margin-top:30px;
}

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

.trusted-logos img{
    height: 36px;
    width: 205px;
    flex-shrink:0;       
}
}

@media (max-width:1500px) {

    .Custom1 {
        height: auto;
        padding: 100px 120px 200px;
    }

    .hero-section {
        max-width: 760px;
        padding: 100px 20px;
    }

    .hero-content-container {
        max-width: 900px;
    }

    .hero-text-container {
        width: 100%;
    }

    .hero-title {
        width: 100%;
        font-size: 60px;
    }

    .hero-title span {
        font-size: 60px;
    }

    .hero-description {
        width: 100%;
        max-width: 650px;
        font-size: 17px;
    }

.logo-slider-wrapper{
    width:100%;
    overflow:hidden;  
    margin-top:30px;
}

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

.trusted-logos img{
    height:22px;
    width:auto;
    flex-shrink:0;        
}
}


@media (max-width:1440px){

.Custom1{
    min-height: auto;
    padding:100px 40px 0;
}

.hero-title{
    font-size:64px;
    width: 745px;
}

.hero-title span{
    font-size:64px;
}

.logo-slider-wrapper{
    width:100%;
    overflow:hidden; 
    margin-top: 70px;
}

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

.trusted-logos img{
    height:22px;
    width:auto;
    flex-shrink:0;       
}

}

@media (max-width:1024px){
  .Custom1{
  min-height: auto;
    padding:80px 20px 0;
}

.hero-text-container{
    width:100%;
}

.hero-title{
    width:100%;
    font-size:52px;
}

.hero-title span{
    font-size:52px;
}

.hero-description{
    width:100%;
    max-width:650px;
}

.hero-section{
    padding:100px 20px 80px;
}

.trusted-logos{
    gap:50px;
}

.logo-slider-wrapper{
    width:100%;
    overflow:hidden; 
    margin-top:30px;
}

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

.trusted-logos img{
    height:22px;
    width:auto;
    flex-shrink:0;        
}

}

@media (max-width:768px){

.Custom1{
  min-height: auto;
    padding:80px 20px 0;
}

.hero-section{
    padding:80px 10px 60px;
}

.hero-title{
    font-size:42px;
    line-height:130%;
}

.hero-title span{
    font-size:42px;
}

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

.hero-buttons{
    margin-top:15px;
}
.logo-slider-wrapper{
    width:100%;
    overflow:hidden;  
    margin-top:30px;
}

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

.trusted-logos img{
    height:22px;
    width:auto;
    flex-shrink:0;       
}
}

@media (max-width: 425px) {
.Custom1{
  min-height: auto;
    padding:60px 16px 0;
}

.hero-section{
    padding:60px 0 40px;
}

.hero-text-container{
    width:100%;
}

.hero-title{
    width:100%;
    font-size:32px;
}

.hero-title span{
    font-size:32px;
}

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

.hero-cta{
    width:100%;
}

.logo-slider-wrapper{
    width:100%;
    overflow:hidden;  
    margin-top: 10px;
}

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

.trusted-logos img{
    height:22px;
    width:auto;
    flex-shrink:0;         
}
}

@media (max-width: 375px){

.Custom1{
    padding:80px 16px 40px;
    min-height:auto;
}

.hero-section{
    padding:60px 0 40px;
    min-height:auto;
}

.hero-content-container{
    width: 300px;
    gap:16px;
}

.hero-text-container{
    width:100%;
}

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

.hero-title span{
    font-size:34px;
}

.hero-description{
    width:100%;
    font-size:15px;
    line-height:150%;
}

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

.hero-cta{
    width:100%;
    min-width:auto;
}

.logo-slider-wrapper{
    width:100%;
    overflow:hidden;  
    margin-top:30px;
}

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

.trusted-logos img{
    height:22px;
    width:auto;
    flex-shrink:0;      
}

}

@media (max-width: 320px) {

.Custom1{
    padding:80px 16px 40px;
    min-height:auto;
}

.hero-section{
    padding:60px 0 40px;
}

.hero-content-container{
    gap:16px;
}

.hero-text-container{
    width:100%;
}

.hero-title{
    width: 300px;
    font-size:32px;
    line-height:130%;
    text-align: center;
    margin: auto;
}

.hero-title span{
    font-size:32px;
}

.hero-description{
    width: 290px;
    font-size:14px;
    line-height:150%;
}

.hero-buttons{
    margin-top:5px;
}

.hero-cta{
    width:100%;
    min-width:auto;
}

.logo-slider-wrapper{
    width:100%;
    overflow:hidden;   
    margin-top:30px;
}

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

.trusted-logos img{
    height:22px;
    width:auto;
    flex-shrink:0;    
}

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








/* !=========first page =============  */
.Ideas1 {
    width: 1920px;
    height: 660px;
    padding: 100px 304px;
    background-color: var(--color-white);
}

.Ideas {
    width: 1166px;
    height: 460px;
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.ideas-img img  {
    width: 464px;
    height: 520px;
}

.Ideas-text {
    width: 666px;
    height: 291px;
    gap: 20px;
    margin: auto; 

}

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

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

.ideas-but {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.ideas-cta{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 191px;
    width: 100%;
    height: 48px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

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

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

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

@media (max-width:1669px){

    .Ideas1{
        width:100%;
        height:auto;
        padding:100px 200px;
    }

    .Ideas{
        width:100%;
        max-width:1050px;
        height:auto;
        gap:70px;
        margin:auto;
    }

    .ideas-img img{
        width:420px;
        height:auto;
    }

    .Ideas-text{
        width:100%;
        max-width:600px;
        height:auto;
    }

    .Ideas-text h1{
        font-size:42px;
    }

    .Ideas-text p{
        font-size:17px;
    }

    .ideas-cta{
        width:190px;
    }
}

@media (max-width:1500px){

    .Ideas1{
        width:100%;
        height:auto;
        padding:100px 160px;
    }

    .Ideas{
        width:100%;
        max-width:1100px;
        gap:60px;
    }

    .ideas-img img{
        width:420px;
        height:auto;
    }

    .Ideas-text{
        width:100%;
        max-width:620px;
        height:auto;
    }

    .Ideas-text h1{
        font-size:40px;
    }

    .Ideas-text p{
        font-size:17px;
    }
}

@media (max-width: 1440px) {

  .Ideas1 {
    width: 100%;
    height: auto;
    padding: 80px 120px;
  }

  .Ideas {
    width: 100%;
    max-width: 1100px;
    height: auto;
    gap: 60px;
    margin: 0 auto;
  }

  .ideas-img  img {
    width: 320px;
    height: auto;
  }

  .Ideas-text {
    width: 100%;
    max-width: 600px;
    height: auto;
  }

  .Ideas-text h1 {
    font-size: 38px;
    line-height: 130%;
  }

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

  .ideas-but {
    display: flex;
    gap: 16px;
  }

  .ideas-cta {
    width: 180px;
    height: 46px;
  }

}

@media (max-width: 1024px) {

  .Ideas1 {
    width: 100%;
    height: auto;
    padding: 80px 40px;
  }

  .Ideas {
    width: 100%;
    height: auto;
    align-items: center;
    gap: 40px;
  }

  .ideas-img img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .Ideas-text {
    width: 100%;
    max-width: 600px;
    height: auto;
    text-align: center;
  }

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

  .Ideas-text p {
    font-size: 16px;
    text-align: left;
  }

  .ideas-but {
    display: flex;
    justify-content: left;
  }

  .ideas-cta {
    width: auto;
    min-width: 160px;
  }

}

@media (max-width: 768px) {

  .Ideas1 {
    width: 100%;
    height: auto;
    padding: 40px;
  }

  .Ideas {
    width: 100%;
    height: auto;
    flex-direction: column;   /* stack layout */
    gap: 40px;
  }

  .ideas-img img {
    width: 100%;
    max-width: 688px;
    height: 771px;
    display: flex;
    justify-content: center;
  }

  .Ideas-text {
    width: 100%;
    max-width: 100%;
    height: auto;
    text-align: center;
    margin: 0;
  }

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

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

  /* Button center */
  .ideas-but {
    display: flex;
    justify-content: left;
  }

  .ideas-cta {
    width: 100%;
    max-width: 191px;
  }

}

@media (max-width: 425px) {

  .Ideas1 {
    width: 100%;
    height: auto;
    padding: 60px 20px;
  }

  .Ideas {
    width: 100%;
    height: auto;
    flex-direction: column;   /* stack */
    gap: 40px;
  }

  /* IMAGE SECTION */
  .ideas-img img  {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* TEXT SECTION */
  .Ideas-text {
    width: 100%;
    height: auto;
    text-align: center;
  }

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

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

  /* BUTTON */
  .ideas-but {
    display: flex;
    justify-content: left;
  }

  .ideas-cta {
    width: 100%;
    max-width: 190px;
  }

}

@media (max-width: 375px) {

  .Ideas1 {
    width: 100%;
    height: auto;
    padding: 60px 20px;
  }

  .Ideas {
    width: 100%;
    height: auto;
    flex-direction: column;   /* stack */
    gap: 40px;
  }

  .ideas-img img {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
  }
  .Ideas-text {
    width: 100%;
    height: auto;
    text-align: center;
  }

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

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

  .ideas-but {
    display: flex;
    justify-content: left;
  }

  .ideas-cta {
    width: 100%;
    max-width: 190px;
  }

}

@media (max-width: 320px) {

  .Ideas1 {
    width: 100%;
    height: auto;
    padding: 40px 16px;
  }

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

  /* Image section */
  .ideas-img img {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
  }

  /* Text section */
  .Ideas-text {
    width: 100%;
    height: auto;
    text-align: center;
    gap: 12px;
  }

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

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

  /* Button */
  .ideas-but {
    display: flex;
    justify-content: left;
  }

  .ideas-cta {
    width: 100%;
    max-width: 180px;
  }

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







/* !=========first page =============  */
  .services {
      width: 1920px;
      height: 1450px;
      padding: 140px;
      gap: 10px;
      background-color: var(--color-white);
  }

  .Services1 {
      width: 1440px;
      height: 1090px;
      gap: 60px;
      margin: auto;
  }

  .Services-text {
      width: 728px;
      height: 186px;
      gap: 12px;
      margin: auto;
  }

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

  .Services-text p {
      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);
  }

  .Services-box {
      width: 1440px;
      height: 844px;
      gap: 50px;
  }

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

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

  .services-card1 img {
      width:100%;
    height:220px;
    object-fit:cover;
  }

  .services-card1 h1 {
      font-family: 'Inter Display', sans-serif;
      font-weight: 600;
      font-style: SemiBold;
      font-size: 22px;
      line-height: 100%;
      letter-spacing: 0%;
      color: var(--color-black-100);
      padding-top: 20px;
  } 

  .services-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);
      padding-top: 20px;
  }

  

  .Services-box2 {
      width: 1440px;
      height: 397px;
      gap: 50px;
      display: grid;
      grid-template-columns: repeat(3,1fr);
      margin-top: 100px;
  }

  @media (max-width:1669px){

      .services{
          width:100%;
          height:auto;
          padding:120px 100px;
      }

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

      .Services-text{
          width:100%;
          max-width:700px;
          height:auto;
      }

      .Services-text h1{
          font-size:42px;
      }

      .Services-text p{
          font-size:17px;
      }

      .Services-box{
          width:100%;
          height:auto;
      }

      .Services-box1,
      .Services-box2{
          width:100%;
          height:auto;
          gap:40px;
      }

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

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

  @media (max-width:1500px){

      .services{
          width:100%;
          height:auto;
          padding:120px 100px;
      }

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

      .Services-text{
          width:100%;
          max-width:700px;
          height:auto;
      }

      .Services-text h1{
          font-size:42px;
      }

      .Services-text p{
          font-size:17px;
      }

      .Services-box{
          width:100%;
          height:auto;
      }

      .Services-box1,
      .Services-box2{
          width:100%;
          height:auto;
          gap:40px;
      }

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

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

  @media (max-width: 1440px) {

    .services {
      width: 100%;
      height: auto;
      padding: 100px 40px;
    }

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

    .Services-text {
      width: 100%;
      max-width: 700px;
    }

    .Services-text h1 {
      font-size: 40px;
    }

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

    .Services-box {
      width: 100%;
      height: auto;
    }

    .Services-box1,
    .Services-box2 {
      width: 100%;
      height: auto;
      gap: 30px;
      grid-template-columns: repeat(3, 1fr);
    }

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

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

  }

  @media (max-width: 1024px) {

    .services {
      width: 100%;
      height: auto;
      padding: 80px 40px;
    }

    .Services1 {
      width: 100%;
      height: auto;
    }

    .Services-text {
      width: 100%;
      height: auto;
    }

    .Services-text h1 {
      font-size: 36px;
    }

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

    /* GRID CHANGE: 3 → 2 columns */
    .Services-box1,
    .Services-box2 {
      width: 100%;
      height: auto;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    /* Cards */
    .services-card1 {
      width: 100%;
      height: auto;
    }

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

  }

@media (max-width: 768px) {

  .services {
    padding: 80px 20px;
  }

  .Services-text h1{
    font-size: 30px;
  }

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

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

  .Services-box2{
    margin-top: 24px; /* 100px hataavi ne */
  }

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

  .services-card1 h1{
    font-size:20px;
  }

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

}

@media (max-width: 425px) {

  .services {
    width: 100%;
    height: auto;
    padding: 60px 16px;
  }

  .Services1 {
    width: 100%;
    height: auto;
    gap: 40px;
  }

  .Services-text {
    width: 100%;
    height: auto;
  }

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

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

  /* Cards container */
  .Services-box {
    width: 100%;
    height: auto;
  }

  .Services-box1,
  .Services-box2 {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr; /* 🔥 1 column */
    gap: 30px;
    margin-top: 40px;
    padding-top: 0;
  }

  /* Card */
  .services-card1 {
    width: 100%;
    height: auto;
  }

  .services-card1 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .services-card1 h1 {
    font-size: 18px;
    padding-top: 12px;
  }

  .services-card1 p {
    font-size: 14px;
    padding-top: 10px;
  }

}

@media (max-width: 375px) {

  .services {
    width: 100%;
    height: auto;
    padding: 60px 16px;
  }

  .Services1 {
    width: 100%;
    height: auto;
    gap: 40px;
  }

  .Services-text {
    width: 100%;
    height: auto;
  }

  .Services-text h1 {
    font-size: 26px;
    line-height: 130%;
  }

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

  .Services-box {
    width: 100%;
    height: auto;
  }

  /* GRID → 1 COLUMN */
  .Services-box1,
  .Services-box2 {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 30px;
    margin-top: 30px;
  }

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

  .services-card1 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

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

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

}

@media (max-width: 320px) {

  .services {
    width: 100%;
    height: auto;
    padding: 40px 16px;
  }

  .Services1 {
    width: 100%;
    height: auto;
    gap: 30px;
  }

  .Services-text {
    width: 100%;
    height: auto;
  }

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

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

  /* Cards container */
  .Services-box {
    width: 100%;
    height: auto;
  }

  .Services-box1,
  .Services-box2 {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;   /* 🔥 1 column on mobile */
    gap: 20px;
    padding-top: 30px;
    margin-top: 30px;
  }

  /* Card */
  .services-card1 {
    width: 100%;
    height: auto;
  }

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

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

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

}

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







/* !=========first page =============  */
.Built {
    width: 1920px;
    height: 866px;
    padding: 140px 200px;
    gap: 10px;
    background: linear-gradient(45deg, #000000 28.09%, #202020 46.38%, #060606 85.43%);
}

.Built-text {
    width: 100%;
    min-width: 1440px;
    height: 116px;
    display: flex;
    justify-content: space-between;
}

.Built-text h1 {
    width: 555px;
    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);
}
 
.Built-text p{
    width: 466px;
    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-white-50);
    padding-top: 60px;
}

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

.Built-text1 {
    width: 330px;
    height: 410px;
    padding: 40px;
    border: 1px solid var(--color-black-200);
    background-color: var(--color-black-200);

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

@media (max-width:1669px){

    .Built{
        width:100%;
        height:auto;
        padding:120px 160px;
    }

    .Built-text{
        min-width:auto;
        width:100%;
        gap:40px;
    }

    .Built-text h1{
        font-size:42px;
        width:520px;
    }

    .Built-text p{
        width:420px;
        font-size:17px;
        padding-top:40px;
    }

    .Built-card{
        gap:30px;
    }

    .Built-text1{
        width:100%;
        padding:35px;
    }
}

@media (max-width:1500px){

    .Built{
        padding:110px 120px;
    }

    .Built-text h1{
        font-size:40px;
        width:480px;
    }

    .Built-text p{
        width:380px;
        font-size:16px;
        padding-top:30px;
    }

    .Built-card{
        gap:25px;
    }

    .Built-text1{
        padding:30px;
    }

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

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

@media (max-width: 1440px) {

  .Built {
    width: 100%;
    height: auto;
    padding: 100px 80px;  /* reduced side spacing */
  }

  .Built-text {
    min-width: 100%;
    flex-wrap: wrap;
    gap: 20px;
  }

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

  .Built-text p {
    width: 100%;
    max-width: 500px;
    padding-top: 0;
    font-size: 16px;
  }

  /* Cards grid */
  .Built-card {
    grid-template-columns: repeat(4, 1fr);  /* 🔥 2 cards per row */
    gap: 30px;
  }

  /* Card */
  .Built-text1 {
    width: 100%;
    height: auto;
    padding: 30px;
  }

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

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

}

@media (max-width: 1024px) {

  .Built {
    width: 100%;
    height: auto;
    padding: 80px 40px;
  }

  /* Top text section */
  .Built-text {
    min-width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .Built-text h1 {
    width: 100%;
    font-size: 32px;
  }

  .Built-text p {
    width: 35%;
    padding-top: 0;
    font-size: 16px;
  }

  /* Cards grid */
  .Built-card {
    grid-template-columns: repeat(4, 1fr);  /* 🔥 2 cards per row */
    gap: 20px;
  }

  .Built-text1 {
    width: 100%;
    height: auto;
    padding: 24px;
  }

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

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

}

@media (max-width: 768px) {

  .Built {
    width: 100%;
    height: auto;
    padding: 80px 40px;
  }

  /* Top text section */
  .Built-text {
    display: flex;
    flex-direction: row;
    gap: 20px;
    min-width: 100%;
    margin-bottom: 30px;
  }

  .Built-text h1 {
    width: 100%;
    font-size: 32px;
    line-height: 130%;
  }

  .Built-text p {
    width: 100%;
    padding-top: 0;
    font-size: 16px;
  }

  /* Cards grid */
  .Built-card {
    grid-template-columns: repeat(2, 1fr); /* 🔥 2 columns for tablet */
    gap: 20px;
    padding-top: 40px;
    height: auto;
  }

  .Built-text1 {
    width: 100%;
    height: auto;
    padding: 24px;
  }

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

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

}

@media (max-width: 425px) {

  .Built {
    width: 100%;
    height: auto;
    padding: 60px 20px;
  }

  /* Top text section */
  .Built-text {
    flex-direction: row;
    gap: 16px;
    min-width: 100%;
  }

  .Built-text h1 {
    width: 100%;
    font-size: 26px;
    line-height: 130%;
  }

  .Built-text p {
    width: 100%;
    height: auto;
    font-size: 14px;
    line-height: 150%;
    padding-top: 0;
  }

  /* Cards */
  .Built-card {
    grid-template-columns: 1fr;  /* 🔥 1 column */
    gap: 20px;
    padding-top: 30px;
  }

  .Built-text1 {
    width: 100%;
    height: auto;
    padding: 24px;
  }

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

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

}

@media (max-width: 375px) {

  .Built {
    width: 100%;
    height: auto;
    padding: 60px 16px;
  }

  /* Top text section */
  .Built-text {
    flex-direction: row;
    gap: 16px;
    min-width: 100%;
  }

  .Built-text h1 {
    width: 100%;
    font-size: 24px;
    line-height: 130%;
  }

  .Built-text p {
    width: 100%;
    height: auto;
    font-size: 14px;
    padding-top: 0;
  }

  /* Cards grid */
  .Built-card {
    grid-template-columns: 1fr;  /* 🔥 single column */
    gap: 20px;
    padding-top: 30px;
  }

  /* Card */
  .Built-text1 {
    width: 100%;
    height: auto;
    padding: 20px;
  }

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

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

}

@media (max-width: 320px) {

  .Built {
    width: 100%;
    height: auto;
    padding: 40px 16px;
  }

  /* Top text section */
  .Built-text {
    min-width: 100%;
    flex-direction: row;
    gap: 16px;
  }

  .Built-text h1 {
    width: 100%;
    font-size: 24px;
    line-height: 130%;
  }

  .Built-text p {
    width: 100%;
    height: auto;
    font-size: 14px;
    line-height: 150%;
    padding-top: 0;
  }

  /* Cards grid */
  .Built-card {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;   /* 🔥 single column */
    gap: 20px;
    padding-top: 30px;
  }

  /* Individual card */
  .Built-text1 {
    width: 100%;
    height: auto;
    padding: 20px;
  }

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

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

}

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










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

.web-text {
    width: 728px;
    height: 186px;
    gap: 12px;
    margin: auto;
}

.web-text h1 {
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 46px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-black-50);
}

.web-text p{
    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);
}

.web-card {
    width: 1320px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 140px;
    margin: auto;
    padding-top: 60px;
}

.web-card1 {
    width: 310px !important;
    height: 498px;
    gap: 70px;
    margin: auto 0;
}

.web-card-1 {
    width: 100%;
    height: 214px;
    gap: 24px;
}

.web-icon {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    padding: 18px;
    background-color: var(--color-white-50);
    margin: auto;
}

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

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

.web-card-1 p{
    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);
    padding-top: 24px;
}

.web-card-2 {
    width: 100%;
    height: 214px;
    gap: 24px;
    margin-top: 55px;
}

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

.web-card-2 p{
    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);
    padding-top: 24px;
}

.web-card2 img {
    width: 420px;
    height: 550px;
}

@media (max-width:1669px){

    .web{
        width:100%;
        height:auto;
        padding:120px 0;
    }

    .web-text{
        width:100%;
        max-width:700px;
        height:auto;
    }

    .web-text h1{
        font-size:42px;
    }

    .web-text p{
        font-size:17px;
    }

    .web-card{
        width:100%;
        max-width:1200px;
        gap:100px;
    }

    .web-card1{
        width:100%;
        max-width:280px;
        height:auto;
    }

    .web-card2 img{
        width:380px;
        height:auto;
    }
}

@media (max-width:1500px){

    .web{
        padding:100px 0;
    }

    .web-card{
        max-width:1100px;
        gap:70px;
    }

    .web-card1{
        max-width:260px;
    }

    .web-card-1 h1,
    .web-card-2 h1{
        font-size:20px;
    }

    .web-card-1 p,
    .web-card-2 p{
        font-size:16px;
    }

    .web-card2 img{
        width:340px;
    }
}

@media (max-width: 1440px) {

  .web {
    width: 100%;
    height: auto;
    padding: 100px 40px;
  }

  .web-text {
    width: 100%;
    max-width: 700px;
    height: auto;
  }

  .web-text h1 {
    font-size: 40px;
  }

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

  /* Grid container */
  .web-card {
    width: 100%;
    max-width: 1200px;
    gap: 60px;   /* reduce spacing */
    padding-top: 40px;
  }

  /* Cards */
  .web-card1 {
    width: 100%;
    height: auto;
    gap: 40px;
  }

  /* Image (center big image) */
  .web-card2 img {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: auto;
    display: block;
  }

  /* Inner content */
  .web-card-1 h1,
  .web-card-2 h1 {
    font-size: 20px;
  }

  .web-card-1 p,
  .web-card-2 p {
    font-size: 16px;
  }

}

@media (max-width: 1024px) {

  .web {
    padding: 100px 40px;
  }

  .web-card {
    grid-template-columns:1fr 1fr 1fr;
    gap: 60px;
  }

  .web-card2 img  {
    margin-top: 90px;
  }

}

@media (max-width: 768px) {

  .web {
    padding: 80px 30px;
  }

  .web-text {
    width: 100%;
  }

  .web-text h1 {
    font-size: 32px;
  }

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

  .web-card {
    grid-template-columns: 1fr ;
    gap: 40px;
  }

  .web-card-1 {
    width: 342px;
  }

  .web-card-2 {
    width: 342px;
  }

  .web-card1 {
    width: 708px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .web-card3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .web-card-2 {
    margin-top: 0;
  }

}

@media (max-width: 425px) {

  .web {
    padding: 60px 20px;
  }

  .web-text h1 {
    font-size: 26px;
  }

  .web-card-1 {
    width: 380px;
  }  

  .web-card-2 {
    width: 380px;
  }

  .web-card2 img {
    margin-top: 0;
  }

  .web-card1 {
    width: 708px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .web-card3 {
    display: grid;
    grid-template-columns: 1fr ;
  }

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

  .web-card1 {
    gap: 40px;
  }

  .web-card-2 {
    margin-top: 30px;
  }

}

@media (max-width: 375px) {

  .web-text h1 {
    font-size: 24px;
  }

  .web-text p {
    font-size: 14px;
  }

  .web-card-1 {
    width: 330px;
  }  

  .web-card-2 {
    width: 330px;
  }

  .web-card2 img {
    margin-top: 0;
  }

  .web-card1 {
    width: 708px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .web-card3 {
    display: grid;
    grid-template-columns: 1fr ;
  }

  .web-card-1 h1,
  .web-card-2 h1 {
    font-size: 18px;
  }

  .web-card-1 p,
  .web-card-2 p {
    font-size: 14px;
  }

}

@media (max-width: 320px) {

  .web {
    padding: 40px 16px;
  }

  .web-text {
    height: auto;
  }

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

  .web-text p {
    font-size: 13px;
    line-height: 150%;
  }

  .web-card {
    gap: 30px;
  }

  .web-card-1 {
    width: 290px;
  }  

  .web-card-2 {
    width: 290px;
  }

  .web-card2 img {
    margin-top: 0;
  }

  .web-card1 {
    width: 708px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .web-card3 {
    display: grid;
    grid-template-columns: 1fr ;
  }

  .web-icon {
    width: 56px;
    height: 56px;
    padding: 14px;
  }

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

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







/* !=========first page =============  */
/* .pricing-section {
    width: 100%;
    min-height: 1188px; 
    background-color: var(--white-50);
    padding: 120px 362px; 
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.pricing-container {
    width: 100%;
    max-width: 1196px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.pricing-header {
    width: 708px;
    text-align: center;
}

.pricing-header h1 {
    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-bottom: 15px;
}

.pricing-header p {
    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);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 1196px;
    gap: 24px;
    align-items: end;
}

.features-column h3 {
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 26px;
    line-height: 135%;
    letter-spacing: 0%;
    color: var(--color-black-100);
    margin-bottom: 35px;
    text-align: left;
}

.features-column ul {
    list-style: none;
    padding: 0;
}

.features-column li {
    height: 61px;
    display: flex;
    align-items: center;
    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);
}

.card {
    background: white;
    border-radius: 24px;
    border: 1px solid #E6E6E6;
    overflow: hidden;
}

.card-inner-top {
    padding: 30px;
    height: 270px;
    margin: 10px;
    border-radius: 20px;
    background: #FAFAFA;
    position: relative;
    text-align: left;
    gap: 40px;
}

.card-inner-top h4 {
  font-family: 'Inter Display', sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--color-black-200);
}

.card-inner-top p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0%;
  text-align: left;
  vertical-align: middle;
  color: var(--color-black-200);
}

.gradient-header {
    background: linear-gradient(315.43deg, #F7F2FD 0.74%, #EDF0FC 25.56%, #FFF0F2 50.37%, #FFF5F0 75.19%, #FFFDF5 100%);
}

.price {
    font-family: 'Inter Display', sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 44px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
  vertical-align: middle;
  color: var(--color-black-100);
  padding-top: 30px;
}

.old-price {
    font-size: 18px;
    color: var(--color-black-500);
    text-decoration: line-through;
}

.btn-outline, .btn-filled {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
    margin-top: 25px;
}

.btn-outline a {
  text-decoration: none;
  color: var(--color-black-100);
}

.btn-filled a {
  text-decoration: none;
  color: var(--color-white);
}

.btn-outline { 
  border: 1px solid var(--color-black-100); 
  background: var(--color-white); 
  color: var(--color-black-100);
}

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

.btn-filled { 
  border: none; 
  background: var(--color-green-700); 
  color: var(--color-white); 
}

.row-item {
    height: 61px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #F0F0F0;
}

.row-item img { width: 22px; }

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-green-700);
    color: var(--color-Chartreuse);
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
}


@media (max-width: 1440px) {

  .pricing {
    width: 100%;
    height: 1200px;
    padding: 120px 80px;
  }

  .container1 {
    height: auto;
  }

  .container-text {
    width: 100%;
    height: auto;
  }

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

  .container1 p {
    font-size: 17px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .card {
    width: 100%;
    height: 100%;
  }

  .card-1,
  .card-2 {
    width: 100%;
    height: auto;
  }

  .features {
    padding-left: 20px;
    padding-top: 200px;
  }

}

@media (max-width: 1024px) {

  .pricing-section{
    padding: 100px 40px;
  }

  .pricing-container{
    max-width: 100%;
    min-height: 100%;
  }

  .pricing-header{
    width: 100%;
  }

  .pricing-header h1{
    font-size: 36px;
  }

  .pricing-header p{
    font-size: 17px;
  }

  .pricing-grid{
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: 20px;
  }

  .card-inner-top{
    padding: 24px;
    height: auto;
  }

  .price{
    font-size: 38px;
  }

}

@media (max-width: 768px) {

    .pricing-section {
        padding: 60px 20px;
    }

    .pricing-container {
        max-width: 100%;
        gap: 40px;
    }

    .pricing-header {
        width: 100%;
    }

    .pricing-header h1 {
        font-size: 32px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        gap: 30px;
    }

    .features-column {
        display: none;
    }

    .mob-text {
        display: inline-block;
        font-size: 15px;
        color: var(--color-black-100);
        margin-left: 12px;
        text-align: left;
    }

    .mob-text {
        display: block;
    }

    .row-item {
        justify-content: flex-start;
        padding-left: 20px;
        height: auto;
        min-height: 55px;
        border-top: 1px solid #f0f0f0;
    }

    .row-item img {
        width: 20px;
        height: 20px;
    }

    .dash {
        width: 20px;
        display: inline-block;
        text-align: center;
        color: #ccc;
    }

    .card-inner-top {
        height: auto;
        padding: 30px 20px;
    }

}

@media (max-width: 420px) {

    .pricing-section {
        padding: 50px 16px;
    }

    .pricing-container {
        max-width: 100%;
        gap: 30px;
    }

    .pricing-header {
        width: 100%;
    }

    .pricing-header h1 {
        font-size: 28px;
        line-height: 120%;
    }

    .pricing-header p {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        gap: 24px;
    }

    .features-column {
        display: none;
    }

    .mob-text {
        display: inline-block;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 15px;
        line-height: 150%;
        letter-spacing: 0%;
        color: var(--color-black-100);
        margin-left: 10px;
        text-align: left;
    }

    .row-item {
        justify-content: flex-start;
        padding: 14px 16px;
        height: auto;
        min-height: 50px;
        border-top: 1px solid #f0f0f0;
    }

    .row-item img {
        width: 18px;
        height: 18px;
    }

    .dash {
        width: 18px;
        display: inline-block;
        text-align: center;
        color: #ccc;
    }

    .card-inner-top {
        height: auto;
        padding: 24px 16px;
    }

    .price {
        font-size: 36px;
    }

}

@media (max-width: 375px) {

    .pricing-section {
        padding: 50px 16px;
    }

    .pricing-container {
        gap: 30px;
    }

    .pricing-header {
        width: 100%;
    }

    .pricing-header h1 {
        font-size: 26px;
        line-height: 130%;
    }

    .pricing-header p {
        font-size: 15px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        gap: 24px;
    }

    .features-column {
        display: none;
    }

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

    .row-item {
        justify-content: flex-start;
        padding: 12px 16px;
        min-height: 50px;
    }

    .row-item img {
        width: 18px;
        height: 18px;
    }

    .dash {
        width: 18px;
    }

    .card-inner-top {
        height: auto;
        padding: 24px 16px;
    }

    .card-inner-top h4 {
        font-size: 20px;
    }

    .card-inner-top p {
        font-size: 14px;
    }

    .price {
        font-size: 34px;
        padding-top: 20px;
    }

    .btn-outline,
    .btn-filled {
        font-size: 16px;
        padding: 10px;
    }

}

@media (max-width: 320px) {

    .pricing-section {
        padding: 40px 15px;
    }

    .pricing-container {
        max-width: 100%;
        gap: 30px;
    }

    .pricing-header {
        width: 100%;
    }

    .pricing-header h1 {
        font-size: 26px;
        line-height: 130%;
    }

    .pricing-header p {
        font-size: 15px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        gap: 25px;
    }

    .features-column {
        display: none;
    }

    .mob-text {
        display: inline-block;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        letter-spacing: 0%;
        color: var(--color-black-100);
        margin-left: 10px;
        text-align: left;
    }

    .row-item {
        justify-content: flex-start;
        padding-left: 15px;
        height: auto;
        min-height: 50px;
        border-top: 1px solid #f0f0f0;
    }

    .row-item img {
        width: 18px;
        height: 18px;
    }

    .dash {
        width: 18px;
        display: inline-block;
        text-align: center;
        color: #ccc;
    }

    .card-inner-top {
        height: auto;
        padding: 25px 15px;
    }

    .price {
        font-size: 32px;
    }

    .btn-outline,
    .btn-filled {
        font-size: 16px;
        padding: 10px;
    }

} */

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






/* !=========first page =============  */
.advice-section{
    width:100%;
    display:flex;
    justify-content:center;
    background: var(--color-white);
}

.advice-container{
    width:100%;
    max-width:1440px;
    min-height:480px;
    background: var(--color-black);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0px 0px 0px 80px;
    box-sizing:border-box;
}

.advice-content{
    max-width:520px;
}

.advice-content h2{
  width: 100%;
  max-width: 486px;
  height: 84px;
    font-family: 'Inter Display', sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--color-white);
  margin-bottom: 32px;
}

.advice-content p{
  width: 100%;
  max-width: 486px;
  height: 87px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--color-white);
    margin-bottom: 32px;
}

.book-btn{
    width: 100%;
    max-width: 180px;
    hight: 48px;
    padding: 12px 20px;
    border-radius: 8px;
    border:none;
    background: var(--color-white);
    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-black-100);
}

.book-btn a{
    text-decoration: none;
    color:var(--color-black-100);
}

.advice-image img{
    height: 476px;
    width: 480px;
}

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

@media (max-width:1440px){

.advice-container{
    width:100%;
    max-width:1340px;
    height:100%;
    min-height:440px;
    padding: 0px 0px 0px 100px;
}

.advice-content h2{
    font-size:28px;
}

.advice-content p{
    font-size:16px;
}

.advice-image img{
    width:440px;
    height:440px;
}

}


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

@media (max-width:1024px){

.advice-container{
    padding:60px;
}

.advice-content h2{
    font-size:28px;
}

.advice-content p{
    font-size:16px;
}

.advice-image img{
    width:420px;
}

}

/* ================= 768px ================= */

@media (max-width:768px){

.advice-container{
    flex-direction:column;
    text-align: left;
    padding:50px 30px;
}

.advice-content{
    max-width:100%;
}

.advice-image img{
    width:100%;
    max-width:420px;
    height:auto;
}

}

/* ================= 480px ================= */

@media (max-width:480px){

.advice-section{
    margin:60px 0;
}

.advice-container{
    padding:40px 20px;
}

.advice-content h2{
    font-size:24px;
}

.advice-content p{
    font-size:15px;
}

.book-btn{
    font-size:16px;
}

}

/* ================= 320px ================= */

@media (max-width:320px){

.advice-content h2{
    font-size:22px;
}

.advice-content p{
    font-size:14px;
}

.book-btn{
    padding:10px 16px;
    font-size:14px;
}

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










/* !=========first page =============  */
.Explore {
    width: 1920px;
    height: 1266px;
    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: 140px 300px;
  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 =============  */






