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


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

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background: #f8f9fa;
    overflow-x: hidden;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.header-wrapper {
    width: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--color-white);
    height: 68px;
    border-bottom: 1px solid #e5e5e5;
}

/* Scrolled state - adds shadow */
.header-wrapper.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Remove the header-hidden class behavior - keep header visible */
.header-wrapper.header-hidden {
    transform: translateY(0); /* Changed from -100% to 0 */
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
    z-index: 10000;
}

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

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

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

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

.dropdown{
    position: relative;
}

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

.services-menu h2{
    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{
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-black-100);
    font-size: 18px;
    line-height: 2.3;
}

.menu-column1 a{
    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;
}

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

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

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

/* Hamburger animation when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Links */
.nav-item {
  font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    color: var(--color-black-50);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

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

/* 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);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

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

.desktop-only {
    display: block;
}

.cta-text {
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    text-transform: capitalize;
    white-space: nowrap;
}

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

/* Tablet and below */
@media (max-width: 1024px) {
    .nav-header {
        padding: 10px 60px;
        gap: 20px;
    }

    .nav-links {
        gap: 1.5rem;
        text-align: left;
    }
}

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

/* Mobile styles */
@media screen and (max-width: 768px) {
  .nav-header{
padding:10px 20px;
}

.menu-toggle{
display:block;
}

/* Hide desktop menu */
.nav-links{
display:none;
position:absolute;
top:68px;
left:0;
width:100%;
background: var(--color-white);
flex-direction:column;
justify-content: left;
text-align:left;
padding:25px 20px;
gap:20px;
border-top:1px solid #eee;
}

/* Show when active */
.nav-links.active{
display:flex;
text-align:left;
}

.desktop-only{
display:none;
}

.mobile-cta{
display:flex;
justify-content:center;
width:100%;
}

.cta-button{
width:100%;
max-width:280px;
text-align:center;
}
}

/* Small mobile */
@media (max-width: 480px) {
    .logo img {
        max-height: 28px;
    }

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

/* ========================================
   DARK THEME — HEADER SECTION
   ======================================== */

/* @media (prefers-color-scheme: dark) {
    body {
        background: #0D0D0D;
    }

    .header-wrapper {
        background: #0D0D0D;
        border-bottom: 1px solid #1a1a1a;
    }

    .logo img {
        content: url("../Assets/images/KM_SOFT_dark.svg");
    }

    .nav-item {
        color: #ffffff;
    }

    .nav-item:hover {
        color: #ffffff;
    }

    .menu-toggle span {
        background: #ffffff;
    }

    .cta-button {
        background: #000000;
        border: 1px solid #ffffff;
    }

    .cta-text {
        color: #ffffff;
    }

    @media (max-width: 768px) {
        .nav-links {
            background: #0D0D0D;
            border-bottom: 1px solid #1a1a1a;
        }
    }
} */








/* Contact Section - Fixed with proper header spacing */
.main1{
    height: 742px;
    min-height: 100vh;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    padding: 140px 240px;
    display: flex;
    align-items: center;
    margin-top: 0px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.left h1{
  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);
  margin-top: -260px;
}

.left span{
    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-500);
}

.form-box{
    width:110%;
    max-width: 900px;
    margin-left: auto;
    justify-self: end; 
}

/* ROW */

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

/* INPUT GROUP */

.input-group{
    position:relative;
    margin-bottom:25px;
}


input:focus,
textarea:focus,
select:focus{
    outline:none;
    border-bottom:2px solid #9b7df7;
    box-shadow:none;
}

input,
textarea,
select,
.file-box{
    width:100%;
    border:none;
    border-bottom:1px solid var(--color-white-200);
    border-radius:0;
    background: var(--color-white);
    color: var(--color-black-200);
    transition:.3s;
    box-sizing:border-box;
    margin-bottom: 10px;
}

input,
textarea,
select {
    background-color: transparent !important;
}

/* LABEL */

.input-group label{
    position:absolute;
    left:0;
    top:-10px;
    padding:0 4px;
    font-size:14px;
    color:var(--color-black-100);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.input-group span {
  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-red);
}

.file-box h2{
  color: var(--color-black-500);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.input-group select {
    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-500);
}

.input-group textarea {
    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-500);
}

/* FLOATING */

input:focus ~ label,
input:not(:placeholder-shown) ~ label,
textarea:focus ~ label,
textarea:not(:placeholder-shown) ~ label,
select:focus ~ label,
select:valid ~ label,
.active-label + label{
    top:-10px;
    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-100);
}


