@charset "utf-8";
/* CSS Document */

* {margin: 0;padding: 0;box-sizing: border-box;}

:root {
	--primary: #739fcb;
	--secondary: #4A7C8A;
	--accent: #6B9B7A;
	--light: #F7F7F7;
	--dark: #000;
	--gradient-1: linear-gradient(135deg, #739fcb 0%, #4A7C8A 100%);
	/* --gradient-2: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%); */
	--gradient-2: linear-gradient(142deg, #2cb5e9 0%, #1d5a88 100%);
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--light);
	background: var(--dark);
	overflow-x: hidden;
}

/* Geometric Background Pattern */
.geometric-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.03;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(107, 91, 149, 0.1) 35px, rgba(107, 91, 149, 0.1) 70px),
		repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(136, 176, 211, 0.1) 35px, rgba(136, 176, 211, 0.1) 70px);
}

/* Header */
/* header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
} */
header {background: rgba(55, 55, 55, 0.95);color: #333;padding: 15px 20px;display: flex;	justify-content: space-between;
	align-items: center;box-shadow: 0 4px 8px rgba(0,0,0,0.1);	transition: all 0.3s ease;	flex-direction: column; 	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000; }
  header.expanded {	padding-bottom: 20px; }

  .header-top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }

  .data-container {
	width: 100%;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: all 0.4s ease;
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
  }

  header.expanded .data-container {
	max-height: 200px;
	opacity: 1;
	margin-top: 10px;
  }

/* Info container horizontal layout */
.info-container {
	display: flex;
	justify-content: space-between; /* distributes items evenly */
	gap: 18px; /* space between items */
	flex-wrap: wrap; /* allows wrapping on smaller screens */
	padding: 19px 10%;
  }
  
  .info-container .item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	background: #000000;
	color:#fff;
	padding: 20px;
	border-radius: 12px;
	flex: 1; /* lets items grow equally */
	min-width: 299px; /* ensures a minimum size */
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-container .item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	cursor: pointer;
  }
  
  .info-container .icon {
	font-size: 2rem;
	flex-shrink: 0; /* keeps icon size fixed */
  }
  
  .info-container .content h3 {
	/* margin-bottom: 8px; */
	font-size: 1.2rem;
  }
  
  .info-container .content p {
	color: #bdbcbc;
	line-height: 1;
	font-weight: 500;
	font-size: 0.95rem;
  }
  
  /* Responsive: stack vertically on small screens */
  @media (max-width: 768px) {
	.info-container {
	  flex-direction: column;
	  gap: 20px;
	  padding: 20px;
	}
  
	.info-container .item {
	  flex-direction: row;
	}
  }
  

  button {
	background: var(--gradient-2);
	/* background: #333; */
	color: white;
	border: none;
	padding: 8px 14px;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
  }

  button:hover {
	background: #555;
  }

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.8rem 5%;
	max-width: 1400px;
	margin: 0 auto;
	flex-wrap: wrap;
}

@media (max-width: 1000px) and (min-width: 769px) {
	nav {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem 5%;
	}

	.nav-links {
		width: 100%;
		justify-content: center;
	}
}

/* ✅ Logo section with two images side-by-side */
.logo {display: flex; align-items: center; gap: 10px; /* space between symbol and name */}
.logo img:first-child { height: 38px; /* symbol size */ width: auto;}
.logo img:last-child { height: 28px; /* text logo size */ width: 170px; margin-top: 2px; /* slight adjust for alignment */}
.logo img { object-fit: contain; display: block; transition: transform 0.3s ease;}
.logo img:hover {transform: scale(1.05);}

/* 🔹 Toggle button styling */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	color: #fff;
	cursor: pointer;
	transition: transform 0.3s ease;
  }
  
  .menu-toggle.open {
	transform: rotate(90deg);
  }

.nav-links {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.nav-links a {
	text-decoration: none;
	color: var(--light);
	font-weight: 400;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.6rem 1.2rem;
	border-radius: 6px;
	border: 1px solid transparent;
}

/* .nav-links a:hover {
	color: var(--primary);
	background: linear-gradient(135deg, #31bcec 0%, #0b73c3 100%);
	border-color: rgba(45, 90, 135, 0.2);
}

.nav-links a.active {
	color: white;
	background: linear-gradient(135deg, #31bcec 0%, #0b73c3 100%);
	border-color: #4a90e2;
} */

/* Mobile Menu Toggle */
/* .menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--dark);
	transition: all 0.3s ease;
	border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
} */

/* Hero Section with Enhanced Animated Background */
#hero {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	/* background: var(--gradient-2); */
		background: #000;
	position: relative;
	margin-top: 60px;
	/* overflow: hidden; */
}

