@charset "utf-8";
/* CSS Document */

/******************************
更多下载：https://www.bootstrapmb.com 
[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Menu
4. Header
5. Hero
6. Brands
7. Preview
8. Video
9. About
10. Work
11. Services
12. Tools
13. Pricing
14. Marquee
15. Testimonials
16. CTA
17. FAQ
18. Contact
19. Footer
20. Loader


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900');

/*********************************
2. Body and some general stuff
*********************************/

:root
{
	--font1: "Inter", sans-serif;
	--font2: "Doto", sans-serif;
	
    /* New Green/Black/White/Gray Theme Palette */
    --bg-body: #FFFFFF;      /* Pure White */
    --bg-light: #F5F7F6;     /* Very light gray with hint of green */
    --bg-dark: #1A1A1A;      /* Dark Gray/Almost Black */
    
    --white: #FFFFFF;
    --black: #111111;        /* Deep Black */
    
    --text-main: #555555;    /* Dark Gray for body text */
    --text-dark: #111111;    /* Black for headings */
    
    --accent-green: #00A859; /* Brand Green */
    --accent-green-light: rgba(0, 168, 89, 0.1);
    --accent-grey: #888888;  /* Secondary text/borders */
    
    --border-radius-lg: 20px;
    --border-radius-sm: 8px;
    
    --shadow-card: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.1);

	--textColor: var(--text-main);
	--hColor: var(--text-dark);
}

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html
{
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
body
{
	font-family: var(--font1);
	font-size: 18px;
	font-weight: 400;
	background: var(--bg-body);
	color: var(--textColor);
    line-height: 1.7;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
	padding-left: 0;
}
p
{
	font-family: var(--font1);
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
	color: var(--textColor);
	-webkit-font-smoothing: antialiased;
	margin-bottom: 0;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px var(--accent-green);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
p:last-of-type
{
	margin-bottom: 0;
}
a
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
    text-decoration: none;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
}
p a:active
{
	position: relative;
	color: var(--accent-green);
}
blockquote, figure
{
	padding: 0;
	margin: 0;
}
h1{font-size: 80px;}
h2{font-size: 56px;}
h3{font-size: 28px;}
h4{font-size: 18px;}
h5{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	font-family: var(--font2);
	-webkit-font-smoothing: antialiased;
	line-height: 1.2;
	margin-bottom: 0;
	color: var(--hColor);
	font-weight: 700;
	letter-spacing: -0.02em; /* Reduced letter spacing for cleaner look */
	text-transform: uppercase;
}

img
{
	max-width: 100%;
}
button:active
{
	outline: none;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
    padding-top: 120px;
	padding-bottom: 120px;
	background-color: var(--bg-body);
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	transition: all 200ms ease;
}
.trans_300
{
	transition: all 300ms ease;
}
.trans_400
{
	transition: all 400ms ease;
}
.trans_500
{
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.parallax-window
{
    min-height: 400px;
    background: transparent;
}
.parallax_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.background_image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.nopadding
{
	padding: 0px !important;
}
.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item
{
	height: 100%;
}
.slide
{
	height: 100%;
}

/* Updated Button Styles */
.btn
{
	display: inline-flex;
    align-items: center;
    justify-content: center;
	position: relative;
	height: 50px;
	padding-left: 32px;
	padding-right: 32px;
	color: var(--white);
	font-family: var(--font1);
	font-size: 16px;
    font-weight: 500;
	border-radius: 50px; /* Pill shape */
    border: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}
.primary_btn
{
	background-color: var(--black);
    color: var(--white);
}
.secondary_btn
{
	background-color: var(--white);
	color: var(--black);
    border: 1px solid var(--bg-light);
}
.primary_btn:hover
{
	background-color: var(--accent-green);
	color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 89, 0.4);
}
.secondary_btn:hover
{
	background-color: var(--bg-light);
	color: var(--black);
    transform: translateY(-2px);
}

.blink-text span
{
	position: relative;
	overflow: hidden;
	transition: 0.6s;
}
.blink-text span .out
{
	display: inline-flex;
}
.blink-text span .in
{
	position: absolute;
	left: 0;
	opacity: 0;
	transform: translateX(70%);
}
.blink-text:hover span .out
{
	opacity: 0;
	transform: translateX(-70%);
}
.blink-text:hover span .in
{
	opacity: 1;
	transform: translateX(0);
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}
.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch] {
  overscroll-behavior: contain;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}

