body {
	background-color: #111;
	font-family: 'Inter', sans-serif;
}

.navbar {
	background-color: #111;
	padding: 10px 20px;
}
.navbar {
    position: sticky;
    top: 0; /* कहाँ चिपकना है (टॉप से 0px पर) */
    z-index: 1030;
    /* `position: sticky` के साथ body पैडिंग की आवश्यकता नहीं होती है, 
       लेकिन यह पुराने ब्राउज़र में काम नहीं कर सकता है। */
}
.logo-box {
	background: #00e5cf;
	color: #000;
	font-weight: bold;
	padding: 10px 15px;
	display: inline-block;
	margin-right: 10px;
	border-radius: 3px;
	font-family: 'Inter', sans-serif;
}
a.log_bsk {
    width: 35%;
}

.logo-text {
    font-weight: 500;
    color: #ad8643;
    margin: 0;
    font-size: 23px;
    font-family: auto;
    padding-left: 5px;
}

.logo-sub {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-family: 'Inter', sans-serif;
    padding-left: 5px;
}

.nav-link {
	color: #bbb !important;
	font-weight: 500;
	margin: 0 10px;
	font-family: 'Inter', sans-serif;
}

.nav-link:hover {
	color: #fff !important;
}

.btn-quote {
	background: #00e5cf;
	color: #000;
	font-weight: 600;
	border-radius: 8px;
	padding: 8px 20px;
	transition: 0.3s;
	font-family: 'Inter', sans-serif;
}

.btn-quote:hover {
	background: #00c9b4;
	color: #fff;
}

.hero-section {
	padding: 100px 0;
	background: radial-gradient(circle at top left, rgba(0, 229, 207, 0.1), transparent 60%),
		radial-gradient(circle at bottom right, rgba(0, 229, 207, 0.05), transparent 60%),
		#0b0d0f;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero-badge {
	background: rgba(0, 229, 207, 0.1);
	color: #00e5cf;
	font-size: 14px;
	padding: 6px 14px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 20px;
}

.hero-title {
	color: #fff;
	font-weight: 800;
	font-size: 70px;
	line-height: 77px;
	background: linear-gradient(90deg, #ffffff, #00e5cf);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.hero-text {
	color: #bbb;
	margin-bottom: 25px;
	font-size: 16px;
	max-width: 500px;
}

.hero-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.hero-list li {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	font-size: 15px;
	font-family: 'Inter';
	color: #fff;
}

.hero-list li span {
	background: rgba(0, 229, 207, 0.15);
	color: #00e5cf;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	margin-right: 10px;
	font-weight: bold;
}

.btn-custom {
	background: #00e5cf;
	color: #000;
	font-weight: 600;
	border-radius: 6px;
	padding: 10px 22px;
	margin-right: 12px;
	transition: 0.3s;
}

.btn-custom:hover {
	background: #00c9b4;
	color: #fff;
}

.btn-dark-custom {
	background: #1c1e22;
	color: #fff;
	font-weight: 500;
	border-radius: 6px;
	padding: 10px 22px;
	transition: 0.3s;
}

.btn-dark-custom:hover {
	background: #333;
}

/* Right glowing box */
.glow-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 70px;
    text-align: center;
    position: relative;
    width: 90%;
    height: 493px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.glow-box {
    background: #00e5cf;
    color: #000;
    font-weight: 800;
    font-size: 39px;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 5px 0px 51px 30px rgb(0 229 207 / 27%);
    font-family: 'Inter';
}

.glow-card h5 {
    margin: 0;
    color: #fff;
    font-weight: 800;
    font-size: 52px;
    background: linear-gradient(90deg, #ffffff, #00e5cf);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-card p {
    color: #bbb;
    font-size: 18px;
    margin: 0;
    font-family: 'Inter';
}

.floating {
	float: left;
	-webkit-animation-name: Floatingx;
	-webkit-animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-name: Floating;
	-moz-animation-duration: 3s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: ease-in-out;
	margin-top: 5px;
}

@-webkit-keyframes Floatingx {
	from {
		-webkit-transform: translate(0, 0px);
	}

	65% {
		-webkit-transform: translate(0, 15px);
	}

	to {
		-webkit-transform: translate(0, -0px);
	}
}

@-moz-keyframes Floating {
	from {
		-moz-transform: translate(0, 0px);
	}

	65% {
		-moz-transform: translate(0, 15px);
	}

	to {
		-moz-transform: translate(0, -0px);
	}
}


.hero-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 229, 207, 0.1), transparent 60%), radial-gradient(circle at bottom right, rgba(0, 229, 207, 0.05), #00000094 60%), #0b0d0ffa;
    top: 0px;
}
.hero-section {
	position: relative;
}

