body {
	font-family: 'Inter', sans-serif;
	overflow-x: hidden;
	padding-top: 0px; /* Adjusted for fixed header */
}

#home {
	position: relative;
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	height: 60vh;
	max-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: #0a0a1a;
	padding: 0;
	padding-top: 90px;
	margin-top: 0px;
}

#tech-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#home .hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 3rem;
	color: #ffffff;
}

#home .hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, #e0e5ec, #bfc7cf, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 20px rgba(255,255,255,0.595), 0 2px 8px rgba(192,192,192,0.56);
}

#home .hero-content h2 {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.05em;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 15px rgba(0.5, 0, 0, 0.5);
	background: linear-gradient(90deg, #c7d2fe, #a5b4fc, #818cf8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#home .hero-content p {
	font-size: 1.25rem;
	font-weight: 400;
	color: #e0e7ff;
	max-width: 600px;
	margin: 0 auto 2.5rem auto;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#home .hero-content .hero-buttons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

#home .hero-content a {
	padding: 1rem 3rem;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: 9999px;
	color: #ffffff;
	background: rgba(99, 102, 241, 0.8);
	border: 2px solid rgba(129, 140, 248, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

#home .hero-content a:hover {
	background: rgba(129, 140, 248, 1);
	box-shadow: 0 0 30px rgba(129, 140, 248, 0.6);
	transform: translateY(-3px);
}

#home .hero-content .secondary-button {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #e0e7ff;
}

#home .hero-content .secondary-button:hover {
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
	body {
		padding-top: 70px;
	}
	#home {
		height: 90vh;
		margin-top: -50px;
	}
	#home .hero-content.desktop-view {
		display: none;
	}
	#home .hero-content.mobile-view {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 1rem;
	}
	#home .hero-content.mobile-view h1 {
		font-size: 2rem;
		margin-bottom: 1rem;
	}
	#home .hero-content.mobile-view h2 {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
	#home .hero-content.mobile-view p {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
	#home .hero-content.mobile-view .hero-buttons {
		flex-direction: column;
		gap: 0.75rem;
		max-width: 220px;
		margin-left: auto;
		margin-right: auto;
	}
	#home .hero-content.mobile-view a {
		width: 100%;
		padding: 0.6rem 1.5rem;
		font-size: 0.9rem;
	}
}

/* --- Custom Section Heading --- */
.section-heading {
    position: relative;
    display: inline-block;
    font-size: 2.25rem; /* Tailwind: text-4xl */
    font-weight: 800;   /* Tailwind: font-extrabold */
    color: #1f2937;     /* Tailwind: text-gray-800 */
    margin-bottom: 3rem;/* Tailwind: mb-12 */
    padding-bottom: 0.75rem; /* Tailwind: pb-3 */
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #818cf8, #4f46e5);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.875rem; /* Tailwind: text-3xl */
    }
}


.feature-card-reimagined {
	display: flex;
	align-items: center;
	padding: 1.25rem;
	border-radius: 0.75rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	min-height: 100px;
	cursor: pointer; /* This makes the card look clickable */
}

.feature-card-reimagined:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card-reimagined .card-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 6px;
	height: 100%;
	border-radius: 0 9999px 9999px 0;
}

.feature-card-reimagined .card-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	font-size: 1.5rem;
}

.feature-card-reimagined .card-text {
	flex-grow: 1;
}

.feature-card-reimagined .card-text h3 {
	font-size: 1.125rem;
	font-weight: 600;
}

.feature-card-reimagined .card-text p {
	font-size: 0.875rem;
	color: #4A5568;
}

.feature-card-reimagined .card-action {
	background: none;
	border: none;
	font-size: 1.75rem;
	color: #6B7280;
	transition: color 0.3s ease, transform 0.3s ease;
	padding: 0.5rem;
}

.feature-card-reimagined:hover .card-action {
	transform: translateX(3px);
	color: #4F46E5;
}

.bg-grad-1 { background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%); }
.bg-grad-2 { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); }
.bg-grad-3 { background: linear-gradient(135deg, #fefce8 0%, #fef08a 100%); }
.bg-grad-4 { background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%); }
.bg-grad-5 { background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%); }
.bg-grad-6 { background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%); }
.bg-grad-7 { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); }
.bg-grad-8 { background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%); }

