/* Poppins Font Faces */

/* Thin */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

/* Thin Italic */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

/* Extra Light */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

/* Extra Light Italic */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}

/* Light */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* Light Italic */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

/* Regular */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Regular Italic */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* Medium */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* Medium Italic */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

/* SemiBold */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* SemiBold Italic */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

/* Bold */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Bold Italic */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* ExtraBold */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* ExtraBold Italic */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}

/* Black */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* Black Italic */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}
:root{
    --primary:linear-gradient(135deg, #3b82f6, #6366f1);
    --black:#000;
    --white:#fff;
    --head-title:#0f172a;
    --marron:#CA9E67;
    --beige:#F5EFE5;
    --font-family: 'Poppins', sans-serif;
    
}

*{
   margin: 0px;
   padding: 0px; 
   letter-spacing: 0.5px;
}
body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 160%;
    color: var(--black);
     letter-spacing: 1px;
}

h1, h2 ,h3, h4, h5, h6 {
    font-family: var(--font-family);
}
p{
    font-family: var(--font-family);
}


/* NEW CSS */ /* NEW CSS */ /* NEW CSS */ /* NEW CSS */ /* NEW CSS */ /* NEW CSS */

.top-menu {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background:var(--white);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-menu__main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo__image {
    height: 46px;
}

.logo__mark {
    font-size: 18px;
    font-weight: 500;
    margin-left: 8px;
    color:var(--black);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px; 
    margin: 0;
    padding: 0;
}

.nav-links a,
.mega-toggle {
    font-size: 15.5px;
    font-weight: 500;
    color: #2f2f2f;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nav-links a:hover,
.mega-toggle:hover {
    color:var(--white);
}

.mega-toggle::after {
    content: "▼";
    font-size: 10px;
    margin-left: 6px;
    position: relative;
    top: -1px;
}
/* 
.nav-links a::after,
.mega-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    transition: 0.3s;
} */

.nav-links a:hover::after,
.mega-toggle:hover::after {
    width: 100%;
}

.hire {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff !important;
}

.contact {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.contact:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 8px;
    border-radius: 8px;
    color: #cbd5e1;
    cursor: pointer;
    transition: 0.3s;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lang {
    color:var(--black);
    font-size: 14px;
    /* cursor: pointer; */
    font-weight: 600;
}

.has-mega {
    position: relative;
}
.has-mega .mega-panel {
    position: absolute;
    left: 0;
    top: 100%;
    width: 16vw;
    transform: translateX(-0%);
    background: #f3f7f7;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    padding: 2rem 2rem;
    display: none;
    z-index: 40;
    border-radius: 6px;
    /* text-align: left; */
}


.has-mega:hover .mega-panel {
    display: flex;
    gap: 30px;
}

.mega-left h3 {
    color: var(--black);
    font-size: 18px;
    margin-bottom: 10px;
}

.mega-left p {
    color: #94a3b8;
    font-size: 13px;
    max-width: 200px;
}

.mega-columns {
    /* display: flex; */
    gap: 30px;
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-link {
    color: #cbd5e1;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.mega-link:hover {
    color: #fff;
    transform: translateX(4px);
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--black);
}


.hero {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0b0f2a, #111c4a, #1b2a7a);
    color: #fff;
    padding-top: 100px; /* space for fixed navbar */
}

.hero__container {
        max-width: 1200px;
    /* margin: auto; */
    padding: 0px 120px;
    display: flex;
    align-items: center;
    justify-content: left;
    margin-left: 30px;
    padding-bottom: 50px;
}

.hero__content {
    max-width: 550px;
}

.hero__content::before {
    content: "● ENTERPRISE TECHNOLOGY PARTNER";
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    color: #cbd5e1;
    background: rgba(255,255,255,0.08);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero__title span {
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__text {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    background: var(--primary);
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.hero__image img {
    width: 420px;
    max-width: 100%;
    opacity: 0.95;
    margin-left: 50%;
}

.nav-links a, .mega-toggle{
    color: var(--black) !important;
}

.actions .contact:hover {
    background:var(--black);
}

.actions .contact {
    background: #2c2c2c;
    color: #fff;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px; 
    transition: all 0.3s ease;
}

.expertise {
    background: #f5f7fb;
    padding: 50px 0px;
    text-align: center;
}

.expertise__wrap {
    max-width: 1200px;
    margin: auto;
}

.expertise__heading {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    position: relative;
}

.expertise__heading::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    margin: 0 auto 15px;
    border-radius: 10px;
}

.expertise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.expertise__card {
    position: relative;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    color: #fff;
    background-size: cover;
    background-position: center;
    transition: 0.4s ease;
}

.expertise__card:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d');
}
.expertise__card:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475');
}
.expertise__card:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c');
}

.expertise__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(30,41,59,0.9));
    z-index: 1;
}

