/* ==========================================
HEADER VARIABLES
========================================== */
:root {
	--primary: #132d63;
	--secondary: #b41a15;
	--white: #ffffff;
	--text: #232323;
	--gray: #666666;
	--light: #f7f8fc;
	--transition: all .3s ease;
	--shadow-sm: 0 4px 15px rgba(0, 0, 0, .05);
	--shadow-md: 0 10px 35px rgba(0, 0, 0, .08);
	
}

/* ==========================================
GLOBAL HEADER
========================================== */
#site-header {
	position: relative;
	z-index: 999;
	background: var(--white);
}

/* ==========================================
TOP BAR
========================================== */
.header-top {
	background: var(--primary);
	color: var(--white);
	font-size: 14px;
	padding: 10px 0;
}

.top-contact a,
.top-social a {
	color: rgba(255, 255, 255, .9);
	text-decoration: none;
	transition: var(--transition);
}

.top-contact a:hover,
.top-social a:hover {
	color: #fff;
}

.top-contact i {
	margin-right: 8px;
}

.top-social a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .12);
}

.top-social a:hover {
	background: var(--secondary);
	transform: translateY(-2px);
}

/* ==========================================
MAIN NAVBAR
========================================== */
.navbar {
	background: #fff;
	padding: 18px 0;
	box-shadow: var(--shadow-sm);
}

.navbar-brand {
	margin-right: 40px;
}

.navbar-brand img,
.custom-logo {
	max-height: 72px;
	width: auto;
	transition: var(--transition);
}

/* ==========================================
MENU
========================================== */
.navbar-nav {
	gap: 10px;
}

.navbar-nav>li {
	position: relative;
}

.navbar-nav>li>a {
	color: var(--text);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	padding: 12px 16px;
	border-radius: 10px;
	transition: var(--transition);
	display: block;
	text-transform: uppercase;
	letter-spacing: .3px;
}

.navbar-nav>li>a:hover {
	color: var(--primary);
	background: rgba(19, 45, 99, .05);
}

.current-menu-item>a,
.current_page_item>a {
	color: var(--primary);
	background: rgba(19, 45, 99, .08);
}

/* ==========================================
ACTIONS AREA
========================================== */
.header-actions {
	margin-left: 30px;
}

/* ==========================================
ICON BUTTONS
========================================== */
.btn-search,
.header-account,
.header-cart {
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 1rem;
	background: #f3f5fa;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}

.btn-search:hover,
.header-account:hover,
.header-cart:hover {
	background: var(--primary);
	color: #fff;
	transform: translateY(-2px);
}

.btn-search i,
.header-account i,
.header-cart i {
	font-size: 1rem;
}

/* ==========================================
CART BADGE
========================================== */
.cart-count {
	position: absolute;
	top: -6px;
	right: -4px;
	 width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--secondary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
	
}

/* ==========================================
CTA BUTTON
========================================== */
.header-actions .btn-primary {
	background: var(--secondary);
	border: none;
	 height: 50px;
	padding: 0 24px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .4px;
	display: inline-flex;
	align-items: center;
	transition: var(--transition);
	
}

.header-actions .btn-primary:hover {
	background: var(--primary);
	transform: translateY(-2px);
}

/* ==========================================
MOBILE TOGGLE
========================================== */
.navbar-toggler {
	border: none;
	box-shadow: none !important;
	font-size: 24px;
	color: var(--primary);
}

/* ==========================================
MOBILE MENU
========================================== */
@media (max-width: 1199px) {
	 .navbar-collapse {
		margin-top: 25px;
		padding-top: 20px;
		border-top: 1px solid #eee;
	}

	.navbar-nav {
		gap: 0;
	}

	.navbar-nav li a {
		padding: 14px 0;
		border-radius: 0;
	}

	.header-actions {
		margin-top: 25px;
		margin-left: 0;
		justify-content: flex-start;
	}

	
}

/* ==========================================
SMALL DEVICES
========================================== */
@media (max-width: 767px) {
	 .header-top {
		display: none;
	}

	.navbar {
		padding: 12px 0;
	}

	.custom-logo {
		max-height: 55px;
	}

	.header-actions .btn-primary {
		display: none;
	}

	
}

/* ==========================================
FUTURE STICKY HEADER
========================================== */
#site-header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	animation: slideDown .35s ease;
	box-shadow: var(--shadow-md);
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

/* ==========================================
FOOTER
========================================== */
#site-footer {
	position: relative;
	background: linear-gradient(180deg,
			#0f2554 0%,
			#132d63 100%);
	color: rgba(255, 255, 255, .85);
	overflow: hidden;
}

/* Decorative Top Border */
#site-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg,
			var(--secondary),
			#ff8c42,
			var(--secondary));
}

/* ==========================================
MAIN FOOTER
========================================== */
.footer-main {
	padding: 90px 0 70px;
}

/* ==========================================
BRAND SECTION
========================================== */
.footer-logo {
	display: inline-block;
	margin-bottom: 25px;
}

.footer-logo img {
	max-width: 220px;
	height: auto;
}

.footer-about {
	max-width: 360px;
	line-height: 1.8;
	font-size: 15px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, .75);
}

/* ==========================================
SOCIAL ICONS
========================================== */
.footer-social {
	display: flex;
	gap: 12px;
}

.footer-social a {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	background: rgba(255, 255, 255, .08);
	transition: var(--transition);
}

.footer-social a:hover {
	background: var(--secondary);
	transform: translateY(-4px);
	box-shadow: 0 10px 20px rgba(180, 26, 21, .35);
}

.footer-social i {
	font-size: 18px;
}

/* ==========================================
FOOTER WIDGETS
========================================== */
.footer-widget h5 {
	position: relative;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 28px;
	padding-bottom: 12px;
}

.footer-widget h5::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: var(--secondary);
	border-radius: 30px;
}

/* ==========================================
LINKS
========================================== */
.footer-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-widget ul li {
	margin-bottom: 14px;
}

.footer-widget ul li:last-child {
	margin-bottom: 0;
}

.footer-widget ul li a {
	color: rgba(255, 255, 255, .75);
	text-decoration: none;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
}

.footer-widget ul li a:hover {
	color: #fff;
	transform: translateX(5px);
}

/* ==========================================
CONTACT INFO
========================================== */
.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 20px;
}

.footer-contact i {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(255, 255, 255, .08);
	color: var(--secondary);
}

.footer-contact span,
.footer-contact a {
	color: rgba(255, 255, 255, .75);
	text-decoration: none;
	line-height: 1.6;
}

/* ==========================================
NEWSLETTER
========================================== */
.newsletter-widget {
	padding: 1rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, .05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, .08);
}

.newsletter-widget p {
	color: rgba(255, 255, 255, .75);
	margin-bottom: 24px;
}

.newsletter-form .input-group {
	position: relative;
}

.newsletter-form .form-control {
	height: 58px;
	border-radius: 60px !important;
	border: none;
	padding: 0 65px 0 20px;
	box-shadow: none;
}

.newsletter-form .form-control:focus {
	box-shadow: none;
}

.newsletter-form button {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: var(--secondary);
	color: #fff;
	z-index: 5;
	transition: var(--transition);
}

.newsletter-form button:hover {
	background: var(--primary);
	transform: rotate(10deg);
}

/* ==========================================
FOOTER BOTTOM
========================================== */
.footer-bottom {
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom .row {
	align-items: center;
}

/* ==========================================
LEGAL LINKS
========================================== */
.footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-legal a {
	color: rgba(255, 255, 255, .65);
	text-decoration: none;
	font-size: 14px;
	transition: var(--transition);
}

.footer-legal a:hover {
	color: #fff;
}

/* ==========================================
COPYRIGHT
========================================== */
.copyright {
	color: rgba(255, 255, 255, .6);
	font-size: 14px;
}

/* ==========================================
MOBILE
========================================== */
@media (max-width: 991px) {
	.footer-main {
		padding: 70px 0 50px;
	}

	.footer-brand {
		text-align: center;
	}

	.footer-about {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.footer-social {
		justify-content: center;
	}

	.footer-bottom {
		text-align: center;
	}

	.footer-legal {
		justify-content: center;
		margin-bottom: 15px;
	}
}

@media (max-width: 767px) {
	.footer-main {
		padding: 60px 0 40px;
	}

	.footer-widget {
		margin-bottom: 10px;
	}

	.newsletter-widget {
		padding: 24px;
	}

	.footer-widget h5 {
		font-size: 18px;
	}
}

/* ==========================================
HERO
========================================== */
#hero-banner {
	position: relative;
	overflow: hidden;
	min-height: 90vh;
	display: flex;
	align-items: center;
	padding: 100px 0;
	background:
		linear-gradient(135deg,
			#f8faff 0%,
			#eef4ff 100%);
}

/* ==========================
DECORATIVE SHAPES
========================== */
.hero-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
}

.hero-shape-1 {
	width: 400px;
	height: 400px;
	background: rgba(19, 45, 99, .08);
	top: -100px;
	right: -100px;
}

.hero-shape-2 {
	width: 300px;
	height: 300px;
	background: rgba(180, 26, 21, .08);
	bottom: -100px;
	left: -100px;
}

/* ==========================
CONTENT
========================== */
.hero-content {
	max-width: 620px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	padding: .8rem 1.2rem;
	background: rgba(19, 45, 99, .08);
	border-radius: 999px;
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 2rem;
}

.hero-badge i {
	color: var(--secondary);
}

.hero-content h1 {
	font-size: clamp(3rem, 5vw, 4.8rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -2px;
	color: var(--primary);
	margin-bottom: 1.5rem;
}

.hero-content h1 span {
	color: var(--secondary);
}

.hero-description {
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--gray);
	margin-bottom: 2rem;
}

/* ==========================
BUTTONS
========================== */
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
}

.hero-actions .btn {
	height: 60px;
	padding: 0 32px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .75rem;
	font-weight: 700;
}

.hero-actions .btn-primary {
	background: var(--secondary);
	border: none;
	box-shadow:
		0 15px 35px rgba(180, 26, 21, .25);
}

.hero-actions .btn-primary:hover {
	transform: translateY(-3px);
}

.hero-actions .btn-outline-light {
	border: 2px solid rgba(19, 45, 99, .15);
	color: var(--primary);
	background: #fff;
}

/* ==========================
RATING
========================== */
.hero-rating {
	margin-bottom: 2rem;
	color: var(--gray);
	font-weight: 500;
}

.hero-rating i {
	color: #ffc107;
}

/* ==========================
FEATURES
========================== */
.hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero-features span {
	display: flex;
	align-items: center;
	gap: .5rem;
	padding: .9rem 1rem;
	border-radius: 14px;
	background: #fff;
	box-shadow: var(--shadow-sm);
	font-size: .95rem;
	font-weight: 600;
}

.hero-features i {
	color: var(--secondary);
}

/* ==========================
IMAGE
========================== */
.hero-image {
	position: relative;
	text-align: center;
}

.image-glow {
	position: absolute;
	width: 520px;
	height: 520px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background:
		radial-gradient(circle,
			rgba(180, 26, 21, .18),
			transparent 70%);
}

.hero-image img {
	position: relative;
	max-width: 95%;
	z-index: 2;
	filter:
		drop-shadow(0 40px 50px rgba(0, 0, 0, .15));
	animation: float 6s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

/* ==========================
PATENT
========================== */
.patent-badge {
	position: absolute;
	right: 0;
	bottom: 50px;
	background: #fff;
	border-radius: 18px;
	padding: 1rem 1.25rem;
	box-shadow:
		0 20px 40px rgba(0, 0, 0, .10);
	z-index: 3;
}

.patent-badge strong {
	display: block;
	color: var(--primary);
	margin-top: .3rem;
}

/* ==========================
MOBILE
========================== */
@media (max-width: 991px) {
	#hero-banner {
		text-align: center;
		padding: 80px 0;
	}

	.hero-content {
		margin: auto;
	}

	.hero-actions,
	.hero-features {
		justify-content: center;
	}

	.patent-badge {
		position: static;
		display: inline-block;
		margin-top: 1rem;
	}
}

/* ==========================================
HOME INTRO
========================================== */
#home-intro {
	padding: 0;
	background: #ffffff;
	position: relative;
}

/* ==========================================
CONTENT CARD
========================================== */
.intro-wrapper {
	max-width: 100%;
	margin: 0 auto;
}

.intro-content {
	position: relative;
	padding: 3rem 1rem;
	background: #fff;
	border-radius: 32px;
	box-shadow:
		0 20px 60px rgba(19, 45, 99, .08);
	border: 1px solid rgba(19, 45, 99, .06);
}

/* ==========================================
DECORATIVE ACCENT
========================================== */
.intro-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	border-radius: 32px 32px 0 0;
	background: linear-gradient(90deg,
			var(--secondary),
			#ff8c42);
}

/* ==========================================
TEXT
========================================== */
.intro-text p {
	font-size: 1.125rem;
	line-height: 2;
	color: var(--gray);
	margin-bottom: 1.75rem;
}

.intro-text p:last-child {
	margin-bottom: 0;
}

.intro-text strong {
	color: var(--primary);
	font-weight: 700;
}