/* Central Light Core */
#hero::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	z-index: 0;
}

/* Connecting Lines and Dots Background */
.network-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.3;
}

.network-line {
	position: absolute;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	height: 1px;
	transform-origin: left center;
}

.network-line:nth-child(1) {
	width: 200px;
	top: 20%;
	left: 10%;
	transform: rotate(25deg);
	animation: pulseLine 4s ease-in-out infinite;
}

.network-line:nth-child(2) {
	width: 150px;
	top: 40%;
	right: 20%;
	transform: rotate(-45deg);
	animation: pulseLine 4s ease-in-out infinite 1s;
}

.network-line:nth-child(3) {
	width: 180px;
	bottom: 30%;
	left: 30%;
	transform: rotate(60deg);
	animation: pulseLine 4s ease-in-out infinite 2s;
}

.network-line:nth-child(4) {
	width: 220px;
	top: 60%;
	right: 15%;
	transform: rotate(-20deg);
	animation: pulseLine 4s ease-in-out infinite 3s;
}

.network-line:nth-child(5) {
	width: 160px;
	bottom: 20%;
	right: 35%;
	transform: rotate(40deg);
	animation: pulseLine 4s ease-in-out infinite 1.5s;
}

@keyframes pulseLine {

	0%,
	100% {
		opacity: 0.1;
		transform: scaleX(0.8) rotate(var(--rotation));
	}

	50% {
		opacity: 0.5;
		transform: scaleX(1) rotate(var(--rotation));
	}
}

.network-dot {
	position: absolute;
	width: 6px;
	height: 6px;
	background: white;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.network-dot:nth-child(6) {
	top: 20%;
	left: 10%;
	animation: dotPulse 3s ease-in-out infinite;
}

.network-dot:nth-child(7) {
	top: 40%;
	right: 20%;
	animation: dotPulse 3s ease-in-out infinite 0.5s;
}

.network-dot:nth-child(8) {
	bottom: 30%;
	left: 30%;
	animation: dotPulse 3s ease-in-out infinite 1s;
}

.network-dot:nth-child(9) {
	top: 60%;
	right: 15%;
	animation: dotPulse 3s ease-in-out infinite 1.5s;
}

.network-dot:nth-child(10) {
	bottom: 20%;
	right: 35%;
	animation: dotPulse 3s ease-in-out infinite 2s;
}

.network-dot:nth-child(11) {
	top: 35%;
	left: 25%;
	animation: dotPulse 3s ease-in-out infinite 2.5s;
}

.network-dot:nth-child(12) {
	bottom: 40%;
	right: 25%;
	animation: dotPulse 3s ease-in-out infinite 0.8s;
}

.network-dot:nth-child(13) {
	top: 15%;
	left: 60%;
	animation: dotPulse 3s ease-in-out infinite 1.2s;
}

.network-dot:nth-child(14) {
	bottom: 50%;
	left: 15%;
	animation: dotPulse 3s ease-in-out infinite 2.8s;
}

.network-dot:nth-child(15) {
	top: 70%;
	left: 45%;
	animation: dotPulse 3s ease-in-out infinite 0.3s;
}

.network-dot:nth-child(16) {
	top: 25%;
	right: 40%;
	animation: dotPulse 3s ease-in-out infinite 1.8s;
}

.network-dot:nth-child(17) {
	bottom: 15%;
	left: 55%;
	animation: dotPulse 3s ease-in-out infinite 2.3s;
}

@keyframes dotPulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.4;
	}

	50% {
		transform: scale(1.5);
		opacity: 1;
	}
}

/* video section */

#bg-video::-webkit-media-controls {
	opacity: 1 !important;
	display: flex !important;
	visibility: visible !important;
  }
  
  #bg-video {
	outline: none;
  }

.video-section {margin: 40px auto; padding: 0 20px; }
.video-section video {width: 100%;height: auto;border-radius: 12px;display: block; object-fit: cover; box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);}

.imaginework-list{
	display: flex;
	justify-content: space-evenly;
	align-items: center;
		margin-top: 10px; 
}


/* Products Section*/
.product-section{margin: 20px 65px; padding: 30px 40px; background: #232121; border-radius: 2rem;}
.pro-row {display: flex;justify-content: space-between; gap: 19px; text-align: left;}
.pro-text h2 {font-size: 2rem; margin-bottom: 15px;}
.pro-text { flex: 1; width: 50%;}
.pro-img { flex: 1;text-align: center;}
.pro-img img {width: 100%; max-width: 500px; border-radius: 10px; box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);}



/* Inner Peace Animated Background */
.peace-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.breathing-circle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: breathe 8s ease-in-out infinite;
}