.expertise__card * {
    position: relative;
    z-index: 2;
}

.card-badge {
    font-size: 12px;
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 25px;
    width: fit-content;
    margin-bottom: 10px;
}

.card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.card__desc {
    font-size: 14px;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.card__link {
    font-size: 13px;
    color:var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.expertise__card:hover {
    transform: translateY(-10px);
}

.why-clients {
    background: #f5f7fb;
    padding: 50px 0px;
    text-align: center;
}

.why__wrap {
    max-width: 1200px;
    margin: auto;
}

.why__heading {
    font-size: 34px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    position: relative;
}

.why__heading::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    margin: 0 auto 15px;
    border-radius: 10px;
}

/* .why__heading strong {
    color: #3b82f6;
} */

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 60px;
}

.why__item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 18px;
    text-align: left;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.why__item img {
    width: 45px;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 12px;
    background: #f1f5f9;
    transition: 0.3s;
}

.why__item h4 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 10px;
    transition: 0.3s;
}

.why__item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    transition: 0.3s;
}

.why__item:hover {
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59,130,246,0.3);
}

.why__item:hover h4,
.why__item:hover p {
    color:var(--white);
}

.why__item:hover img {
    background: rgba(255,255,255,0.15);
    filter: brightness(1) invert(1);
}

.why__grid:hover .why__item:not(:hover) {
    opacity: 0.6;
}

.key-products {
    background: radial-gradient(circle at top, #eef2ff, #f8fafc);
    padding: 50px 0px;
    text-align: center;
}

.key-products__wrap {
    max-width: 1150px;
    margin: auto;
}

.kp__heading {
    font-size: 36px;
    font-weight: 700;
    color:var(--head-title);
    margin-bottom: 10px;
    position: relative;
}

.kp__heading::before {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    margin: 0 auto 15px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    border-radius: 10px;
}

.kp__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.kp__item {
    position: relative;
    padding: 25px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.4);
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.05); */
    text-align: left;
    transition: all 0.4s ease;
    overflow: hidden;
}

.kp__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(99,102,241,0.25), transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.kp__item:hover::before {
    opacity: 1;
}

.kp__item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 70px rgba(59,130,246,0.2);
}

.text-line {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.text-line img {
    width: 50px;
    padding: 0px;
    border-radius: 14px;
    /* background: linear-gradient(135deg, #6366f1, #3b82f6); */
    /* filter: brightness(0) invert(1); */
    /* box-shadow: 0 10px 25px rgba(99,102,241,0.4); */
    /* transition: 0.4s; */
}

.kp__item:hover .text-line img {
    transform: rotate(8deg) scale(1.1);
}

.text-line h4 {
    font-size: 20px;
    font-weight: 600;
    color:var(--head-title);
}

.kp__item p {
    font-size: 14px;
    color: #3f3f3f;
    line-height: 1.6;
    font-weight: 450;
    margin-bottom: 8px;
}

.kp__link {
    font-size: 30px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: 0.3s;
}

.kp__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    transition: 0.3s;
}

.kp__link::before {
    transition: 0.3s;
}

.kp__link:hover::after {
    width: 100%;
}

.kp__link:hover::before {
    transform: translateX(5px);
}

.partner-section {
    padding: 50px 0px;
    background: #f5f7fb;
}


.partner__wrap {
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(135deg, #0b122a, #1e2a78);
    border-radius: 28px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.partner__wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(59,130,246,0.25), transparent 60%);
    opacity: 0.6;
}