/* ==========================================
BUTTON
========================================== */
.intro-action {
	margin-top: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.comon-btn-shop {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	padding: 0 32px;
	border-radius: 999px;
	text-decoration: none;
	background: var(--secondary);
	color: #fff;
	font-weight: 700;
	transition: all .3s ease;
	box-shadow:
		0 15px 30px rgba(180, 26, 21, .20);
}

.comon-btn-shop:hover {
	transform: translateY(-3px);
	color: #fff;
	box-shadow:
		0 20px 40px rgba(180, 26, 21, .30);
}

/* ==========================================
ABOUT SECTION
========================================== */
.about-section {
	position: relative;
	padding: 5rem 0 0;
	background: #efefef;
	overflow: hidden;
}

/* ==========================================
HEADER
========================================== */
.about-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem auto;
}

.section-label {
	display: inline-flex;
	padding: .75rem 1.25rem;
	border-radius: 999px;
	background: rgba(19, 45, 99, .08);
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 1rem;
}

.about-header h2 {
	color: var(--primary);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	letter-spacing: -1px;
	margin: 0;
}

/* ==========================================
CONTENT
========================================== */
.about-content {
	max-width: 1000px;
	margin: 0 auto;
}

/* ==========================================
CARDS
========================================== */
.about-card {
	background: #fff;
	border-radius: 30px;
	padding: 3rem;
	margin-bottom: 0;
	box-shadow:
		0 20px 50px rgba(19, 45, 99, .06);
	border: 1px solid rgba(19, 45, 99, .06);
}

.about-card-secondary {
	background: linear-gradient(135deg,
			#ffffff,
			#f8faff);
	margin-top: 3rem;
}

.about-card p {
	font-size: 1.1rem;
	line-height: 2;
	color: var(--gray);
	margin-bottom: 1.5rem;
}

.about-card p:last-child {
	margin-bottom: 0;
}

.about-card strong {
	color: var(--primary);
}

.about-card a {
	color: var(--secondary);
	font-weight: 600;
	text-decoration: none;
}

.about-card a:hover {
	text-decoration: underline;
}

/* ==========================================
BUTTON
========================================== */
.about-action {
	text-align: center;
	margin-top: 3rem;
}

.comon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	padding: 0 34px;
	border-radius: 999px;
	background: var(--secondary);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: all .3s ease;
	box-shadow:
		0 15px 35px rgba(180, 26, 21, .20);
}

.comon-btn:hover {
	transform: translateY(-3px);
	color: #fff;
	box-shadow:
		0 20px 45px rgba(180, 26, 21, .30);
}

/* ==========================================
BOTTOM IMAGE
========================================== */
.about-decoration {
	margin-top: -80px;
	text-align: center;
}

.about-decoration img {
	width: 100%;
	opacity: .95;
}

/* ==========================================
MOBILE
========================================== */
@media (max-width: 991px) {
	.about-section {
		padding: 80px 0 0;
	}

	.about-card {
		padding: 2rem;
	}

	.about-card p {
		font-size: 1rem;
		line-height: 1.9;
	}
}



/* ==========================================
HOW IT WORKS
========================================== */

.how-it-works {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    background: linear-gradient(180deg, #1e376a 0%, #1e376a 100%);
    color: #fff;
}

/* ==========================================
HEADER
========================================== */

.how-header {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 70px;
}

.how-header .section-badge {
    display: inline-flex;

    padding: .8rem 1.25rem;

    border-radius: 999px;

    background: rgba(255,255,255,.08);

    color: #fff;

    font-weight: 600;

    margin-bottom: 1rem;

    backdrop-filter: blur(10px);
}

.how-header h2 {
    font-size: clamp(2.5rem,5vw,4rem);

    font-weight: 800;

    letter-spacing: -1px;

    margin: 0;
}

/* ==========================================
LAYOUT
========================================== */

.how-wrapper {
    display: grid;

    grid-template-columns:
        minmax(0,1.2fr)
        minmax(0,.8fr);

    gap: 4rem;

    align-items: center;
}

/* ==========================================
CONTENT
========================================== */

.content-card {
    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(10px);

    border-radius: 28px;

    padding: 2rem;

    margin-bottom: 1.5rem;
}

.content-card.secondary {
    background: rgba(255,255,255,.04);
}

.content-card p {
    color: rgba(255,255,255,.85);

    line-height: 1.95;

    font-size: 1.05rem;

    margin-bottom: 1.25rem;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card a {
    color: #ff8c42;
    text-decoration: none;
}

.content-card strong {
    color: #fff;
}

/* ==========================================
BUTTON
========================================== */

.how-action {
    margin-top: 2.5rem;
}

.how-action .comon-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 60px;

    padding: 0 34px;

    border-radius: 999px;

    background: var(--secondary);

    color: #fff;

    text-decoration: none;

    font-weight: 700;

    transition: all .3s ease;

    box-shadow:
        0 15px 35px rgba(180,26,21,.30);
}

.how-action .comon-btn:hover {
    transform: translateY(-3px);
}

/* ==========================================
IMAGE
========================================== */

.how-image {
    position: relative;

    text-align: center;
}

.image-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,140,66,.20),
            transparent 70%
        );

    filter: blur(40px);
}

.how-image img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .25));
    border-radius: 2.5rem;
}

/* ==========================================
BOTTOM BG
========================================== */

.section-bg {
    margin-top: 80px;
}

.section-bg img {
    width: 100%;
    opacity: .25;
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 991px) {

    .how-it-works {
        padding: 80px 0;
    }

    .how-wrapper {
        grid-template-columns: 1fr;
    }

    .how-header {
        margin-bottom: 50px;
    }

    .how-image {
        order: -1;
    }

    .content-card {
        padding: 1.75rem;
    }
}


/* ==========================================
OUR PRODUCTS
========================================== */

.our-products {
    position: relative;
    padding: 3rem 0 0;
    background: #ffffff;
    overflow: hidden;
}

/* ==========================================
HEADER
========================================== */

.products-header {
    max-width: 950px;
    margin: 0 auto 3rem;
    text-align: center;
}

.products-header .section-badge {
    display: inline-flex;

    align-items: center;

    padding: .8rem 1.3rem;

    border-radius: 999px;

    background: rgba(19,45,99,.08);

    color: var(--primary);

    font-weight: 600;

    margin-bottom: 1rem;
}

.products-header h2 {
    font-size: clamp(2.5rem,5vw,4rem);

    font-weight: 800;

    letter-spacing: -1px;

    color: var(--primary);

    margin-bottom: 2rem;
}

.products-description p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.products-description strong {
    color: var(--primary);
}

/* ==========================================
SHOWCASE CARD
========================================== */

.product-showcase {
    position: relative;

    background: #fff;

    border-radius: 36px;

    padding: 4rem;

    box-shadow:
        0 25px 60px rgba(19,45,99,.08);

    border: 1px solid rgba(19,45,99,.06);
}

/* ==========================================
IMAGE
========================================== */

.product-image {
    text-align: center;
}

.product-image img {
    width: 100%;

    border-radius: 24px;

    transition: .4s ease;

    filter:
        drop-shadow(
            0 20px 35px rgba(0,0,0,.12)
        );
}

.product-image img:hover {
    transform: translateY(-6px);
}

/* ==========================================
PRODUCT INFO
========================================== */

.product-content h3 {
    font-size: 3rem;

    font-weight: 800;

    color: var(--primary);

    margin-bottom: 1.5rem;
}

.product-content p {
    font-size: 1.1rem;

    line-height: 1.9;

    color: var(--gray);

    margin-bottom: 2rem;
}

/* ==========================================
OPTIONS
========================================== */

.product-options {
    display: flex;

    flex-wrap: wrap;

    gap: 1rem;

    margin-bottom: 2.5rem;
}

.option-item {
    display: flex;

    align-items: center;

    gap: .75rem;

    padding: 1rem 1.25rem;

    border-radius: 18px;

    background: #f8faff;

    border: 1px solid rgba(19,45,99,.08);

    font-weight: 600;

    color: var(--primary);
}

.option-item img {
    width: 28px;
    height: 28px;
}

/* ==========================================
BUTTON
========================================== */

.product-content .comon-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 60px;

    padding: 0 34px;

    border-radius: 999px;

    background: var(--secondary);

    color: #fff;

    text-decoration: none;

    font-weight: 700;

    transition: all .3s ease;

    box-shadow:
        0 15px 35px rgba(180,26,21,.20);
}

.product-content .comon-btn:hover {
    transform: translateY(-3px);

    color: #fff;
}

/* ==========================================
BOTTOM IMAGE
========================================== */

.products-decoration {
    margin-top: 0rem;
}

.products-decoration img {
    width: 100%;

    opacity: .9;
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 991px) {

    .our-products {
        padding: 80px 0 0;
    }

    .product-showcase {
        padding: 2rem;
    }

    .product-content {
        text-align: center;
    }

    .product-content h3 {
        font-size: 2.25rem;
    }

    .product-options {
        justify-content: center;
    }
}



/* ==========================
FAITH SECTION
========================== */

.faith-section {
    position: relative;
    padding: 120px 0;
    background: #f7f8fc;
    overflow: hidden;
}

/* ==========================
HEADING
========================== */

.faith-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.faith-header .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 20px;
    margin-bottom: 20px;

    background: rgba(19,45,99,.08);

    border-radius: 100px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.faith-header h2 {
    margin: 0;

    font-size: clamp(2.5rem,4vw,4rem);
    font-weight: 800;
    line-height: 1.1;

    color: var(--primary);
}

/* ==========================
IMAGE
========================== */

.faith-image-wrap {
    max-width: 900px;
    margin: 0 auto 70px;
}

.faith-image-wrap img {
    width: 100%;

    border-radius: 30px;

    box-shadow:
    0 30px 80px rgba(19,45,99,.15);

    transition: .4s ease;
}

.faith-image-wrap:hover img {
    transform: translateY(-8px);
}

/* ==========================
INTRO
========================== */

.faith-intro {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.faith-intro p {
    margin: 0;

    font-size: 1.2rem;
    line-height: 1.9;

    color: #444;
}

/* ==========================
CONTENT
========================== */

.faith-content {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

/* ==========================
STORY BLOCK
========================== */

.faith-block {
    padding: 40px;

    background: #fff;

    border-radius: 24px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition: .3s ease;
}

.faith-block:hover {
    transform: translateY(-6px);
}

.faith-block h3 {
    margin-bottom: 18px;

    color: var(--primary);

    font-size: 1.5rem;
    font-weight: 700;
}

.faith-block p {
    margin: 0;

    color: #555;

    line-height: 1.9;
}

/* Full Width Block */

.faith-block.full {
    grid-column: span 2;
}

/* ==========================
BUTTON
========================== */

.faith-action {
    text-align: center;
    margin-top: 50px;
}

/* ==========================
MOBILE
========================== */

@media (max-width: 991px) {

    .faith-section {
        padding: 80px 0;
    }

    .faith-content {
        grid-template-columns: 1fr;
    }

    .faith-block.full {
        grid-column: span 1;
    }

    .faith-block {
        padding: 30px;
    }

    .faith-header h2 {
        font-size: 2.3rem;
    }

    .faith-intro p {
        font-size: 1.05rem;
    }
}


/* ==========================================
VIDEO SHOWCASE
========================================== */

.video-showcase {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f8fc 100%
        );
    overflow: hidden;
}

/* Decorative Elements */

.video-showcase::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
    border-radius: 50%;
    background: rgba(19,45,99,.05);
    filter: blur(100px);
}

.video-showcase::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    background: rgba(180,26,21,.05);
    filter: blur(100px);
}

/* ==========================================
HEADER
========================================== */

.video-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
}

.video-header .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: .85rem 1.4rem;

    border-radius: 999px;

    background: rgba(19,45,99,.08);

    color: var(--primary);

    font-weight: 600;

    margin-bottom: 1.25rem;
}

.video-header h2 {
    font-size: clamp(2.5rem,5vw,4rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.video-header p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray);
}

/* ==========================================
LAYOUT
========================================== */

.video-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ==========================================
VIDEO SIDE
========================================== */

.video-preview {
    position: relative;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 32px;

    background: #fff;

    box-shadow:
        0 30px 70px rgba(19,45,99,.12);

    border: 1px solid rgba(19,45,99,.08);
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: .6s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

/* Dark Overlay */

.video-thumbnail::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.45),
            rgba(0,0,0,.15)
        );

    z-index: 1;
}

/* ==========================================
PLAY BUTTON
========================================== */

.video-play-btn {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 110px;
    height: 110px;

    border: none;
    border-radius: 50%;

    background:
        rgba(255,255,255,.15);

    backdrop-filter: blur(15px);

    color: #fff;

    font-size: 28px;

    cursor: pointer;

    z-index: 3;

    transition: .35s ease;

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);
}

.video-play-btn:hover {
    transform:
        translate(-50%, -50%)
        scale(1.08);
}

/* Pulse Ring */

.video-play-btn::before {
    content: "";

    position: absolute;

    inset: -12px;

    border-radius: 50%;

    border: 2px solid rgba(255,255,255,.35);

    animation: pulseVideo 2s infinite;
}