.section_title_container
{
	margin-bottom: 60px;
}
.section_title_container h2
{
	display: block;
	position: relative;
	padding-top: 15px;
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
}
.section_title_container p
{
	display: block;
	position: relative;
	font-size: 14px;
	letter-spacing: 0.2em;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--accent-green); /* Gold underline */
    border-bottom-style: solid; /* Solid instead of dashed */
    width: fit-content;
	text-transform: uppercase;
	color: var(--accent-grey);
    font-weight: 600;
}
.ml .letter
{
	display: inline-block;
  	line-height: 1em;
	opacity: 0;
}

/* REPLACED CLIP-PATHS WITH BORDER-RADIUS */
.clip-4-lg, .clip-lg, .clip-lg-invert, .clip-lg-2-top, .clip-lg-2-bottom
{
	clip-path: none !important;
    border-radius: var(--border-radius-lg);
}
.clip-sm, .clip-sm-4
{
	clip-path: none !important;
    border-radius: var(--border-radius-sm);
}

.reveal
{
	opacity: 0;
}
.ml
{
	display: inline-block;
  	overflow: hidden;
}
.word
{
	display: inline-block;
	white-space: nowrap;
}
.letter
{
	display: inline-block;
	will-change: transform, opacity;
}
.space
{
	display: inline-block;
	width: 0.4em; 
}

/*********************************
3. Menu
*********************************/

.menu
{
	position: fixed;
	top: -500px;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95); /* Light background */
    backdrop-filter: blur(10px);
	transition: all 300ms ease;
	padding-top: 88px;
	z-index: 999;
	clip-path: none; /* Removed clip path */
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
	box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
}
.menu.active
{
	top: 0;
}
.menu_content
{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding-top: 24px;
}
.menu-nav
{
	gap: 20px;
}
.menu-nav li a
{
	font-size: 20px;
	font-weight: 500;
	color: var(--black); /* Dark text */
}
.menu_btn_container
{
	padding-bottom: 32px;
}
.menu_btn
{
	margin-top: 33px;
	padding-bottom: 32px;
	background-color: var(--black);
	color: var(--white);
}

/*********************************
4. Header
*********************************/

.header
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}
.header.hidden
{
	position: fixed;
	top: -100px;
	padding-left: 0;
	padding-right: 0;
}
.header.scrolled
{
	top: 0px;
	transition: all 300ms ease;
}
/* Updated Header Background for Scrolled State */
.header.scrolled .header_bg_lg
{
	position: absolute;
	top: 6px;
	left: 24px;
	width: calc(100% - 48px);
	height: 76px;
	background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 50px; /* Rounded pill shape for header */
}
/* Remove the fragmented header background pieces */
.header.scrolled .header_bg_l_1,
.header.scrolled .header_bg_l_2,
.header.scrolled .header_bg_r_1,
.header.scrolled .header_bg_r_2
{
    display: none;
}