.partner__left {
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.partner__kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.08);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    color: #facc15;
    font-weight: 500;
}

.partner__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.partner__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 6px;
    /* background: linear-gradient(135deg, #3b82f6, #4f46e5); */
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    margin-top: 16px;
    border: 1px solid white;
}

.partner__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59,130,246,0.4);
}

.partner__cta .arrow {
    transition: 0.3s;
}

.partner__cta:hover .arrow {
    transform: translateX(5px);
}

.partner__right {
    position: relative;
    z-index: 2;
}

.partner__right img {
    width: 420px;
    max-width: 100%;
}

.partner__tabs {
    max-width: 1200px;
    margin: 0px 0px;
    text-align: left;
}

.tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 16px;
    border-radius: 10px;
    background:#09090969;
    color: var(--white);
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    font-weight: 448;
}

.tab.active {
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
    color: #fff;
}

.tab:hover {
    background: #cbd5f5;
}
.tab:hover {
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
    color: #fff;
}

.industries {
    padding: 50px 0px;
    background: #f5f7fb;
    font-family: 'Segoe UI', sans-serif;
}

.industries__wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.industries__heading {
    font-size: 36px;
    letter-spacing: 0px;
    color: var(--head-title);
    margin-bottom: 40px;
    font-weight: 700;
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.industry-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.industry-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.industry-icon {
    margin-bottom: 15px;
    /* background-color: black; */
}

.industry-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.industry-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    letter-spacing: 1px;
}

.services {
    padding: 50px 0px;
    background: #f5f7fb;
    font-family: 'Segoe UI', sans-serif;
}

.services__wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services__title {
    font-size: 13px;
    letter-spacing: 2px;
    color: #6b7280;
    margin-bottom: 10px;
}

.services__kicker {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.services__grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background:var(--white);
    padding: 30px 25px;
    border-radius: 18px;
    text-align: left;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
    position: relative;
}

.service-card__icon {
    margin-bottom: 20px;
}

.service-card__icon img {
    width: 55px;
    height: 55px;
}