@keyframes pulseVideo {

    0% {
        transform: scale(.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ==========================================
CONTENT CARD
========================================== */

.video-content {
    position: relative;
}

.video-content .content-card {
    background: #fff;

    padding: 3rem;

    border-radius: 32px;

    border: 1px solid rgba(19,45,99,.06);

    box-shadow:
        0 25px 60px rgba(19,45,99,.08);
}

.video-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.video-content p {
    color: var(--gray);
    line-height: 2;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.video-content p:last-child {
    margin-bottom: 0;
}

.video-content strong {
    color: var(--primary);
}

/* ==========================================
FEATURES
========================================== */

.video-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: .85rem;

    padding: 18px 20px;

    border-radius: 18px;

    background: #fff;

    border: 1px solid rgba(19,45,99,.08);

    box-shadow:
        0 10px 25px rgba(19,45,99,.05);

    font-weight: 600;

    color: var(--primary);

    transition: .3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-item i {
    color: var(--secondary);
    font-size: 18px;
}

/* ==========================================
VIDEO MODAL
========================================== */

.video-modal {
    position: fixed;
    inset: 0;

    display: none;

    z-index: 9999;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.85);

    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;

    width: min(1000px,90%);
    margin: 80px auto;

    z-index: 2;
}

.video-modal-content video {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.video-modal-close {
    position: absolute;

    top: -55px;
    right: 0;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: #fff;

    color: var(--primary);

    cursor: pointer;
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 991px) {

    .video-showcase {
        padding: 80px 0;
    }

    .video-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .video-content .content-card {
        padding: 2rem;
    }

    .video-features {
        grid-template-columns: 1fr;
    }

    .video-play-btn {
        width: 85px;
        height: 85px;
        font-size: 22px;
    }

    .video-header {
        margin-bottom: 50px;
    }
}


/* ==========================================
GALLERY SHOWCASE
========================================== */

.gallery-showcase {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f9fc 100%
        );
    overflow: hidden;
}

/* Decorative Blurs */

.gallery-showcase::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -250px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(19,45,99,.05);

    filter: blur(120px);
}

.gallery-showcase::after {
    content: "";
    position: absolute;
    bottom: -250px;
    left: -250px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(180,26,21,.05);

    filter: blur(120px);
}

/* ==========================================
HEADER
========================================== */

.gallery-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
}

.gallery-header .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: .85rem 1.5rem;

    border-radius: 999px;

    background:
        rgba(19,45,99,.08);

    color: var(--primary);

    font-weight: 600;

    margin-bottom: 20px;
}

.gallery-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;

    letter-spacing: -1px;

    color: var(--primary);

    margin-bottom: 1.25rem;
}

.gallery-header p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
}

/* ==========================================
SLIDER WRAPPER
========================================== */

.gallery-slider-wrapper {
    position: relative;
    z-index: 2;
}

.gallery-slider {
    display: flex;
    gap: 28px;

    overflow-x: auto;
    scroll-behavior: smooth;

    padding: 10px 5px 25px;

    scrollbar-width: none;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

/* ==========================================
CARD
========================================== */

.gallery-card {
    position: relative;

    flex: 0 0 380px;

    border-radius: 30px;

    overflow: hidden;

    background: #fff;

    border: 1px solid rgba(19,45,99,.08);

    box-shadow:
        0 20px 50px rgba(19,45,99,.08);

    transition: all .45s ease;

    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 30px 70px rgba(19,45,99,.15);
}

.gallery-card img {
    width: 100%;
    height: 450px;

    object-fit: cover;

    display: block;

    transition: transform .7s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

/* Overlay */

.gallery-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.35),
            rgba(0,0,0,0)
        );

    opacity: 0;

    transition: .4s ease;
}

.gallery-card:hover::after {
    opacity: 1;
}

/* View Icon */

.gallery-card::before {
    content: "\f00e";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%)
        scale(.8);

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.15);

    backdrop-filter: blur(12px);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    opacity: 0;

    z-index: 5;

    transition: .35s ease;
}

.gallery-card:hover::before {
    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1);
}

/* ==========================================
NAVIGATION BUTTONS
========================================== */

.gallery-nav {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 60px;
    height: 60px;

    border: none;
    border-radius: 50%;

    background: #fff;

    color: var(--primary);

    box-shadow:
        0 15px 40px rgba(19,45,99,.12);

    cursor: pointer;

    transition: .3s ease;

    z-index: 10;
}

.gallery-nav:hover {
    transform:
        translateY(-50%)
        scale(1.08);

    background: var(--primary);
    color: #fff;
}

.gallery-prev {
    left: -30px;
}

.gallery-next {
    right: -30px;
}

/* ==========================================
MODAL
========================================== */

.gallery-modal {
    position: fixed;
    inset: 0;

    display: none;

    z-index: 9999;
}

.gallery-overlay {
    position: absolute;
    inset: 0;

    background:
        rgba(0,0,0,.85);

    backdrop-filter: blur(10px);
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 60px auto;
    z-index: 2;
}

.gallery-modal-content img {
    width: auto;
    max-height: 100vh;
    display: block;
    margin: 0 auto;
    border-radius: 28px;
    box-shadow:
        0 30px 100px rgba(0,0,0,.3);
}

.gallery-close {
    position: absolute;

    top: -60px;
    right: 0;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: #fff;

    color: var(--primary);

    cursor: pointer;

    font-size: 18px;

    transition: .3s ease;
}

.gallery-close:hover {
    background: var(--secondary);
    color: #fff;
}

/* ==========================================
IMAGE LOADING ANIMATION
========================================== */

.gallery-card {
    animation: galleryReveal .8s ease both;
}

@keyframes galleryReveal {

    from {
        opacity: 0;
        transform:
            translateY(40px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 991px) {

    .gallery-showcase {
        padding: 80px 0;
    }

    .gallery-header {
        margin-bottom: 50px;
    }

    .gallery-card {
        flex: 0 0 280px;
    }

    .gallery-card img {
        height: 350px;
    }

    .gallery-nav {
        display: none;
    }

}

@media (max-width: 576px) {

    .gallery-card {
        flex: 0 0 240px;
    }

    .gallery-card img {
        height: 300px;
    }

    .gallery-header h2 {
        font-size: 2.2rem;
    }

}


/* ==========================================
PRODUCTS HUB
========================================== */

.products-hub {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f8fc 100%
        );
    overflow: hidden;
}

/* Decorative Background */

.products-hub::before {
    content: "";
    position: absolute;

    top: -200px;
    left: -200px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(19,45,99,.05);

    filter: blur(120px);
}

.products-hub::after {
    content: "";
    position: absolute;

    bottom: -200px;
    right: -200px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(180,26,21,.05);

    filter: blur(120px);
}

/* ==========================================
HEADER
========================================== */

.products-hub-header {
    max-width: 850px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.products-hub-header .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: .8rem 1.4rem;

    border-radius: 999px;

    background:
        rgba(19,45,99,.08);

    color: var(--primary);

    font-weight: 600;

    margin-bottom: 1.5rem;
}

.products-hub-header h2 {
    font-size: clamp(2.5rem,5vw,4rem);
    font-weight: 800;

    color: var(--primary);

    letter-spacing: -1px;

    margin-bottom: 1.25rem;
}

.products-hub-header p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.9;
}

/* ==========================================
COMPARISON LAYOUT
========================================== */

.products-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    position: relative;
    z-index: 2;
}

/* ==========================================
PRODUCT PANEL
========================================== */

.product-panel {
    position: relative;

    background: #fff;

    border-radius: 36px;

    overflow: hidden;

    border: 1px solid rgba(19,45,99,.08);

    box-shadow:
        0 25px 60px rgba(19,45,99,.08);

    transition: all .4s ease;
}

.product-panel:hover {
    transform: translateY(-12px);

    box-shadow:
        0 35px 80px rgba(19,45,99,.15);
}

/* Featured Card */

.product-panel.featured {

    transform: scale(1.03);

    border:
        2px solid rgba(180,26,21,.15);

    box-shadow:
        0 40px 90px rgba(19,45,99,.12);
}

.product-panel.featured:hover {
    transform:
        translateY(-12px)
        scale(1.03);
}

/* ==========================================
IMAGE
========================================== */

.product-panel-top {
    position: relative;

    padding: 40px;
    text-align: center;

    background:
        linear-gradient(
            180deg,
            rgba(19,45,99,.03),
            rgba(255,255,255,1)
        );
}

.product-panel-top img {
    max-width: 100%;
    height: 320px;

    object-fit: contain;

    transition: .5s ease;
}

.product-panel:hover .product-panel-top img {
    transform:
        scale(1.05)
        rotate(-2deg);
}

/* ==========================================
TAG
========================================== */

.product-tag {
    position: absolute;

    top: 20px;
    left: 20px;

    padding: .55rem 1rem;

    border-radius: 999px;

    background: var(--secondary);

    color: #fff;

    font-size: .85rem;
    font-weight: 600;
}

.product-tag.secondary {
    background: var(--primary);
}

/* ==========================================
CONTENT
========================================== */

.product-panel-body {
    padding: 0 40px 35px;
}

.product-panel-body h3 {
    font-size: 2rem;
    font-weight: 800;

    color: var(--primary);

    margin-bottom: 1rem;
}

.product-panel-body p {
    color: var(--gray);

    line-height: 1.9;

    margin-bottom: 2rem;
}

/* ==========================================
FEATURES LIST
========================================== */

.product-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-highlights li {
    position: relative;

    padding-left: 32px;

    margin-bottom: 14px;

    color: var(--primary);

    font-weight: 600;
}

.product-highlights li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background:
        rgba(180,26,21,.1);

    color: var(--secondary);

    font-size: 13px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
FOOTER
========================================== */

.product-panel-footer {
    padding: 0 40px 40px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 16px 24px;

    border-radius: 14px;

    background: var(--primary);

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s ease;
}

.product-link:hover {
    background: var(--secondary);
    color: #fff;
}

/* ==========================================
BENEFITS STRIP
========================================== */

.products-benefits {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    gap: 20px;

    margin-top: 80px;

    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    gap: 15px;

    padding: 25px;

    border-radius: 24px;

    background: #fff;

    border: 1px solid rgba(19,45,99,.06);

    box-shadow:
        0 15px 40px rgba(19,45,99,.05);
}

.benefit-item i {
    font-size: 22px;

    color: var(--secondary);

    margin-top: 4px;
}

.benefit-item strong {
    display: block;

    color: var(--primary);

    margin-bottom: 6px;
}

.benefit-item span {
    color: var(--gray);

    font-size: .95rem;
}

/* ==========================================
CTA
========================================== */

.products-cta {
    text-align: center;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 991px) {

    .products-hub {
        padding: 80px 0;
    }

    .products-comparison {
        grid-template-columns: 1fr;
    }

    .product-panel.featured {
        transform: none;
    }

    .product-panel.featured:hover {
        transform: translateY(-8px);
    }

    .products-benefits {
        grid-template-columns: repeat(2,1fr);
    }

    .product-panel-top img {
        height: 250px;
    }

}

@media (max-width: 576px) {

    .products-benefits {
        grid-template-columns: 1fr;
    }

    .product-panel-top,
    .product-panel-body,
    .product-panel-footer {
        padding-left: 25px;
        padding-right: 25px;
    }

    .product-panel-body h3 {
        font-size: 1.6rem;
    }

}


/* ==========================================
WHY BELLOGOAL
========================================== */

.why-bellogoal {
    position: relative;
    padding: 140px 0;
    background:
        linear-gradient(
            180deg,
            #132d63 0%,
            #0f234f 100%
        );

    overflow: hidden;
}

/* Decorative Glow */

.why-bellogoal::before {
    content: "";

    position: absolute;

    top: -250px;
    left: -250px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.05);

    filter: blur(120px);
}

.why-bellogoal::after {
    content: "";

    position: absolute;

    bottom: -250px;
    right: -250px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(180,26,21,.15);

    filter: blur(120px);
}

/* ==========================================
HEADER
========================================== */

.why-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 90px;

    position: relative;
    z-index: 2;
}

.why-header .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: .85rem 1.5rem;

    border-radius: 999px;

    background:
        rgba(255,255,255,.1);

    backdrop-filter: blur(10px);

    color: #fff;

    margin-bottom: 20px;

    font-weight: 600;
}

.why-header h2 {
    color: #fff;

    font-size: clamp(2.8rem,5vw,4.5rem);

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 1.5rem;
}

.why-header p {
    color: rgba(255,255,255,.75);

    font-size: 1.1rem;

    line-height: 1.9;
}

/* ==========================================
ECOSYSTEM
========================================== */

.why-ecosystem {
    display: grid;
    grid-template-columns: 1fr 500px 1fr;

    align-items: center;

    gap: 40px;

    position: relative;
    z-index: 2;
}

/* ==========================================
CENTER PRODUCT
========================================== */

.ecosystem-center {
    position: relative;
}

.product-ring {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.15),
            rgba(255,255,255,.02)
        );

    border:
        1px solid rgba(255,255,255,.1);

    backdrop-filter: blur(20px);
}

.product-ring::before {
    content: "";

    position: absolute;

    inset: 30px;

    border-radius: 50%;

    border:
        1px dashed rgba(255,255,255,.15);
}