/* TEXTAREA */

textarea{
    min-height:140px;
    resize:vertical;
}

/* FILE */

.file-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    margin-top: -23px;
    color: var(--color-black-500);
}

#remove-btn{
    display:none;
    font-weight:bold;
    color:#999;
}

/* FOOTER */

.bottom-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

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

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

.bottom-row p{
  font-family: 'Inter', sans-serif;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* BUTTON FROM CODE 2 */

.send-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-blue-500);
    color: var(--color-white);
    border: none;
    border-radius: 80px;
    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;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover{
    background:#333;
    transform:translateX(4px);
}

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

/* Large Desktop (1440px - 1920px) */
@media (min-width: 1441px) and (max-width: 1920px) {

    .main1{
        padding: 60px 80px;
    }

    .content-wrapper{
        max-width: 1600px;
        gap: 100px;
    }

    .left h1{
        font-size: 4rem;
    }

    .left span{
        font-size: 4rem;
    }

    .form-box{
        width: 100%;
        max-width: 950px;
    }

    input,
    textarea,
    select,
    .file-box{
        padding: 30px 20px 20px 0;
        font-size: 1.05rem;
    }

    textarea{
        min-height: 100px;
    }

    .send-btn{
        padding: 18px 40px;
        font-size: 1.05rem;
    }
}


/* Desktop (1280px - 1440px) */
@media (max-width: 1440px) {

    .content-wrapper{
        max-width: 1200px;
        gap: 60px;
    }

    .left h1{
        font-size: 3rem;
    }

    .left span{
        font-size: 3rem;
    }

    .form-box{
        width:100%;
        max-width: 800px;
    }

    input,
    textarea,
    select,
    .file-box{
        padding: 25px 18px;
        font-size:0.95rem;
    }

    .send-btn{
        padding:14px 28px;
        font-size:0.95rem;
    }
}

