/* Minimal global reset */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

/* Import Inter (300, 400, 500, 600) and Space Grotesk (500, 600, 700) for headings */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
	/* Colors */
	--color-primary: #07B6D5; /* Cyan Blue #07B6D5 */
	--color-primary-dark: #0596b0;
	--color-secondary: #004b61; /* Deep Navy/Teal */
	--color-secondary-dark: #003647;
	--text-main: #1f2937;
	--text-muted: #6b7280;
	--bg-light: #f0f9fa;
	--bg-white: #ffffff;
	--border-color: #e5e7eb;

	/* Typography */
	--font-body: 'Inter', sans-serif;
	--font-heading: 'Space Grotesk', sans-serif;

	/* Structure */
	--border-radius-sm: 8px;
	--border-radius-md: 12px;
	--border-radius-lg: 20px;
	--shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
	--shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
	margin: 0;
	font-family: var(--font-body);
	line-height: 1.6;
	color: var(--text-main);
	background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--color-secondary);
	margin-top: 0;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

.container {
	width: min(100% - 40px, 1440px);
	margin-inline: auto;
}

/* Shared section-level content container – keeps content centered at ≤1440px */
.sarathi-section-container {
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding-inline: 20px;
	box-sizing: border-box;
}

.site-header,
.site-footer {
	padding: 0;
}

.site-main {
	min-height: 60vh;
	padding: 0;
}

.menu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Base Buttons */
.sarathi-btn,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

/* Section Settings Clone Utility Styles
   ----------------------------------------------------------------------- */

.section-bg-light.section-bg-light {
	background-color: var(--bg-light) !important;
	color: var(--text-main);
}

.section-bg-dark.section-bg-dark {
	background-color: var(--color-secondary) !important;
	color: var(--bg-white);
}

.section-bg-primary.section-bg-primary {
	background-color: var(--color-primary) !important;
	color: var(--bg-white);
}

.section-pt-compact.section-pt-compact {
	padding-top: 2rem !important;
}

.section-pt-spacious.section-pt-spacious {
	padding-top: 6rem !important;
}

.section-pt-none.section-pt-none {
	padding-top: 0 !important;
}

.section-pb-compact.section-pb-compact {
	padding-bottom: 2rem !important;
}

.section-pb-spacious.section-pb-spacious {
	padding-bottom: 6rem !important;
}

.section-pb-none.section-pb-none {
	padding-bottom: 0 !important;
}

@media (max-width: 768px) {
	.container {
		width: min(100% - 32px, 1440px);
	}

	.sarathi-section-container {
		padding-inline: 16px;
	}

	.menu {
		gap: 12px;
	}
}