/* Oiyaa Technologies Custom Styling */

:root {
	/* Colors */
	--oiyaa-orange: #F69C1C;
	--oiyaa-orange-light: #FDBD59;
	--oiyaa-dark: #262626;
	--oiyaa-white: #ffffff;
	--oiyaa-light-gray: #f8f9fa;
	--oiyaa-gray-text: #414042;
	--oiyaa-transparent-white: rgba(255, 255, 255, 0.2);
	--oiyaa-shadow-orange: rgba(246, 156, 28, 0.2);
	--oiyaa-shadow-light-orange: rgba(253, 189, 89, 0.3);
	--oiyaa-blue: #374891;
	/* Added for reference, using orange as the primary color */

	/* Font Sizes */
	--font-xxs: 0.75rem;
	/* 12px */
	--font-xs: 0.875rem;
	/* 14px */
	--font-sm: 1rem;
	/* 16px - Base size */
	--font-base: 1rem;
	/* 16px - Alias for --font-sm */
	--font-md: 1.125rem;
	/* 18px */
	--font-lg: 1.25rem;
	/* 20px */
	--font-xl: 1.5rem;
	/* 24px */
	--font-xxl: 1.75rem;
	/* 28px */
	--font-xxxl: 2rem;
	/* 32px */
	--font-display-sm: 2.5rem;
	/* 40px */
	--font-display-md: 3rem;
	/* 48px */
	/* Text Colors */
	--text-primary: var(--oiyaa-gray-text);
	--text-secondary: var(--oiyaa-orange);
	--text-white: var(--oiyaa-white);
	--text-light: rgba(65, 64, 66, 0.8);

	/* Font Weights */
	--weight-light: 300;
	--weight-regular: 400;
	--weight-medium: 500;
	--weight-semibold: 600;
	--weight-bold: 700;

	/* Spacing */
	--spacing-nav: 0.5rem 1.5rem;
	--spacing-partner-btn: 0.5rem 1.25rem;
	--spacing-section: 80px 0;

	/* Border Radius */
	--radius-pill: 50px;
	--radius-standard: 8px;
	--radius-large: 40px;
}

body {
	font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
	color: var(--text-primary);
	font-size: var(--font-sm);
	font-weight: var(--weight-regular);
	overflow-x: hidden;
}

.text_color_white {
	color: var(--text-white) !important;
}

p {
	color: var(--oiyaa-gray-text);
}

/* Link Styles */
a {
	color: var(--oiyaa-blue);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--oiyaa-blue);
	opacity: 0.8;
}

/* Header and Navigation */
.navbar {
	background-color: transparent;
	padding: 1rem 0;
	z-index: 1000;
	transition: all 0.3s ease;
	position: relative;
}

.navbar-brand {
	padding: 0;
}

.logo-img {
	height: 6vw;
	width: auto;
}

.nav-bar-custom {
	padding: 0px 2.5rem;
	display: flex !important;
	align-items: flex-start !important;
}

.nav-link {
	color: var(--oiyaa-dark) !important;
	font-weight: var(--weight-medium);
	font-size: var(--font-xl);
	padding: var(--spacing-nav) !important;
	display: inline-flex;
	align-items: center;
}

.nav-link:hover {
	color: var(--oiyaa-orange) !important;
	opacity: 0.8;
}

.btn-partner {
	background-color: var(--oiyaa-orange);
	border: 1px solid var(--oiyaa-orange);
	color: var(--text-white) !important;
	border-radius: var(--radius-pill);
	padding: var(--spacing-partner-btn) !important;
	font-size: var(--font-xl);
	font-weight: var(--weight-medium);
	transition: all 0.3s ease;
	line-height: 1.5;
}

.btn-partner:hover {
	background-color: var(--oiyaa-orange-light);
	color: var(--text-white) !important;
	border-color: var(--oiyaa-orange-light);
}