.bar-color-1 { background-color: #4f46e5; }
.bar-color-2 { background-color: #16a34a; }
.bar-color-3 { background-color: #ca8a04; }
.bar-color-4 { background-color: #dc2626; }
.bar-color-5 { background-color: #7c3aed; }
.bar-color-6 { background-color: #db2777; }
.bar-color-7 { background-color: #2563eb; }
.bar-color-8 { background-color: #0d9488; }	

#expertise-tabs-buttons .tab-link {
    color: #4B5563;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#expertise-tabs-buttons .tab-link.active {
    color: white;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
}

.tab-content {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    header {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-top: -70px;
    }
    header .text-2xl {
        margin-right: auto;
    }
    #mobile-menu-overlay {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 5rem;
        justify-content: flex-start;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    #mobile-menu-overlay.active {
        transform: translateX(0);
    }
    #mobile-menu-overlay a {
        font-size: 2.25rem;
        padding: 0.75rem 0;
        width: 90%;
        text-align: center;
        color: #333;
        font-weight: 600;
        transition: color 0.2s ease-in-out;
    }
    #mobile-menu-overlay a:hover {
        color: #6366F1;
    }
    #mobile-menu-overlay .space-y-6 {
        gap: 1.75rem;
    }
    #mobile-menu-overlay .flex-col.space-y-4 {
        gap: 1.25rem;
        width: 90%;
    }
    #mobile-menu-overlay button {
        padding: 0.8rem 2.5rem;
        font-size: 1.125rem;
        border-width: 2px;
    }
    #close-mobile-menu {
        color: #333;
        font-size: 2.5rem;
        transition: transform 0.2s ease-in-out;
    }
    #close-mobile-menu:hover {
        transform: rotate(90deg);
    }
    #expertise .grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 1.5rem;
    }
    #benefits .grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 1.5rem;
    }
    #benefits .p-8 {
        padding: 1.5rem;
    }
    #benefits h3 {
        font-size: 1.5rem;
    }
    #benefits p {
        font-size: 0.9rem;
    }
    .slider-content {
        width: 100%;
        padding: 1.5rem;
    }
    #app-slider-content {
        width: 100%;
        padding: 1.5rem;
    }
    #app-slider-content .tab-button {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr 1fr;
    }
}

#app-slider-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9500;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

#app-slider-overlay.active {
    visibility: visible;
    opacity: 1;
}

#app-slider-content {
    background-color: #f0f4f8;
    width: 50%;
    height: 100%;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    position: relative;
    overflow-y: auto;
    border-radius: 0.75rem 0 0 0.75rem;
}

#app-slider-overlay.active #app-slider-content {
    transform: translateX(0);
}

#app-slider-content .tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

#app-slider-content .tab-button {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

#app-slider-content .tab-button.active {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
}

#app-slider-content .tab-button:hover:not(.active) {
    color: #374151;
}

#app-slider-content .tab-content-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    min-height: 200px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#app-slider-content .tab-content-card.active {
    display: flex;
    text-align: left;
    align-items: flex-start;
}
#app-slider-content .tab-content-card ul {
    list-style: none;
    padding: 0;
    width: 100%;
}
#app-slider-content .tab-content-card ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #4a5568;
}
#app-slider-content .tab-content-card ul li i {
    margin-right: 0.75rem;
    color: #48bb78;
    margin-top: 0.2rem;
}

.benefit-card-simple {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-simple:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-size: 1.5rem;
}

.card-text-content p {
    font-size: 0.95rem;
}