.product-ring img {
    width: 90%;
    max-width: 420px;

    filter:
        drop-shadow(0 25px 50px rgba(0,0,0,.3));

    transition: .5s ease;
}

.product-ring:hover img {
    transform:
        translateY(-10px)
        scale(1.03);
}

/* ==========================================
COLUMN
========================================== */

.ecosystem-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ==========================================
FEATURE CARD
========================================== */

.ecosystem-feature {
    display: flex;
    gap: 20px;

    padding: 28px;

    border-radius: 28px;

    background:
        rgba(255,255,255,.08);

    backdrop-filter: blur(15px);

    border:
        1px solid rgba(255,255,255,.08);

    transition: .4s ease;
}

.ecosystem-feature:hover {
    transform:
        translateY(-8px);

    background:
        rgba(255,255,255,.12);
}

/* ==========================================
ICON
========================================== */

.feature-icon {
    flex-shrink: 0;

    width: 65px;
    height: 65px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #B41A15,
            #d4312b
        );

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 22px;

    box-shadow:
        0 15px 30px rgba(180,26,21,.3);
}

.feature-content h3 {
    color: #fff;

    font-size: 1.3rem;

    font-weight: 700;

    margin-bottom: .75rem;
}

.feature-content p {
    color:
        rgba(255,255,255,.75);

    line-height: 1.8;

    margin: 0;
}

/* ==========================================
STORY CARD
========================================== */

.why-story {
    margin-top: 90px;

    position: relative;
    z-index: 2;
}

.story-card {
    max-width: 1000px;

    margin: 0 auto;

    padding: 50px;

    border-radius: 35px;

    background:
        rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255,255,255,.08);

    text-align: center;
}

.story-card h3 {
    color: #fff;

    font-size: 2rem;

    font-weight: 800;

    margin-bottom: 1.5rem;
}

.story-card p {
    color:
        rgba(255,255,255,.75);

    line-height: 1.9;

    margin-bottom: 1rem;
}

/* ==========================================
CTA
========================================== */

.why-action {
    text-align: center;

    margin-top: 50px;

    position: relative;
    z-index: 2;
}

/* ==========================================
CONNECTOR LINES
========================================== */

@media (min-width: 1200px) {

    .ecosystem-feature {
        position: relative;
    }

    .ecosystem-feature::after {
        content: "";

        position: absolute;

        top: 50%;

        width: 50px;
        height: 1px;

        background:
            rgba(255,255,255,.15);
    }

    .ecosystem-column:first-child
    .ecosystem-feature::after {

        right: -50px;
    }

    .ecosystem-column:last-child
    .ecosystem-feature::after {

        left: -50px;
    }

}

/* ==========================================
TABLET
========================================== */

@media (max-width: 1199px) {

    .why-ecosystem {
        grid-template-columns: 1fr;
    }

    .ecosystem-center {
        order: -1;
        margin-bottom: 20px;
    }

    .product-ring {
        max-width: 500px;
        margin: 0 auto;
    }

}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 767px) {

    .why-bellogoal {
        padding: 90px 0;
    }

    .why-header {
        margin-bottom: 60px;
    }

    .story-card {
        padding: 30px;
    }

    .story-card h3 {
        font-size: 1.6rem;
    }

    .ecosystem-feature {
        padding: 22px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;

        font-size: 18px;
    }

}

/* ==========================================
ABOUT HERO
========================================== */

.about-hero {
    position: relative;

    padding: 3rem 0 3em;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #132d63 0%,
            #0d2149 100%
        );
}

/* Glow Effects */

.about-hero::before {
    content: "";

    position: absolute;

    top: -200px;
    left: -200px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(180,26,21,.20);

    filter: blur(140px);
}

.about-hero::after {
    content: "";

    position: absolute;

    bottom: -250px;
    right: -250px;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    filter: blur(150px);
}

/* Pattern */

.hero-pattern {
    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 30px 30px;

    opacity: .3;
}

/* Content */

.about-hero-content {
    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

/* Badge */

.page-badge {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: .85rem 1.5rem;

    border-radius: 999px;

    background:
        rgba(255,255,255,.1);

    backdrop-filter: blur(12px);

    border:
        1px solid rgba(255,255,255,.1);

    color: #fff;

    font-weight: 600;

    margin-bottom: 25px;
}

/* Heading */

.about-hero h1 {
    font-size: clamp(3rem,6vw,5.5rem);

    line-height: 1.1;

    font-weight: 800;

    color: #fff;

    margin-bottom: 30px;
}

.about-hero h1 span {
    display: block;

    color: #ff5b55;
}

/* Text */

.about-hero p {
    max-width: 760px;

    margin: 0 auto;

    color:
        rgba(255,255,255,.75);

    font-size: 1.15rem;

    line-height: 1.9;
}

/* Stats */

.about-hero-meta {
    display: flex;

    justify-content: center;

    gap: 25px;

    margin-top: 60px;

    flex-wrap: wrap;
}

.meta-item {
    min-width: 220px;

    padding: 25px;

    border-radius: 24px;

    background:
        rgba(255,255,255,.08);

    backdrop-filter: blur(15px);

    border:
        1px solid rgba(255,255,255,.08);
}

.meta-item strong {
    display: block;

    color: #fff;

    font-size: 1.1rem;

    margin-bottom: 8px;
}

.meta-item span {
    color:
        rgba(255,255,255,.7);
}

/* ==========================================
RESPONSIVE
========================================== */

@media (max-width: 767px) {

    .about-hero {
        padding: 140px 0 90px;
    }

    .about-hero-meta {
        gap: 15px;
    }

    .meta-item {
        width: 100%;
    }

}


/* ==========================================
FOUNDER STORY
========================================== */

.founder-story {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8faff 100%
        );
}

/* Background Effects */

.founder-story::before {
    content: "";

    position: absolute;

    top: -250px;
    right: -250px;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background:
        rgba(19,45,99,.05);

    filter: blur(120px);
}

.founder-story::after {
    content: "";

    position: absolute;

    bottom: -200px;
    left: -200px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(180,26,21,.06);

    filter: blur(120px);
}

/* ==========================================
HEADER
========================================== */

.founder-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.founder-header .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: .85rem 1.5rem;

    border-radius: 999px;

    background:
        rgba(19,45,99,.08);

    color: #132d63;

    font-weight: 600;

    margin-bottom: 20px;
}

.founder-header h2 {
    font-size: clamp(3rem,5vw,4.8rem);

    font-weight: 800;

    color: #132d63;

    margin-bottom: .5rem;
}

.founder-subtitle {
    font-size: 1.25rem;

    color: #B41A15;

    font-weight: 700;

    margin-bottom: 1.5rem;
}

.founder-intro {
    max-width: 700px;

    margin: 0 auto;

    color: #5f6779;

    line-height: 1.9;
}

/* ==========================================
PORTRAIT
========================================== */

.founder-portrait {
    display: flex;
    justify-content: center;

    margin-bottom: 90px;

    position: relative;
    z-index: 2;
}

.portrait-frame {
    position: relative;

    max-width: 500px;

    border-radius: 40px;

    overflow: hidden;

    background: #fff;

    padding: 15px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.08);
}

.portrait-frame::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 40px;

    padding: 2px;

    background:
        linear-gradient(
            135deg,
            #132d63,
            #B41A15
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;
}

.portrait-frame img {
    width: 100%;

    border-radius: 30px;

    display: block;
}

/* ==========================================
TIMELINE
========================================== */

.founder-timeline {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;

    margin-bottom: 90px;

    position: relative;
    z-index: 2;
}

.timeline-card {
    position: relative;

    background: #fff;

    padding: 35px;

    border-radius: 30px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);

    transition: .4s ease;
}

.timeline-card:hover {
    transform:
        translateY(-10px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.10);
}

.timeline-number {
    width: 60px;
    height: 60px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #132d63,
            #1f4a9d
        );

    color: #fff;

    font-size: 1.2rem;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.timeline-card h3 {
    color: #132d63;

    font-size: 1.3rem;

    font-weight: 700;

    margin-bottom: 15px;
}

.timeline-card p {
    color: #616a7e;

    line-height: 1.8;

    margin: 0;
}

/* ==========================================
MESSAGE CARD
========================================== */

.founder-message {
    max-width: 1000px;

    margin: 0 auto;

    position: relative;
    z-index: 2;
}

.message-card {
    background: #fff;

    padding: 60px;

    border-radius: 40px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.08);

    text-align: center;
}

.message-card h3 {
    font-size: 2rem;

    font-weight: 800;

    color: #132d63;

    margin-bottom: 2rem;
}

.message-card p {
    color: #616a7e;

    line-height: 2;

    margin-bottom: 1.2rem;
}

.message-card p:last-child {
    margin-bottom: 0;
}

/* ==========================================
CTA
========================================== */

.founder-action {
    text-align: center;

    margin-top: 50px;

    position: relative;
    z-index: 2;
}

/* ==========================================
PREMIUM HOVER
========================================== */

.timeline-card:nth-child(2) {
    margin-top: 40px;
}

.timeline-card:nth-child(4) {
    margin-top: 40px;
}

/* ==========================================
TABLET
========================================== */

@media (max-width: 1199px) {

    .founder-timeline {
        grid-template-columns:
            repeat(2,1fr);
    }

    .timeline-card:nth-child(2),
    .timeline-card:nth-child(4) {
        margin-top: 0;
    }

}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 767px) {

    .founder-story {
        padding: 90px 0;
    }

    .founder-timeline {
        grid-template-columns: 1fr;
    }

    .message-card {
        padding: 35px 25px;
    }

    .message-card h3 {
        font-size: 1.7rem;
    }

    .portrait-frame {
        border-radius: 25px;
    }

    .portrait-frame img {
        border-radius: 18px;
    }

}


/* ==========================================
ABOUT MEDIA SHOWCASE
========================================== */

.about-media-showcase {
    position: relative;
    padding: 140px 0;
    background: #ffffff;
    overflow: hidden;
}

/* ==========================================
HEADER
========================================== */

.media-header {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.media-header h2 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #132d63;
    margin-bottom: 20px;
    line-height: 1.1;
}

.media-header p {
    max-width: 650px;
    margin: 0 auto;
    color: #667085;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ==========================================
FEATURED VIDEO
========================================== */

.featured-video-block {
    position: relative;

    max-width: 1200px;
    margin: 0 auto 80px;

    border-radius: 32px;
    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(19,45,99,.12);
}

.featured-video-block iframe {
    width: 100%;
    height: 680px;
    display: block;
    border: 0;
}

/* ==========================================
STORY CONTENT
========================================== */

.media-story {
    margin-bottom: 80px;
}

.story-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.story-content span {
    display: inline-block;

    color: #B41A15;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 18px;
}

.story-content h3 {
    color: #132d63;

    font-size: 2.5rem;

    font-weight: 800;

    margin-bottom: 25px;
}

.story-content p {
    color: #667085;

    line-height: 1.9;

    font-size: 1.08rem;
}

/* ==========================================
BOTTOM GRID
========================================== */

.media-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 50px;

    align-items: start;
}

/* ==========================================
VIDEO BLOCK
========================================== */

.media-item {
    position: relative;
}

.media-video {
    position: relative;

    overflow: hidden;

    border-radius: 24px;

    margin-bottom: 25px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);
}

.media-video iframe,
.media-video video {
    width: 100%;
    height: 380px;

    display: block;

    border: none;

    object-fit: cover;
}

/* ==========================================
VIDEO INFO
========================================== */

.media-info {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.media-info h4 {
    color: #132d63;

    font-size: 1.6rem;

    font-weight: 700;

    margin-bottom: 15px;
}

.media-info p {
    color: #667085;

    line-height: 1.8;

    margin: 0;
}

/* ==========================================
HOVER EFFECTS
========================================== */

.media-video {
    transition: all .4s ease;
}

.media-item:hover .media-video {
    transform: translateY(-8px);

    box-shadow:
        0 35px 70px rgba(19,45,99,.15);
}

/* ==========================================
BACKGROUND ACCENTS
========================================== */

.about-media-showcase::before {
    content: "";

    position: absolute;

    top: -200px;
    right: -200px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(19,45,99,.04);

    filter: blur(120px);
}

.about-media-showcase::after {
    content: "";

    position: absolute;

    bottom: -200px;
    left: -200px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(180,26,21,.05);

    filter: blur(120px);
}

/* ==========================================
TABLET
========================================== */

@media (max-width: 991px) {

    .featured-video-block iframe {
        height: 500px;
    }

    .media-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 767px) {

    .about-media-showcase {
        padding: 90px 0;
    }

    .featured-video-block {
        margin-bottom: 60px;
        border-radius: 20px;
    }

    .featured-video-block iframe {
        height: 260px;
    }

    .story-content h3 {
        font-size: 2rem;
    }

    .media-video iframe,
    .media-video video {
        height: 240px;
    }

    .media-info h4 {
        font-size: 1.3rem;
    }

}



/* ==========================================
FOUNDER VISION SECTION
========================================== */

.founder-vision {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );
}

/* ==========================================
WRAPPER
========================================== */

.vision-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}

/* ==========================================
CONTENT
========================================== */

.vision-content {
    position: relative;
    z-index: 2;
}