/* Hero Section */
.hero-section {
	position: relative;
	padding: 2rem 3rem 7rem 3rem;
	overflow: hidden;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* .hero-section::after {
  content: '';
  position: absolute;
  bottom: -115px;
  left: 0;
  width: 100%;
  height: 400px;
  background: url(../img/wave.svg) no-repeat bottom;
  background-size: cover;
} */

.hero-content {
	position: relative;
	z-index: 1;
	padding: 10rem 2rem;
	border-radius: 10px;
}

.hero-title {
	font-weight: var(--weight-bold);
	font-size: var(--font-display-sm);
	margin-bottom: 1.5rem;
	color: var(--oiyaa-orange);
}

.hero-text {
	font-size: var(--font-xl);
	max-width: 800px;
	margin: 0 auto;
	color: var(--oiyaa-dark);
}

.hero-image {
	position: relative;
	z-index: 1;
}

.hero-image img {
	max-width: 100%;
	height: 35vw;
}

/* Feature Boxes */

.feature-box {
	background-color: var(--oiyaa-orange);
	padding: 2rem;
	height: 100%;
	min-height: 180px;
	/* Fixed minimum height */
	color: var(--oiyaa-white);
	text-align: center;
	border-radius: 35px;
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.feature-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px var(--oiyaa-shadow-orange);
}

.feature-icon {
	width: 75px;
	height: 75px;
	margin-bottom: 1rem;
	filter: brightness(0) invert(1);
}

.feature-title {
	font-weight: var(--weight-semibold);
	font-size: var(--font-xxl);
	margin-bottom: 0.5rem;
	color: var(--text-white);
}

/* Feature and CTA Links */
.feature-link,
.cta-link {
	display: block;
	text-decoration: none;
	height: 100%;
	color: var(--oiyaa-white);
	transition: all 0.3s ease;
}

.feature-link:hover,
.cta-link:hover {
	text-decoration: none;
	color: var(--oiyaa-white);
}

/* About Section */
.about-section {
	padding: var(--spacing-section);
}

.section-title {
	font-size: var(--font-xxxl);
	font-weight: var(--weight-bold);
	margin-bottom: 3rem;
	color: var(--oiyaa-orange);
	position: relative;
	display: inline-block;
}

.section-title:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	height: 3px;
	width: 80px;
	background-color: var(--oiyaa-orange);
	transform: translateX(-50%);
}

/* White section title variant */
.section-title.text-white {
	color: var(--oiyaa-white);
}

.section-title.text-white:after {
	background-color: var(--oiyaa-white);
}

/* White section title variant without underline */
.section-title.text-white.no-underline:after {
	display: none;
}

/* Z-index control for clip-path sections */
.clip-path-section {
	position: relative;
}

.about-content {
	font-size: var(--font-lg);
	color: var(--text-primary);
}

/* About Logo */
.about-logo {
	max-width: 300px;
	height: auto;
}

/* Partners Section */
.partners-section {
	padding: var(--spacing-section);
	background-color: var(--oiyaa-white);
}

.partners-subtitle {
	font-size: var(--font-md);
	color: var(--text-primary);
	margin-bottom: 2rem;
}

.partner-logo {
	height: auto;
	max-height: 80px;
	max-width: 180px;
	margin: 1.5rem 2rem;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.partner-logo:hover {
	transform: scale(1.1);
}

/* Partner Slider */
.partner-slider-container {
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
	position: relative;
	padding: 20px 0;
}

.partner-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.partner-slider::before,
.partner-slider::after {
	content: "";
	position: absolute;
	top: 0;
	width: 100px;
	height: 100%;
	z-index: 2;
}

.partner-slider::before {
	left: 0;
	background: linear-gradient(to right, var(--oiyaa-white), transparent);
}

.partner-slider::after {
	right: 0;
	background: linear-gradient(to left, var(--oiyaa-white), transparent);
}

.partner-slide-track {
	display: flex;
	animation: scroll 40s linear infinite;
}

.partner-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	padding: 0 20px;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-200px * 14));
		/* Adjust based on the number of slides */
	}
}

/* CTA Section */
.cta-section {
	padding: var(--spacing-section);
}

.cta-title {
	font-weight: var(--weight-bold);
	font-size: var(--font-xxl);
	margin-bottom: 1rem;
	color: var(--text-secondary);
}