.breathing-circle:nth-child(1) {
	width: 300px;
	height: 300px;
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.breathing-circle:nth-child(2) {
	width: 200px;
	height: 200px;
	top: 60%;
	right: 15%;
	animation-delay: 2s;
}

.breathing-circle:nth-child(3) {
	width: 250px;
	height: 250px;
	bottom: 20%;
	left: 30%;
	animation-delay: 4s;
}

.breathing-circle:nth-child(4) {
	width: 180px;
	height: 180px;
	top: 30%;
	right: 25%;
	animation-delay: 6s;
}

@keyframes breathe {

	0%,
	100% {
		transform: scale(1) translate(0, 0);
		opacity: 0.3;
	}

	25% {
		transform: scale(1.2) translate(-10px, -10px);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.4) translate(10px, -20px);
		opacity: 0.3;
	}

	75% {
		transform: scale(1.1) translate(-5px, 10px);
		opacity: 0.4;
	}
}

.floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
}

.zen-stone {
	position: absolute;
	width: 60px;
	height: 60px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
	border-radius: 50%;
	animation: float 15s ease-in-out infinite;
}

.zen-stone:nth-child(1) {
	top: 20%;
	left: 5%;
	animation-delay: 0s;
}

.zen-stone:nth-child(2) {
	top: 70%;
	right: 10%;
	animation-delay: 5s;
}

.zen-stone:nth-child(3) {
	bottom: 30%;
	left: 50%;
	animation-delay: 10s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) translateX(0) rotate(0deg);
	}

	33% {
		transform: translateY(-30px) translateX(20px) rotate(120deg);
	}

	66% {
		transform: translateY(20px) translateX(-20px) rotate(240deg);
	}
}

.mandala-bg {
	position: absolute;
	width: 500px;
	height: 500px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.1;
}

.mandala-circle {position: absolute;border: 2px solid white;border-radius: 50%;animation: rotate 60s linear infinite;}
.mandala-circle:nth-child(1) {width: 100%;height: 100%;	animation-duration: 60s;}
.mandala-circle:nth-child(2) {width: 80%;height: 80%;top: 10%;left: 10%;animation-duration: 50s;animation-direction: reverse;}
.mandala-circle:nth-child(3) {width: 60%;height: 60%;top: 20%;left: 20%;animation-duration: 40s;}
@keyframes rotate {	from {transform: rotate(0deg);}	to {transform: rotate(360deg);}}
.hero-content {	text-align: center;	z-index: 1;	position: relative;}
.hero-content h1 {font-size: 3rem;color: white;margin-bottom: 1rem;animation: fadeInUp 1s ease;text-align: center;}
.hero-content p {font-size: 1.3rem;color: rgba(255, 255, 255, 0.9);margin-bottom: 2rem;animation: fadeInUp 1s ease 0.2s;animation-fill-mode: both;}
.hero-content p {font-size: 1.3rem;color: rgba(255, 255, 255, 0.9);margin-bottom: 2rem;animation: fadeInUp 1s ease 0.2s;animation-fill-mode: both;}

.cta-button {
	display: inline-block;
	padding: 0.5rem 2rem;
	background: white;
	color: #000;
	text-decoration: none;
	border-radius: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease 0.4s;
	animation-fill-mode: both;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {transform: translateY(-3px);box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);}
@keyframes fadeInUp {
	from {opacity: 0;transform: translateY(30px);}
	to {opacity: 1;	transform: translateY(0);}
}

