@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}


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

div {
    box-sizing: border-box;
}

input {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

button {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

textarea {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.hover-text {
  color: black; /* normal color */
  transition: color 0.3s ease; /* smooth animation */
}

.hover-text:hover {
  color: #2563EB
}

::selection{
    background-color: transparent;
    color: #2563EB
}

.container {
    width: 100%;
    max-width: 1400px;
    height: auto;
    margin: 0 auto;
}

.row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* === POSITION === */
.static {
    position: static;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.block {
    display: block;
}

.inline {
    display: inline;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.grid {
    display: grid;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-50-50 {
    grid-template-columns: 50% 50%;
}

.grid-auto {
    grid-template-columns: auto auto;
}

.justify-start {
    justify-content: start;
}

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

.justify-end {
    justify-content: end;
}

.justify-around {
    justify-content: space-around;
}

.justify-between {
    justify-content: space-between;
}

.justify-evenly {
    justify-content: space-evenly;
}

.align-start {
    align-items: start;
}

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

.align-center {
    align-items: end;
}

.align-self-center {
    align-self: center;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-12 {
    gap: 4rem;
}

.gap-24 {
    gap: 6rem;
}

/* Gap X-axis (column gap) */
.gap-x-1 {
    column-gap: 0.25rem;
}

.gap-x-2 {
    column-gap: 0.5rem;
}

.gap-x-3 {
    column-gap: 0.75rem;
}

.gap-x-4 {
    column-gap: 1rem;
}

.gap-x-5 {
    column-gap: 1.25rem;
}

.gap-x-6 {
    column-gap: 1.5rem;
}

.gap-x-8 {
    column-gap: 2rem;
}

.gap-x-10 {
    column-gap: 2.5rem;
}

.gap-x-12 {
    column-gap: 3rem;
}

/* Gap Y-axis (row gap) */
.gap-y-1 {
    row-gap: 0.25rem;
}

.gap-y-2 {
    row-gap: 0.5rem;
}

.gap-y-3 {
    row-gap: 0.75rem;
}

.gap-y-4 {
    row-gap: 1rem;
}

.gap-y-5 {
    row-gap: 1.25rem;
}

.gap-y-6 {
    row-gap: 1.5rem;
}

.gap-y-8 {
    row-gap: 2rem;
}

.gap-y-10 {
    row-gap: 2.5rem;
}

.gap-y-12 {
    row-gap: 3rem;
}

.col-fit {
    width: fit-content;
}

.col-100 {
    width: 100%;
}

.col-90 {
    width: 90%;
}

.col-80 {
    width: 80%;
}

.col-70 {
    width: 70%;
}

.col-68 {
    width: 69%;
}

.col-60 {
    width: 60%;
}

.col-50 {
    width: 50%;
}

.col-40 {
    width: 40%;
}

.col-30 {
    width: 30%;
}

.col-23 {
    width: 23%;
}

.col-20 {
    width: 20%;
}

.col-10 {
    width: 10%;
}

.col-1px {
    width: 1px;
}

.col-2px {
    width: 2px;
}

.col-4px {
    width: 4px;
}

.col-6px {
    width: 6px;
}

.col-8px {
    width: 8px;
}

.col-10px {
    width: 10px;
}

.col-12px {
    width: 12px;
}

.col-14px {
    width: 14px;
}

.col-16px {
    width: 16px;
}

.col-18px {
    width: 18px;
}

.col-20px {
    width: 20px;
}

.col-22px {
    width: 22px;
}

.col-24px {
    width: 24px;
}

.col-26px {
    width: 26px;
}

.col-28px {
    width: 28px;
}

.col-30px {
    width: 30px;
}

.col-32px {
    width: 32px;
}

.col-34px {
    width: 34px;
}

.col-36px {
    width: 36px;
}

.col-38px {
    width: 38px;
}

.col-40px {
    width: 40px;
}

.col-42px {
    width: 42px;
}

.col-44px {
    width: 44px;
}

.col-46px {
    width: 46px;
}

.col-48px {
    width: 48px;
}

.col-50px {
    width: 50px;
}

.h-100dvh {
    height: 100dvh;
}

.h-100 {
    width: 100%;
}

.h-90 {
    height: 90%;
}

.h-80 {
    height: 80%;
}

.h-70 {
    height: 70%;
}

.h-60 {
    height: 60%;
}

.h-40 {
    height: 40%;
}

.h-30 {
    height: 30%;
}

.h-20 {
    height: 20%;
}

.h-10 {
    height: 10%;
}

.h-1px {
    height: 1px;
}

.h-2px {
    height: 2px;
}

.h-4px {
    height: 4px;
}

.h-6px {
    height: 6px;
}

.h-8px {
    height: 8px;
}

.h-10px {
    height: 10px;
}

.h-12px {
    height: 12px;
}

.h-14px {
    height: 14px;
}

.h-16px {
    height: 16px;
}

.h-18px {
    height: 18px;
}

.h-20px {
    height: 20px;
}

.h-22px {
    height: 22px;
}

.h-24px {
    height: 24px;
}

.h-26px {
    height: 26px;
}

.h-28px {
    height: 28px;
}

.h-30px {
    height: 30px;
}

.h-32px {
    height: 32px;
}

.h-34px {
    height: 34px;
}

.h-36px {
    height: 36px;
}

.h-38px {
    height: 38px;
}

.h-40px {
    height: 40px;
}

.h-42px {
    height: 42px;
}

.h-44px {
    height: 44px;
}

.h-46px {
    height: 46px;
}

.h-48px {
    height: 48px;
}

.h-50px {
    height: 50px;
}

.h-auto {
    height: auto;
}

/* Background Classes */
.bg-white {
    background-color: white;
}

.bg-transparent {
    background-color: transparent;
}

.bg-primary {
    background-color: #4A90E2;
}

.bg-secondary {
    background-color: #357ABD;
}

.bg-blue {
    background-color: #2563EB;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-black {
    background-color: #000000;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-200 {
    background-color: #e5e7eb;
}

.bg-gray-300 {
    background-color: #d1d5db;
}

.bg-gray-400 {
    background-color: #9ca3af;
}

.bg-gray-500 {
    background-color: #6b7280;
}

.bg-gray-600 {
    background-color: #4b5563;
}

.bg-gray-700 {
    background-color: #374151;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-red-50 {
    background-color: #fef2f2;
}

.bg-red-100 {
    background-color: #fee2e2;
}

.bg-red-200 {
    background-color: #fecaca;
}

.bg-red-300 {
    background-color: #fca5a5;
}

.bg-red-400 {
    background-color: #f87171;
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-red-600 {
    background-color: #dc2626;
}

.bg-red-700 {
    background-color: #b91c1c;
}

.bg-red-800 {
    background-color: #991b1b;
}

.bg-red-900 {
    background-color: #7f1d1d;
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.bg-green-200 {
    background-color: #bbf7d0;
}

.bg-green-300 {
    background-color: #86efac;
}

.bg-green-400 {
    background-color: #4ade80;
}

.bg-green-500 {
    background-color: #22c55e;
}

.bg-green-600 {
    background-color: #16a34a;
}

.bg-green-700 {
    background-color: #15803d;
}

.bg-green-800 {
    background-color: #166534;
}

.bg-green-900 {
    background-color: #14532d;
}

.bg-yellow-500 {
    background-color: #fefce8;
}

.bg-yellow-100 {
    background-color: #fef9c3;
}

.bg-yellow-200 {
    background-color: #fef08a;
}

.bg-yellow-300 {
    background-color: #fde047;
}

.bg-yellow-400 {
    background-color: #facc15;
}

.bg-yellow-500 {
    background-color: #eab308;
}

.bg-yellow-600 {
    background-color: #ca8a04;
}

.bg-yellow-700 {
    background-color: #a16207;
}

.bg-yellow-800 {
    background-color: #854d0e;
}

.bg-yellow-900 {
    background-color: #713f12;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.bg-purple-100 {
    background-color: #f3e8ff;
}

.bg-purple-200 {
    background-color: #e9d5ff;
}

.bg-purple-300 {
    background-color: #d8b4fe;
}

.bg-purple-400 {
    background-color: #c084fc;
}

.bg-purple-500 {
    background-color: #a855f7;
}

.bg-purple-600 {
    background-color: #9333ea;
}

.bg-purple-700 {
    background-color: #7e22ce;
}

.bg-purple-800 {
    background-color: #6b21a8;
}

.bg-purple-900 {
    background-color: #581c87;
}

.bg-pink-50 {
    background-color: #fdf2f8;
}

.bg-pink-100 {
    background-color: #fce7f3;
}

.bg-pink-200 {
    background-color: #fbcfe8;
}

.bg-pink-300 {
    background-color: #f9a8d4;
}

.bg-pink-400 {
    background-color: #f472b6;
}

.bg-pink-500 {
    background-color: #ec4899;
}

.bg-pink-600 {
    background-color: #db2777;
}

.bg-pink-700 {
    background-color: #be185d;
}

.bg-pink-800 {
    background-color: #9d174d;
}

.bg-pink-900 {
    background-color: #831843;
}

.bg-indigo-50 {
    background-color: #eef2ff;
}

.bg-indigo-100 {
    background-color: #e0e7ff;
}

.bg-indigo-200 {
    background-color: #c7d2fe;
}

.bg-indigo-300 {
    background-color: #a5b4fc;
}

.bg-indigo-400 {
    background-color: #818cf8;
}

.bg-indigo-500 {
    background-color: #6366f1;
}

.bg-indigo-600 {
    background-color: #4f46e5;
}

.bg-indigo-700 {
    background-color: #4338ca;
}

.bg-indigo-800 {
    background-color: #3730a3;
}

.bg-indigo-900 {
    background-color: #312e81;
}

.bg-orange-50 {
    background-color: #fff7ed;
}

.bg-orange-100 {
    background-color: #ffedd5;
}

.bg-orange-200 {
    background-color: #fed7aa;
}

.bg-orange-300 {
    background-color: #fdba74;
}

.bg-orange-400 {
    background-color: #fb923c;
}

.bg-orange-500 {
    background-color: #f97316;
}

.bg-orange-600 {
    background-color: #ea580c;
}

.bg-orange-700 {
    background-color: #c2410c;
}

.bg-orange-800 {
    background-color: #9a3412;
}

.bg-orange-900 {
    background-color: #7c2d12;
}

/* === SPACING (Margin & Padding) === */
/* Margin */
.m-0 {
    margin: 0;
}

.m-1 {
    margin: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.m-3 {
    margin: 0.75rem;
}

.m-4 {
    margin: 1rem;
}

.m-5 {
    margin: 1.25rem;
}

.m-6 {
    margin: 1.5rem;
}

.m-8 {
    margin: 2rem;
}

.m-10 {
    margin: 2.5rem;
}

.m-auto {
    margin: auto;
}

/* Margin X-axis */
.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Margin Y-axis */
.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

/* Margin Top */
.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

/* Margin Bottom */
.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* Margin Left */
.ml-0 {
    margin-left: 0;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-4 {
    margin-left: 1rem;
}

.ml-6 {
    margin-left: 1.5rem;
}

.ml-8 {
    margin-left: 2rem;
}

.ml-12 {
    margin-left: 3rem;
}

.ml-auto {
    margin-left: auto;
}

/* Margin Right */
.mr-0 {
    margin-right: 0;
}

.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-4 {
    margin-right: 1rem;
}

.mr-6 {
    margin-right: 1.5rem;
}

.mr-8 {
    margin-right: 2rem;
}



.mr-auto {
    margin-right: auto;
}

/* Padding */
.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-10 {
    padding: 2.5rem;
}

.p-12 {
    padding: 4rem;
}

/* Padding X-axis */
.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}

.px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
}

/* Padding Y-axis */
.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.py-33per {
    padding-top: 32%;
    padding-bottom: 32%;
}

.py-auto {
    padding-top: auto;
    padding-bottom: auto;
}

/* === BORDERS === */
.border {
    border-width: 1px;
    border-style: solid;
}

.border-0 {
    border-width: 0;
}

.border-2 {
    border-width: 2px;
    border-style: solid;
}

.border-4 {
    border-width: 4px;
    border-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-l {
    border-left-width: 1px;
    border-left-style: solid;
}

.border-r {
    border-right-width: 1px;
    border-right-style: solid;
}

.border-gray-200 {
    border-color: #edf2f7;
}

.border-gray-300 {
    border-color: #e2e8f0;
}

.border-gray-400 {
    border-color: #cbd5e0;
}

.border-gray-500 {
    border-color: #a0aec0;
}

.border-blue-500 {
    border-color: #4299e1;
}

.border-blue-600 {
    border-color: #3182ce;
}

.border-red-600 {
    border-color: #e53e3e;
}

.rounded-none {
    border-radius: 0;
}

.rounded-sm {
    border-radius: 0.125rem;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 2.25rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* === TYPOGRAPHY === */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3.5rem;
    line-height: 1.2;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.font-thin {
    font-weight: 100;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-poppin {
    font-family: 'Poppins', sans-serif;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.leading-none {
    line-height: 1;
}

.leading-tight {
    line-height: 1.25;
}

.leading-normal {
    line-height: 1.5;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-loose {
    line-height: 2;
}

/* === COLORS === */
/* Text Colors */
.text-white {
    color: #ffffff;
}

.text-black {
    color: #000000;
}

.text-gray-100 {
    color: #f7fafc;
}

.text-gray-200 {
    color: #edf2f7;
}

.text-gray-300 {
    color: #e2e8f0;
}

.text-gray-400 {
    color: #cbd5e0;
}

.text-gray-500 {
    color: #a0aec0;
}

.text-gray-600 {
    color: #718096;
}

.text-gray-700 {
    color: #4a5568;
}

.text-gray-800 {
    color: #2d3748;
}

.text-gray-900 {
    color: #1a202c;
}

.text-blue-500 {
    color: #4299e1;
}

.text-blue-600 {
    color: #3182ce;
}

.text-blue-700 {
    color: #2563EB
}

.text-red-500 {
    color: #f56565;
}

.text-red-600 {
    color: #e53e3e;
}

.text-green-500 {
    color: #48bb78;
}

.text-green-600 {
    color: #38a169;
}

.text-yellow-500 {
    color: #ecc94b;
}

.text-purple-500 {
    color: #9f7aea;
}

/* === SHADOWS === */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-none {
    box-shadow: none;
}


.nav-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    column-gap: 1rem;
}

.nav-left-col {
    width: 50%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.nav-right-col {
    width: 50%;
    display: flex;
    justify-content: end;
    align-items: center;
    background-color: white;
    column-gap: 1rem;
}

.hero-left {
    width: 50%;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.lang-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    align-self: center;
    border-radius: 2.25rem;
    column-gap: 0.5rem;
}

.decorated {
    position: relative;
    display: inline-block;
}

.decorated::before {
    content: "";
    position: absolute;
    top: -25px;
    right: -40px;
    width: 50px;
    height: 50px;
    background-image: url('/images/shine.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.decorated::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 70px;
    width: 230px;
    height: 20px;
    background-image: url('/images/line.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
}


.hero-right {
    width: 50%;
    padding: 3rem;
    background-image: url(images/form-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-right-form {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
}

.contact-button {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-width: 1px;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    background-color: white;
    border-color: #2563EB;
    color: #2563EB
}

.contact-button:hover {
    background-color: #2563EB;
    color: white;
    box-shadow: 0 0 15px -3px rgba(37, 99, 235, 0.4), 0 4px 6px -2px rgba(37, 99, 235, 0.3);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* .bg-img {
    background-image: url(images/form-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
} */

.input-form {
    display: block;
    width: 100%;
    height: 48px;
    padding: 8px;
    border-radius: 1px;
    border: 0px;
    color: rgb(148, 147, 147);
    border-radius: 5px;
    border-color: #cbd5e0;
    font-size: medium;
    font-family: 'Poppins', sans-serif;
}

.phone-input-wrapper {
    width: 100%;
}

.country-code-select {
    width: 30%;
    min-width: 100px;
    flex-shrink: 0;
}

.phone-input {
    flex: 1;
    width: 100%;
}

.submit-button {
    display: block;
    width: 100%;
    height: 64px;
    border-radius: 5px;
    border: 0px;
    background-color: #2563EB;
    color: white;
    font-size: medium;
    font-family: 'Poppins', sans-serif;
}

/* .about-image-div{
    display: ;
}*/

.trusted-partner-design {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}

.partners {
    position: relative;
}

.partners::before {
    content: url(/images/left.png);
    position: absolute;
    left: 0;
    top: 50%;
    height:fit-content;
    transform: translateY(-50%);
}

.partners::after {
    content: url(/images/right.svg);
    position: absolute;
    right: 0;
    top: 50%;
    height:fit-content;
    transform: translateY(-50%);
}

.about-row{
    flex-wrap: nowrap;
    padding-top: 8rem;
    padding-bottom: 8rem;
    row-gap: 3rem;
}

.about-left {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.about-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    row-gap: 2rem;
}

.services-section{
    padding: 0px 0px 70px 0px;
}

.service-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.service-block {
    display: block;
    height: 225px;
    width: 335px;
    border: 1px solid #2563EB;
    border-radius: 0.375rem;
}

.h-225px {
    height: 225px;
}

.client-section{
        padding: 50px 0px;
}

.client-section-heading {
    width: 100%;
    height: auto;
}

.client-card-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 2.5rem;
}

.client-card {
    width: 23%;
    height: auto;
    padding: 1rem;
    border: 0px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0.375rem;
    background-color: white;
}

.client-card-header {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 2.5rem;
}

.client-stars {
    width: 50%;
    grid-column: 1rem;
    display: flex;
    justify-content: space-around;
    align-self: center;
}

.google-logo {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: flex-end;

}

.why-us-section{
    padding:70px 0px;
}

.why-us-section-heading{
    padding: auto;
}

.why-us-section-heading {
    width: 100%;
    height: auto;
}

.why-us-cols {
    width: 33%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.why-us-col-content {
    width: 100%;
    height: auto;
    padding: 2rem;
}

.left-online-section {
    width: 40%;
    height: auto;
}

.right-online-section {
    width: 60%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
}

.whatsapp-button {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: #22c55e;
    border-width: 0px;
    border-radius: 2.25rem;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.whatsapp-button-icon {
    width: 20px;
    height: 20px;
    text-align: center;
    vertical-align: baseline;
    margin-right: 6px;
}

.online {
    padding: 50px 0px;
}

.online-container{
    padding: 40px 0px;
    background-color: #2563EB;
    border-radius: 2.25rem;
}

.customer-video-left {
    width: 40%;
    align-self: center;
}

.customer-video-right {
    width: 60%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.office-heading {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.image-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    margin-right: auto;
}

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

.office-image {
    display: block;
    width: 100%;
    height: auto;
}

.online-token-form-bg-img {
    background-image: url(/images/leads-bg.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: fit-content;
    padding: 100px 0px;
}

.online-form-left {
    width: 40%;
    align-self: center;
}

.online-form-right {
    width: 60%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.online-form {
    width: 80%;
    height: auto;
    background-color: white;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0.75rem;
}

.footer-flex-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.column-50 {
    width: 50%;
}


@media (max-width:769px) {

    .nav-row {
        flex-direction: column;
        row-gap: 1rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .nav-left-col {
        width: 100%;
        justify-content: center;
        align-items: center;

    }

    .nav-right-col {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .hero-left {
        width: 100%;
        padding: 1.5rem;
    }

    .decorated::before {
        width: 35px;
        height: 35px;
        top: -9px;
        right: 65px;
    }

    .decorated::after {
        height: 18px;
        bottom: -5px;
        left: 0px;
    }

    .hero-right {
        width: 100%;
        padding: 1.5rem;
        background-image: url(images/form-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .country-code-select {
        width: 35%;
        min-width: 90px;
    }

    .col-50 {
        width: 100%;
    }

    .col-33 {
        width: 33%;
    }

    .about-row{
        flex-direction: column;
        padding-top: 2rem;
        padding-bottom: 2rem;
        row-gap: 2rem;
    }

    .about-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        padding: 10px;
    }

    .about-right {
        width: 100%;
        padding: 10px;

    }

    .about-left {
        width: 100%;
    }

    .service-row {
        flex-direction: column;
        align-items: center;
    }

    .services-section{
        padding: 4rem 0rem;
    }

    .client-section-heading{
        padding: 1rem;
    }

    .client-card-container {
        flex-direction: column;
        justify-content: center;
        gap: 16px;
    }

    .client-card {
        width: 80%;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .why-us-section{
        padding: 2rem 0;
    }

    .why-us-section-heading {
        padding: 1rem;
    }

    .why-us-cols {
        width: 100%;
    }

    .left-online-section {
        width: 100%;
    }

    .left-online-section button {
        width: 100%;
    }

    .right-online-section {
        width: 100%;
        justify-content: center;
        align-items: center;

    }

    .customer-video-left {
        width: 100%;
    }

    .customer-video-right {
        width: 100%;
        justify-content: center;
    }

    .online-container{
        padding: 10px 0px;
    }

    .online-form-left {
        width: 100%;
    }

    .online-form-left button {
        width: 100%;
    }

    .online-form-right {
        width: 100%;
        height: auto;
        justify-content: center;
        padding: 0.5rem;
    }

    .online-form {
        width: 100%;
    }

    .customer-video-left{
        padding: 1rem;
    }

    .office-heading{
        padding: 1rem;
    }

    .office-image{
        padding: 1rem;
    }

    .image-container {
        
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .online-token-form-bg-img{
        padding: 1rem 0px;
    }

    .online-form-left{
        padding: 1rem;
    }

    .col-30 {
        width: 100%;
    }

    .col-68 {
        width: 100%;
    }

    .footer-flex-container{
        flex-direction: column;
        row-gap: 2rem;
    }
}

@media (max-width:480px) {
    .decorated::before {
        width: 25px;
        height: 25px;
        top: -2px;
        right: 15px;
        rotate: -10deg;
    }

    .decorated::after {
        height: 15px;
        bottom: -4px;
        left: 0px;
    }
}