.service-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.service-card:hover {
    border: 1px solid #3b82f6; /* blue border */
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    transform: translateY(-6px);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(59,130,246,0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.contact-section {
    padding: 50px 0px;
    background: #f5f7fb;
    font-family: 'Segoe UI', sans-serif;
}

.contact__wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact__card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact__title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 25px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact__input,
.contact__textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.contact__textarea {
    min-height: 120px;
    resize: none;
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: #3b82f6;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact__captcha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #6b7280;
}

.checkbox input {
    margin-right: 6px;
}

.captcha__placeholder {
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
}

.btn-submit {
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background:var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.contact__illustration {
    text-align: left;
}

.contact__heading {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.contact__illustration img {
    max-width: 100%;
    margin-top: 20px;
}

.btn-submit:hover {
   background: #464646;
   color: white;
}

.site-footer {
    background:var(--head-title);
    color: #cbd5e1;
    padding: 50px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.site-footer__wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}


.footer-col--right {
    text-align: right;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color:var(--white);
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
}

.ratings {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 15px;
}

.rating-logo {
    height: 30px;
    object-fit: contain;
}

.footer-col--right p:last-child {
    color: #d7c685; 
    font-weight: 500;
}


.footer-col--right p:last-child strong {
    color: #ffcb43;
}

.nav-links .hire{
    color: #d93c3c !important;
}

/* CURSOR */
body {
  cursor: none;
  background:var(--white); 
}

.cursor {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;

  background:var(--white);

  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out;

  /* 🔥 INVERT EFFECT */
  mix-blend-mode: difference;

  /* Glow (optional but looks cool) */
  box-shadow: 
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6);

  animation: pulse 1.5s infinite ease-in-out;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
    
    .hero{
      display: flow;
    }
    .mobile-menu-btn {
        display: block;
    }

    .top-menu__main {
        padding: 16px 20px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

     .industries__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partner__wrap {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

    .partner__left {
        max-width: 100%;
    }

    .partner__title {
        font-size: 28px;
    }

    .partner__right img {
        width: 300px;
        margin-top: 30px;
    }

    .partner__tabs {
        text-align: center;
    }

    .tabs {
        justify-content: center;
    }

    .kp__grid {
        grid-template-columns: repeat(2, 1fr);
    }

     .why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

     .expertise__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__container {
        flex-direction: column;
        text-align: center;
        padding: 20px 20px;
    }
    
    .actions .contact{
        padding: 12px 12px;
    }

    .logo__image {
        height: 48px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__image img {
        width: 300px;
        margin-top: 40px;
        display: none;
    }
}

@media (max-width: 992px) {
    .contact__wrap {
        grid-template-columns: 1fr;
        padding-left: 12px;
        padding-right: 12px;
    }

    .contact__illustration {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .expertise__grid {
        grid-template-columns: 1fr;
        padding-left: 12px;
        padding-right: 12px;
    }

    .expertise__heading {
        font-size: 28px;
    }

     .services__grid {
        grid-template-columns: 1fr;
        padding-left: 12px;
        padding-right: 12px;
    }

    .services__kicker {
        font-size: 26px;
    }

    .kp__grid {
        grid-template-columns: 1fr;
        padding-left: 12px;
        padding-right:12px;
    }

    .kp__heading {
        font-size: 28px;
    }

    .why__grid {
        grid-template-columns: 1fr;
        padding-left: 12px;
        padding-right: 12px
    }

    .why__heading {
        font-size: 26px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .industries__grid {
        grid-template-columns: repeat(2, 1fr);
    }

     .site-footer__wrap {
        flex-direction: column;
        text-align: center;
    }

    .footer-col--right {
        text-align: center;
    }

    .ratings {
        justify-content: center;
    }

    .nav-links{
        display: none;
    }

}

/* @media (min-width: 768px) {
    .nav-links {
        display: none;
        gap: 8px !important;
    }
}         */

@media (max-width: 480px) {
    .industries__grid {
        grid-template-columns: 1fr;
        padding-left: 12px;
        padding-right: 12px;
    }
}



/* MOBILE FIX */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  /* Move hamburger LEFT */
  .mobile-menu-btn {
    order: -1;
    margin-right: auto;
  }
}

/* SIDEBAR */
.custom-sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #0c0c0c;
  color: #fff;
  padding: 20px;
  transition: 0.3s ease;
  z-index: 9999;
}

.custom-sidebar.active {
  left: 0;
}

/* CLOSE BUTTON */
.custom-close {
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-bottom: 20px;
}

/* LINKS */
.custom-links {
  list-style: none;
  padding: 0;
}

.custom-links li {
  margin-bottom: 15px;
}

.custom-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.custom-links a:hover {
  color: var(--primary);
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  /* MOVE BUTTON LEFT */
  .actions {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .mobile-menu-btn {
    order: -1;
    margin-right: auto;
  }
}

/* SIDEBAR */
.custom-sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #0c0c0c;
  color: #fff;
  padding: 20px;
  transition: 0.3s ease;
  z-index: 9999;
}

.custom-sidebar.active {
  left: 0;
}

/* CLOSE BUTTON */
.custom-close {
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-bottom: 20px;
}

/* LINKS */
.custom-links {
  list-style: none;
  padding: 0;
}

.custom-links li {
  margin-bottom: 15px;
}

.custom-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* HIDE on desktop */
.mobile-menu-btn {
  display: none;
}

/* SHOW on mobile */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block !important;
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .top-menu__main {
    display: flex;
    align-items: center;
  }

  .actions {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: end;
  }

  /* .mobile-menu-btn {
    order: -1;
    margin-right: auto;
  } */
}



/* ERROR----=====404 */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

/* Center container */
.error-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-box {
    text-align: center;
    max-width: 700px;
    width: 100%;
}

/* 404 */
.error-code {
    font-size: 64px;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 30px;
}

/* Title */
.error-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Text */
.error-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

/* Search box */
.search-box {
    display: flex;
    justify-content: center;
}

.search-box input {
    width: 70%;
    padding: 12px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 16px;
}

.search-box button {
    padding: 12px 25px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.search-box button:hover {
    background:var(--primary);
}