.cta-text {
	font-size: var(--font-md);
	max-width: 900px;
	margin: 0 auto 3rem;
	color: var(--text-primary);
}

.cta-box {
	background-color: var(--oiyaa-orange);
	padding: 2rem;
	height: 100%;
	min-height: 280px;
	/* Fixed minimum height */
	color: var(--oiyaa-white);
	text-align: center;
	border-radius: var(--radius-standard);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.cta-box:hover {
	transform: translateY(-10px);
}

.cta-icon {
	width: 120px;
	height: 120px;
	margin-bottom: 1rem;
}

.cta-box-title {
	font-weight: var(--weight-semibold);
	margin-bottom: 0.5rem;
	color: var(--text-white);
}


/* Section Spacing */
section {
	position: relative;
	overflow: hidden;
}

.feature-boxes {
	position: relative;
	z-index: 10;
	padding: 20px 0px;
	bottom: 150px;
	margin-bottom: 0;
}

.about-section {
	padding: 10px 10vw 120px;
	/* margin-bottom: -40px; */
	position: relative;
	z-index: 0;
}

.diff-section {
	padding: 100px 15vw 80px;
	background-color: var(--oiyaa-white);
	position: relative;
	z-index: 1;
}

.partners-section {
	padding: 100px 0 80px;
	margin-bottom: 0;
	position: relative;
	z-index: 1;
}

.cta-section {
	padding: 80px 0;
	margin-top: 0;
}


/* Mobile Menu Button */
.navbar-toggler {
	border: none;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	padding: 6px 10px;
}

.navbar-toggler:focus {
	box-shadow: none;
	outline: none;
}

/* Heading Colors */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title {
	color: var(--text-secondary);
	font-weight: var(--weight-semibold);
}

h1 {
	font-size: var(--font-display-sm);
	font-weight: var(--weight-bold);
}

h2,
.section-title {
	font-size: var(--font-display-sm);
}

h3 {
	font-size: var(--font-xxl);
}

h4 {
	font-size: var(--font-xl);
}

h5 {
	font-size: var(--font-lg);
}

h6 {
	font-size: var(--font-md);
}

/* Text Utility Classes */
.text-primary {
	color: var(--text-primary) !important;
}

.text-secondary {
	color: var(--text-secondary) !important;
}

.text-white {
	color: var(--text-white) !important;
}

.text-light {
	color: var(--text-light) !important;
}

.font-xxs {
	font-size: var(--font-xxs) !important;
}

.font-xs {
	font-size: var(--font-xs) !important;
}

.font-sm {
	font-size: var(--font-sm) !important;
}

.font-base {
	font-size: var(--font-base) !important;
}

.font-md {
	font-size: var(--font-md) !important;
}

.font-lg {
	font-size: var(--font-lg) !important;
}

.font-xl {
	font-size: var(--font-xl) !important;
}

.font-xxl {
	font-size: var(--font-xxl) !important;
}

.font-xxxl {
	font-size: var(--font-xxxl) !important;
}

.font-hero {
	font-size: var(--font-display-sm) !important;
}

.font-weight-light {
	font-weight: var(--weight-light) !important;
}

.font-weight-normal {
	font-weight: var(--weight-regular) !important;
}

.font-weight-medium {
	font-weight: var(--weight-medium) !important;
}

.font-weight-semibold {
	font-weight: var(--weight-semibold) !important;
}

.font-weight-bold {
	font-weight: var(--weight-bold) !important;
}

/* Footer Section */
.footer {
	background-color: var(--oiyaa-orange);
	color: var(--text-white);
	padding: 3rem 15px;
	position: relative;
}

.footer-bottom p {
	color: white;
}

.footer-logo {
	max-width: 200px;
	margin-bottom: 1.5rem;
}

.footer-title {
	font-size: var(--font-lg);
	font-weight: var(--weight-semibold);
	margin-bottom: 1.5rem;
	color: var(--text-white);
}

.footer-links {
	list-style: none;
	padding-left: 0;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: var(--text-white);
	font-size: var(--font-md);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.footer-links a:hover {
	opacity: 0.8;
	text-decoration: underline;
}

.contact-info {
	list-style: none;
	padding-left: 0;
}

.contact-info li {
	margin-bottom: 1rem;
	font-size: var(--font-md);
	display: flex;
	align-items: flex-start;
}

.contact-info i {
	margin-right: 0.75rem;
	color: var(--text-white);
}

.footer-btn {
	background-color: var(--text-white);
	border: 1px solid var(--text-white);
	color: var(--oiyaa-orange);
	border-radius: var(--radius-pill);
	padding: var(--spacing-partner-btn);
	font-size: var(--font-lg);
	font-weight: var(--weight-medium);
	transition: all 0.3s ease;
	display: inline-block;
	margin-top: 1.5rem;
}

.footer-btn:hover {
	background-color: var(--oiyaa-dark);
	color: var(--text-white);
	border-color: var(--oiyaa-dark);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 1.5rem;
	margin-top: 2rem;
	text-align: center;
	font-size: var(--font-sm);
	color: var(--text-white);
}

/* Feature Links Styling */
.feature-link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
	transition: all 0.3s ease;
}

.feature-link:hover .diff-box {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px var(--oiyaa-shadow-blue);
}

.feature-link:hover .diff-title {
	color: var(--oiyaa-blue);
}

/* Demo Form Styling */
.demo-section {
	background-color: var(--oiyaa-light-gray);
	padding: 5rem 0;
}

.demo-text {
	font-size: var(--font-md);
	margin-bottom: 2rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.demo-form-container {
	background-color: var(--oiyaa-white);
	border-radius: 10px;
	box-shadow: 0 5px 15px var(--oiyaa-shadow-blue);
}

.card {
	border: none;
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	overflow: hidden;
}

.card-header {
	background-color: var(--oiyaa-orange);
	padding: 1rem 1.5rem;
	border-bottom: none;
}

.form-section-title {
	color: var(--oiyaa-white);
	font-size: var(--font-md);
	margin: 0;
	font-weight: var(--weight-medium);
}

.card-body {
	padding: 1.5rem;
}

.form-label {
	font-weight: var(--weight-medium);
	color: var(--oiyaa-gray-text);
}

.form-control,
.form-select {
	border-radius: 6px;
	padding: 0.75rem 1rem;
	border: 1px solid #e1e1e1;
	transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--oiyaa-light-blue);
	box-shadow: 0 0 0 0.25rem var(--oiyaa-shadow-light-blue);
}

.form-check-input:checked {
	background-color: var(--oiyaa-blue);
	border-color: var(--oiyaa-blue);
}

.submit-btn {
	background-color: var(--oiyaa-blue);
	border-color: var(--oiyaa-blue);
	padding: 0.75rem 2.5rem;
	font-weight: var(--weight-medium);
	transition: all 0.3s ease;
}

.submit-btn:hover {
	background-color: #0e2e4e;
	border-color: #0e2e4e;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px var(--oiyaa-shadow-blue);
}

/* Differentiator Box Links */
.diff-link {
	text-decoration: none;
	color: var(--text-primary);
	display: block;
	height: 100%;
	transition: all 0.3s ease;
}

.diff-link:hover {
	text-decoration: none;
	color: var(--text-secondary);
}

.diff-link:hover .diff-box {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px var(--oiyaa-shadow-blue);
}

.diff-link:hover .diff-title {
	color: var(--oiyaa-blue);
}

/* Detail Page Styles */
.page-header {
	background-color: var(--oiyaa-light-blue);
	padding: 3rem 0;
	margin-bottom: 2rem;
}

.page-title {
	color: var(--oiyaa-blue);
	font-weight: var(--weight-bold);
	font-size: var(--font-display-sm);
}

.feature-image img {
	max-height: 300px;
	object-fit: contain;
}

.content-block h2 {
	color: var(--oiyaa-blue);
	font-weight: var(--weight-semibold);
	margin-bottom: 1.5rem;
}

.content-block h3 {
	color: var(--oiyaa-blue);
	font-weight: var(--weight-medium);
}

.content-block p {
	color: var(--text-primary);
	line-height: 1.6;
}

.benefit-item h4,
.capability-item h4,
.process-step h5 {
	color: var(--text-secondary);
	font-weight: var(--weight-medium);
}

.check-list {
	list-style: none;
	padding-left: 0;
}

.check-list li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 0.5rem;
}

