/* ===== CSS VARIABLES ===== */
:root {
	/* Colors */
	--primary-color: #2c2988;
	--secondary-color: #011f5b;
	--accent-color: #c94415;
	--text-color: #171717;
	--text-light: #666;
	--text-muted: #6c757d;
	--white: #ffffff;
	--light-gray: #f8f9fa;
	--border-color: #e9ecef;
	--light: #f8fbff;

	--btn-icon-size: 32px;

	--header-height: 105px;

	/* Fonts */
	--primary-font: 'Inter', sans-serif;
	--vintage-font: 'Rationale', sans-serif;
	/* --serif-font: 'Kugile', serif; */
	--serif-font: 'PT Serif', serif;

	/* Spacing */
	--section-padding: 80px 0;
	--border-radius: 8px;
	--border-radius-lg: 12px;

	/* Transitions */
	--transition: all 0.3s ease;
	--transition-fast: all 0.2s ease;
}

@media (max-width: 1199.9px) {
	:root {
		--header-height: 80px;
	}
}

@media (max-width: 540px) {
	:root {
		--header-height: 63px;
	}
}

/* ===== CSS RESET & BASE STYLES ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--serif-font);
	line-height: 1.6;
	color: var(--text-color);
	font-size: 1.125rem;
	overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--serif-font);
}

img {
	width: 100%;
	display: block;
}

.vintage-font {
	font-family: var(--vintage-font);
}

.serif-font {
	font-family: var(--serif-font);
}

.padding {
	padding: var(--section-padding);
}

.position-relative {
	z-index: 1;
}

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

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

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

.bg-lightgray {
	background-color: var(--light-gray) !important;
}

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

.bg-half {
	background-image: linear-gradient(transparent 25%, var(--light) 25%);
}

.bg-image {
	background: center / cover no-repeat fixed;
}

.bg-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgb(0 0 0 / 70%);
	z-index: -1;
}

.text-primary {
	color: var(--primary-color) !important;
}

.text-secondary {
	color: var(--secondary-color) !important;
}

.text-accent {
	color: var(--accent-color) !important;
}

.text-serif {
	font-family: var(--serif-font);
}

a {
	text-decoration: none;
}

.text-blink {
	animation: textBlink 1.5s linear infinite;
}

@keyframes textBlink {
	0%, 100% {
		opacity: 1;
		color: var(--secondary-color);
	}

	50% {
		opacity: 0.5;
		color: var(--secondary-color);
	}
}

.text-blink:hover {
	animation: none;
	opacity: 1;
	color: var(--secondary-color);
}

.object-cover {
	object-fit: cover;
}

p {
	line-height: 1.75;
}

.padding-sm {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.heading {
	display: table;
	position: relative;
	margin-bottom: 1.5rem;
	z-index: 1;
	color: var(--primary-color);
}

/* .heading.hasline::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--secondary-color);
    margin-top: 1rem;
} */
.videoBtn {
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 300ms ease-in-out;
	animation: breathe 800ms alternate infinite;
	z-index: 1;
}

.videoBtn::before {
	content: '';
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgb(255 255 255 / 75%);
	background-image: radial-gradient(circle at 50% 50%, var(--primary-color) 40%, rgb(0 0 0 / 75%) 40%);
	z-index: -1;
	transition: all 300ms ease-in-out;
	transition-delay: 100ms;
	animation: breathe 800ms alternate infinite;
}

.videoBtn.bg-secondary::before {
	background-image: radial-gradient(circle at 50% 50%, var(--secondary-color) 40%, rgb(0 0 0 / 75%) 40%);
}

.videoBtn:hover {
	animation-play-state: paused;
}

.videoBtn:hover::before {
	animation-play-state: paused;
	border-color: #fff;
}

@keyframes breathe {
	0% {
		scale: 1;
	}

	100% {
		scale: 1.2;
	}
}

.scroller {
	overflow: auto;
}

.scroller::-webkit-scrollbar {
	width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px #cfcfcf;
	border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
	background: var(--secondary-color);
	border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
	background: var(--accent-color);
}

.icon-circular {
	width: var(--btn-icon-size);
	height: var(--btn-icon-size);
	border-radius: 50%;
	background-color: rgb(255 255 255 / 5%);
	box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	border: 1px solid rgb(255 255 255 / 10%);
	color: var(--white);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	transition: var(--transition);
}