.vision-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(19,45,99,.08);

    color: #132d63;

    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 25px;
}

.vision-label::before {
    content: "";

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #B41A15;
}

.vision-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);

    line-height: 1.1;

    font-weight: 800;

    color: #132d63;

    margin-bottom: 35px;
}

/* ==========================================
QUOTE
========================================== */

.vision-content blockquote {
    position: relative;

    margin: 0 0 25px;

    padding-left: 40px;

    font-size: 1.7rem;

    font-weight: 700;

    line-height: 1.5;

    color: #132d63;
}

.vision-content blockquote::before {
    content: "“";

    position: absolute;

    left: -10px;
    top: -30px;

    font-size: 6rem;

    line-height: 1;

    color: rgba(180,26,21,.18);

    font-family: Georgia, serif;
}

.vision-reference {
    display: inline-block;

    background: #132d63;

    color: #fff;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: .9rem;
    font-weight: 600;

    margin-bottom: 30px;
}

.vision-content p {
    font-size: 1.05rem;

    line-height: 1.9;

    color: #667085;

    margin-bottom: 35px;

    max-width: 650px;
}

/* ==========================================
BUTTON
========================================== */

.vision-action .comon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;

    padding: 15px 32px;

    border-radius: 60px;

    background: linear-gradient(
        135deg,
        #132d63 0%,
        #1e428f 100%
    );

    color: #fff;
    text-decoration: none;

    font-weight: 600;

    transition: all .35s ease;
}

.vision-action .comon-btn:hover {
    transform: translateY(-4px);

    color: #fff;

    box-shadow:
        0 15px 35px rgba(19,45,99,.25);
}

/* ==========================================
IMAGE
========================================== */

.vision-image {
    position: relative;
}

.image-frame {
    position: relative;

    border-radius: 30px;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 30px 70px rgba(19,45,99,.12);
}

.image-frame img {
    width: 100%;
    display: block;
}

/* Glow */

.image-frame::before {
    content: "";

    position: absolute;

    top: -50px;
    right: -50px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(180,26,21,.15);

    filter: blur(60px);

    z-index: 1;
}

.image-frame::after {
    content: "";

    position: absolute;

    bottom: -60px;
    left: -60px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(19,45,99,.12);

    filter: blur(80px);

    z-index: 1;
}

/* ==========================================
BACKGROUND DECORATION
========================================== */

.founder-vision::before {
    content: "";

    position: absolute;

    top: -200px;
    right: -200px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(19,45,99,.04);

    filter: blur(120px);
}

.founder-vision::after {
    content: "";

    position: absolute;

    bottom: -250px;
    left: -250px;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background:
        rgba(180,26,21,.04);

    filter: blur(140px);
}

/* ==========================================
TABLET
========================================== */

@media (max-width: 991px) {

    .founder-vision {
        padding: 90px 0;
    }

    .vision-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vision-image {
        order: -1;
    }

    .vision-content {
        text-align: center;
    }

    .vision-content blockquote {
        padding-left: 0;
    }

    .vision-content blockquote::before {
        left: 50%;
        transform: translateX(-50%);
        top: -45px;
    }

    .vision-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 767px) {

    .founder-vision {
        padding: 70px 0;
    }

    .vision-content h2 {
        font-size: 2.2rem;
    }

    .vision-content blockquote {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    .vision-reference {
        font-size: .85rem;
    }

    .vision-content p {
        font-size: 1rem;
    }

    .image-frame {
        border-radius: 20px;
    }
}


/* ==========================================
BELLOGOAL BENEFITS
========================================== */

.bellogoal-benefits {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

/* ==========================================
LAYOUT
========================================== */

.benefits-wrapper {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

/* ==========================================
IMAGE
========================================== */

.benefits-image {
    position: relative;
}

.benefits-image-frame {
    position: relative;

    overflow: hidden;

    border-radius: 32px;

    background: #fff;

    box-shadow:
        0 30px 70px rgba(19,45,99,.12);
}

.benefits-image-frame img {
    width: 100%;
    display: block;
}

/* Accent Border */

.benefits-image-frame::before {
    content: "";

    position: absolute;

    inset: 0;

    border: 3px solid rgba(180,26,21,.08);

    border-radius: inherit;

    pointer-events: none;
}

/* ==========================================
CONTENT
========================================== */

.benefits-content {
    position: relative;
}

.benefits-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(19,45,99,.08);

    color: #132d63;

    font-size: .85rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 22px;
}

.benefits-label::before {
    content: "";

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #B41A15;
}

.benefits-content h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);

    font-weight: 800;

    color: #132d63;

    line-height: 1.1;

    margin-bottom: 25px;
}

.benefits-intro {
    color: #667085;

    font-size: 1.05rem;

    line-height: 1.9;

    margin-bottom: 40px;
}

/* ==========================================
BENEFITS GRID
========================================== */

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    margin-bottom: 40px;
}

/* ==========================================
BENEFIT CARD
========================================== */

.benefit-card {
    display: flex;
    gap: 18px;

    padding: 24px;

    background: #fff;

    border-radius: 22px;

    border: 1px solid #eef2f7;

    transition: all .35s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,.03);
}

.benefit-card:hover {
    transform: translateY(-6px);

    border-color: rgba(19,45,99,.15);

    box-shadow:
        0 20px 40px rgba(19,45,99,.08);
}

.benefit-icon {
    flex-shrink: 0;

    width: 60px;
    height: 60px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #132d63,
        #1e428f
    );

    color: #fff;

    font-size: 1.3rem;
}

.benefit-info h4 {
    color: #132d63;

    font-size: 1.1rem;

    font-weight: 700;

    margin-bottom: 8px;
}

.benefit-info p {
    margin: 0;

    color: #667085;

    font-size: .95rem;

    line-height: 1.7;
}

/* ==========================================
QUOTE BOX
========================================== */

.benefits-quote {
    position: relative;

    padding: 35px;

    border-radius: 28px;

    background: linear-gradient(
        135deg,
        #132d63,
        #18387a
    );

    overflow: hidden;
}

.benefits-quote::before {
    content: "❝";

    position: absolute;

    top: -20px;
    left: 20px;

    font-size: 6rem;

    color: rgba(255,255,255,.08);
}

.benefits-quote p {
    position: relative;

    margin: 0;

    color: #fff;

    font-size: 1.05rem;

    line-height: 1.9;

    z-index: 2;
}

/* ==========================================
BACKGROUND DECORATION
========================================== */

.bellogoal-benefits::before {
    content: "";

    position: absolute;

    right: -250px;
    top: -150px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(19,45,99,.04);

    filter: blur(140px);
}

.bellogoal-benefits::after {
    content: "";

    position: absolute;

    left: -250px;
    bottom: -200px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(180,26,21,.04);

    filter: blur(140px);
}

/* ==========================================
TABLET
========================================== */

@media (max-width: 991px) {

    .bellogoal-benefits {
        padding: 90px 0;
    }

    .benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-image {
        max-width: 650px;
        margin: 0 auto;
    }

    .benefits-content {
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 767px) {

    .bellogoal-benefits {
        padding: 70px 0;
    }

    .benefits-content h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        text-align: left;
    }

    .benefits-quote {
        padding: 25px;
    }

    .benefits-quote p {
        font-size: 1rem;
    }

    .benefits-image-frame {
        border-radius: 22px;
    }
}


/* ==========================================
BUY BELLOGOAL BOARDS
========================================== */

.buy-bellogoal-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.buy-bellogoal-section::before {
    content: "";

    position: absolute;

    top: -250px;
    right: -250px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(19,45,99,.05);

    filter: blur(140px);
}

.buy-bellogoal-section::after {
    content: "";

    position: absolute;

    bottom: -250px;
    left: -250px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(180,26,21,.05);

    filter: blur(140px);
}

/* ==========================================
WRAPPER
========================================== */

.buy-bellogoal-wrapper {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* ==========================================
IMAGE
========================================== */

.buy-product-image {
    position: relative;
}

.image-container {
    position: relative;

    overflow: hidden;

    border-radius: 32px;

    background: #fff;

    box-shadow:
        0 30px 70px rgba(19,45,99,.12);
}

.image-container img {
    width: 100%;
    display: block;
    transition: transform .6s ease;
}

.buy-product-image:hover img {
    transform: scale(1.04);
}

.image-container::before {
    content: "";

    position: absolute;

    inset: 0;

    border: 2px solid rgba(255,255,255,.2);

    border-radius: inherit;

    z-index: 2;

    pointer-events: none;
}

/* ==========================================
CONTENT
========================================== */

.buy-product-content {
    position: relative;
}

.buy-product-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);

    line-height: 1.1;

    color: #132d63;

    font-weight: 800;

    margin-bottom: 20px;
}

.buy-product-content p {
    color: #667085;

    line-height: 1.9;

    margin-bottom: 40px;

    font-size: 1.05rem;
}

/* ==========================================
BOARD OPTIONS
========================================== */

.board-options {
    display: flex;
    flex-wrap: wrap;

    gap: 16px;

    margin-bottom: 40px;
}

.board-option {
    min-width: 180px;

    padding: 18px 20px;

    background: #fff;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    transition: all .35s ease;

    cursor: pointer;

    box-shadow:
        0 10px 20px rgba(0,0,0,.03);
}

.board-option:hover {
    transform: translateY(-5px);

    border-color: #132d63;

    box-shadow:
        0 20px 35px rgba(19,45,99,.10);
}

.board-option span {
    display: block;

    color: #132d63;

    font-weight: 700;

    font-size: 1rem;

    margin-bottom: 4px;
}

.board-option small {
    display: block;

    color: #667085;

    font-size: .85rem;
}

/* ==========================================
BUTTONS
========================================== */

.buy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.buy-actions .comon-btn {
    min-width: 200px;

    text-align: center;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 200px;

    padding: 14px 30px;

    border-radius: 60px;

    border: 2px solid #132d63;

    color: #132d63;

    text-decoration: none;

    font-weight: 600;

    transition: all .35s ease;
}

.outline-btn:hover {
    background: #132d63;

    color: #fff;
}

/* ==========================================
SECTION BADGE
========================================== */

.buy-bellogoal-section .section-badge {
    margin-bottom: 25px;
}

/* ==========================================
TABLET
========================================== */

@media (max-width: 991px) {

    .buy-bellogoal-section {
        padding: 90px 0;
    }

    .buy-bellogoal-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .buy-product-image {
        max-width: 700px;
        margin: 0 auto;
    }

    .buy-product-content {
        text-align: center;
    }

    .board-options {
        justify-content: center;
    }

    .buy-actions {
        justify-content: center;
    }
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 767px) {

    .buy-bellogoal-section {
        padding: 70px 0;
    }

    .buy-product-content h2 {
        font-size: 2.2rem;
    }

    .board-options {
        flex-direction: column;
    }

    .board-option {
        width: 100%;
        min-width: unset;
    }

    .buy-actions {
        flex-direction: column;
    }

    .buy-actions .comon-btn,
    .outline-btn {
        width: 100%;
    }

    .image-container {
        border-radius: 22px;
    }
}

/* ==========================================
CONTACT HERO
========================================== */

.contact-hero {
    position: relative;

    padding: 180px 0 120px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #132d63 0%,
            #0c1d43 100%
        );
}

/* ==========================================
BACKGROUND EFFECTS
========================================== */

.contact-hero::before {
    content: "";

    position: absolute;

    top: -200px;
    right: -150px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.06);

    filter: blur(80px);
}

.contact-hero::after {
    content: "";

    position: absolute;

    bottom: -250px;
    left: -150px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(180,26,21,.25);

    filter: blur(120px);
}

/* ==========================================
CONTENT
========================================== */

.contact-hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

/* ==========================================
BADGE
========================================== */

.contact-hero .section-badge {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 22px;

    border-radius: 60px;

    background:
        rgba(255,255,255,.12);

    backdrop-filter: blur(12px);

    color: #ffffff;

    font-size: .95rem;

    font-weight: 600;

    letter-spacing: .5px;

    margin-bottom: 25px;
}

/* ==========================================
TITLE
========================================== */

.contact-hero h1 {
    color: #ffffff;

    font-size: clamp(3rem, 7vw, 5.5rem);

    font-weight: 800;

    line-height: 1.05;

    margin-bottom: 25px;

    letter-spacing: -1px;
}

/* ==========================================
DESCRIPTION
========================================== */

.contact-hero p {
    color: rgba(255,255,255,.85);

    font-size: 1.1rem;

    line-height: 1.9;

    max-width: 700px;

    margin: 0 auto 40px;
}

/* ==========================================
BREADCRUMB
========================================== */

.contact-breadcrumb {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 24px;

    border-radius: 60px;

    background:
        rgba(255,255,255,.10);

    backdrop-filter: blur(14px);

    border:
        1px solid rgba(255,255,255,.12);
}

.contact-breadcrumb a {
    color: #ffffff;

    text-decoration: none;

    font-weight: 500;

    transition: .3s ease;
}

.contact-breadcrumb a:hover {
    color: #ff6b6b;
}

.contact-breadcrumb span {
    color: rgba(255,255,255,.75);
}


/* ==========================================
TABLET
========================================== */