/* Laptop (1024px - 1279px) */
@media (max-width: 1279px) {

    .main1{
        padding: 30px 30px 60px 30px;
    }

    .content-wrapper{
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1100px;
    }

    .left h1{
        font-size: 3rem;
    }

    .left span{
        font-size: 3rem;
    }

    .form-box{
        width: 100%;
        max-width: 100%;
    }

    .form-row{
        gap: 16px;
    }

    input,
    textarea,
    select,
    .file-box{
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .send-btn{
        padding: 14px 26px;
        font-size: 0.95rem;
    }

}


/* TABLET / SMALL LAPTOP */

@media (max-width:1024px){

.main1{
    padding: 60px 40px;
}

.content-wrapper{
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* desktop 80 → 40 */
}

.left h1{
    font-size: 46px; 
    margin-top: -120px;
}

.left span{
    font-size: 46px;
}

.form-box{
    width:100%;
    max-width: 600px;
}

.form-row{
    gap:16px;
}

input,
textarea,
select{
    font-size:16px;
    padding: 25px 0;
}

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

.send-btn{
    padding:14px 26px;
    font-size:16px;
}

}


/* TABLET 768px */

@media (max-width: 768px){

.main1{
    padding: 60px 30px;
}

.content-wrapper{
    grid-template-columns: 1fr; /* tablet પર single column better */
    gap: 50px;
}

.left h1{
    font-size: 44px;
    margin-top: 0;
}

.left span{
    font-size: 44px;
}

.form-box{
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    justify-self: start;
}

.form-row{
    grid-template-columns: 1fr 1fr; /* 2 input side by side */
    gap: 20px;
}


input,
textarea,
select{
    font-size: 16px;
    padding: 25px 0;
}

textarea{
    min-height: 120px;
}

.bottom-row{
    flex-wrap: wrap;
    gap: 20px;
}

.send-btn{
    padding: 14px 28px;
    font-size: 16px;
}

}


/* MOBILE 420px */

@media (max-width: 425px){

.main1{
    padding: 50px 20px;
    min-height: 920px;
}

.content-wrapper{
    grid-template-columns: 1fr;   /* 2 column → 1 column */
    gap: 50px;
}

.left h1{
    font-size: 36px;
    margin-top: 20px;
    line-height: 130%;
}

.left span{
    font-size: 36px;
}

.form-box{
    width: 100%;
    max-width: 100%;
    margin-left: 0;
}

.form-row{
    grid-template-columns: 1fr;   /* inputs one below another */
    gap: 18px;
}

input,
textarea,
select{
    font-size: 16px;
    padding: 20px 0;
}

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

textarea{
    min-height: 120px;
}

.bottom-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.send-btn{
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 24px;
}

}

/* MOBILE 375px */

@media (max-width: 375px){

.main1{
    padding: 40px 20px;
    min-height: 890px;
}

.content-wrapper{
    grid-template-columns: 1fr;   /* 2 column → 1 column */
    gap: 40px;
}

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

.left span{
    font-size: 36px;
}

.form-box{
    width: 100%;
    max-width: 100%;
    margin-left: 0;
}

.form-row{
    grid-template-columns: 1fr;   /* inputs one below another */
    gap: 16px;
}

input,
textarea,
select{
    font-size: 16px;
    padding: 20px 0;

}

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

textarea{
    min-height: 120px;
}

.bottom-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.send-btn{
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 24px;
}

}

/* MOBILE 320px */

@media (max-width: 320px){

.main1{
    padding: 40px 15px;
    min-height: 830px;
}

.content-wrapper{
    grid-template-columns: 1fr;   /* 2 column → 1 column */
    gap: 40px;
}

.left h1{
    font-size: 32px;
    margin-top: 60px;
    text-align: left;
}

.left span{
    font-size: 32px;
}

.form-box{
    width: 100%;
    max-width: 100%;
    margin-left: 0;
}

.form-row{
    grid-template-columns: 1fr;  /* input 1 per row */
    gap: 15px;
}

input,
textarea,
select{
    font-size: 16px;
    padding: 20px 0;
}

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

textarea{
    min-height: 110px;
}

.bottom-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.send-btn{
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 20px;
}

}

/* ========================================
   DARK MODE SUPPORT
   ======================================== */

/* @media (prefers-color-scheme: dark) {
    .main1{
        background:#0d0d0d;
    }

    .left span{
        color:#9a9a9a;
    }

    .left h1{
        color:#ffffff;
    }

    input,
    textarea,
    select,
    .file-box{
         background: transparent;  
        border: 1px solid #333;
        color: #ffffff; 
    }

    input::placeholder,
    textarea::placeholder{
        color:#666;
    }

    .input-group label{
        background:#0d0d0d;
        color:#777;
    }

    input:focus ~ label,
    input:not(:placeholder-shown) ~ label,
    textarea:focus ~ label,
    textarea:not(:placeholder-shown) ~ label,
    select:focus ~ label,
    select:valid ~ label{
        color:#bbb;
    }

    input:focus,
    textarea:focus,
    select:focus{
        border-color:#9b7df7;
        box-shadow:0 0 0 3px rgba(155,125,247,.25);
    }

    .interest {
        border-color: #000;
    }

    .file-box{
        color:#888;
    }

    #remove-btn{
        color:#aaa;
    }

    .char-count{
        color:#777;
    }

    .bottom-row span{
        color:#aaa;
    }

    .bottom-row p{
        color:#ffffff;
    }

    .bottom-row a {
      color: #D9D9D9;
    }

    .bottom-row p a:hover{
        color:#9b7df7;
    }

    .input-group select {
        background-color: #0D0D0D;
    }

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

    .send-btn:hover{
        background:#e6e6e6;
    }
} */




/* booking metting */
/* .metting{
  padding: 50px;
  margin: 0;
  background:#0c0c0c;
  color:#fff;
}

.top h1{
  font-size: 60px;
  font-weight: 700;
  font-style: "Google Sans Flex", sans-serif;
  font-style: Bold;
  line-height: 125%;
  color: #E6E6E6;
}
.wrapper{
  max-width:1200px;
  margin:40px auto;
}

.top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 70px;
}

.timer-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:linear-gradient(135deg,#1f7f6d,#2ca58d);
  padding:15px 0 15px 20px;
  border-radius:12px;
  width:420px;
}

.timer-text .small{
  font-size:14px;
  font-style: Medium;
  font-weight: 500;
  line-height: 100%;
  color: #F2F2F2;
}

.timer-text .time{
  font-size: 20px;
  font-weight: 700;
  font-style: Bold;
  line-height: 100%;
  color: #fff;
}

.times h4 {
  color: #F2F2F2;
}

.timer-text p{
  font-size:14px;
  font-weight: 500;
  font-style: Medium;
  line-height: 140%;
  margin:6px 0 0;
  line-height:1.4;
}

.main{
  display:flex;
  gap:40px;
  margin-top:30px;
}

.calendar{
  background:#141414;
  border-radius:12px;
  padding:20px;
  width: 57%;
  height: 450px;
}

.cal-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.arrows span{
  cursor:pointer;
  padding:0 8px;
}

.week, .dates{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  text-align:center;
  margin-top:35px;
}

.week div{
  font-size:12px;
  color:#BFBFBF;
  font-weight: 500;
  font-style: Medium;
  line-height: 100%;
}

.date{
  font-size: 20px;
  font-weight: 500;
  font-style: Medium;
  line-height: 100%;
  padding:12px;
  margin:4px;
  border-radius:6px;
  cursor:pointer;
}


.cal-head span{
  font-size: 22px;
  font-weight: 700;
  font-style: Bold;
  line-height: #F2F2F2;
}

.cal-head h1{
  font-size: 22px;
  font-weight: 400;
  font-style: Regular;
  line-height: #F2F2F2;
}

.date:hover{
  background:#333;
}

.date.active{
  background:#fff;
  color:#000;
}

.times{
  width: 445px;
}

.slot{
  border:1px solid #333;
  padding:12px;
  border-radius:6px;
  margin-bottom:10px;
  text-align:center;
  cursor:pointer;
}

.slot.active{
  background:#fff;
  color:#000;
}

.book{
  margin-top:15px;
  width:100%;
  padding:12px;
  border:none;
  border-radius:6px;
  background:#fff;
  cursor:pointer;
}

.result{
  margin-top:15px;
  color:#cccccc;
}

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

/* Large Desktop (1440px - 1920px) */
@media (max-width: 1920px) and (min-width: 1441px) {
    .wrapper{
    max-width: 1400px;
  }

  .top h1{
    font-size: 72px;
  }

  .timer-card{
    width: 480px;
    padding: 20px 0px 20px 25px;
  }

  .timer-text .time{
    font-size: 26px;
  }

  .main{
    gap: 60px;
  }

  .calendar{
    width: 60%;
    height: 500px;
    padding: 30px;
  }

  .date{
    font-size: 22px;
    padding: 14px;
  }

  .times{
    width: 480px;
  }

  .slot{
    padding: 14px;
    font-size: 16px;
  }

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

/* Desktop (1280px - 1440px) */
@media (max-width: 1440px) {
    .wrapper{
    max-width: 1100px;
  }

  .top h1{
    font-size: 52px;
  }

  .timer-card{
    width: 380px;
    padding: 14px 0 14px 18px;
  }

  .calendar{
    width: 55%;
    height: 420px;
    padding: 18px;
  }

  .times{
    width: 400px;
  }

  .date{
    font-size: 18px;
    padding: 10px;
  }

  .slot{
    padding: 10px;
    font-size: 15px;
  }

  .week, .dates{
    margin-top: 28px;
  }

  .top{
    margin-bottom: 50px;
  }
}

/* Laptop (1024px - 1279px) */
@media (max-width: 1279px) {
    .metting{
        padding: 40px 30px;
    }

    /* TOP AREA */
    .top h1{
        font-size: 48px;
    }

    .timer-card{
        width:360px;
        padding:14px 0px 14px 14px;
    }

    /* MAIN LAYOUT */
    .main{
        flex-direction: column;
    }

    /* CALENDAR */
    .calendar{
        width:100%;
        height:auto;
    }

    /* TIMES */
    .times{
        width:100%;
    }

    /* DATE SIZE */
    .date{
        font-size:18px;
        padding:10px;
    }

    /* SLOT SIZE */
    .slot{
        padding:10px;
        font-size:14px;
    }

    /* BOOK BUTTON */
    .book{
        font-size:15px;
        padding:11px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
.metting{
    padding: 30px 20px;
  }

  /* TOP AREA */
  .top{
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .top h1{
    font-size: 42px;
    line-height: 120%;
  }

  .timer-card{
    width:100%;
  }

  /* MAIN LAYOUT */
  .main{
    flex-direction: column;
  }

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

  .times{
    width:100%;
  }

  /* CALENDAR TEXT */
  .date{
    font-size:16px;
    padding:10px;
  }

  .week div{
    font-size:11px;
  }

  /* TIME SLOTS */
  .slot{
    padding:14px;
    font-size:15px;
  }

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

/* Tablet Portrait (481px - 767px) */
@media (max-width: 767px) {
    .metting{
    padding: 30px 20px;
    }

    /* TOP AREA */
    .top{
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    }

    .top h1{
    font-size: 36px;
    line-height: 120%;
    }

    /* TIMER CARD */
    .timer-card{
    width: 100%;
    padding: 14px;
    }

    .timer-text .time{
    font-size: 18px;
    }

    /* MAIN LAYOUT */
    .main{
    flex-direction: column;
    gap: 25px;
    }

    /* CALENDAR */
    .calendar{
    width: 100%;
    height: auto;
    }

    .week, .dates{
    margin-top: 20px;
    }

    .date{
    font-size: 16px;
    padding: 10px;
    margin: 3px;
    }

    /* TIMES */
    .times{
    width: 100%;
    }

    .times h4{
    font-size: 16px;
    }

    /* SLOTS */
    .slot{
    padding: 11px;
    font-size: 14px;
    }

    /* BUTTON */
    .book{
    padding: 12px;
    font-size: 15px;
    }

    /* MONTH HEADER */
    .cal-head span,
    .cal-head h1{
    font-size: 18px;
    }
}

/* Mobile (376px - 480px) */
@media (max-width: 480px) {
     .metting{
    padding:20px;
  }

  /* Top Area */
  .top{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .top h1{
    font-size:36px;
  }

  /* Timer Card */
  .timer-card{
    width:100%;
    padding:15px 0px 15px 15px;
  }

  .timer-text .time{
    font-size:18px;
  }

  /* Main Layout */
  .main{
    flex-direction:column;
  }

  /* Calendar */
  .calendar{
    width:100%;
    height:auto;
  }

  .week, .dates{
    margin-top:20px;
  }

  .date{
    font-size:16px;
    padding:8px;
    margin:3px;
  }

  /* Time Section */
  .times{
    width:100%;
  }

  .times h4{
    font-size:18px;
  }

  .slot{
    padding:10px;
    font-size:14px;
  }

  .book{
    padding:12px;
    font-size:15px;
  }
}

/* Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    .metting{
  padding: 20px;
}

/* Top Area */
.top{
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 40px;
}

.top h1{
  font-size: 36px;
  line-height: 120%;
}

/* Timer Card */
.timer-card{
  width: 100%;
  padding: 15px 0px 15px 15px;
}

.timer-text .time{
  font-size: 18px;
}

.timer-text p{
  font-size: 13px;
}

/* Main Layout */
.main{
  flex-direction: column;
  gap: 25px;
}

/* Calendar */
.calendar{
  width: 105%;
  height: auto;
  padding: 15px;
}

.week, .dates{
  margin-top: 20px;
}

.date{
  font-size: 16px;
  padding: 8px;
  margin: 2px;
}

/* Month Header */
.cal-head span,
.cal-head h1{
  font-size: 18px;
}

/* Time Section */
.times{
  width: 100%;
}

.times h4{
  font-size: 16px;
  margin-bottom: 10px;
}

.slot{
  padding: 10px;
  font-size: 14px;
}

.book{
  padding: 12px;
  font-size: 14px;
}

/* Clock Icon */
.clock-icon img{
  width: 70px;
}
} */











/* ========================================
   BASE STYLES - Desktop First (1920px)
   ======================================== */

.footer-section {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    background: var(--color-white-50);
    border-top: 0.5px var(--color-white-100) solid;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* Container inside footer */
.footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 3.125vw, 60px);
    gap: clamp(40px, 6.25vw, 120px);
    box-sizing: border-box;
}

/* Top content row */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: start;
}

/* Left column with title and button */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.25vw, 24px);
    max-width: 500px;
}

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

.icon1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 50%;
}