/* --- Use Cases Section 03/11/25 --- */
/* Responsive reuse from your .info-row */
.ind-contact-wrapper {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 3rem; */
    background: rgb(55 55 55);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgb(0 0 0 / 10%);
}
.info-section {padding: 80px 10%;display: flex; flex-direction: column; gap: 80px;}
.info-row { display: flex; align-items: center; justify-content: space-between; gap: 50px;}
.info-row.reverse {flex-direction: row-reverse;}
.info-text { flex: 1;}
.info-text h2 {font-size: 2rem;margin-bottom: 15px;}
.info-text p {margin-bottom: 10px;line-height: 1.6; color:rgb(54 54 54);}
.info-img { flex: 1;text-align: center;}
.info-img img {width: 100%; max-width: 500px; border-radius: 10px; box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);}
.usecase-section .info-row { margin-top: 30px;}
.usecase-section {padding: 80px 10%;color: #ffffff;text-align: center;}
.section-title {font-size: 2rem;margin-bottom: 40px;color: #f1eded;}
.tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px;}
.tab-btn { background: rgb(235 230 230); color: #17191b; border: 1px solid #333; padding: 10px 20px; border-radius: 25px; cursor: pointer; transition: 0.3s;}
.tab-btn.active,.tab-btn:hover { background: #fff; color: #000;}
.tab-content { display: none;}
.tab-content.active { display: block;}

/* end */
/* About Section - Complete Redesign */
#about {padding: 1rem 5%;margin: 0 auto;}
.section-title {text-align: center;font-size: 2.5rem;margin-bottom: 1rem;position: relative;color: var(--light);}
.section-subtitle {text-align: center;max-width: 800px;	margin: 0 auto 3rem;color : #fff;font-size: 1.1rem;}

/* Floating Cards Design */
.about-floating-cards {display: grid;grid-template-columns: repeat(4, 1fr);gap: 1rem;margin-bottom: 4rem; }
.floating-card {background: #373737;border-radius: 25px;	padding: 2rem;position: relative;overflow: hidden;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);}
.floating-card::before {content: '';position: absolute;top: -50%;right: -50%;width: 200%;height: 200%;background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
	opacity: 0;	transition: opacity 0.4s ease;}

.floating-card:hover {	box-shadow: 0 0 30px rgba(48, 168, 221, 0.5);}
	/* transform: translateY(-10px) rotate(1deg); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); */
.floating-card:hover::before {opacity: 0.05;}
.card-icon {width: 80px;height: 80px;margin-bottom: 1.5rem;	position: relative;}
.icon-wrapper {width: 100%;	height: 100%;background: var(--gradient-2);	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	display: flex;align-items: center;justify-content: center;font-size: 2.5rem;box-shadow: 0 10px 25px rgba(136, 176, 211, 0.3);}

@keyframes morphShape {

	0%,	100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;transform: rotate(0deg);	}
	25% {border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;transform: rotate(90deg);	}
	50% {border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;transform: rotate(180deg);}
	75% {border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;	transform: rotate(270deg);	}
}

.floating-card h3 {	font-size: 1.4rem;	margin-bottom: 1rem;color: var(--light);}
.floating-card p {color: #cbcbcb;line-height: 1.6;}

/* Tablet (max width 992px) */
@media (max-width: 992px) {	.about-floating-cards { grid-template-columns: repeat(2, 1fr);}  }
  
  /* Mobile (max width 576px) */
  @media (max-width: 576px) {.about-floating-cards { grid-template-columns: 1fr;}  }

/* Stats Banner */
.stats-banner {
	background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);background: rgb(55 55 55);	border-radius: 30px;
	padding: 3rem;display: flex;justify-content: space-around;align-items: center;	flex-wrap: wrap;
	gap: 2rem;margin-bottom: 4rem;	position: relative;	overflow: hidden;}

.stats-banner::before {	content: '';position: absolute;	top: -50%;	left: -50%;	width: 200%;height: 200%;
	background: repeating-linear-gradient(45deg,transparent,transparent 10px,rgba(255, 255, 255, 0.05) 10px,rgba(255, 255, 255, 0.05) 20px);animation: slidePattern 20s linear infinite;}

@keyframes slidePattern {0% {transform: translate(0, 0);}
	100% {transform: translate(50px, 50px);}}
.stat-block {text-align: center;position: relative;	z-index: 1;}
.stat-value {font-size: 3rem;font-weight: bold;	color: white;	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);}
.stat-desc {color: rgba(255, 255, 255, 0.9);font-size: 1rem;margin-top: 0.5rem;}

/* Feature Showcase */
.feature-showcase {	display: grid;grid-template-columns: 1fr;gap: 2rem;padding: 3rem;background: rgb(55 55 55);position: relative;	overflow: hidden;}
.feature-showcase::before {	content: '';position: absolute;	top: -50%;left: -50%;width: 200%;height: 200%;
	background: repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(45, 90, 135, 0.02) 20px,	rgba(45, 90, 135, 0.02) 40px);	animation: slidePattern 30s linear infinite;
}

.showcase-content h3 {font-size: 2.2rem;margin-bottom: 1rem;background: #fff;
	-webkit-background-clip: text;	-webkit-text-fill-color: transparent;background-clip: text;	text-align: center;	position: relative;	z-index: 1;}
.feature-list {	list-style: none;display: grid;	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));gap: 1.5rem;position: relative;	z-index: 1;}
.feature-list li {display: flex;align-items: center;gap: 1.5rem;padding: 1.5rem;background: #000;border-radius: 20px;transition: all 0.4s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);position: relative;	overflow: hidden;}
.feature-list li::before {content: '';	position: absolute;	top: 0;	left: -100%;width: 100%;height: 100%;
	background: linear-gradient(90deg, transparent, rgba(241, 229, 172, 0.2), transparent);transition: left 0.5s ease;}

.feature-list li:hover {box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); border:2px solid #1968aa;}

.feature-list li:hover::before {left: 100%;}
.feature-check {width: 35px;height: 35px;background: linear-gradient(134deg, #1670bc 0%, #1d5a88 100%);
	border-radius: 50%;	display: flex;align-items: center;justify-content: center;	color: white;font-weight: bold;
	flex-shrink: 0;	font-size: 1.1rem;	transition: all 0.3s ease;}

.feature-list li:hover .feature-check {	/* transform: scale(1.1) rotate(360deg); */
	box-shadow: 0 5px 15px rgba(241, 229, 172, 0.4);}

/* Practices Section - Futuristic Timeline Design */
#practices {background: linear-gradient(135deg, rgba(136, 176, 211, 0.05) 0%, rgba(152, 216, 200, 0.05) 100%);padding: 5rem 5%;}
.practices-container {max-width: 1200px;margin: 0 auto;}
.practice-layout {display: grid;grid-template-columns: 280px 1fr;gap: 3rem;	margin-top: 3rem;}

/* Futuristic Left Timeline */
.timeline-track {position: relative;padding: 2rem 0;}
.timeline-progress {position: absolute;left: 50%;top: 2rem;	bottom: 2rem;width: 2px;background: rgba(107, 91, 149, 0.1);
	transform: translateX(-50%);
}

.timeline-progress::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--gradient-1);
	animation: fillTimeline 3s ease forwards;
}