.h_ra {
	position: relative;
	z-index: 99;
}

:root {
    --bg-primary: #0A0A0B;
    --bg-secondary: #1A1A1D;
    --bg-tertiary: #2A2A2F;
    --bg-overlay: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.02);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-tertiary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-accent: #F8F9FA;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.12);
    --border-strong: rgba(255, 255, 255, 0.2);
    --brand-primary: #00E5C7;
    --brand-secondary: #0CC5A0;
    --brand-accent: #39F5E0;
    --brand-hover: rgba(0, 229, 199, 0.1);
    --brand-glow: rgba(0, 229, 199, 0.3);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 32px rgba(0, 229, 199, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 16px;
}
:root {
    --background: 0 0% 100%;
    --foreground: 0 0% 3.9%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 3.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 3.9%;
    --primary: 0 0% 9%;
    --primary-foreground: 0 0% 98%;
    --secondary: 0 0% 96.1%;
    --secondary-foreground: 0 0% 9%;
    --muted: 0 0% 96.1%;
    --muted-foreground: 0 0% 45.1%;
    --accent: 0 0% 96.1%;
    --accent-foreground: 0 0% 9%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 89.8%;
    --input: 0 0% 89.8%;
    --ring: 0 0% 3.9%;
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 0.5rem;
}
:root {
    --bg-primary: #0A0A0B;
    --bg-secondary: #1A1A1D;
    --bg-tertiary: #2A2A2F;
    --bg-overlay: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.02);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-tertiary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-accent: #F8F9FA;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.12);
    --border-strong: rgba(255, 255, 255, 0.2);
    --brand-primary: #00E5C7;
    --brand-secondary: #0CC5A0;
    --brand-accent: #39F5E0;
    --brand-hover: rgba(0, 229, 199, 0.1);
    --brand-glow: rgba(0, 229, 199, 0.3);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 32px rgba(0, 229, 199, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 16px;
}
:root {
    --background: 0 0% 100%;
    --foreground: 0 0% 3.9%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 3.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 3.9%;
    --primary: 0 0% 9%;
    --primary-foreground: 0 0% 98%;
    --secondary: 0 0% 96.1%;
    --secondary-foreground: 0 0% 9%;
    --muted: 0 0% 96.1%;
    --muted-foreground: 0 0% 45.1%;
    --accent: 0 0% 96.1%;
    --accent-foreground: 0 0% 9%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 89.8%;
    --input: 0 0% 89.8%;
    --ring: 0 0% 3.9%;
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 0.5rem;
}
.glow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--border-medium);
    background: rgba(255, 255, 255, 0.05);
}
.stats {
display: flex;
justify-content: center;
align-items: center;
gap: 80px;
padding: 20px 3px;
border-top: 1px solid #7b7b7b;
margin-top: 40px;
}
.stat-box {
text-align: center;
}
.stat-box h2 {
font-size: 40px;
font-weight: bold;
color: #7fffd4; /* Aqua Green Color */
margin-bottom: 10px;
}
.stat-box p {
font-size: 18px;
color: #ccc;
}
@media (max-width: 768px) {
.stats {
flex-direction: column;
gap: 30px;
}
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #000000;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s 
cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 56px;
    text-decoration: none;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-right: 30px;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent), var(--brand-primary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s 
ease;
    filter: blur(8px);
}
.glow-effect {
    position: relative;
}
.duration-300 {
    animation-duration: 300ms;
}
.duration-300 {
    transition-duration: 300ms;
}
.transition-transform {
    transition-property: transform;
    transition-timing-function: 
cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.w-5 {
    width: 1.25rem;
}
.h-5 {
    height: 1.25rem;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
}
.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s 
cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 56px;
    text-decoration: none;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1;
    letter-spacing: -0.01em;
    position: relative;
    backdrop-filter: blur(var(--glass-blur));
}
.duration-300 {
    animation-duration: 300ms;
}
.duration-300 {
    transition-duration: 300ms;
}
.transition-all {
    transition-property: all;
    transition-timing-function: 
cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.opacity-70 {
    opacity: 0.7;
}
.w-4 {
    width: 1rem;
}
.h-4 {
    height: 1rem;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.absolute {
    position: absolute;
}
.-top-6 {
    top: -2.5rem;
}
.-right-6 {
    right: 2.5rem;
}
.h-24 {
    height: 6rem;
}
.w-24 {
    width: 6rem;
}
.rounded-full {
    border-radius: 9999px;
}
.border {
    border-width: 1px;
}
.border-\[rgba\(0\2c 229\2c 199\2c 0\.3\)\] {
    border-color: rgba(0, 229, 199, 0.3) !important;
}
.border {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.opacity-60 {
    opacity: 0.6;
}
.to-transparent {
    --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.from-\[\#00E5C7\] {
    --tw-gradient-from: #00E5C7 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 229 199 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.rounded-full {
    border-radius: 9999px;
}

.circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #00b894c7, #003d3d00);
    position: absolute;
    bottom: 18px;
    left: -25px;
}
.modern-card:hover::before {
    opacity: 1;
}
.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s 
ease;
}
.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--border-medium);
    background: rgba(255, 255, 255, 0.05);
}
.float {
    animation: float 6s 
ease-in-out infinite;
}
.modern-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s 
cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(var(--glass-blur));
    position: relative;
    overflow: hidden;
}