.icon1 a img{
  transition:transform 0.3s ease;
}

.icon1 a:hover img{
  transform:scale(1.30);
}

/* button */
.footer-button {
    width: 100%;
    max-width: 100%;
    padding: 12px 20px;
    background-color: var(--color-black-100);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

/* show arrow on hover */
.footer-button:hover .arrow-icon {
    margin-left: 12px;
    opacity: 1;
    max-width: 30px;
}

/* Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 0.83vw, 16px);
    font-family: 'Inter', sans-serif;
    min-width: 140px;
}

.footer-column a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--color-black-200);
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--color-black-100);
}

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

.footer-column div a {
    color: var(--color-black-200);
}

.footer-column div a:hover {
    color: var(--color-black-100);
}

.column-title {
    font-family:'Inter', sans-serif;
    font-weight: 550;
    font-style: Medium;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--color-black-100);
}

/* Footer bottom row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--color-black-200);
}

.footer-bottom a{
    color: var(--color-black-200);
    text-decoration: none;
}

.footer-bottom div:last-child {
    text-align: right;
}

/* Image Section */
.footer-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-image img {
    width: 100%;
    max-width: 1800px;
    height: auto;
    object-fit: contain;
}

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

/* Large Desktop (1440px - 1920px) */
@media (max-width: 1920px) and (min-width: 1441px) {
    .footer-section {
        padding: 0;
    }
    
    .footer-container {
        padding: 50px;
        gap: 100px;
    }
}

/* Desktop/Laptop (1280px - 1440px) */
@media (max-width: 1440px) {
    .footer-section {
        padding: 0px 0;
    }
    
    .footer-container {
        padding: 40px;
        gap: 80px;
    }
    
    .footer-top {
        gap: 50px;
    }
}

/* Small Laptop (1024px - 1279px) */
@media (max-width: 1279px) {
    .footer-section {
        padding: 0px 0;
    }
    
    .footer-container {
        padding: 30px;
        gap: 60px;
    }
    
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-left {
        grid-column: 1 / -1;  
        max-width: 100%;
    }
}

/* Tablet Portrait & Landscape (769px - 1023px) */
@media (max-width: 1023px) {
    .footer-section {
        padding: 0px 0;
    }
    
    .footer-container {
        padding: 25px;
        gap: 50px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 32px;
    }
    
    .footer-bottom {
        gap: 16px;
    }
    
    .footer-bottom div:last-child {
        text-align: left;
    }
}

/* Tablet (481px - 768px) */
@media (max-width: 768px) {
    .footer-section {
        padding: 0px 0;
    }
    
    .footer-container {
        padding: 20px;
        gap: 40px;
    }

    .icon1 {
        width: 30%;
    }
    
    .footer-top {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 32px 50px;
    }
    
    .footer-left {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 28px;
    }
    
    .footer-button {
        padding: 16px 24px;
    }
}

/* Large Mobile (376px - 480px) */
@media (max-width: 480px) {
    .footer-section {
        padding: 0px 0;
    }
    
    .footer-container {
        padding: 16px;
        gap: 32px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }
    
    .footer-left {
        grid-column: 1 / -1;
    }

    .icon1 {
        width: 100%;
        gap: 10px;
        display:flex;
        justify-content:center;   
        align-items:center;              
    }
    
    .footer-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .footer-button {
        width: 100%;
        padding: 16px 20px;
    }
    
    .footer-bottom {
        gap: 12px;
        font-size: 13px;
    }
    
    .footer-bottom div {
        text-align: left;
    }
}

/* Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    .footer-section {
        padding: 0px 0;
    }
    
    .footer-container {
        padding: 12px;
        gap: 28px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }
    
    .footer-title {
        font-size: 22px;
    }
    
    .button-text {
        font-size: 15px;
    }
    
    .footer-column {
        gap: 10px;
    }
    
    .footer-column a,
    .footer-column div,
    .column-title {
        font-size: 13px;
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        font-size: 12px;
        gap: 10px;
    }
}

/* Extra Small Devices (< 320px) */
@media (max-width: 320px) {
    .footer-container {
        padding: 10px;
        gap: 24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .icon {
        display: flex;
        justify-content: center;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .footer-bottom {
        font-size: 11px;
        display: flex;
        justify-content: space-between;
        gap: 12px;
    }
}

/* -------------------------------------------------------- */
/* AUTO DARK THEME - matches the user's system theme        */
/* -------------------------------------------------------- */
/* [data-theme="dark"] .footer-section {
    background: #0D0D0D;
    border-top: 0.5px solid #333;
}

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

[data-theme="dark"] .footer-button {
    background: #FFFFFF;
}

[data-theme="dark"] .footer-button:hover {
    background: #E6E6E6;
}

[data-theme="dark"] .footer-button .button-text {
    color: #000000;
}

[data-theme="dark"] .footer-button .button-arrow::before {
    color: #000000;
}

[data-theme="dark"] .footer-column,
[data-theme="dark"] .footer-column div {
    color: #B3B3B3;
}

[data-theme="dark"] .footer-column a {
    color: #B3B3B3;
}

[data-theme="dark"] .footer-column a:hover,
[data-theme="dark"] .footer-column div a:hover {
    color: #FFFFFF;
}

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

[data-theme="dark"] .footer-bottom {
    color: #999999;
}

[data-theme="dark"] .footer-bottom a {
    color: #999999;
}

[data-theme="dark"] .footer-image img {
    content: url("../Assets/images/KM SOFT dark.png");
} */
/* Footer Outer Section ends*/