@keyframes fillTimeline {
	to {
		height: 100%;
	}
}

.timeline-points {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.timeline-point {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.futuristic-label {
	position: relative;
	padding: 1rem 2rem;
	background: white;
	border-radius: 50px;
	font-weight: 600;
	color: var(--dark);
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	z-index: 5;
	min-width: 200px;
	text-align: center;
}

.futuristic-label::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 50px;
	background: var(--gradient-1);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.futuristic-label::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50px;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
	z-index: -1;
}

.timeline-point:hover .futuristic-label,
.timeline-point.active .futuristic-label {
	animation: zoomPulse 0.6s ease-in-out;
}

@keyframes zoomPulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}


.timeline-point:hover .timeline-indicator,
.timeline-point.active .timeline-indicator {
	transform: translateX(-50%) scale(1.3);
	background: var(--primary);
	box-shadow: 0 0 15px rgba(45, 90, 135, 0.6);
}

.label-text {
	position: relative;
	z-index: 2;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
}

/* Glowing dot indicator */
.timeline-indicator {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 12px;
	height: 12px;
	background: white;
	border: 2px solid var(--primary);
	border-radius: 50%;
	z-index: 2;
}

.timeline-point.active .timeline-indicator {
	background: var(--primary);
	box-shadow: 0 0 20px rgba(107, 91, 149, 0.5);
}

/* Right Content Area */
.practice-content-area {
	display: grid;
	gap: 2rem;
}

.practice-card-new {
	/* background: white; */
	background: #363738;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.practice-card-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: var(--gradient-1);
}