.header_inner
{
	height: 88px;
}
.logo_full
{
    height: 50px;
    width: auto;
    object-fit: contain;
}
.header.scrolled .logo_full
{
    height: 45px;
}
.main-nav ul
{
	gap: 40px;
}
.main-nav ul li a
{
	font-size: 16px;
	font-weight: 500;
	color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.header_btn
{
	margin-left: 48px;
}
.hamburger
{
	display: none;
	width: 40px;
	height: 40px;
	background-color: transparent;
	outline: none;
	border: none;
	position: relative;
}
.hamburger_inner
{
	display: block;
	position: absolute;
	top: 18px;
	left: 6px;
	width: 28px;
	height: 2px;
	background-color: var(--black);
}
.hamburger_inner::before, .hamburger_inner::after
{
	display: block;
	position: absolute;
    right: 0;
	width: 28px; /* Full width */
	height: 2px;
	background-color: var(--black);
	content: '';
	transition: all 200ms ease;
}
.hamburger_inner::before { top: -8px; }
.hamburger_inner::after { bottom: -8px; left: auto; right: 0;}

.hamburger:hover .hamburger_inner::before,
.hamburger:hover .hamburger_inner::after
{
	width: 20px; /* Animate width */
}
.hamburger.active .hamburger_inner
{
    background-color: transparent;
}
.hamburger.active .hamburger_inner::before
{
	top: 0;
	transform: rotate(45deg);
    width: 28px;
}
.hamburger.active .hamburger_inner::after
{
    bottom: 0;
	transform: rotate(-45deg);
    width: 28px;
}

/*********************************
5. Hero
*********************************/

.hero
{
	height: 100vh;
    min-height: 800px;
	background: var(--bg-body); /* Clean cream background */
	padding-top: 0;
	padding-bottom: 0;
	z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Optional: Add a subtle pattern or gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.hero_inner
{
	width: 100%;
	height: auto;
    z-index: 1;
}
.hero_content
{
	animation: hero-scale linear both;
	animation-timeline: scroll(root);
	animation-range: 0px 500px;
}
@keyframes hero-scale
{
	from { opacity: 1; transform: translateY(0); }
	to { opacity: 0; transform: translateY(-50px); }
}
.hero_logo
{
	max-width: 450px;
	height: auto;
	margin-bottom: 30px;
    filter: brightness(0.2) sepia(1) hue-rotate(180deg) saturate(0.5); /* Make it dark */
}
.hero_inner p
{
	max-width: 600px;
	margin-top: 10px;
    font-size: 20px;
    color: var(--text-main);
    font-weight: 500;
}
.hero_buttons
{
	margin-top: 40px;
	gap: 16px;
}
.social_container
{
	width: 100%;
	margin-top: 40px;
}
.social_container ul
{
	gap: 16px;
}
.social_container ul li
{
	width: 40px;
	height: 40px;
	background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.social_container ul li:hover
{
    transform: translateY(-3px);
    background-color: var(--accent-green);
}
.social_container ul li a
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.social_container ul li a i
{
	color: var(--black);
	font-size: 16px;
}
.social_container ul li:hover a i
{
    color: var(--white);
}

/*********************************
7. Preview
*********************************/

.preview_container
{
	width: 100%;
	height: auto;
	background-color: var(--bg-body);
    padding: 20px;
}
.preview_container_inner
{
	width: 100%;
	height: auto;
	gap: 20px;
}
.preview_col
{
	width: calc((100% - 40px) / 3);
	gap: 20px;
}
.preview_img
{
	width: 100%;
	aspect-ratio: 466 / 313;
	overflow: hidden;
	background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.5s ease;
}
.preview_img:hover
{
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.preview_img img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
    transition: transform 0.7s ease;
}
.preview_img:hover img
{
    transform: scale(1.05);
}
.preview_img_contain img
{
	object-fit: contain;
    padding: 20px;
}

/*********************************
8. Video
*********************************/

.video-section
{
	width: 100%;
    padding: 0 20px;
}
.video_container
{
	width: 100%;
	height: auto;
	overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}
.video_container img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.play-btn-container
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.play-btn
{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
	cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.play-btn a
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.play-btn img
{
	width: 20px;
	height: auto;
    margin-left: 5px; /* Visual center adjustment */
    filter: brightness(0); /* Make icon black */
}
.play-btn:hover
{
	transform: scale(1.1);
    background-color: var(--white);
}

/*********************************
9. About
*********************************/

.about_text {
    margin-bottom: 60px;
}
.about_highlight_title {
    font-family: var(--font2);
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--black);
    line-height: 1.3;
}
.text_highlight {
    color: var(--accent-green);
    position: relative;
    display: inline-block;
}
.text_highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(0, 168, 89, 0.2);
    z-index: -1;
    border-radius: 5px;
}
.about_date {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about_date::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--accent-green);
}

/* Timeline CSS */
.timeline_container {
    position: relative;
    padding-left: 30px;
    margin-top: 40px;
}
.timeline_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    height: 100%;
    width: 2px;
    background-color: var(--bg-light);
}
.timeline_item {
    position: relative;
    margin-bottom: 30px;
}
.timeline_item:last-child {
    margin-bottom: 0;
}
.timeline_item::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -29px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--accent-green);
    box-shadow: 0 0 0 4px rgba(0, 168, 89, 0.1);
    z-index: 1;
}
.timeline_year {
    font-family: var(--font2);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 8px;
}
.timeline_content {
    background: var(--bg-light);
    padding: 20px 25px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-card);
}
.timeline_content h4 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: none;
}
.timeline_content p {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.5;
}