@media (max-width: 991px) {

    .contact-hero {
        padding: 140px 0 100px;
    }

    .contact-hero h1 {
        font-size: 3.5rem;
    }
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 767px) {

    .contact-hero {
        padding: 120px 0 80px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-breadcrumb {
        padding: 12px 18px;
        gap: 8px;
    }
}

/* ==========================================
CONTACT SECTION
========================================== */

.contact-page-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-page-section::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 38%;

    height: 100%;

    background:
        linear-gradient(
            180deg,
            #132d63 0%,
            #0e2148 100%
        );

    z-index: 0;
}

/* ==========================================
LAYOUT
========================================== */

.contact-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 80px;
    align-items: center;
}

/* ==========================================
LEFT CONTENT
========================================== */

.contact-details {
    max-width: 700px;
}

.contact-intro h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);

    line-height: 1.1;

    color: #132d63;

    font-weight: 800;

    margin-bottom: 24px;
}

.contact-intro p {
    font-size: 1.1rem;

    line-height: 1.9;

    color: #667085;

    margin-bottom: 50px;
}

/* ==========================================
INFO LIST
========================================== */

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 22px;
}

.contact-icon {
    width: 75px;
    height: 75px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #132d63,
            #1b448f
        );

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    box-shadow:
        0 20px 40px rgba(19,45,99,.15);
}

.contact-icon i {
    color: #fff;
    font-size: 1.4rem;
}

.contact-info h4 {
    color: #132d63;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-info p,
.contact-info a {
    color: #667085;
    text-decoration: none;
    line-height: 1.8;
}

.contact-info a:hover {
    color: #B41A15;
}

/* ==========================================
FORM PANEL
========================================== */

.contact-form-wrapper {
    position: relative;
}

.form-card {
    background: #fff;

    padding: 50px;

    border-radius: 30px;

    box-shadow:
        0 40px 80px rgba(0,0,0,.12);

    position: relative;
}

.form-card::before {
    content: "";

    position: absolute;

    inset: -2px;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            #132d63,
            #B41A15
        );

    z-index: -1;
}

.form-card h3 {
    color: #132d63;

    font-size: 2rem;

    font-weight: 800;

    margin-bottom: 15px;
}

.form-card p {
    color: #667085;
    margin-bottom: 30px;
}

/* ==========================================
FORM FIELDS
========================================== */

.form-card input,
.form-card textarea {
    width: 100%;

    padding: 18px 20px;

    border: none;

    border-radius: 14px;

    background: #f5f7fb;

    transition: .3s ease;
}

.form-card input:focus,
.form-card textarea:focus {
    outline: none;

    background: #fff;

    box-shadow:
        0 0 0 2px #132d63;
}

.form-card textarea {
    min-height: 180px;
}

/* ==========================================
SUBMIT BUTTON
========================================== */

.form-card .wpcf7-submit {
    width: 100%;

    border: none;

    padding: 18px;

    border-radius: 70px;

    background:
        linear-gradient(
            135deg,
            #B41A15,
            #d82923
        );

    color: #fff;

    font-weight: 700;

    transition: .3s ease;
}

.form-card .wpcf7-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 40px rgba(180,26,21,.25);
}

/* ==========================================
TABLET
========================================== */

@media (max-width: 991px) {

    .contact-page-section::before {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-intro {
        text-align: center;
    }

    .contact-cards {
        max-width: 600px;
        margin: auto;
    }
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 767px) {

    .contact-page-section {
        padding: 80px 0;
    }

    .contact-intro h2 {
        font-size: 2.4rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .form-card {
        padding: 30px;
    }
}



/* ==========================================
LOCATION SECTION
========================================== */

.contact-location {
    padding: 120px 0;
    background: #f7f9fc;
    position: relative;
}

/* ==========================================
HEADER
========================================== */

.location-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.location-header .section-badge {
    display: inline-block;

    background: rgba(180,26,21,.1);

    color: #B41A15;

    padding: 10px 20px;

    border-radius: 50px;

    font-size: .9rem;

    font-weight: 700;

    margin-bottom: 20px;
}

.location-header h2 {
    font-size: clamp(2.5rem,5vw,4rem);

    color: #132d63;

    font-weight: 800;

    margin-bottom: 20px;
}

.location-header p {
    color: #666;

    line-height: 1.8;

    font-size: 1.05rem;
}

/* ==========================================
LAYOUT
========================================== */

.location-wrapper {
    display: grid;

    grid-template-columns: 380px 1fr;

    gap: 40px;

    align-items: stretch;
}

/* ==========================================
INFO CARD
========================================== */

.location-card {
    height: 100%;

    background: #ffffff;

    border-radius: 24px;

    padding: 40px;

    box-shadow:
        0 20px 50px rgba(19,45,99,.08);

    border: 1px solid rgba(19,45,99,.08);

    display: flex;

    align-items: flex-start;

    gap: 20px;
}

.location-icon {
    width: 70px;
    height: 70px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #132d63,
        #1f4ca3
    );

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.location-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.location-content h3 {
    color: #132d63;

    font-size: 1.5rem;

    margin-bottom: 15px;

    font-weight: 700;
}

.location-content p {
    color: #666;

    line-height: 1.9;

    margin: 0;
}

/* ==========================================
MAP
========================================== */

.location-map {
    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(19,45,99,.12);

    border: 1px solid rgba(19,45,99,.08);

    min-height: 500px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 400px;
    }
}

@media (max-width: 767px) {

    .contact-location {
        padding: 80px 0;
    }

    .location-card {
        padding: 30px;
    }

    .location-map {
        min-height: 320px;
    }
}


/* ==========================================
   PICTURE PUZZLE HERO
========================================== */

.pp-hero-section {
    position: relative;
    padding: 180px 0 140px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(19,45,99,0.96),
            rgba(11,25,57,0.95)
        ),
        url("https://images.unsplash.com/photo-1518133835878-5a93cc3f89e5?q=80&w=1920")
        center center / cover no-repeat;
}

.pp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(180,26,21,0.25),
            transparent 40%
        );
    pointer-events: none;
}

.pp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.pp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 100px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.pp-hero-content h1 {
    color: #fff;
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.pp-hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 20px;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 35px;
}

.pp-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.pp-hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.pp-hero-breadcrumb a:hover {
    color: #ff5757;
}

.pp-hero-breadcrumb span {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .pp-hero-section {
        padding: 140px 0 100px;
    }

    .pp-hero-content h1 {
        font-size: 48px;
    }

    .pp-hero-content p {
        font-size: 18px;
    }

}

@media (max-width: 767px) {

    .pp-hero-section {
        padding: 120px 0 80px;
    }

    .pp-hero-content h1 {
        font-size: 36px;
    }

    .pp-hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .pp-hero-breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
    }

}


/* ==========================================
   PICTURE PUZZLE GALLERY
========================================== */

.pp-gallery-showcase {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.pp-gallery-showcase::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(180, 26, 21, 0.04);
}

.pp-gallery-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.pp-gallery-header .section-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(19,45,99,.08);
    color: #132d63;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pp-gallery-header h2 {
    font-size: 54px;
    font-weight: 800;
    color: #132d63;
    margin-bottom: 20px;
    line-height: 1.1;
}

.pp-gallery-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
}

/* ==========================================
   SLIDER
========================================== */

.pp-gallery-slider-wrapper {
    position: relative;
}

.pp-gallery-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    scrollbar-width: none;
}

.pp-gallery-slider::-webkit-scrollbar {
    display: none;
}

/* ==========================================
   CARD
========================================== */

.pp-gallery-card {
    flex: 0 0 320px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    position: relative;
    box-shadow:
        0 10px 30px rgba(15,23,42,.08);
    transition: all .4s ease;
}

.pp-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 60px rgba(15,23,42,.15);
}

.pp-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(19,45,99,.5),
            transparent 40%
        );
    opacity: 0;
    transition: .4s;
}

.pp-gallery-card:hover::after {
    opacity: 1;
}

.pp-gallery-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.pp-gallery-card:hover img {
    transform: scale(1.08);
}

/* ==========================================
   NAVIGATION
========================================== */

.pp-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #132d63;
    font-size: 18px;
    z-index: 10;
    cursor: pointer;
    box-shadow:
        0 15px 35px rgba(15,23,42,.12);
    transition: all .3s ease;
}

.pp-gallery-nav:hover {
    background: #132d63;
    color: #fff;
}

.pp-gallery-prev {
    left: -25px;
}

.pp-gallery-next {
    right: -25px;
}

/* ==========================================
   MODAL
========================================== */

.pp-gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.pp-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.88);
    backdrop-filter: blur(6px);
}

.pp-gallery-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    max-width: 1000px;
    z-index: 2;
}

.pp-gallery-modal-content img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 24px;
    background: #fff;
}

.pp-gallery-close {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #B41A15;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 3;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 991px) {

    .pp-gallery-header h2 {
        font-size: 42px;
    }

    .pp-gallery-card {
        flex: 0 0 280px;
    }

    .pp-gallery-card img {
        height: 320px;
    }

    .pp-gallery-prev,
    .pp-gallery-next {
        display: none;
    }
}

@media (max-width: 767px) {

    .pp-gallery-showcase {
        padding: 80px 0;
    }

    .pp-gallery-header h2 {
        font-size: 34px;
    }

    .pp-gallery-header p {
        font-size: 16px;
    }

    .pp-gallery-card {
        flex: 0 0 240px;
    }

    .pp-gallery-card img {
        height: 280px;
    }
}


/* ==========================================
   RULES HERO SECTION
========================================== */

.rules-hero-section{
    position: relative;
    overflow: hidden;
    padding: 180px 0 120px;
    background:
        linear-gradient(
            135deg,
            rgba(19,45,99,0.96),
            rgba(11,28,65,0.98)
        ),
        url("https://bellogoal.com/wp-content/uploads/2024/08/why_choose_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rules-hero-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(180,26,21,0.18),
            transparent 40%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255,255,255,0.08),
            transparent 35%
        );
}

.rules-hero-overlay{
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rules-hero-content{
    position: relative;
    z-index: 2;
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
}

.rules-hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 28px;
    border-radius: 100px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rules-hero-badge::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #B41A15;
    box-shadow: 0 0 15px rgba(180,26,21,0.8);
}

.rules-hero-content h1{
    color: #fff;
    font-size: clamp(42px,5vw,72px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.rules-hero-content p{
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 35px;
}

.rules-hero-breadcrumb{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
}

.rules-hero-breadcrumb a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.rules-hero-breadcrumb a:hover{
    color: #B41A15;
}

.rules-hero-breadcrumb span{
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .rules-hero-section{
        padding: 140px 0 90px;
    }

    .rules-hero-content h1{
        font-size: 48px;
    }

}

@media(max-width:767px){

    .rules-hero-section{
        padding: 120px 0 80px;
    }

    .rules-hero-content h1{
        font-size: 36px;
    }

    .rules-hero-content p{
        font-size: 16px;
    }

    .rules-hero-breadcrumb{
        flex-wrap: wrap;
        justify-content: center;
    }

}


/* ==========================================
   BELLOGOAL RULES SECTION
========================================== */

.bg-rules-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at top right,
            rgba(180, 26, 21, 0.08),
            transparent 30%),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
    overflow: hidden;
}

/* Decorative Shapes */

.bg-rules-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(19, 45, 99, 0.05);
}

.bg-rules-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(180, 26, 21, 0.06);
}

/* ==========================================
   HEADER
========================================== */

.bg-rules-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 70px;
}

.bg-rules-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(19, 45, 99, 0.08);
    color: #132d63;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bg-rules-header h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 800;
    color: #132d63;
    line-height: 1.1;
    margin-bottom: 20px;
}

.bg-rules-header p {
    color: #5f6c7b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   GRID
========================================== */

.bg-rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ==========================================
   RULE CARD
========================================== */

.bg-rule-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(19, 45, 99, 0.08);
    box-shadow:
        0 10px 30px rgba(19, 45, 99, 0.06);
    transition: all .4s ease;
    overflow: hidden;
}

.bg-rule-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(19,45,99,0.03),
            rgba(180,26,21,0.03)
        );
    opacity: 0;
    transition: .4s;
}

.bg-rule-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(19,45,99,.12);
}

.bg-rule-card:hover::before {
    opacity: 1;
}

/* ==========================================
   RULE NUMBER
========================================== */

.rule-number {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            #132d63,
            #1e4da8
        );
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow:
        0 15px 30px rgba(19,45,99,.25);
}

/* Alternate Numbers */

.bg-rule-card:nth-child(even) .rule-number {
    background:
        linear-gradient(
            135deg,
            #B41A15,
            #db3f3a
        );
    box-shadow:
        0 15px 30px rgba(180,26,21,.25);
}

/* ==========================================
   TEXT
========================================== */

.bg-rule-card p {
    margin: 0;
    color: #4b5968;
    font-size: 1rem;
    line-height: 1.9;
}

.bg-rule-card strong {
    color: #132d63;
    font-weight: 700;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .bg-rules-section {
        padding: 90px 0;
    }

    .bg-rules-grid {
        grid-template-columns: 1fr;
    }

    .bg-rule-card {
        padding: 35px;
    }
}