.practice-card-new:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.practice-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.practice-icon-new {
	width: 60px;
	height: 60px;
	background: var(--gradient-2);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.practice-info h3 {
	font-size: 1.5rem;
	color: var(--light);
	margin-bottom: 0.3rem;
}

.practice-duration {
	font-size: 0.9rem;
	color: var(--primary);
	font-weight: 500;
}

.practice-description {
	color: #fff;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.practice-benefits {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.benefit-tag {
	padding: 0.5rem 1rem;
	background: #000;
	/* background: linear-gradient(135deg, rgba(45, 90, 135, 0.1) 0%, rgba(74, 124, 138, 0.1) 100%); */
	border-radius:9px;
	font-size: 0.85rem;
	color: var(--primary);
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.benefit-tag:hover {
	background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Resources Section - New Structure */
#resources {
	padding: 5rem 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.resource-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;}
.tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px;}
.tab-btn {padding: 0.8rem 2rem;	background: #151414;border-radius: 9px;color: #fffefe;	cursor: pointer;transition: all 0.3s ease;}
.tab-btn.active,.tab-btn:hover {background:linear-gradient(142deg, #2cb5e9 0%, #1d5a88 100%);color: #ffffff;border-color: transparent;}
.tab-content {	display: none;}
.tab-content.active {display: block;animation: fadeIn 0.5s ease;}
@keyframes fadeIn {	from {	opacity: 0;	}
	to {opacity: 1;	}}

.resource-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.resource-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.resource-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.resource-image {
	height: 200px;
	background: var(--gradient-2);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.resource-thumbnail {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	color: transparent;
	position: relative;
	z-index: 1;
}

/* Real thumbnail images */
.healhcare-staffing {
	background-image: url('assets/healthcare2.jpg');
}

.vendor-compliance {
	background-image: url('assets/vendor.jpg');
}

.workforce-management {
	background-image: url('assets/workforce2.jpg');
}

.mbsr-course {
	background-image: url('images/unsplash-library-bookshelf.avif');
}

.leadership-course {
	background-image: url('images/unsplash-people-meeting-room.avif');
}

.beginner-course {
	background-image: url('images/unsplash-yoga-session.avif');
}

.timer-tool {
	background-image: url('images/unsplash-meditation-timer.avif');
}

.mood-tracker {
	background-image: url('images/unsplash-mood-tracker.avif');
}

.breathing-tool {
	background-image: url('images/unsplash-breathing-exercise.avif');
}

.resource-image::before {content: '';position: absolute;width: 200%;height: 200%;background: repeating-linear-gradient(45deg,
			transparent,transparent 10px,	rgba(255, 255, 255, 0.1) 10px,	rgba(255, 255, 255, 0.1) 20px);animation: slide 20s linear infinite;}

@keyframes slide {
	0% {transform: translate(-50%, -50%);}
	100% {transform: translate(0, 0);}}

.resource-body {
	padding: 1.5rem;
	background: rgb(55 55 55);
}

/* Contact Section - Two Columns */
#contact {
	/* background: linear-gradient(135deg, #87ceeb 0%, #ffb6c1 100%); */
	padding: 2rem 5%;color: white;}

.contact-container {max-width: 1200px;	margin: 0 auto;}
.contact-container h2 {color: white;margin-bottom: 1rem;}
.contact-wrapper {display: grid;grid-template-columns: 1fr 1fr;	gap: 3rem;	background: rgb(55 55 55);
	/* background: rgba(255, 255, 255, 0.95); */
	padding: 1rem;	border-radius: 20px;box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);}
.contact-info {	padding: 2rem;}
.contact-info h3 {color: #fff;	margin-bottom: 2rem;font-size: 1.8rem;}

.info-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	color: var(--dark);
	padding: 1rem;
	border-radius: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.info-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(45, 90, 135, 0.1), transparent);
	transition: left 0.5s ease;
}

.info-item:hover {
	background: linear-gradient(135deg, rgba(45, 90, 135, 0.05) 0%, rgba(74, 124, 138, 0.05) 100%);
	transform: translateX(5px);
	box-shadow: 0 5px 20px rgba(45, 90, 135, 0.1);
}

.info-item:hover::before {left: 100%;}
.info-item:hover .info-icon {transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 25px rgba(45, 90, 135, 0.3);
}

.info-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	transition: all 0.3s ease;
	flex-shrink: 0;
}
.info-text h4 {margin-bottom: 0.25rem;	color: #739fcb;}
.info-text p {color: #fff;	font-size: 0.95rem;}
.social-links {	display: flex;	gap: 1rem;margin-top: 2rem;}
.social-link {
	width: 40px;
	height: 40px;
	background: var(--gradient-1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.social-link:hover {
	transform: translateY(-3px);
}

.contact-form {
	padding: 2rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--light);
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid #ddd;
	border-radius: 10px;
	background: white;
	transition: all 0.3s ease;
	font-family: inherit;
	color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: white;
}

.submit-btn {
	background: var(--gradient-1);
	color: white;
	padding: 1rem 3rem;
	border: none;
	border-radius:9px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	/* width: 100%; */
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

  /* Swap_sec_Pricing */
  .pricing-section {text-align: center; padding: 60px 20px; } 
  .pricing-title { font-size: 2.5rem;  font-weight: 700; color: #003366; margin-bottom: 40px; }
  .pricing-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px;max-width: 1200px;margin: 0 auto;}
  .pricing-card {background: rgb(55 55 55);;border-radius: 15px;padding: 30px 19px;box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);transition: all 0.3s ease;border: 1px solid #e0e0e0;
  }
  .pricing-card:hover { transform: translateY(-5px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); }
  .pricing-card.active { border: 2px solid #0378cd; position: relative;}
  .badge { background-color: #d4f8e8; color: #0378cd;font-size: 0.75rem;padding: 5px 10px;border-radius: 15px;font-weight: 500;position: absolute;top: 25px; right: 25px;}
  .card-header h3 { font-size: 1.5rem;color: #fff; margin-bottom: 10px; }
  .pricing-card h2 {font-size: 2.2rem;margin: 10px 0;color: #fff;}
  .pricing-card p { font-size: 0.9rem; color: #fff; margin-bottom: 15px; }
  .price_btn { background:linear-gradient(142deg, #2cb5e9 0%, #1d5a88 100%); color: white; border: none; padding: 10px 15px; border-radius: 8px;
    cursor: pointer; font-weight: 600; margin-bottom: 10px; width: 100%; transition: background 0.3s ease; }
    .price_btn:hover {background-color: #000807; }
    .price_btn-disabled {background:  #d9d9d9; color: #777; cursor: not-allowed; }
    .trial-link { display: block; font-size: 0.9rem;color: #0378cd; text-decoration: none; font-weight: 500; margin-bottom: 20px;}
    .trial-link:hover {text-decoration: underline; }
    .features { text-align: left; list-style: none; }
    .features li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 0.95rem; color: #fff; }
    .features li::before {  color: #fcfcfc; font-weight: bold; margin-right: 8px; } /*content: "✔"; */
	  /* Pricing sec End */

/* Footer */
footer {background: var(--dark);color: white;padding: 2rem 5%;text-align: center;}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1rem;
}

.footer-links a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--accent);
}

.copyright {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}


/* sonacred page css */
/* mgmFeatures section */

.mgmfeatures{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 9px 20px;
}

.container {
	max-width: 90%;
	width: 100%;
	background-color: #111;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 19px;
	gap: 17px;
	flex-wrap: wrap;
	margin-bottom: 20px;
  }

  .text-section {
	flex: 1;
	min-width: 280px;
  }

  .text-section h1 {
	font-size: 2rem;
	margin-bottom: 15px;
  }

  .text-section p {
	color: #ccc;
	line-height: 1.6;
	font-size: 1rem;
	margin-bottom: 30px;
  }

  .btn {color: #f7f5f5;border: none;padding: 12px 20px;border-radius: 9px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background-color 0.3s;
  }

  .btn:hover {background-color: #484948; }

  .image-section {
	flex: 1;
	min-width: 280px;
	display: flex;
	justify-content: center;
	align-items: center;
  }

  .image-box {
	background-color: #1a1a1a;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	position: relative;
  }

  .clockin {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background-color: #00c46b;
	color: #000;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 600;
  }

/* ends sonacred page  */
/* video section start here */

.vd-container { width: 90%;  max-width: 1200px;  margin: 0 auto;}
section { padding: 25px 0;}
.section-header { text-align: center; max-width: 800px; margin: 0 auto 49px;}
#bg-video {  /* position: absolute; top: 0; left: 0; */
    min-width: 100%; min-height: 100%; object-fit: cover; z-index: 0; opacity: 0.5;}
.video-overlay {position: absolute; /* opacity: 0.6; background-color: rgba(31,39,43,0.75); background: rgba(0, 0, 0, 0.4); */
    top: 11%;left: 0; bottom: 0; right: 0; width: 100%; z-index: 1;}
.section-tag { display: inline-block;background-color: rgba(0, 169, 157, 0.1); color: var(--secondary-color); font-size: 0.9rem; font-weight: 600; padding: 5px 15px; border-radius: 20px; margin-bottom: 15px; letter-spacing: 1px;}
.section-title {font-size: 2.5rem; margin-bottom: 4px; position: relative; color: var(--primary-color);}
.section-subtitle {color: var(--gray-color); font-size: 1.7rem; max-width: 700px;  margin: 1rem auto;}
.bg-light { background-color: var(--light-color);}
.bg-primary { background-color: var(--primary-color);}
.text-white { color: white;}

/* video section start here */

/* Mobile Responsive */
@media (max-width: 768px) {


	* video start */
	#bg-video { margin-top: 100px; position: relative;}
    .video-overlay {top: 15%; }
    .hero-content h1 { font-size: 2rem; margin-top: -100px;}
    .hero-content h2 { font-size: 2rem;}
/* video end */

	.logo img:first-child {height: 30px;}
	.logo img:last-child { height: 22px;}
	.menu-toggle {display: flex;}
	.product-section{margin: 11px 0px; padding: 30px;}
	.pro-row,.pro-row.reverse { flex-direction: column; text-align: center;}
	.pro-img img { max-width: 100%;}
	.pro-text h2 {font-size: 1.6rem; }
	.pro-text { width: 100%;}
	.nav-links {position: fixed;top: 80px;right: -100%;	width: 100%;height: calc(100vh - 80px);
		background: rgba(55, 55, 55, 0.98);flex-direction: column;	align-items: center;justify-content: start;	padding-top: 3rem;transition: right 0.3s ease;gap: 1rem;z-index: 999;}
	.nav-links.active {	right: 0;}
	.nav-links li {	width: 80%;	}
	.nav-links a {width: 100%;	text-align: center;	padding: 1rem;	margin: 0;	display: block;	box-sizing: border-box;	border: 1px solid #0b73c3;	}
	.hero-content h1 {font-size: 2.5rem;}
	.hero-content p {	font-size: 1.1rem;}
	.mandala-bg {width: 300px;height: 300px;}
	.about-content,	.contact-wrapper {grid-template-columns: 1fr;}
	.stats-counter {grid-template-columns: repeat(2, 1fr);}
	.benefits-grid {grid-template-columns: 1fr;	}
	.journey-path {flex-direction: column;gap: 2rem;}
	.journey-path::before {	display: none;}
	.practice-layout {grid-template-columns: 1fr;}
	.timeline-track {display: none;}
	.practice-content-area {gap: 1.5rem;}
	.section-title {font-size: 2rem;}
	.footer-links {	flex-direction: column;gap: 1rem;}

	/* sonacred page */
	.container {flex-direction: column; padding: 30px; }
      .text-section h1 {font-size: 1.5rem;}
      .image-section {margin-top: 30px;}}

@media (max-width: 480px) {
	.hero-content h1 {font-size: 2rem;}
	.stats-counter {grid-template-columns: 1fr;}
	.stat-item::after {	display: none;}
	.benefits-grid {grid-template-columns: 1fr;}
	.resource-tabs {flex-direction: column;}
	.tab-btn {width: 100%;}}

	/* start api hub page */

.api-hub-section {background: #0f172a;color: #e2e8f0;padding: 4rem 2rem;font-family: "Poppins", sans-serif; }
  
  /* 🟢 Section Header */
  .api-header {	text-align: center;	max-width: 900px;margin: 0 auto 3rem; }
    .api-header p {font-size: 1rem;line-height: 1.6;color: #cbd5e1;  }
    /* 🟣 Integration Section */
   .api-integrations ,  .cloud-integrations ,  .developer-tools , .recommendations  {margin-top: 1.5rem;text-align: center;  } 
   .integration-grid {display: grid;grid-template-columns: repeat(3, 1fr);gap: 2rem;margin-bottom: 2rem;  }
  .integration-card {background: #373737;border-radius: 25px;	padding: 2rem;position: relative;overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
  .integration-card:hover {transform: translateY(-5px);	background: #273549; }
  .integration-card img {width: 60px;height: 60px;object-fit: contain;border-radius: 19px; background-color: white; margin: 7px; padding: 2px; border: 1px solid #000; }
  .integration-card .text h4 {color: #f8fafc;margin-bottom: 0.3rem;  }
  .status {	font-size: 0.85rem;	padding: 0.2rem 0.5rem;	border-radius: 6px; }
  .status.active {background: #0b73c3; }
  .status.inactive {background: #ca8a04; }
  
  /* 🔵 Cloud Integrations */
  .cloud-grid {	display: flex;	flex-wrap: wrap;gap: 1.5rem;justify-content: center; }
  .cloud-card {	background: rgb(55 55 55);	padding: 1.5rem;border-radius: 10px;text-align: center; }
  .cloud-card img {	width: 80px;margin-bottom: 1rem; background: #f2f0f0;border-radius: 19px;}
  
  /* 🟠 Developer Tools */
  .dev-grid {display: grid;grid-template-columns: repeat(1, 1fr);gap: 2rem;margin-bottom: 2rem;  }
  .dev-card {background: rgb(55 55 55);border-radius: 10px;padding: 1.5rem;	display: flex;align-items: center;	gap: 1.5rem;  }
  .dev-card img {width: 80px;border-radius: 19px; padding: 9px; }
  .dev-text h4 {color: #f1f5f9;  }
  .dev-card:hover {transform: translateY(-5px);	background: #273549; }
  
  /* 🟡 Recommendations */
  .recommendations ul {	list-style: none;max-width: 600px;	margin: 2rem auto;padding: 0;  }
  .recommendations li {	background: rgb(55 55 55);	padding: 0.8rem 1rem;margin: 0.5rem 0;border-radius: 8px; }
  
  /* 📱 Responsive */
  @media (max-width: 768px) {
	.dev-card {  flex-direction: column;  text-align: center;	}
	.integration-card {  flex-direction: column; align-items: center; text-align: center;}
	.integration-card img { margin-bottom: 1rem;}  }  
/* end api hub page */

   .right { /* content: "✔"; */
    color: #0766ef; font-weight: bold; margin-right: 8px; } 

  .wrong {  /* content: "✔"; */
   color: #ff0606; font-weight: bold; margin-right: 8px;} 
  /* Pricing sec End */
  #bg-video::-webkit-media-controls {
	opacity: 1 !important;
	display: flex !important;
	visibility: visible !important;
  }
  
  #bg-video {
	outline: none;
  }