.about_core_values {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.core_value_item {
    flex: 1;
    background: var(--white);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 240px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}
.core_value_item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.core_icon {
    font-size: 28px;
    color: var(--accent-green);
    width: 60px;
    height: 60px;
    background: rgba(0, 168, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.core_text {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-main);
}
.core_text strong {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
    color: var(--black);
}

.about_positioning_block {
    text-align: center;
    background: var(--black);
    color: var(--white);
    padding: 60px 40px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
/* Abstract background shape */
.about_positioning_block::after {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 80%; height: 200%;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.1) 0%, transparent 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

.positioning_title {
    font-family: var(--font2);
    font-size: 32px; 
    margin-bottom: 30px;
    line-height: 1.4;
    color: var(--white);
    font-weight: 700;
}
.quote_mark {
    font-size: 50px;
    color: var(--accent-green);
    vertical-align: -15px;
    line-height: 0;
    margin: 0 10px;
}
.positioning_desc {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    line-height: 1.8;
}
.brand_positioning_text {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}
.text_highlight_white {
    color: var(--white);
    font-weight: 600;
    border-bottom: 1px solid var(--accent-green);
}
.text_highlight_primary {
    color: var(--accent-green);
    font-weight: 600;
}

.stats
{
	gap: 20px;
}
.stats_item
{
    position: relative;
    width: calc((100% - 60px) / 4);
    background-color: var(--white);
    padding: 40px 20px;
    text-align: center;
    user-select: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stats_item:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: var(--shadow-hover);
}
.stats_item h3
{
	font-family: var(--font2);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
    color: var(--text-dark);
}
.stats_item p
{
	font-size: 16px;
	color: var(--text-secondary);
    line-height: 1.5;
}

/*********************************
10. Work
*********************************/

.work_container
{
	padding-top: 0;
}
.work_item
{
	width: 100%;
    margin-bottom: 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.sticky_content p
{
	max-width: 410px;
	margin-top: 20px;
    margin-bottom: 30px;
}
.work_item figure
{
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 9;
}
.work_item figure img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.work_item:hover figure img
{
	transform: scale(1.05);
}

.work_details
{
	background-color: var(--white);
	padding: 30px 40px;
}
.work_details p
{
	font-size: 18px;
	color: var(--text-main);
	margin-top: 0;
}

.work_item figcaption
{
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 100;
}
/* Tags */
.unique_tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    color: var(--black);
    font-weight: 600;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/*********************************
11. Services
*********************************/

.services_wrapper
{
	gap: 20px;
}
.services_wrapper > div
{
	width: calc((100% - 20px) / 2);
}
.services_container
{
	gap: 20px;
}
.services_item
{
	padding: 40px;
	background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
	user-select: none;
    transition: all 0.3s ease;
}
.services_item:hover
{
    transform: translateX(10px);
    background-color: var(--bg-light);
}
.services_item > div
{
	opacity: 0.5;
	transition: all 300ms ease;
}
.services_item h3
{
	font-size: 24px;
    margin-bottom: 10px;
}
.services_item p
{
	font-size: 16px;
    color: var(--text-secondary);
}
.services_item.active > div, .services_item:hover > div
{
	opacity: 1;
}

.services_pics
{
	border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.service_image figcaption
{
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.service_tags li a
{
    background: rgba(255, 255, 255, 0.9);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
}

/*********************************
12. Rights
*********************************/

.rights_container
{
	gap: 20px;
}
.rights_item
{
	width: calc((100% - 20px) / 2);
	background-color: var(--white);
	padding: 40px;
	margin-bottom: 0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}
.rights_item:hover
{
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.rights_item h3
{
	font-size: 22px;
	margin-bottom: 15px;
    color: var(--accent-green);
}
.rights_item p
{
	font-size: 16px;
    color: var(--text-main);
}

/*********************************
13. Membership
*********************************/

.membership_container
{
	gap: 30px;
	width: 100%;
}
.membership_card
{
	width: 100%;
	max-width: 800px;
	background-color: var(--white);
	padding: 50px;
	text-align: center;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.02);
}
.membership_card h3
{
	font-size: 24px;
	margin-bottom: 20px;
    color: var(--text-secondary);
}
.membership_detail
{
	font-size: 32px;
	font-weight: 700;
	color: var(--black);
}
.membership_note p
{
	color: var(--accent-grey);
	font-weight: 600;
	font-size: 16px;
    margin-top: 10px;
}
.membership_slogan
{
	margin-top: 60px;
	margin-bottom: 40px;
}
.membership_slogan h3
{
	font-size: 36px;
	margin-bottom: 15px;
	text-transform: none;
}

/*********************************
14. Marquee
*********************************/

.marquee_section
{
	width: 100%;
	padding-top: 80px;
	padding-bottom: 80px;
	overflow: hidden;
	background: var(--bg-light); /* Light beige instead of black */
}
.marquee_content
{
	gap: 80px;
	white-space: nowrap;
	animation: marquee 30s linear infinite;
}
.marquee_item
{
	font-family: var(--font2);
	font-size: 60px;
	font-weight: 700;
	color: var(--bg-dark); /* Dark text */
	opacity: 0.2; /* Low opacity */
	transition: all 300ms ease;
}
.marquee_item:hover
{
	opacity: 1;
	color: var(--accent-green);
}
.marquee_plus
{
	margin-left: 40px;
	color: var(--accent-green);
}

@keyframes marquee
{
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/*********************************
16. CTA
*********************************/

.cta_bg
{
	background-attachment: fixed;
    opacity: 0.1; /* Make grid subtle */
}
.cta_inner
{
	background: var(--white);
    border-radius: var(--border-radius-lg);
    margin: 0 20px;
    box-shadow: var(--shadow-card);
}
.cta_content
{
	padding: 100px 40px;
}
.cta_content h2
{
	font-size: 48px;
    max-width: 800px;
    margin-bottom: 30px;
}

/*********************************
18. Contact Modal
*********************************/

.contact_modal_content {
    background: var(--bg-body);
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.qr_code_container {
    width: 220px;
    height: 220px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
.qr_code_desc {
    font-size: 16px;
    color: var(--text-main) !important;
}

/*********************************
19. Footer
*********************************/

.footer
{
	display: block;
	position: relative;
	background: var(--bg-dark); /* Dark brown footer */
    color: var(--white);
    padding-top: 80px;
}
.footer_content
{
	max-width: 600px;
	margin: 0 auto;
	padding-bottom: 80px;
}
.footer_content h2
{
	font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}
.footer_content p
{
	color: rgba(255,255,255,0.7);
    font-size: 18px;
}
.scroll_top
{
	position: absolute;
	right: 40px;
	top: -30px;
	width: 60px;
	height: 60px;
	background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.scroll_top img
{
	width: 20px;
	filter: brightness(0) invert(1); /* Make arrow white */
}
.footer_bottom
{
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer_bottom ul
{
	height: 80px;
}
.footer_bottom ul li
{
	font-size: 14px;
	color: rgba(255,255,255,0.5);
}

/*********************************
20. Loader
*********************************/

.loader-container
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: var(--bg-body);
	z-index: 3000;
	visibility: hidden;
	opacity: 0;
	transition: all 300ms ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader-container.active
{
	visibility: visible;
	opacity: 1;
}
.spinner
{
	width: 50px;
	height: 50px;
	background-color: var(--accent-green);
	margin: 0 auto;
	animation: sk-rotateplane 1.2s infinite ease-in-out;
}
@keyframes sk-rotateplane
{
	0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
	50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
	100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); }
}