.icon-circular:hover {
	background-color: var(--primary-color);
}

.readmore {
	margin-top: 2rem;
}

.readmore .button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--primary-font);
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-color);
	text-decoration: none;
	padding: 12px 24px;
	border: 2px solid var(--primary-color);
	transition: var(--transition);
	background: transparent;
}

.readmore .button i {
	font-size: 0.9rem;
	transition: var(--transition);
}

.readmore .button:hover {
	background: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(153, 0, 0, 0.2);
}

.readmore .button:hover i {
	transform: translateX(3px);
}

.readmore .button.bg-primary {
	color: var(--white);
}

.readmore .button.bg-primary:hover {
	background-color: var(--accent-color) !important;
}

.cta-buttons {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.cta-btn {
	text-decoration: none;
	font-size: 1.125rem;
	transition: all .3s ease;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.cta-btn.sm {
	font-size: .875rem;
}

.cta-btn.text-dark {
	color: var(--text-color);
}

.cta-btn.text-dark i {}

.cta-btn i {
	width: 40px;
	height: 40px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid;
	padding-top: 3px;
	transition: all .3s ease;
}

.cta-btn:hover i {
	background-color: var(--accent-color);
	color: var(--white) !important;
	transform: translateY(-2px);
	border-color: transparent;
}

/* icon Box */
.iconBox .inner {
	display: block;
	padding: 1.75rem;
	text-align: center;
	color: var(--text-color);
	text-transform: uppercase;
	font-size: 0.875rem;
	font-weight: 700;
	position: relative;
	z-index: 1;
	transition: all 300ms ease-in-out;
}

.iconBox .inner .img-fluid {
	width: 80px;
	padding: 15px;
	margin: 0 auto 10px;
	transition: all 300ms ease-in-out;
}

.iconBox .inner:hover .img-fluid {
	filter: brightness(1);
}

/* icon Box */

/* customize swiper */
[class^='swiper-button'] {
	width: var(--btn-icon-size);
	height: var(--btn-icon-size);
	margin-top: calc(var(--btn-icon-size) / 2);
	border-radius: 50%;
	background-color: var(--primary-color);
	box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	border: 1px solid rgb(255 255 255 / 10%);
	color: var(--white);
	backdrop-filter: blur(8px);
	transition: all 300ms ease-in-out;
}

[class^='swiper-button']:hover {
	background-color: var(--accent-color);
	color: var(--text-color);
}

[class^='swiper-button']::after {
	color: inherit;
	font-size: 13px;
}

.swiper-pagination-bullet {
	opacity: 1;
	background-color: #fff;
}

.swiper-pagination-bullet-active {
	background-color: var(--accent-color);
	width: 20px;
	border-radius: 10px;
}

.swiper-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 10;
}

.swiper-controls [class^="swiper-"] {
	position: static;
	margin-top: 0;
}

/* customize swiper */
.list {
	padding-left: 20px;
	margin-bottom: 1.5rem;
}

.list li + li {
	margin-top: 0.5rem;
}

.list li {
	list-style: disc;
}

.list li::marker {
	color: var(--accent-color);
}

.list li a {
	color: var(--text-color);
	transition: var(--transition);
}

.list li a:hover {
	color: var(--accent-color);
}

/* BS Accordion */
.accordion-header .accordion-button {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 1.25rem;
}

.accordion-header .accordion-button:not(.collapsed) {
	background-color: var(--accent-color);
	color: var(--white);
}

.accordion-header .accordion-button:not(.collapsed)::after {
	filter: brightness(0) invert(1);
}

/* BS Accordion */

/* Customize modal */
.modal-content .modal-header {
	border: none;
	padding: 0;
}

.modal-body {
	padding: 1.75rem;
}

button.btn-close {
	position: absolute;
	right: -16px;
	top: -14px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 50%;
	background-color: #27ded5;
	border: 0;
	opacity: 1;
	text-shadow: none;
	z-index: 9;
	color: #fff;
	filter: invert(1);
}

button.btn-close span {
	filter: inherit;
	font-size: 29px;
}

/* Customize modal */