@media (max-width: 767px) {

    .bg-rules-header {
        margin-bottom: 50px;
    }

    .bg-rules-header h2 {
        font-size: 2.2rem;
    }

    .bg-rule-card {
        padding: 30px;
        border-radius: 24px;
    }

    .rule-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .bg-rule-card p {
        font-size: .95rem;
        line-height: 1.8;
    }
}



/* ==========================================
BLOG HERO
========================================== */

.blog-hero-section {
    position: relative;
    padding: 3rem 0 3rem;
    background: linear-gradient(135deg,#132d63 0%,#1f4c9a 100%);
    overflow: hidden;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background:
    radial-gradient(circle at top right,
    rgba(180,26,21,.25),
    transparent 40%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.blog-hero-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
}

.blog-hero-content h1 {
    font-size: clamp(42px,6vw,72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.blog-hero-content p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    opacity: .9;
}

.blog-hero-breadcrumb {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,.8);
}

.blog-hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

/* ==========================================
FEATURED POST
========================================== */

.featured-post-section {
    padding: 100px 0;
    background: #f8fafc;
}

.featured-post-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.featured-post-content {
    padding: 60px;
}

.featured-tag {
    display: inline-block;
    background: #B41A15;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
}

.featured-post-content h2 {
    margin-bottom: 20px;
}

.featured-post-content h2 a {
    color: #132d63;
    text-decoration: none;
    font-size: 42px;
    line-height: 1.2;
}

.featured-post-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ==========================================
BLOG GRID
========================================== */

.blog-grid-section {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.blog-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card-image {
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .6s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 30px;
}

.blog-meta {
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
}

.blog-card-content h3 {
    margin-bottom: 15px;
}

.blog-card-content h3 a {
    text-decoration: none;
    color: #132d63;
    font-size: 24px;
    line-height: 1.4;
    transition: .3s;
}

.blog-card-content h3 a:hover {
    color: #B41A15;
}

.blog-card-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #132d63;
    font-weight: 700;
    text-decoration: none;
}

.read-more:hover {
    color: #B41A15;
}

/* ==========================================
PAGINATION
========================================== */

.blog-pagination {
    margin-top: 70px;
    text-align: center;
}

.blog-pagination .page-numbers {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    margin: 0 5px;
    text-decoration: none;
    color: #132d63;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.blog-pagination .current,
.blog-pagination .page-numbers:hover {
    background: #132d63;
    color: #fff;
}

/* ==========================================
CTA
========================================== */

.blog-cta-section {
    padding: 0 0 120px;
}

.blog-cta-box {
    background:
    linear-gradient(135deg,#132d63,#1f4c9a);
    border-radius: 35px;
    padding: 80px;
    text-align: center;
    color: #fff;
}

.blog-cta-box h2 {
    color: #fff;
    font-size: 48px;
    margin: 20px 0;
}

.blog-cta-box p {
    max-width: 700px;
    margin: auto auto 30px;
    opacity: .9;
}

.blog-cta-box .section-badge {
    background: rgba(255,255,255,.12);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .featured-post-card{
        grid-template-columns:1fr;
    }

    .featured-post-content{
        padding:40px;
    }

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

    .blog-hero-section{
        padding:100px 0 80px;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .featured-post-content h2 a{
        font-size:32px;
    }

    .blog-cta-box{
        padding:50px 25px;
    }

    .blog-cta-box h2{
        font-size:34px;
    }
}



/* ==========================================
   SINGLE BLOG HERO
========================================== */

.single-blog-hero {
    position: relative;
    padding: 3rem 0 3rem;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(19,45,99,.96),
            rgba(11,28,63,.92)
        ),
        url('https://images.unsplash.com/photo-1517466787929-bc90951d0974?q=80&w=1600')
        center center/cover fixed;
}

.single-blog-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at top right,
            rgba(180,26,21,.25),
            transparent 40%
        );
}

.single-blog-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:900px;
    margin:auto;
}

.single-blog-category{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:50px;
    color:#fff;
    font-weight:600;
    margin-bottom:25px;
}

.single-blog-content h1{
    color:#fff;
    font-size:clamp(2.4rem,5vw,4.5rem);
    line-height:1.15;
    font-weight:800;
    margin-bottom:25px;
}

.single-blog-meta{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
    margin-bottom:30px;
}

.single-blog-meta span{
    color:rgba(255,255,255,.85);
    font-size:15px;
}

.single-blog-meta i{
    color:#B41A15;
    margin-right:8px;
}

.single-blog-breadcrumb{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

.single-blog-breadcrumb a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.single-blog-breadcrumb a:hover{
    color:#B41A15;
}

.single-blog-breadcrumb span{
    color:rgba(255,255,255,.75);
}


/* ==========================================
   FEATURED IMAGE
========================================== */

.single-featured-image{
    margin-top:-80px;
    position:relative;
    z-index:5;
}

.featured-image-wrapper{
    overflow:hidden;
    border-radius:30px;
    box-shadow:
        0 25px 60px rgba(0,0,0,.15);
}

.featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    
}


/* ==========================================
   BLOG CONTENT
========================================== */

.single-blog-section{
    padding: 3rem 0;
}

.single-blog-article{
    background:#fff;
    border-radius:30px;
    padding: 1.5rem;
    box-shadow:
        0 15px 40px rgba(0,0,0,.06);
}

.single-blog-article > *:last-child{
    margin-bottom:0;
}

.single-blog-article h2{
    color:#132d63;
    font-size:2rem;
    margin:50px 0 20px;
    font-weight:700;
}

.single-blog-article h3{
    color:#132d63;
    font-size:1.6rem;
    margin:40px 0 18px;
}

.single-blog-article h4{
    color:#132d63;
    margin:30px 0 15px;
}

.single-blog-article p{
    color:#555;
    line-height:1.9;
    margin-bottom:24px;
    font-size:17px;
}

.single-blog-article ul,
.single-blog-article ol{
    padding-left:25px;
    margin-bottom:25px;
}

.single-blog-article li{
    margin-bottom:12px;
    line-height:1.8;
    color:#555;
}

.single-blog-article strong{
    color:#132d63;
}

.single-blog-article a{
    color:#B41A15;
    text-decoration:none;
    font-weight:600;
}

.single-blog-article a:hover{
    text-decoration:underline;
}

.single-blog-article blockquote{
    background:#f8f9fb;
    border-left:5px solid #B41A15;
    padding:30px;
    margin:40px 0;
    border-radius:15px;
    font-size:1.2rem;
    color:#132d63;
    font-weight:600;
}

.single-blog-article img{
    max-width:100%;
    height:auto;
    border-radius:20px;
    margin:30px 0;
}


/* ==========================================
   POST NAVIGATION
========================================== */

.post-navigation-section{
    padding-bottom:100px;
}

.post-navigation-wrapper{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.prev-post,
.next-post{
    flex:1;
}

.prev-post a,
.next-post a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    padding:20px 30px;
    background:#fff;
    border-radius:20px;
    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
    color:#132d63;
    font-weight:700;
    transition:.3s;
}

.prev-post a:hover,
.next-post a:hover{
    background:#132d63;
    color:#fff;
}


/* ==========================================
   RELATED POSTS
========================================== */

.related-posts-section{
    padding:100px 0;
    background:#f7f9fc;
}

.related-posts-section .section-heading{
    margin-bottom:60px;
}

.related-posts-section h2{
    color:#132d63;
    font-size:2.8rem;
    font-weight:800;
}

.blog-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    height:100%;
    transition:.35s;
    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-card-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.blog-card-content{
    padding:30px;
}

.blog-card-content h3{
    margin-bottom:15px;
}

.blog-card-content h3 a{
    color:#132d63;
    text-decoration:none;
}

.blog-card-content p{
    color:#666;
    line-height:1.8;
}

.read-more{
    color:#B41A15;
    font-weight:700;
    text-decoration:none;
}


/* ==========================================
   CTA SECTION
========================================== */

.blog-cta-section{
    padding:100px 0;
}

.blog-cta-box{
    background:
        linear-gradient(
            135deg,
            #132d63,
            #0d214b
        );
    padding:80px;
    border-radius:35px;
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.blog-cta-box::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(180,26,21,.2);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.blog-cta-box h2{
    color:#fff;
    font-size:3rem;
    font-weight:800;
    margin:20px 0;
}

.blog-cta-box p{
    color:rgba(255,255,255,.85);
    max-width:650px;
    margin:auto auto 30px;
}

.blog-cta-box .comon-btn{
    background:#B41A15;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    display:inline-block;
    font-weight:700;
    transition:.3s;
}

.blog-cta-box .comon-btn:hover{
    background:#fff;
    color:#132d63;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width:991px){

    .single-blog-article{
        padding:35px;
    }

    .blog-cta-box{
        padding:50px 30px;
    }

    .blog-cta-box h2{
        font-size:2.2rem;
    }

    .post-navigation-wrapper{
        flex-direction:column;
    }
}

@media (max-width:767px){

    .single-blog-hero{
        padding:140px 0 90px;
    }

    .single-blog-content h1{
        font-size:2.2rem;
    }

    .single-blog-article{
        padding:25px;
    }

    .single-blog-article p{
        font-size:16px;
    }

    .featured-image-wrapper{
        border-radius:20px;
    }
}


/* ==========================================
PRODUCT HERO
========================================== */

.bg-product-hero{
    position:relative;
    padding:180px 0 120px;
    background:#132d63;
    overflow:hidden;
}

.bg-product-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(180,26,21,.25),
    transparent 40%);
}

.bg-product-content{
    position:relative;
    z-index:2;
}

.bg-product-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.1);
    color:#fff;
    margin-bottom:20px;
}

.bg-product-content h1{
    color:#fff;
    font-size:4rem;
    font-weight:800;
    margin-bottom:20px;
}

.bg-product-content p{
    color:rgba(255,255,255,.85);
    margin-bottom:35px;
    font-size:18px;
}

.bg-product-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.outline-btn{
    border:2px solid #fff;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
}

.bg-product-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

/* ==========================================
SHOWCASE
========================================== */

.bg-product-showcase{
    padding:120px 0;
}

.showcase-image img{
    width:100%;
    border-radius:25px;
}

.showcase-details{
    padding-left:40px;
}

.product-specs{
    list-style:none;
    padding:0;
    margin-top:30px;
}

.product-specs li{
    padding:16px 0;
    border-bottom:1px solid #eee;
}

/* ==========================================
DESCRIPTION
========================================== */

.bg-product-description{
    padding:120px 0;
    background:#f8f9fc;
}