.abu_titl h2 {
    text-align: -webkit-center;
    color: #fff;
    font-family: 'Inter';
    font-weight: 800;
    font-size: 60px;
}
.abu_titl h2 span {
    color: #fff;
    font-weight: 800;
    font-size: 70px;
    line-height: 77px;
    background: linear-gradient(90deg, #8bfded, #00e5cf);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.abu_titl p {
    color: #fff;
    text-align: center;
    font-family: 'Inter';
    font-size: 18px;
}
.about_sec {
    padding: 60px;
    position: relative;
}
section.about_sec:after {
    position: absolute;
    width: 100%;
    content: '';
    height: 100%;
    top: 0px;
    left: 0px;
    background: #000000eb;
}
.abu_titl {
    position: relative;
    z-index: 9;
}
.ceos {
    position: relative;
    z-index: 9;
    display: flex
;
    flex-direction: column;
    align-content: center;
    align-items: center;
 
    margin: 0 auto;
        margin-top: 50px;
}
.ceos h3 {
    color: #e5e7eb;
    font-weight: 800;
    font-size: 32px;
    line-height: 77px;
    background: linear-gradient(90deg, #8bfded, #00e5cf);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter';
    text-align: center;
    padding-top: 20px;
}
.ceos.modern-card p {
    text-align: center;
    color: #fff;
    font-style: italic;
    font-size: 17px;
    line-height: 30px;
    padding-top: 10px;
}
.ceos h4 {
    text-align: center;
    color: #fff;
    font-family: 'Inter';
    font-size: 24px;
        padding-top: 30px;
}
.ceos h6 {
    text-align: center;
    color: #fff;
    font-family: 'Inter';
    font-size: 24px;
}
.ceos h6 {
    text-align: center;
    color: #fff;
    font-family: 'Inter';
    font-size: 16px;
}
    .quote_box {
      width: 90px;
      height: 90px;
      background: radial-gradient(circle at top left, rgba(0, 255, 240, 0.06), rgba(0, 255, 240, 0.02));
      border: 1px solid rgba(0, 255, 240, 0.4);
      border-radius: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 5px rgba(0, 255, 240, 0.3);
    }

    .quote_box i {
      font-size: 36px;
      color: #00fff0;
    }
    .quote_box path {
    fill: #001f1d;
    stroke: #00e5c7;
    stroke-width: 2px;
}


.vision-box {
  display: flex;
  align-items: center;
  gap: 12px; /* icon aur text ke beech space */
  font-family: Arial, sans-serif;
}

.icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #00e5c7, #009688); /* gradient */
  color: #000;
  font-weight: bold;
  font-size: 22px;
  border-radius: 12px; /* rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* halka shadow */
}

.text {
    color: #ffffff;
    font-size: 29px;
    font-weight: 600;
    font-family: 'Inter';
}
.cmd {
    position: relative;
    z-index: 9;
    height: 270px;
    padding: 40px;
    margin-top: 60px;
}
.para p {
    color: #fff;
    font-family: 'Inter';
    font-size: 18px;
    padding: 20px 0px;
}
.box_lk {
  display: flex;
  gap: 32px;
  
  justify-content: center;
  flex-wrap: wrap;
   position: relative;
    z-index: 9;
    margin-top: 40px;
}
.box_lk__step {
    background-color: #181818;
    color: white;
    padding: 39px 31px 52px;
    width: 250px;
    border: 1px solid #767676;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s 
ease;
}

.box_lk__step:hover {
  transform: translateY(-5px);
}

.box_lk__top {
    display: flex
;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.box_lk__number {
    background-color: #00ffe0;
    color: black;
    font-weight: bold;
    width: 55px;
    height: 55px;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.box_lk__arrow {
  font-size: 20px;
  color: #888;
}

.box_lk__step h3 {
    font-size: 24px;
    margin: 0;
    font-family: 'Inter';
    font-weight: 700;
    padding: 15px 0px;
}

.box_lk__step p {
    font-size: 16px;
    line-height: 27px;
    margin: 0;
    font-family: 'Inter';
}
.rteda p {
    text-align: center;
    color: #fff;
    font-family: 'Inter';
    font-size: 17px;
    padding: 17px 2px;
}
.rteda h2 {
    text-align: center;
    color: #fff;
    font-family: 'Inter';
    font-weight: 800;
}
.rteda {
    position: relative;
    z-index: 9;
    padding: 70px 0px;
        text-align: center;
}


.bx_pop {
  display: flex;
  gap: 20px;
  justify-content: center;
  
  
  flex-wrap: wrap;
 
  position: relative;
  z-index: 9; 	
}

.bx_pop__card {
  background-color: #1a1c1e;
  color: #ffffff;
  padding: 30px 25px;
  width: 250px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.bx_pop__icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bx_pop__icon {
    background: linear-gradient(135deg, #00e5c700, #0096889c);
    border: 1px solid #00ffe0;
    color: #00ffe0;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.bx_pop__badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #00ffe0;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 7px;
  border-radius: 6px;
}

.bx_pop__arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background-color: #2e2f30;
  color: #ccc;
  width: 30px;
  height: 30px;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bx_pop__card h3 {
    font-size: 23px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    font-family: 'Inter';
}

.bx_pop__card p {
    font-size: 17px;
    color: #d7d7d7;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter';
}


.service-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s 
cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  
    display: flex
;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 229, 199, 0.2);
    border-color: var(--brand-primary);
    box-shadow: 5px 0px 51px 30px rgb(0 229 207 / 27%);
}


.aboserec {
    padding: 90px;
    position: relative;
}
.aboserec:after {
    position: absolute;
    width: 100%;
    content: '';
    height: 100%;
    top: 0px;
    left: 0px;
    background: #000000a1;
}

.cons_pos {
    padding: 80px;
    position: relative;
    z-index: 9;
    background: #000;
    border: 1px solid #636363;
    margin-top: 70px;
    text-align: center;
}
.cons_pos p {
    color: #fff;
    font-family: 'Inter';
    padding: 14px 0px;
}
.cons_pos h2 {
    color: #fff;
    font-family: 'Inter';
    font-weight: 800;
}
/* ----------------------------------
 * Projects Section Styles (pr_porsk class prefix)
 * ---------------------------------- */

/* Base Section Styling */
.pr_porsk-projects-section {
    
    padding: 80px 20px;
     position: relative;
    z-index: 9;
}

.pr_porsk-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards Layout (Grid/Flexbox) */
.pr_porsk-cards-wrapper {
    display: grid;
    /* Create 3 columns on large screens */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Space between cards */
}

/* Individual Card Style */
.pr_porsk-card {
    background-color: #111111; /* Even darker card background */
    padding: 30px;
    border-radius: 8px;
    /* Optional: Subtle border effect from the image */
    border: 1px solid #333333; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Card Header (Icon and Status) */
.pr_porsk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* File Icon Styling (Left side) */
.pr_porsk-icon {
    font-size: 1.5rem;
    color: #00e0a0;
    border: 1px solid #00e0a0;
    padding: 7px 13px;
    border-radius: 0px;
    background: linear-gradient(135deg, #00e5c757, #000000);
}

/* Status Styling (Right side) */
.pr_porsk-status {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Completed Status Color */
.pr_porsk-completed {
    background-color: transparent;
    color: #00e0a0; /* Green/Cyan color */
}
.pr_porsk-completed i {
    margin-right: 5px;
}

/* Ongoing Status Color */
.pr_porsk-ongoing {
    background-color: transparent;
    color: #ffc107; /* Yellow/Orange color */
}
.pr_porsk-ongoing i {
    margin-right: 5px;
}

/* Project Title */
.pr_porsk-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 39px;
    color: #fff;
}
/* Location Styling */
.pr_porsk-location {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 20px;
}
.pr_porsk-location i {
    margin-right: 8px;
    color: #00e0a0; /* Accent color for the icon */
}

/* Business Tag Styling */
.pr_porsk-tag {
    display: inline-block;
    background: linear-gradient(135deg, #00e5c730, #00a68500);
    color: #0bc9a5;
    border: 1px solid #0bc9a5;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 0px;
    margin-bottom: 25px;
}

/* Description Text */
.pr_porsk-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #cccccc;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    /* On medium screens, let the grid handle the layout */
    .pr_porsk-cards-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Maybe 2 cards wide */
    }
}
@media (max-width: 768px) {
    .pr_porsk-cards-wrapper {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
}


.conus {
    position: relative;
    z-index: 9;
    background: #000;
    border: 1px solid #656565;
    padding: 50px;
    width: 97%;
    margin: 0 auto;
}
.cunters p {
    font-family: 'Inter';
    color: #ccc;
}
.cunters h3 {
    color: #fff;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 25px;
}
.cunters h2 {
    font-weight: 800;
    font-size: 48px;
    color: #fff;
}
.cunters {
    text-align: center;
}


/* ----------------------------------
 * Testimonial Section Styles (test_pop class prefix)
 * ---------------------------------- */

/* Base Section Styling (Assuming a dark background from the image) */
.test_pop-section {
   position: relative;
    padding: 80px 20px;
    z-index: 9;
}

.test_pop-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards Layout */
.test_pop-cards-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 30px; /* Space between cards */
    justify-content: center; /* Center the cards if there's space */
}

/* Individual Card Style */
.test_pop-card {
    background-color: #111111; /* Even darker card background */
    flex: 1 1 45%; /* Allows 2 cards per row on large screens */
    min-width: 350px; /* Minimum width for the card */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333333; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Card Header (Icon and Rating) */
.test_pop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align icon and stars to the top */
    margin-bottom: 25px;
}

/* Quote Icon Styling (Left side) */
.test_pop-quote-icon {
   
    color: #00e5c7;
    border: 1px solid #00e0a0;
    padding: 13px 13px;
   
    background: linear-gradient(135deg, #39f5e06e, #071211);
}

/* Star Rating Styling (Right side) */
.test_pop-rating {
    color: #02dfbf;
    font-size: 1.1rem;
}
/* Testimonial Text */
.test_pop-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f0f0;
    font-style: italic; /* Text in italics as per image */
}

/* Client Info Styles */
.test_pop-client-info {
    /* Separator line style */
    padding-top: 20px;
    border-top: 1px solid #333333;
}
.test_pop-client-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    font-family: 'Inter';
}

.test_pop-client-title {
    font-size: 0.95rem;
    color: #aaaaaa;
    margin-bottom: 3px;
}

.test_pop-client-company {
    font-size: 0.95rem;
    color: #aaaaaa;
    font-weight: 600;
}

/* --- Responsive Adjustments --- */
@media (max-width: 800px) {
    .test_pop-cards-wrapper {
        flex-direction: column; /* Stack cards vertically on small screens */
    }
    .test_pop-card {
        min-width: 100%; /* Full width on small screens */
        flex: 1 1 100%;
    }
}










/* ----------------------------------
 * Contact Form Section Styles (form_pop class prefix)
 * ---------------------------------- */

/* Base Section Styling */
.form_pop-section {
    /* Optional: If you want a subtle background texture like the image */
    /* background-image: url('your-texture.jpg');
    background-size: cover; */
   
    position: relative;
    z-index: 9;
}

.form_pop-container {
    display: flex;
    justify-content: center;
}

/* Form Styling */
.form_pop-contact-form {
    background-color: #111111; /* Dark background for the form container */
    padding: 40px;
    border-radius: 8px;
    max-width: 700px; /* Limit form width */
    width: 100%;
    color: #ffffff;
    border: 1px solid #333333; /* Subtle border */
}

/* Form Row for 2 columns */
.form_pop-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

/* Form Group (Label + Input) */
.form_pop-group {
    flex: 1; /* Makes groups take equal width in a row */
    margin-bottom: 20px;
}

.form_pop-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.form_pop-required {
    color: #00e0a0; /* Accent color for required asterisk */
}

/* Input, Textarea, Select Base Styling */
.form_pop-group input:not([type="submit"]),
.form_pop-group textarea,
.form_pop-select-wrapper select {
    width: 100%;
    padding: 12px 15px;
    background-color: #000000; /* Pure black input background */
    border: 1px solid #333333; /* Input border color */
    color: #ffffff;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
    transition: border-color 0.3s;
}

/* Focus State */
.form_pop-group input:focus,
.form_pop-group textarea:focus,
.form_pop-select-wrapper select:focus {
    border-color: #00e0a0; /* Accent color on focus */
    outline: none;
}

/* Placeholder Text Color */
.form_pop-group input::placeholder,
.form_pop-group textarea::placeholder {
    color: #888888;
}

/* Select Wrapper and Styling */
.form_pop-select-wrapper {
    position: relative;
    /* Optional: to hide default select arrow and use a custom one, 
       but for simplicity, we'll keep the basic styling */
}

/* WhatsApp Button Styling (CTA) */
.form_pop-whatsapp-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #111111;
    padding: 15px 25px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    display: flex
;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}
.form_pop-whatsapp-btn:hover {
    background-color: #00cc88;
}


/* --- Responsive Adjustments --- */
@media (max-width: 600px) {
    .form_pop-row {
        flex-direction: column; /* Stack name/email and phone/company vertically */
        gap: 0;
    }
    .form_pop-contact-form {
        padding: 30px 20px;
    }
}

.fir {
    position: relative;
    z-index: 9;
    color: #fff;
    padding-top: 50px;
}
.con_detass {
    position: relative;
    z-index: 9;
    color: #fff;
      padding-top: 50px;
}


/* ----------------------------------
 * Contact Info Section Styles (contact_info_pop class prefix)
 * ---------------------------------- */

.contact_info_pop-section {
    padding: 20px 20px;
    color: #ffffff;
    position: relative;
    z-index: 9;
}
.contact_info_pop-container {
    max-width: 700px; /* To replicate the centralized, narrow column */
    margin: 0 auto;
}

.contact_info_pop-items-wrapper {
    display: flex;
    flex-direction: column; /* Stack all items vertically */
    gap: 15px; /* Space between the main cards */
}

/* Base style for all individual items/cards */
.contact_info_pop-item {
    background-color: #111111;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
}

/* Style for Phone, Email items (simple layout) */
.contact_info_pop-item:not(.contact_info_pop-whatsapp, .contact_info_pop-office-card) {
    /* Align icon and details side-by-side */
    display: flex; 
    align-items: center;
}

/* Icon Styling */
.contact_info_pop-icon {
    font-size: 1.5rem;
    color: #00e0a0; /* Accent color */
    border: 1px solid #00e0a0;
    padding: 10px;
    border-radius: 4px;
    margin-right: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Details Text Styling */
.contact_info_pop-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.contact_info_pop-value {
    font-size: 1rem;
    color: #cccccc;
    margin: 3px 0 0 0;
}

/* Office Card Styling (Item 3 & 4) */
.contact_info_pop-office-card {
    display: block; /* Overwrite flex display for offices */
    padding: 0;
}

.contact_info_pop-sub-item {
    display: flex;
    align-items: flex-start; /* Align icon and text to the top */
    padding: 20px;
}

.contact_info_pop-separator {
    border: 0;
    border-top: 1px solid #333333;
    margin: 0 0 0 75px; /* Aligns with the start of the details text */
    width: auto;
}

.contact_info_pop-office-card .contact_info_pop-icon {
    /* Adjust margin for sub-items */
    margin-right: 15px; 
}

/* WhatsApp Item Styling (With Button) */
.contact_info_pop-whatsapp {
    justify-content: space-between; /* Space out the details and the button */
}

.contact_info_pop-details-group {
    display: flex;
    align-items: center;
}

/* WhatsApp Button */
.contact_info_pop-btn {
    background-color: #00e0a0; /* Bright accent color */
    color: #111111;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    white-space: nowrap; /* Prevent button text from wrapping */
}

.contact_info_pop-btn:hover {
    background-color: #00cc88;
}

/* --- Responsive Adjustments --- */
@media (max-width: 480px) {
    .contact_info_pop-whatsapp {
        flex-direction: column; /* Stack details and button vertically */
        align-items: flex-start;
        gap: 15px;
    }
}







/* ----------------------------------
 * Custom Footer Styles
 * ---------------------------------- */

.custom-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0px 0px 0px;
    border-top: 1px solid #cccccc4f;
}
/* Ensure all text uses the same dark-theme font/color */
.custom-footer p, 
.custom-footer li, 
.custom-footer a {
    color: #cccccc; /* Light grey text for readability */
    font-size: 1rem;
    line-height: 1.8;
    text-decoration: none; /* Remove underline from links */
}

.custom-footer a:hover {
    color: #00e0a0; /* Accent color on hover */
}

/* Footer Heading (Quick Links, Our Services, Contact Info) */
.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff; /* White text for headings */
}

/* --- Column 1: Branding and Logo --- */
.footer-branding {
    padding-right: 30px; /* Add some space to the right */
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.logo-box {
    background-color: #00e0a0; /* Green/Cyan Box */
    color: #000000;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 8px 12px;
    margin-right: 10px;
    border-radius: 4px;
    line-height: 1;
}

.logo-text-main {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.logo-text-sub {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: #cccccc;
}

.footer-description {
    margin-bottom: 30px;
}

/* Contact Icons (Phone and Email) */
.footer-contact-icons {
    display: flex;
    gap: 15px;
}

.icon-link {
    border: 1px solid #01e3c4;
    color: #00e0a0;
    padding: 10px;
    border-radius: 4px;
    font-size: 1.2rem;
    display: flex
;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}


/* --- Column 2 & 3: Links and Services --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

/* View All Services Link */
.footer-view-all {
    display: inline-block;
    margin-top: 15px;
    color: #00e0a0 !important;
    font-weight: 600;
}
.footer-view-all:hover {
    text-decoration: underline;
}

/* --- Column 4: Contact Info --- */
.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info-list li {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-icon {
    color: #00e0a0;
    font-size: 1.1rem;
    margin-right: 15px;
    padding-top: 5px; /* Adjust alignment for icons next to text */
}

.footer-info-list li a, .footer-info-list li p {
    margin: 0;
    line-height: 1.5;
}

.footer-address p {
    /* To align the address lines */
    margin: 0 0 0 32px; 
    text-indent: -32px;
}

/* Responsive Adjustments: Use col-sm-6 on smaller screens */
@media (max-width: 767px) {
    .footer-col {
        margin-bottom: 40px; /* Space between stacked columns */
    }
}
.coqwppy {
    text-align: end;
}
.coqwppy ul li {
    display: inline-block;
    padding-left: 30px;
}
.hrs {
    margin-top: 40px;
}

.footer-logo img {
    width: 40%;
}
a.navbar-brand img {
    width: 46%;
    padding-left: 50px;
}

@media only screen and (max-width: 768px) {
  button.navbar-toggler.text-white {
    background: #fff;
}
.hero-title {
    color: #fff;
    font-weight: 800;
    font-size: 40px;
    line-height: 47px;
    background: linear-gradient(90deg, #ffffff, #00e5cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.modern-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s 
cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(var(--glass-blur));
    position: relative;
    overflow: hidden;
    width: 100%;
}
.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    padding: 16px 19px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s 
cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 56px;
    text-decoration: none;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1;
    letter-spacing: -0.01em;
    position: relative;
    backdrop-filter: blur(var(--glass-blur));
    margin-top: 15px;
}
.abu_titl h2 span {
    color: #fff;
    font-weight: 800;
    font-size: 36px;
    line-height: 51px;
    background: linear-gradient(90deg, #8bfded, #00e5cf);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.abu_titl h2 {
    text-align: -webkit-center;
    color: #fff;
    font-family: 'Inter';
    font-weight: 800;
    font-size: 36px;
}
.about_sec {
    padding: 30px;
    position: relative;
}
.ceos h3 {
    color: #e5e7eb;
    font-weight: 800;
    font-size: 27px;
    line-height: 37px;
    background: linear-gradient(90deg, #8bfded, #00e5cf);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter';
    text-align: center;
    padding-top: 20px;
}
.ceos.modern-card p {
    text-align: center;
    color: #fff;
    font-style: italic;
    font-size: 14px;
    line-height: 25px;
    padding-top: 10px;
}
.cmd {
    position: relative;
    z-index: 9;
    height: 318px;
    padding: 40px;
    padding: 20px !important;
    margin-top: 60px;
}
.abu_titl p {
    color: #fff;
    text-align: center;
    font-family: 'Inter';
    font-size: 16px;
}
.aboserec {
    padding: 30px;
    position: relative;
}
.cons_pos {
    padding: 20px;
    position: relative;
    z-index: 9;
    background: #000;
    border: 1px solid #636363;
    margin-top: 70px;
    text-align: center;
}
.pr_porsk-projects-section {
    padding: 11px 20px;
    position: relative;
    z-index: 9;
}

.conus {
    position: relative;
    z-index: 9;
    background: #000;
    border: 1px solid #656565;
    padding: 11px;
    width: 88%;
    margin: 0 auto;
}
.contact_info_pop-value {
    font-size: 13px;
    color: #cccccc;
    margin: 3px 0 0 0;
}
a.navbar-brand img {
    width: 78%;
}

}