.check-list li:before {
	content: "✓";
	color: var(--oiyaa-blue);
	position: absolute;
	left: 0;
	font-weight: bold;
}

.timeline-marker {
	width: 15px;
	height: 15px;
	border: 2px solid white;
	top: 6px;
}

.timeline-item {
	border-left: 2px solid #e9ecef;
}

.timeline-item:last-child {
	border-left: none;
}

/* Equal height rows */
.row-equal-height {
	display: flex;
	flex-wrap: wrap;
}

.row-equal-height>[class*='col-'] {
	display: flex;
	flex-direction: column;
}


/* Product Card Styling */

.Woiyaa-box:hover {
	box-shadow: 0 10px 20px var(--oiyaa-shadow-orange);
	transform: translateY(-10px);
}



.btn-primary {
	background-color: var(--oiyaa-orange);
	border-color: var(--oiyaa-orange);
	color: var(--oiyaa-white);
	border-radius: var(--radius-pill);
	padding: 0.5rem 1.5rem;
	font-weight: var(--weight-medium);
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: var(--oiyaa-orange-light);
	border-color: var(--oiyaa-orange-light);
}

/* Navbar scroll transition */
.navbar {
	transition: all 0.3s ease;
}

.navbar-scrolled {
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .nav-link {
	color: var(--oiyaa-dark) !important;
}

/* Custom styles for the product images */
.product-image {
	max-height: 120px;
	object-fit: contain;
	margin-bottom: 1rem;
}

/* Products Section Styling */
.products-section {
	background-color: var(--oiyaa-orange);
	position: relative;
	padding: 7vw;
	margin-top: 0;
	margin-bottom: 0;
	overflow: hidden;
	z-index: 1;
	clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
}

.products-container {
	padding: 0 10vw;
}

.product-card {
	background-color: var(--oiyaa-white);
	border-radius: var(--radius-standard);
	padding: 1.5rem;
	height: 100%;
	min-height: 240px;
	transition: all 0.3s ease;
	border: none;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card-body {
	padding: 1.5rem 1rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	align-items: center;
}

.product-icon {
	width: 75px;
	height: 75px;
	margin-bottom: 1rem;
	object-fit: contain;
}

.product-title {
	color: var(--oiyaa-dark);
	font-weight: var(--weight-medium);
	margin-bottom: 1rem;
	min-height: 50px;
}

.product_btn {
	padding: 10px 65px !important;
	font-size: var(--font-md) !important;
}

.btn-light {
	background-color: var(--oiyaa-orange);
	color: var(--text-white);
	border-radius: var(--radius-pill);
	padding: 0.4rem 1.2rem;
	border: none;
	font-size: var(--font-xs);
	font-weight: var(--weight-medium);
	transition: all 0.3s ease;
	display: inline-block;
	min-width: 120px;
}

.btn-light:hover {
	background-color: var(--oiyaa-orange-light);
	color: var(--text-white);
}

/* Section Styling with Clip Path */

/* Hero Background Wrapper */
.hero-background-wrapper {
	background-image: url(../img/oiyaa_groups_global_background.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
}

.Woiyaa-section{
    padding: 120px 180px 10px;
}
.Woiyaa-container{
  padding: 20px 10px;
}
.Woiyaa-icon{
    width: 300px;
    height: 250px;
    border-radius: 25px;
    margin-bottom: 10px;
}
.Woiyaa-title {
    margin: 7px 0px;
    color: var(--oiyaa-dark);
    width: 80%;
    font-size: var(--font-xxl);
}

.Woiyaa-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Page header styles moved to demo.css */
.page-header {
    background-color: var(--oiyaa-orange);
    color: var(--text-white);
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.page-title {    font-size: var(--font-display-md);
    font-weight: var(--weight-bold);
    margin-bottom: 1rem;
}

/* All demo-specific styles moved to demo.css */