.description-box{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.description-box p{
    font-size:18px;
    line-height:1.9;
}

/* ==========================================
FEATURES
========================================== */

.bg-product-features{
    padding:120px 0;
}

.feature-card{
    background:#fff;
    border-radius:25px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card i{
    font-size:40px;
    color:#B41A15;
    margin-bottom:20px;
}

/* ==========================================
GALLERY
========================================== */

.bg-product-gallery{
    padding:120px 0;
    background:#f8f9fc;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    border-radius:20px;
    height:280px;
    object-fit:cover;
}

/* ==========================================
INQUIRY
========================================== */

.bg-inquiry-section{
    padding:120px 0;
}

.inquiry-form-wrapper{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* ==========================================
RELATED PRODUCTS
========================================== */

.bg-related-products{
    padding:120px 0;
    background:#f8f9fc;
}

.related-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.related-card:hover{
    transform:translateY(-10px);
}

.related-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.related-card h4{
    padding:25px 20px 10px;
    color:#132d63;
}

.related-card a{
    display:inline-block;
    margin-bottom:25px;
    color:#B41A15;
    font-weight:700;
    text-decoration:none;
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .bg-product-content h1{
        font-size:3rem;
    }

    .showcase-details{
        padding-left:0;
        margin-top:40px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

    .bg-product-hero{
        padding:140px 0 80px;
    }

    .bg-product-content h1{
        font-size:2.3rem;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .feature-card,
    .inquiry-form-wrapper{
        padding:25px;
    }
}


/* ==================================================
PRODUCT DETAIL PAGE
================================================== */

.bg-product-hero{
position: relative;
padding: 120px 0;
background: #132d63;
overflow: hidden;
}

.bg-product-overlay{
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(19,45,99,.95),
rgba(19,45,99,.75)
);
}

.bg-product-hero .container{
position: relative;
z-index: 2;
}

.bg-product-content{
color:#fff;
}

.bg-product-badge{
display:inline-flex;
padding:10px 20px;
background:#B41A15;
color:#fff;
border-radius:50px;
font-size:14px;
font-weight:600;
margin-bottom:20px;
}

.bg-product-content h1{
color:#fff;
font-size:58px;
line-height:1.1;
font-weight:700;
margin-bottom:25px;
}

.bg-product-content p{
font-size:18px;
line-height:1.8;
margin-bottom:35px;
color:rgba(255,255,255,.9);
}

.bg-product-main-image{
border-radius:20px;
overflow:hidden;
box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.bg-product-main-image img{
width:100%;
display:block;
}

/* ==================================================
PRODUCT STORY
================================================== */

.bg-product-story{
padding:100px 0;
}

.story-content{
text-align:center;
}

.story-content .section-badge{
margin-bottom:20px;
}

.story-content h2{
font-size:48px;
margin-bottom:25px;
color:#132d63;
}

.story-content p{
font-size:18px;
line-height:1.9;
color:#666;
margin-bottom:20px;
}

.story-content ul{
text-align:left;
max-width:800px;
margin:30px auto 0;
}

.story-content li{
margin-bottom:12px;
}

/* ==================================================
SECTION BADGE
================================================== */

.section-badge{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 22px;
background:rgba(180,26,21,.1);
color:#B41A15;
border-radius:50px;
font-size:14px;
font-weight:600;
margin-bottom:15px;
}

.section-heading{
margin-bottom:60px;
}

.section-heading h2{
color:#132d63;
font-size:48px;
margin-top:10px;
}

/* ==================================================
GALLERY
================================================== */

.bg-product-gallery{
padding:100px 0;
background:#f8f9fc;
}

.product-gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.gallery-item{
overflow:hidden;
border-radius:16px;
background:#fff;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.gallery-item img{
width:100%;
height:320px;
object-fit:cover;
transition:.4s ease;
}

.gallery-item:hover img{
transform:scale(1.08);
}

/* ==================================================
DETAILS SECTION
================================================== */

.bg-product-details{
padding:100px 0;
}

.details-card{
background:#fff;
border-radius:20px;
padding:40px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
height:100%;
}

.details-card h3{
font-size:28px;
color:#132d63;
margin-bottom:25px;
}

.details-card ul{
margin:0;
padding:0;
list-style:none;
}

.details-card ul li{
position:relative;
padding-left:30px;
margin-bottom:18px;
font-size:17px;
color:#555;
}

.details-card ul li:before{
content:"✓";
position:absolute;
left:0;
top:0;
color:#B41A15;
font-weight:700;
}

/* ==================================================
INQUIRY SECTION
================================================== */

.bg-product-inquiry{
padding:100px 0;
background:#132d63;
}

.inquiry-content{
color:#fff;
}

.inquiry-content .section-badge{
background:rgba(255,255,255,.12);
color:#fff;
}

.inquiry-content h2{
color:#fff;
font-size:48px;
margin-bottom:20px;
}

.inquiry-content p{
font-size:18px;
line-height:1.8;
color:rgba(255,255,255,.9);
}

.inquiry-form-wrapper{
background:#fff;
border-radius:20px;
padding:40px;
}

.inquiry-form-wrapper input,
.inquiry-form-wrapper textarea,
.inquiry-form-wrapper select{
width:100%;
padding:15px 18px;
border:1px solid #ddd;
border-radius:10px;
margin-bottom:20px;
}

.inquiry-form-wrapper textarea{
height:160px;
}

.inquiry-form-wrapper input[type="submit"]{
background:#B41A15;
color:#fff;
border:none;
font-weight:600;
transition:.3s;
}

.inquiry-form-wrapper input[type="submit"]:hover

/* ==================================================
RELATED PRODUCTS
================================================== */

.bg-related-products{
padding:100px 0;
background:#f8f9fc;
}

.related-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.3s ease;
height:100%;
}

.related-card:hover{
transform:translateY(-8px);
}

.related-card img{
width:100%;
height:280px;
object-fit:cover;
}

.related-card h4{
font-size:22px;
color:#132d63;
padding:25px 25px 10px;
margin:0;
}

.related-card a{
display:inline-flex;
align-items:center;
justify-content:center;
margin:0 25px 25px;
padding:12px 28px;
background:#132d63;
color:#fff;
border-radius:8px;
text-decoration:none;
transition:.3s;
}


/* ==================================================
RESPONSIVE
================================================== */

@media (max-width:991px) {


    .bg-product-hero{
        padding:80px 0;
        text-align:center;
    }

    .bg-product-content h1{
        font-size:42px;
    }

    .section-heading h2,
    .inquiry-content h2,
    .story-content h2{
        font-size:36px;
    }

    .bg-product-main-image{
        margin-top:40px;
    }

    .product-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .details-card{
        margin-bottom:30px;
    }

    .inquiry-content{
        margin-bottom:40px;
        text-align:center;
    }


}

@media(max-width:767px){


.bg-product-content h1{
    font-size:34px;
}

.section-heading h2,
.story-content h2,
.inquiry-content h2{
    font-size:30px;
}

.product-gallery-grid{
    grid-template-columns:1fr;
}

.gallery-item img{
    height:260px;
}

.inquiry-form-wrapper{
    padding:25px;
}


}



/* ==========================================
PRODUCT PAGE
========================================== */

.bg-product-single{
    padding: 100px 0;
    background: #ffffff;
}

/* ==========================================
PRODUCT IMAGE
========================================== */

.product-image-wrapper{
    position: sticky;
    top: 120px;
}

.product-main-image{
    width: 100%;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* ==========================================
PRODUCT SUMMARY
========================================== */

.product-summary{
    padding-left: 30px;
}

.product-category{
    display: inline-block;
    padding: 8px 18px;
    background: rgba(19,45,99,.08);
    color: #132d63;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-summary h1{
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    color: #132d63;
    margin-bottom: 20px;
}

.product-price{
    font-size: 42px;
    font-weight: 700;
    color: #B41A15;
    margin-bottom: 30px;
}

/* ==========================================
DESCRIPTION
========================================== */

.product-short-description{
    color: #5e6678;
}

.product-short-description p{
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.product-short-description h2{
    color: #132d63;
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 20px;
}

.product-short-description h3{
    color: #132d63;
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 15px;
}

.product-short-description ul{
    margin: 25px 0;
    padding: 0;
}

.product-short-description ul li{
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.8;
}

.product-short-description ul li:before{
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #B41A15;
    font-weight: 700;
}

/* ==========================================
BUTTON
========================================== */

.product-actions{
    margin-top: 40px;
    margin-bottom: 50px;
}

.product-actions .comon-btn{
    min-width: 220px;
    height: 60px;
    border-radius: 12px;
    background: #B41A15;
    border: none;
    color: #fff;
    font-weight: 600;
    transition: .3s ease;
}

.product-actions .comon-btn:hover{
    background: #132d63;
    transform: translateY(-3px);
}

/* ==========================================
SECTION HEADING
========================================== */

.section-heading{
    margin-bottom: 50px;
}

.section-badge{
    display: inline-block;
    padding: 8px 18px;
    background: rgba(19,45,99,.08);
    color: #132d63;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-heading h2{
    font-size: 42px;
    font-weight: 700;
    color: #132d63;
}

/* ==========================================
GALLERY
========================================== */

.product-gallery-section{
    padding: 100px 0;
    background: #f8fafc;
}

.product-gallery-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.gallery-item{
    overflow: hidden;
    border-radius: 20px;
}

.gallery-item img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .5s ease;
}

.gallery-item:hover img{
    transform: scale(1.08);
}

/* ==========================================
RELATED PRODUCTS
========================================== */

.related-products-section{
    padding: 100px 0;
}

.related-product-card{
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    transition: .35s ease;
}

.related-product-card:hover{
    transform: translateY(-10px);
}

.related-product-card img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.related-product-content{
    padding: 25px;
}

.related-product-content h4{
    margin-bottom: 15px;
}

.related-product-content h4 a{
    color: #132d63;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
}

.related-product-content h4 a:hover{
    color: #B41A15;
}

.view-product{
    color: #B41A15;
    text-decoration: none;
    font-weight: 600;
}

.view-product:hover{
    color: #132d63;
}

/* ==========================================
MODAL
========================================== */

.quote-modal{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.quote-modal.active{
    display: block;
}

.quote-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7);
}

.quote-modal-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 700px;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
}

.quote-modal-content h3{
    color: #132d63;
    margin-bottom: 25px;
}

.quote-close{
    position: absolute;
    right: 20px;
    top: 15px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .product-summary{
        padding-left: 0;
    }

    .product-image-wrapper{
        position: relative;
        top: auto;
    }

    .product-summary h1{
        font-size: 38px;
    }

    .product-price{
        font-size: 32px;
    }

    .product-gallery-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:767px){

    .bg-product-single{
        padding: 70px 0;
    }

    .product-summary h1{
        font-size: 32px;
    }

    .section-heading h2{
        font-size: 30px;
    }

    .product-gallery-grid{
        grid-template-columns: 1fr;
    }

    .gallery-item img{
        height: 250px;
    }

    .quote-modal-content{
        padding: 30px 20px;
    }

}




/* ==========================================
QUOTE MODAL
========================================== */

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all .35s ease;
    padding: 20px;
}

.quote-modal.active {
    visibility: visible;
    opacity: 1;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(6px);
}

.quote-modal-content {
    position: relative;
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    z-index: 2;
    transform: translateY(30px);
    transition: all .35s ease;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
    max-height: 90vh;
    overflow-y: auto;
}

.quote-modal.active .quote-modal-content {
    transform: translateY(0);
}

.quote-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f4f4f4;
    font-size: 28px;
    cursor: pointer;
    transition: all .3s ease;
    line-height: 1;
}

.quote-close:hover {
    background: #000;
    color: #fff;
}

.quote-modal-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.quote-modal-content p {
    color: #666;
}

/* ==========================================
CONTACT FORM 7
========================================== */

.quote-modal .wpcf7 {
    margin-top: 25px;
}

.quote-modal .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote-modal .wpcf7-form p {
    margin: 0;
}

.quote-modal input[type="text"],
.quote-modal input[type="email"],
.quote-modal input[type="tel"],
.quote-modal textarea,
.quote-modal select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px 18px;
    font-size: 15px;
    background: #fafafa;
    transition: all .3s ease;
}

.quote-modal input:focus,
.quote-modal textarea:focus,
.quote-modal select:focus {
    outline: none;
    border-color: #000;
    background: #fff;
}

.quote-modal textarea {
    min-height: 140px;
    resize: vertical;
}

.quote-modal input[type="submit"] {
    width: 100%;
    border: none;
    background: #111;
    color: #fff;
    padding: 16px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s ease;
}

.quote-modal input[type="submit"]:hover {
    transform: translateY(-2px);
    background: #000;
}

.quote-modal .wpcf7-spinner {
    display: block;
    margin: 15px auto 0;
}

.quote-modal .wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 12px !important;
    border-radius: 10px;
}

/* Prevent body scroll */

body.modal-open {
    overflow: hidden;
}

/* Mobile */

@media (max-width: 767px) {

    .quote-modal-content {
        padding: 30px 20px;
    }

    .quote-modal-content h3 {
        font-size: 26px;
    }

}

/* ==========================================
PRODUCTS HERO
========================================== */

.products-hero-section {
    position: relative;
    padding: 140px 0 100px;
    background: #081c35;
    overflow: hidden;
    text-align: center;
}

.products-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(19 45 99), rgb(19 45 99));
}

.products-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.products-badge,
.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    color: #f6b800;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.products-hero-content h1 {
    color: #fff;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 25px;
}

.products-hero-content p {
    color: rgba(255,255,255,.8);
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

.products-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,.7);
    font-size: 15px;
}

.products-breadcrumb a {
    color: #f6b800;
    text-decoration: none;
}

.products-breadcrumb a:hover {
    color: #fff;
}

/* ==========================================
PRODUCTS GRID
========================================== */

.products-grid-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #081c35;
    margin-bottom: 15px;
}

.section-heading p {
    max-width: 650px;
    margin: auto;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8;
}

/* ==========================================
PRODUCT CARD
========================================== */

.product-list-card {
    height: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
    0 5px 20px rgba(0,0,0,.05);
    transition: all .4s ease;
    display: flex;
    flex-direction: column;
}

.product-list-card:hover {
    transform: translateY(-10px);
    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

.product-list-image {
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
}

.product-list-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .6s ease;
}

.product-list-card:hover img {
    transform: scale(1.08);
}

.product-list-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-type {
    display: inline-block;
    margin-bottom: 15px;
    color: #f6b800;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.product-list-content h3 {
    font-size: 24px;
    color: #081c35;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-list-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* ==========================================
BUTTON
========================================== */

.comon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f6b800;
    color: #081c35;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    border: none;
}

.comon-btn:hover {
    background: #081c35;
    color: #fff;
    transform: translateY(-3px);
}

/* ==========================================
CTA SECTION
========================================== */

.products-cta-section {
    padding: 100px 0;
    background: #081c35;
}

.products-cta-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 70px;
    background: rgba(255,255,255,.05);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.products-cta-box h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}

.products-cta-box p {
    color: rgba(255,255,255,.8);
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* ==========================================
HOVER EFFECTS
========================================== */

.product-list-card,
.comon-btn,
.product-list-image img {
    transition: all .35s ease;
}

/* ==========================================
RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .products-hero-section {
        padding: 120px 0 80px;
    }

    .products-hero-content h1 {
        font-size: 42px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .products-cta-box {
        padding: 50px 30px;
    }

    .products-cta-box h2 {
        font-size: 36px;
    }

    .product-list-image img {
        height: 280px;
    }
}

@media (max-width: 767px) {

    .products-hero-content h1 {
        font-size: 34px;
    }

    .products-hero-content p {
        font-size: 16px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .product-list-content {
        padding: 25px;
    }

    .product-list-content h3 {
        font-size: 22px;
    }

    .products-cta-box h2 {
        font-size: 30px;
    }

    .products-cta-box {
        padding: 40px 25px;
    }
}