.bg-grad-blue { background: linear-gradient(135deg, #ffffff, #f0f9ff); }
.bg-grad-green { background: linear-gradient(135deg, #ffffff, #f0fdf4); }
.bg-grad-purple { background: linear-gradient(135deg, #ffffff, #f5f3ff); }
.bg-grad-red { background: linear-gradient(135deg, #ffffff, #fef2f2); }

#deploy-your-own-app {
    position: relative;
    overflow: hidden;
}
.timeline-container-revamped {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.timeline-container-revamped::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #dbeafe, #a5b4fc, #6366f1);
    border-radius: 2px;
}
.timeline-item-revamped {
    position: relative;
    width: 50%;
    padding: 1rem 3rem;
    box-sizing: border-box;
}
.timeline-item-revamped:nth-child(odd) {
    left: 0;
    padding-right: 4rem;
}
.timeline-item-revamped:nth-child(even) {
    left: 50%;
    padding-left: 4rem;
}
.timeline-card-revamped {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.timeline-card-revamped:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
}
.timeline-icon-revamped {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    z-index: 10;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #6366f1;
}
.timeline-item-revamped:nth-child(odd) .timeline-icon-revamped {
    right: -30px;
}
.timeline-item-revamped:nth-child(even) .timeline-icon-revamped {
    left: -30px;
}
.timeline-step-number-revamped {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.15;
}
@media (max-width: 768px) {
    .timeline-container-revamped::before {
        left: 30px;
    }
    .timeline-item-revamped {
        width: 100%;
        padding-left: 5rem;
        padding-right: 1rem;
    }
    .timeline-item-revamped:nth-child(even) {
        left: 0;
    }
    .timeline-item-revamped:nth-child(odd) .timeline-icon-revamped,
    .timeline-item-revamped:nth-child(even) .timeline-icon-revamped {
        left: 0;
    }
}


#live-support-button {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	background-color: #6366F1;
	color: white;
	border-radius: 9999px;
	padding: 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 8000;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#live-support-button:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

#toast-container {
	position: fixed;
	top: 1.5rem;
	right: 1.5rem;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	pointer-events: none;
}
.toast-message {
	background-color: rgba(52, 211, 153, 0.95);
	color: white;
	padding: 0.75rem 1.25rem;
	border-radius: 0.5rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.3s ease-out, transform 0.3s ease-out;
	min-width: 250px;
	display: flex;
	align-items: center;
}
.toast-message.show {
	opacity: 1;
	transform: translateY(0);
}
.toast-message i {
	margin-right: 0.75rem;
}

.form-card-input {
	background-color: #ffffff;
	border-radius: 0.75rem;
	padding: 1rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(100, 116, 139, 0.1);
	transition: all 0.2s ease-in-out;
}

.form-card-input:focus-within {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 0 0 3px #6366F1;
	transform: translateY(-2px);
}

.form-card-input input,
.form-card-input textarea,
.form-card-input select {
	width: 100%;
	border: none;
	outline: none;
	background: transparent;
	font-size: 1rem;
	color: #374151;
}
.form-card-input textarea {
	min-height: 100px;
	resize: vertical;
}

.slider-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9000;
	display: flex;
	justify-content: flex-end;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.3s ease, opacity 0.3s ease;
}

.slider-overlay.active {
	visibility: visible;
	opacity: 1;
}

.slider-content {
	background-color: #f7f9fc;
	width: 40%;
	height: 100%;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: flex;
	flex-direction: column;
	padding: 2rem;
	position: relative;
	overflow-y: auto;
}

.slider-overlay.active .slider-content {
	transform: translateX(0);
}

.accordion-item {
	background-color: white;
	border-radius: 0.75rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-bottom: 1rem;
	overflow: hidden;
}

.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	cursor: pointer;
	font-weight: 600;
	font-size: 1.125rem;
	color: #374151;
	transition: background-color: 0.3s ease;
}

.accordion-header:hover {
	background-color: #F9FAFB;
}

.accordion-icon {
	font-size: 1.5rem;
	color: #6366F1;
	transition: transform 0.3s ease;
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height: 0.4s ease-out, padding 0.4s ease-out;
	padding: 0 1.5rem;
}

.accordion-content.active {
	max-height: 500px;
	padding-bottom: 1.5rem;
	padding-top: 0.5rem;
}

.accordion-item.open .accordion-icon {
	transform: rotate(180deg);
}

#scroll-indicator {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 4px;
	background-color: #6366F1;
	z-index: 9999;
	transition: width 0.1s linear;
}

html {
	scroll-behavior: smooth;
}

.btn-animated {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-animated::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease-in-out;
	z-index: -1;
}
.btn-animated:hover::before {
	left: 0;
}

.accent-gradient-text {
	background: linear-gradient(90deg, #14B8A6 0%, #10B981 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.accent-gradient-bg {
	background: linear-gradient(90deg, #14B8A6 0%, #10B981 100%);
}
.header-3d-shadow {
	 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(17, 24, 39, 0.25);
	 border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.policy-content h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #1F2937;
}
.policy-content p, .policy-content ul {
	color: #4B5563;
	line-height: 1.75;
	margin-bottom: 1rem;
}
.policy-content ul {
	list-style-type: disc;
	padding-left: 1.5rem;
}

.policy-content a {
	color: #10B981;
	text-decoration: underline;
}

/* --- Full-Screen Mobile Slider --- */
@media (max-width: 768px) {
    /* Targets the main contact/inquiry slider */
    .slider-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    /* Targets the 'learn more' app details slider */
    #app-slider-content {
        width: 100%;
        height: 100%;
        border-radius: 0; /* Removes the rounded corner for a true full-screen look */
    }
}
