/**
* Author: Zagi
* Template Name: Molda - 3D Artist & Creative Studio Portfolio
* File: Main Stylesheet
* Version: 1.0
*/

/* TABLE OF CONTENTS
-------------------------------------------------
1.0  - General & Reset
2.0  - Variables (:root)
3.0  - Helper & Utility Classes
4.0  - Keyframe Animations
5.0  - Preloader & Page Transitions
6.0  - Custom Cursor
7.0  - Back to Top Button
8.0  - Buttons & Forms
9.0  - Header & Navigation
10.0 - Footer
11.0 - Homepage Styles
    11.1 - Marquee Section
12.0 - About Page Styles
    12.1 - Interactive Timeline
    12.2 - Team Gamification Scene
    12.3 - Stats Counter
    12.4 - Flip Cards
13.0 - Team Page Styles
    13.1 - Team Grid & Card
    13.2 - Progress Bars
    13.3 - Hover Reveal CTA
14.0 - Work/Portfolio Page Styles
    14.1 - Filter Buttons
    14.2 - Project Grid & Card
    14.3 - Horizontal Timeline
15.0 - Services Page Styles
    15.1 - Accordion (Clay Style)
    15.2 - Pricing Cards
    15.3 - Image Comparison Slider
    15.4 - Marquee Logos
    15.5 - Video Play Button
16.0 - Blog & Search Results Page Styles
17.0 - Blog Details Page Styles
18.0 - FAQ Page Styles
    18.1 - Visual Answers Roster
19.0 - Statement Page Styles
    19.1 - Comparison Table & Tooltips
    19.2 - Map Hotspots & Popovers
20.0 - Contact Page Styles 
21.0 - 404 Page Styles 
22.0 - Swiper Carousel Styles 
23.0 - Glightbox Styles
24.0 - Responsive Styles (Media Queries)
-------------------------------------------------
*/

/* 1.0 - General & Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); background-color: var(--color-background); color: var(--color-text); font-size: 16px; line-height: 1.7; overflow-x: hidden; cursor: none; }
.page-wrapper { overflow-x: hidden; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition-squish); }
a:hover { color: var(--color-secondary); text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-primary); font-weight: 800; color: var(--color-text); margin-bottom: 0.5em; }
h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; line-height: 1.2; }
h3 { font-size: 2rem; line-height: 1.3; }
h4 { font-size: 1.5rem; line-height: 1.4; }
p { margin-bottom: 1rem; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* 2.0 - Variables (:root) */
:root {
    --color-background: #F4F1EE;
    --color-text: #4D423C;
    --color-primary: #A2C2E8;
    --color-secondary: #FFCBA4;
    --color-accent: #BEE8D2;
    --color-white: #FFFFFF;
    --color-dark-soft: #d1ccc7;
    --font-primary: 'Nunito', sans-serif;
    --border-radius-soft: 30px;
    --border-radius-round: 50%;
    --border-radius-organic: 63% 37% 54% 46% / 55% 48% 52% 45%;
    --shadow-clay: 5px 5px 15px var(--color-dark-soft), -5px -5px 15px var(--color-white);
    --shadow-clay-inset: inset 3px 3px 5px rgba(209, 204, 199, 0.5), inset -3px -3px 5px var(--color-white);
	--shadow-clay-soft: 3px 3px 8px var(--color-dark-soft), -3px -3px 8px var(--color-white);
    --shadow-clay-deep: 10px 10px 20px var(--color-dark-soft), -10px -10px 20px var(--color-white);
    --transition-squish: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: all 0.3s ease-in-out;
}

/* 3.0 - Helper & Utility Classes */
.section-padding { padding: 100px 0; }
.clay-element { background: var(--color-background); border-radius: var(--border-radius-soft); box-shadow: var(--shadow-clay); transition: var(--transition-squish); }
.squish-on-hover:hover { transform: scale(0.97); box-shadow: var(--shadow-clay-deep); }
.aos-animate { opacity: 0; transform: scale(0.8); transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
.aos-animate.is-visible { opacity: 1; transform: scale(1); }
.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-accent { color: var(--color-accent) !important; }
.bg-primary-soft { background-color: #e9f1fa; }
.clay-element-soft { background: var(--color-background); border-radius: var(--border-radius-soft); box-shadow: var(--shadow-clay-soft); transition: var(--transition-squish); }

/* 4.0 - Keyframe Animations */
@keyframes float { 0% { transform: translateY(0px) rotate(-2deg); border-radius: var(--border-radius-organic); } 50% { transform: translateY(-35px) rotate(2deg); border-radius: 45% 55% 62% 38% / 55% 60% 40% 45%; } 100% { transform: translateY(0px) rotate(-2deg); border-radius: var(--border-radius-organic); } }
@keyframes pulsate { 0% { transform: scale(1); box-shadow: 0 0 5px rgba(162, 194, 232, 0.5); } 50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(162, 194, 232, 1); } 100% { transform: scale(1); box-shadow: 0 0 5px rgba(162, 194, 232, 0.5); } }
@keyframes wave { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* 5.0 - Preloader & Page Transitions */
/* Note: Specific preloader styles are not present, but transition styles are covered by .aos-animate */

/* 6.0 - Custom Cursor */
.custom-cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; opacity: 0; transition: opacity 0.3s ease-in-out; }
.custom-cursor.is-active { opacity: 1; }
.cursor-dot { width: 8px; height: 8px; background-color: var(--color-text); border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-outline { width: 40px; height: 40px; border: 2px solid var(--color-secondary); border-radius: 50%; transform: translate(-50%, -50%); transition: all 0.1s ease-out; }
.custom-cursor.is-pointer .cursor-outline { transform: translate(-50%, -50%) scale(1.5); background-color: rgba(255, 203, 164, 0.3); border-color: transparent; }
.custom-cursor.is-magnetic .cursor-outline { transform: translate(-50%, -50%) scale(2); border-color: var(--color-primary); }
body.glightbox-open .cursor-dot { background-color: var(--color-white); border: 3px solid var(--color-text); transform: translate(-50%, -50%) scale(2); }
body.glightbox-open .cursor-outline { background-color: rgba(77, 66, 60, 1); border-color: transparent; }

/* 7.0 - Back to Top Button */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--color-text); background-color: var(--color-background); border-radius: var(--border-radius-round); box-shadow: var(--shadow-clay); visibility: hidden; opacity: 0; transform: translateY(20px); transition: var(--transition-smooth); z-index: 999; }
.back-to-top.is-visible { visibility: visible; opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: scale(0.95); box-shadow: var(--shadow-clay-deep); color: var(--color-secondary); }

/* 8.0 - Buttons & Forms */
.btn-clay { padding: 15px 35px; font-weight: 700; font-size: 1rem; color: var(--color-text); background-color: var(--color-background); border: none; border-radius: var(--border-radius-soft); box-shadow: var(--shadow-clay); transition: var(--transition-squish); display: inline-block; text-align: center; }
.btn-clay:hover { transform: scale(0.97); box-shadow: var(--shadow-clay-deep); color: var(--color-text); }
.btn-clay .bi-search { font-size: 1.1rem; vertical-align: middle; }
.btn-clay.btn-primary { background-color: var(--color-primary); box-shadow: 5px 5px 15px #8eb0d3, -5px -5px 15px #b6d4fb; }
.btn-clay.btn-primary:hover { box-shadow: 10px 10px 20px #8eb0d3, -10px -10px 20px #b6d4fb; }
.form-control-clay { width: 100%; padding: 15px 20px; background-color: var(--color-background); border: none; border-radius: var(--border-radius-soft); box-shadow: var(--shadow-clay-inset); color: var(--color-text); font-size: 1.1rem; font-weight: 600; font-family: var(--font-primary); transition: var(--transition-smooth); }
.form-control-clay:focus { outline: none; box-shadow: inset 5px 5px 8px rgba(209, 204, 199, 0.7), inset -5px -5px 8px var(--color-white); }
textarea.form-control-clay { min-height: 150px; resize: vertical; }
input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; height: 20px; width: 20px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234D423C'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/></svg>"); background-size: 20px 20px; cursor: pointer; transition: transform 0.2s ease; }
input[type="search"]::-webkit-search-cancel-button:hover { transform: scale(1.2); }
.alert { display: flex; align-items: center; border-radius: var(--border-radius-soft); border: none; box-shadow: var(--shadow-clay-inset); padding: 15px 20px; }
.alert::before { font-family: 'bootstrap-icons'; margin-right: 15px; font-size: 1.2rem; }
.alert.alert-success { background-color: var(--color-accent); color: var(--color-text); }
.alert.alert-success::before { content: '\f26a'; }
.alert.alert-danger { background-color: #ffdadd; color: #842029; }
.alert.alert-danger::before { content: '\f33b'; }

/* 9.0 - Header & Navigation */
.header { position: fixed; top: 0; left: 0; width: 100%; padding: 20px 0; z-index: 1000; transition: var(--transition-smooth); }
.header.is-scrolled { background-color: rgba(244, 241, 238, 0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 15px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.navbar-brand { font-size: 2rem; font-weight: 800; color: var(--color-text); transition: var(--transition-squish); }
.navbar-brand:hover { color: var(--color-text); transform: scale(0.97); }
.navbar-brand img { max-height: 40px; }
.navbar-nav .nav-link { font-weight: 700; color: var(--color-text); padding: 10px 20px !important; margin: 0 5px; border-radius: var(--border-radius-soft); transition: var(--transition-squish); }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--color-text); background-color: var(--color-white); transform: scale(0.95); }
.navbar-nav .nav-link:focus, .navbar-nav .nav-link:focus-visible { outline: none; box-shadow: var(--shadow-clay-inset); }
.dropdown-menu { border: none; border-radius: var(--border-radius-soft); box-shadow: var(--shadow-clay-deep); background-color: var(--color-background); padding: 10px; margin-top: 15px !important; }
.dropdown-item { font-weight: 600; color: var(--color-text); padding: 10px 20px; border-radius: 20px; transition: var(--transition-smooth); }
.dropdown-item:hover, .dropdown-item:focus { background-color: var(--color-accent); color: var(--color-text); }
.dropdown-item.active, .dropdown-item:active { color: var(--color-text) !important; background-color: var(--color-accent) !important; }
.navbar-collapse::-webkit-scrollbar { display: none; }
.navbar-collapse { -ms-overflow-style: none; scrollbar-width: none; }
.navbar-toggler { border: none; padding: 0; width: 40px; height: 40px; background: transparent; position: relative; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler .toggler-icon { display: block; width: 24px; height: 4px; background-color: var(--color-text); border-radius: 2px; transition: all 0.3s ease-in-out; position: absolute; left: 50%; transform: translateX(-50%); }
.navbar-toggler[aria-expanded="false"] .toggler-icon:nth-child(1) { top: 8px; }
.navbar-toggler[aria-expanded="false"] .toggler-icon:nth-child(2) { top: 18px; }
.navbar-toggler[aria-expanded="false"] .toggler-icon:nth-child(3) { top: 28px; }
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) { top: 18px; transform: translateX(-50%) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) { top: 18px; transform: translateX(-50%) rotate(-45deg); }
.navbar-collapse { padding: 20px; margin-top: 15px; border-radius: var(--border-radius-soft); background-color: var(--color-background); box-shadow: var(--shadow-clay-deep); }

/* 10.0 - Footer */
.footer { background-color: #e9e5e1; padding: 60px 0; }
.footer-brand-link { font-weight: 800; color: var(--color-text); }
.footer-socials a { width: 45px; height: 45px; display: inline-flex; align-items: center; justify-content: center; margin: 0 5px; color: var(--color-text); background-color: var(--color-background); border-radius: var(--border-radius-round); box-shadow: var(--shadow-clay); transition: var(--transition-squish); }
.footer-socials a:hover { transform: scale(0.95); box-shadow: var(--shadow-clay-deep); color: var(--color-secondary); }

/* 11.0 - Homepage Styles */
.hero-section { padding-top: 150px; min-height: 75vh; display: flex; align-items: center; position: relative; }
.hero-content h1 { font-size: 5rem; }
.hero-blobs { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-blob { position: absolute; opacity: 0.8; animation: float 20s ease-in-out infinite; }
.hero-blob-1 { width: 300px; height: 300px; background-color: var(--color-primary); top: 10%; left: 5%; animation-duration: 17s; }
.hero-blob-2 { width: 400px; height: 400px; background-color: var(--color-secondary); bottom: 5%; right: 10%; animation-duration: 20s; animation-delay: -5s; }
.hero-blob-3 { width: 250px; height: 250px; background-color: var(--color-accent); top: 20%; right: 25%; animation-duration: 13s; animation-delay: -10s; }
.color-primary { background-color: var(--color-primary); }
.color-accent { background-color: var(--color-accent); }
.clients-section img { max-height: 100px; opacity: 0.7; filter: sepia(1) saturate(0.5) brightness(0.9) hue-rotate(315deg); transition: var(--transition-smooth); }
.clients-section img:hover { opacity: 1; filter: none; }
.work-card { overflow: hidden; position: relative; }
.work-card .card-img { transition: transform 0.5s ease; }
.work-card:hover .card-img { transform: scale(1.1); }
.work-card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(25, 25, 25, 0.85) 0%, rgba(25, 25, 25, 0.7) 50%, transparent 100%); color: var(--color-white); transform: translateY(100%); transition: var(--transition-smooth); }
.work-card-content h4 { font-size: 1.5rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 5px; }
.work-card-content p { font-size: 1rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.work-card:hover .work-card-content { transform: translateY(0); }
.service-card { padding: 40px 30px; text-align: center; }
.service-card-icon { font-size: 50px; width: 100px; height: 100px; margin: 0 auto 30px; display: flex; align-items: center; justify-content: center; border-radius: var(--border-radius-organic); background-color: var(--color-white); color: var(--color-primary); transition: var(--transition-squish); }
.service-card:hover .service-card-icon { background-color: var(--color-primary); color: var(--color-white); transform: scale(0.95) rotate(-5deg); }
.testimonial-card { text-align: left; padding: 50px; position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 300px; }
.testimonial-quote { font-size: 1.5rem; font-weight: 600; margin-bottom: 30px; }
.testimonial-author { display: flex; align-items: center; }
.testimonial-author-img { width: 72px; height: 72px; border-radius: var(--border-radius-organic); object-fit: cover; box-shadow: var(--shadow-clay-soft); margin-right: 15px; }
.testimonial-author-info h5 { margin-bottom: 0; color: var(--color-text); font-weight: 700; }
.testimonial-author-info p { margin-bottom: 0; font-size: 0.9rem; color: #868e96; }
.testimonials-slider .swiper-pagination { position: absolute; bottom: 20px; left: 0; width: 100%; }
.cta-section { background-color: var(--color-secondary); border-radius: var(--border-radius-soft); padding: 80px 40px; }

/* 11.1 - Marquee Section */
.marquee-wrapper { overflow: hidden; display: flex; position: relative; } 
.marquee-content { flex-shrink: 0; display: flex; justify-content: space-around; min-width: 100%; animation: scroll 60s linear infinite; } 
.marquee-wrapper:hover .marquee-content { animation-play-state: paused; } 
.marquee-item { display: flex; align-items: center; justify-content: center; margin: 0 2rem; } 
.marquee-content span { display: flex; align-items: center; font-size: 2rem; font-weight: 700; text-transform: uppercase; color: var(--color-text); margin: 0 1.5rem; white-space: nowrap; transition: var(--transition-smooth); animation: wave 2s ease-in-out infinite; } 
.marquee-content span i { margin-left: 1rem; }
.marquee-content span:nth-child(odd) { animation-delay: 0.2s; }
.marquee-content span:nth-child(even) { animation-delay: 0.4s; }

/* 12.0 - About Page Styles */
/* Note: General styles for the About page are integrated within its specific sections. */

/* 12.1 - Interactive Timeline */
.interactive-timeline { position: relative; padding: 50px 0; }
.interactive-timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 8px; background-color: #e0dcd8; border-radius: 4px; box-shadow: var(--shadow-clay-inset); transform: translateX(-50%); }
.timeline-item { position: relative; margin-bottom: 50px; }
.timeline-dot { position: absolute; top: 0; left: 50%; width: 40px; height: 40px; background-color: var(--color-secondary); border-radius: var(--border-radius-round); transform: translateX(-50%); box-shadow: var(--shadow-clay); z-index: 1; transition: var(--transition-squish); }
.timeline-item:hover .timeline-dot { transform: translateX(-50%) scale(1.2); }
.timeline-content { width: 45%; padding: 30px; word-break: break-word; }
.timeline-item:nth-child(odd) .timeline-content { float: left; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { float: right; }
.timeline-item::after { content: ""; display: table; clear: both; }

/* 12.2 - Team Gamification Scene */
.team-gamification-scene { position: relative; min-height: 400px; padding: 20px; }
.team-avatar { position: absolute; width: 100px; height: 100px; border-radius: 50%; cursor: pointer; animation: pulsate 3s infinite ease-in-out; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-1 { top: 20%; left: 15%; }
.team-2 { top: 50%; left: 45%; animation-delay: 0.5s; }
.team-3 { top: 30%; left: 75%; animation-delay: 1s; }

/* 12.3 - Stats Counter */
.stats-counter .counter-value { font-size: 3.5rem; font-weight: 800; color: var(--color-secondary); }
.service-1 { color: var(--color-secondary); }
.service-2 { color: var(--color-accent); }
.service-3 { color: var(--color-primary); }

/* 12.4 - Flip Cards */
.flip-card { background-color: transparent; height: 300px; perspective: 1000px; }
.flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; }
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 20px; }
.flip-card-front .service-card-icon { margin-bottom: 20px; }
.flip-card-back { transform: rotateY(180deg); background-color: var(--color-primary); color: var(--color-white); }
.flip-card-back h5 { color: var(--color-white); }

/* 13.0 - Team Page Styles */
/* Note: General styles for the Team page are integrated within its specific sections. */

/* 13.1 - Team Grid & Card */
.team-card { text-align: center; padding: 30px; }
.team-card-img { width: 150px; height: 150px; margin: 0 auto 20px; border-radius: var(--border-radius-organic); overflow: hidden; box-shadow: var(--shadow-clay); transition: var(--transition-squish); }
.team-card:hover .team-card-img { border-radius: var(--border-radius-round); transform: scale(1.05); }
.team-card p { font-size: 1.1rem; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-socials a { color: var(--color-text); margin: 0 8px; font-size: 1.2rem; }
.team-card-socials a:hover { color: var(--color-primary); }

/* 13.2 - Progress Bars */
.progress-bar-clay { height: 20px; background-color: var(--color-background); border-radius: 20px; box-shadow: var(--shadow-clay-inset); padding: 4px; }
.progress-bar-clay .progress-fill { height: 100%; background-color: var(--color-accent); border-radius: 16px; transform-origin: left; transform: scaleX(0); transition: transform 1.2s ease-out; }
.progress-bar-clay .progress-fill.bar-secondary { background-color: var(--color-secondary); }

/* 13.3 - Hover Reveal CTA */
.hover-reveal-cta { position: relative; overflow: hidden; cursor: pointer; border-radius: var(--border-radius-soft); }
.hover-reveal-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; background: linear-gradient(to top, rgba(77, 66, 60, 0.9), transparent); color: var(--color-white); transform: translateY(100%); transition: var(--transition-smooth); }
.hover-reveal-cta:hover .hover-reveal-content { transform: translateY(0); }
.hover-reveal-content h2, .hover-reveal-content p { color: var(--color-white); }

/* 14.0 - Work/Portfolio Page Styles */
.work-1 { top: 30%; left: 60%; }
.work-2 { top: 65%; left: 35%; }
.work-3 { top: 50%; left: 80%; }

/* 14.1 - Filter Buttons */
.filter-buttons .btn-clay { margin: 5px; }
.filter-buttons .btn-clay.active { background-color: var(--color-primary); color: var(--color-white); transform: scale(0.95); box-shadow: var(--shadow-clay-deep); }

/* 14.2 - Project Grid & Card */
.project-card { position: relative; overflow: hidden; }
.project-card img { transition: var(--transition-smooth); }
.project-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.7) 40%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; text-align: left; color: var(--color-white); padding: 30px; opacity: 0; transform: scale(0.9); transition: var(--transition-smooth); }
.project-card-overlay h4 { font-size: 1.5rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 5px; }
.project-card-overlay p { font-size: 1rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.7); }
.project-card:hover .project-card-overlay { opacity: 1; transform: scale(1); }
.project-card:hover img { transform: scale(1.1); }

/* 14.3 - Horizontal Timeline */
.horizontal-timeline { display: flex; justify-content: space-between; position: relative; align-items: flex-start; padding-bottom: 50px; }
.timeline-line { position: absolute; top: 15px; left: 0; width: 100%; height: 4px; background-color: #e0dcd8; transform: translateY(-50%); }
.timeline-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; width: 20%; }
.timeline-dot-h { width: 30px; height: 30px; background-color: var(--color-secondary); border-radius: 50%; box-shadow: var(--shadow-clay); transition: var(--transition-squish); cursor: pointer; z-index: 1; }
.timeline-step:hover .timeline-dot-h { transform: scale(1.2); }
.timeline-content-h { margin-top: 30px; opacity: 0; transform: translateY(10px); transition: var(--transition-smooth); }
.timeline-step:hover .timeline-content-h { opacity: 1; transform: translateY(0); }

/* 15.0 - Services Page Styles */
/* Note: General styles for the Services page are integrated within its specific sections. */

/* 15.1 - Accordion (Clay Style) */
.accordion-clay .accordion-item { background-color: transparent; border: none; margin-bottom: 20px; }
.accordion-clay .accordion-header .accordion-button { display: flex; align-items: center; justify-content: space-between; width: 100%; text-align: left; color: var(--color-text); background-color: var(--color-background); font-weight: 700; font-size: 1.2rem; border-radius: var(--border-radius-soft) !important; box-shadow: var(--shadow-clay-inset); transition: var(--transition-squish); }
.accordion-clay .accordion-header .accordion-button span { flex: 1; padding-right: 1rem; }
.accordion-clay .accordion-header .accordion-button:hover { box-shadow: var(--shadow-clay); }
.accordion-clay .accordion-header .accordion-button:not(.collapsed) { color: var(--color-white); background-color: var(--color-primary); box-shadow: var(--shadow-clay-deep); transform: scale(1.02); }
.accordion-clay .accordion-header .accordion-button:focus { box-shadow: var(--shadow-clay-deep); }
.accordion-clay .accordion-header .accordion-button::after { content: '\f288'; font-family: 'bootstrap-icons'; font-size: 1.5rem; transform: rotate(0deg); transition: var(--transition-smooth); filter: brightness(0.8);  flex-shrink: 0; }
.accordion-clay .accordion-header .accordion-button:not(.collapsed)::after { transform: rotate(180deg); color: var(--color-white); filter: brightness(1); }
.accordion-clay .accordion-body { padding: 25px 30px; color: #6c757d; font-size: 1.05rem; line-height: 1.8; }
.accordion-clay .accordion-collapse { border: none; }

/* 15.2 - Pricing Cards */
.pricing-section .row, .addons-section .row, .how-it-works-section .row { margin-left: -10px; margin-right: -10px; }
.pricing-section .col-lg-4, .addons-section .col-lg-3, .how-it-works-section .col-lg-4 { padding-left: 15px; padding-right: 15px; }
.pricing-card { padding: 40px; text-align: center; }
.pricing-card.recommended { transform: scale(1.05); box-shadow: var(--shadow-clay-deep); }
.pricing-card .badge { background-color: var(--color-secondary); color: var(--color-text); border-radius: 15px; padding: 0.5em 1em; font-weight: 700; box-shadow: var(--shadow-clay-inset); }
.pricing-card .price { font-size: 3.5rem; font-weight: 800; color: var(--color-primary); }
.pricing-card .price .period { font-size: 1rem; font-weight: 400; }
.pricing-card ul li { margin-bottom: 10px; }
.pricing-card ul li.feature-unavailable { color: var(--color-dark-soft); text-decoration: line-through; }
.pricing-card ul li.feature-unavailable i { color: var(--color-dark-soft); }
.addon-card { padding: 20px; text-align: center; }
.addon-icon { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 15px; }
.addon-price { font-size: 1.2rem; font-weight: 700; opacity: 0; transform: translateY(10px); transition: var(--transition-smooth); }
.addon-card:hover .addon-price { opacity: 1; transform: translateY(0); }

/* 15.3 - Image Comparison Slider */
.image-comparison-slider { position: relative; overflow: hidden; line-height: 0; }
.img-comp-overlay { position: absolute; top: 0; left: 0; height: 100%; width: 50%; overflow: hidden; }
.img-comp-overlay img { display: block; width: auto; height: 100%; max-width: none; }
.img-comp-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background-color: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: ew-resize; box-shadow: var(--shadow-clay-deep); font-size: 1.5rem; color: var(--color-text); z-index: 10; }

/* 15.4 - Marquee Logos */
.marquee-logos { padding-top: 10px; padding-bottom: 10px; }
.marquee-logos img { max-height: 80px; opacity: 0.7; filter: sepia(1) saturate(0.5) brightness(0.9) hue-rotate(315deg); transition: var(--transition-smooth); animation: wave 2s ease-in-out infinite; } 
.marquee-logos img:hover { opacity: 1; filter: none; }

/* 15.5 - Video Play Button */
.project-card .video-play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background-color: rgba(255, 255, 255, 0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--color-text); transition: var(--transition-squish); }
.project-card:hover .video-play-button { transform: translate(-50%, -50%) scale(1.1); }

/* 16.0 - Blog & Search Results Page Styles */
.post-meta span { margin-right: 20px; }
.hotspot-wrapper { position: relative; }
.hotspot { position: absolute; width: 30px; height: 30px; background-color: var(--color-secondary); border-radius: 50%; cursor: pointer; animation: pulsate 2s infinite; }
.hotspot::after { content: '+'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; font-size: 20px; font-weight: bold; }
.gallery-1 { top: 25%; left: 55%; }
.gallery-2 { top: 70%; left: 30%; }
.gallery-3 { top: 45%; left: 48%; }
.blog-card-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.sidebar-widget { padding: 30px; margin-bottom: 30px; }
.pagination-clay .page-item { margin: 0 5px; }
.pagination-clay .page-link { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border: none; background-color: var(--color-background); color: var(--color-text); border-radius: var(--border-radius-round); box-shadow: var(--shadow-clay); transition: var(--transition-squish); font-weight: 700; }
.pagination-clay .page-link:hover { transform: scale(0.95); box-shadow: var(--shadow-clay-deep); }
.pagination-clay .page-item.active .page-link { background-color: var(--color-primary); color: var(--color-white); transform: scale(1.1); box-shadow: var(--shadow-clay-deep); }
.pagination-clay .page-item.disabled .page-link { background-color: #e9e5e1; box-shadow: var(--shadow-clay-inset); color: var(--color-dark-soft); }
#no-results-message { display: none; }
.sidebar { margin-top: 115px; }
.sidebar-widget ul li a { font-size: 1.1rem; font-weight: 600; }
.search-hero-section { padding-top: 200px; }
.blog-section { min-height: 50vh; }
.blog-section .blog-post { margin-bottom: 3rem; }
.blog-card { display: flex; flex-direction: column; }
.blog-card-img { display: block; overflow: hidden; border-radius: var(--border-radius-soft) var(--border-radius-soft) 0 0; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.1); }

/* 17.0 - Blog Details Page Styles */
.blog-details-section { padding-top: 150px; }
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 { margin-top: 1.5em; margin-bottom: 0.8em; }
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 { transition: color 0.3s ease-in-out; cursor: pointer; }
.post-content h1:hover, .post-content h2:hover, .post-content h3:hover, .post-content h4:hover, .post-content h5:hover, .post-content h6:hover { color: var(--color-secondary); }
.post-content blockquote { padding: 20px 30px; margin: 30px 0; border-left: 5px solid var(--color-primary); background-color: var(--color-background); box-shadow: var(--shadow-clay-inset); font-style: italic; }
.post-content iframe { width: 100%; height: 400px; border: none; }
.post-content-table { width: 100%; border-radius: var(--border-radius-soft); overflow: hidden; border-collapse: separate; border-spacing: 0; }
.post-content-table th, .post-content-table td { padding: 1.25rem 1.5rem; text-align: left; border-bottom: 1px solid #e9e5e1; background-color: var(--color-white); }
.post-content-table thead th { font-weight: 600; color: #868e96; border-bottom: 2px solid #e9e5e1; }
.post-content-table tbody tr:last-child td { border-bottom: none; }
.post-content-table tbody td:first-child { font-weight: 700; color: var(--color-text); }
.post-share a { width: 45px; height: 45px; display: inline-flex; align-items: center; justify-content: center; margin-right: 10px; font-size: 1.2rem; vertical-align: middle; color: var(--color-text); background-color: var(--color-background); border-radius: var(--border-radius-round); box-shadow: var(--shadow-clay); }
.post-share a:hover { transform: scale(0.95); color: var(--color-primary); }
.post-tags strong { margin-right: 10px; }
.post-tags a { display: inline-block; padding: 8px 20px; margin: 5px 5px 5px 0; background-color: var(--color-background); border-radius: var(--border-radius-soft); color: var(--color-text); font-size: 0.9rem; box-shadow: var(--shadow-clay-soft); transition: var(--transition-squish); }
.post-tags a:hover { background-color: var(--color-secondary); color: var(--color-text); transform: scale(0.95); box-shadow: var(--shadow-clay-deep); }
.info-box { display: flex; align-items: flex-start; padding: 25px; border-left: 5px solid var(--color-accent); }
.info-box i { font-size: 1.5rem; color: var(--color-secondary); margin-right: 20px; }
.info-box p { margin-bottom: 0; }
.pull-quote { text-align: center; font-size: 1.8rem; font-weight: 700; font-style: italic; color: var(--color-primary); margin: 40px 0; border-left: none; padding: 0; }
p.has-drop-cap::first-letter { font-size: 4.5rem; font-weight: 800; color: var(--color-primary); float: left; line-height: 0.8; margin-right: 15px; }
.styled-list { list-style: none; padding-left: 0; margin-bottom: 2rem; }
.styled-list li { position: relative; padding-left: 35px; margin-bottom: 10px; }
.styled-list li::before { content: '\f26a'; font-family: 'bootstrap-icons'; position: absolute; left: 0; top: 0; color: var(--color-accent); font-size: 1.2rem; font-weight: bold; }
.image-with-caption { margin: 2rem 0; }
.image-with-caption figcaption { text-align: center; font-size: 0.9rem; font-style: italic; color: #868e96; margin-top: 10px; }
.code-block { padding: 20px; margin: 2rem 0; border-radius: var(--border-radius-soft); background-color: #e9e5e1; white-space: pre-wrap; word-break: break-all; }
.code-block code { font-family: 'Courier New', Courier, monospace; color: var(--color-text); font-size: 0.95rem; }
.search-results { min-height: 100vh; }

/* 18.0 - FAQ Page Styles */
/* Note: General styles for the FAQ page are integrated within its specific sections. */

/* 18.1 - Visual Answers Roster */
.interactive-roster-container { position: relative; }
.roster-list { padding: 0; margin: 0; }
.roster-item { padding: 25px 30px; margin-bottom: 15px; cursor: pointer; transition: var(--transition-smooth); border-left: 5px solid transparent; }
.roster-item:hover { transform: translateX(10px); border-left-color: var(--color-secondary); }
.roster-item:active { background-color: var(--color-accent); }
.roster-item h4 { margin: 0; font-size: 1.5rem; }
.roster-image-preview { position: fixed; top: 0; left: 0; width: 400px; height: 300px; transform: scale(0.9); opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.3s ease-out; z-index: 10; }
.roster-image-preview.is-visible { opacity: 1; visibility: visible; transform: scale(1); }
.roster-image-preview img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--border-radius-soft); box-shadow: var(--shadow-clay-deep); }
.roster-item.is-active { border-left-color: var(--color-primary); background-color: var(--color-white); }
.roster-image-preview-mobile { display: none; margin-top: 15px; }
.roster-image-preview-mobile img { width: 100%; border-radius: var(--border-radius-soft); box-shadow: var(--shadow-clay); }

/* 19.0 - Statement Page Styles */
.guiding-stars-section .row { margin-left: -10px; margin-right: -10px; }
.guiding-stars-section .col-lg-4 { padding-left: 15px; padding-right: 15px; }
.statement-1 { top: 35%; left: 20%; }
.statement-2 { top: 30%; left: 48%; }
.statement-3 { top: 40%; left: 80%; }

/* 19.1 - Comparison Table & Tooltips */
.comparison-table { background-color: var(--color-white); border-radius: var(--border-radius-soft); overflow: hidden; border-collapse: separate; border-spacing: 0; }
.comparison-table th, .comparison-table td { color: var(--color-text); text-align: center; vertical-align: middle; padding: 1.25rem 1rem; border-bottom: 1px solid #e9e5e1; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table th { font-family: var(--font-primary); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(77, 66, 60, 0.7); }
.comparison-table td:first-child { text-align: left; font-weight: 600; }
.comparison-table thead th:nth-child(3) { background-color: var(--color-accent); color: var(--color-text); border-radius: 0 15px 0 0; }
.comparison-table tbody td:nth-child(3) { background-color: rgba(190, 232, 210, 0.2); }
.comparison-table tbody tr { transition: var(--transition-smooth); }
.comparison-table tbody tr:hover { background-color: rgba(162, 194, 232, 0.15); }
.comparison-table .bi-info-circle { cursor: help; color: var(--color-primary); }
.comparison-table .bi-check-lg { color: var(--color-accent); font-size: 1.5rem; font-weight: bold; }
.comparison-table .bi-x-lg { color: #e0dcd8; font-size: 1.2rem; }
.tooltip { --bs-tooltip-bg: var(--color-text); --bs-tooltip-opacity: 1; --bs-tooltip-border-radius: 10px; }
.tooltip-inner { padding: 10px 15px; color: var(--color-white); font-size: 1rem;  }
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before { border-top-color: var(--color-text); }

/* 19.2 - Map Hotspots & Popovers */
.hotspot-wrapper.is-map { position: relative; }
.hotspot-wrapper.is-map .hotspot { position: absolute; width: 25px; height: 25px; background-color: var(--color-primary); border-radius: 50%; cursor: pointer; animation: pulsate 2s infinite ease-in-out; border: 3px solid var(--color-white); }
.popover { --bs-popover-border-color: transparent; --bs-popover-border-radius: var(--border-radius-soft); --bs-popover-box-shadow: var(--shadow-clay-deep); --bs-popover-bg: var(--color-background); --bs-popover-body-padding-x: 1.25rem; --bs-popover-body-padding-y: 1.25rem; }
.popover .popover-arrow { display: none; }
.popover-body img { border-radius: 10px; }

/* 20.0 - Contact Page Styles */
.contact-info-item { display: flex; align-items: center; margin-bottom: 2.5rem; }
.contact-info-icon { flex-shrink: 0; width: 80px; height: 80px; margin-right: 25px; background-color: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05); transition: var(--transition-smooth); }
.contact-info-icon i { font-size: 32px; color: var(--color-primary); }
.contact-info-item:hover .contact-info-icon { transform: scale(1.05); box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.08); }
.contact-info-content h5 { margin-bottom: 0.25rem; font-weight: 700; }
.contact-info-content p { line-height: 1.5; color: #6c757d; }
.map-section iframe { width: 100%; height: 450px; vertical-align: middle; border:0; }

/* 21.0 - 404 Page Styles */
.error-404-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-404-visual { font-size: 10rem; font-weight: 800; color: var(--color-primary); line-height: 1; }
.error-404-visual .splat { animation: bounce-in 1s ease-out; }
.btn-bounce { animation: bounce-btn 2s infinite; }

/* 22.0 - Swiper Carousel Styles */
.swiper-pagination-bullet { background-color: var(--color-secondary); width: 12px; height: 12px; opacity: 0.5; transition: var(--transition-squish); }
.swiper-pagination-bullet-active { background-color: var(--color-secondary); opacity: 1; transform: scale(1.2); }
.testimonials-slider {
    padding: 15px; 
    margin: -15px;
}

/* 23.0 - Glightbox Styles */
.goverlay { background: rgba(244, 241, 238, 0.9); }
.glightbox-clean .gslide-image { box-shadow: var(--shadow-clay); border-radius: var(--border-radius-soft) var(--border-radius-soft) 0 0; overflow: hidden; }
.glightbox-clean .gslide-description { background: var(--color-background); color: var(--color-text); padding: 25px 30px; border-radius: 0 0 var(--border-radius-soft) var(--border-radius-soft); box-shadow: var(--shadow-clay-inset); text-align: center; font-size: 1.3rem; font-weight: 600; line-height: 1.6; }
.glightbox-clean .gnext, .glightbox-clean .gprev { background: var(--color-white); width: 60px; height: 50px; border-radius: var(--border-radius-soft); box-shadow: var(--shadow-clay); transition: var(--transition-squish); }
.glightbox-clean .gclose { background: var(--color-white); width: 60px; height: 50px; border-radius: var(--border-radius-soft); box-shadow: var(--shadow-clay); transition: var(--transition-squish); }
.glightbox-clean .gnext path, .glightbox-clean .gprev path, .glightbox-clean .gclose path { fill: var(--color-text); transition: var(--transition-smooth); }
.glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover, .glightbox-clean .gclose:hover { background: var(--color-white); box-shadow: var(--shadow-clay-deep); transform: scale(0.95); }
.glightbox-clean .gnext:hover path, .glightbox-clean .gprev:hover path, .glightbox-clean .gclose:hover path { fill: var(--color-secondary); }

/* 24.0 - Responsive Styles (Media Queries) */
@media (min-width: 992px) { 
	.dropdown-menu { opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.3s ease-out, transform 0.3s ease-out; display: block; } 
	.dropdown-menu.show { opacity: 1; visibility: visible; transform: translateY(0); }
}

@media (max-width: 991.98px) {
    body { cursor: auto; }
    .custom-cursor { display: none; }
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
	.hero-blob { width: 120px; height: 120px; }
    .hero-content h1 { font-size: 3.5rem; }
    .section-padding { padding: 80px 0; }
    .navbar-nav { align-items: stretch; text-align: center; }
	.navbar-nav .nav-item { width: 100%; }
    .navbar-nav .nav-link { width: auto; display: inline-block; margin: 5px 0; }
    .navbar-collapse { max-height: calc(100vh - 120px); overflow-y: auto; }
    .navbar-collapse .dropdown-menu { width: 85%; margin: 10px auto; box-shadow: var(--shadow-clay-inset); }
    .navbar-collapse .dropdown-item { padding-left: 1.5rem; text-align: center; }
    .back-to-top { display: none; }
    .interactive-timeline { padding-left: 0; }
	.flip-card.is-flipped .flip-card-inner { transform: rotateY(180deg); }
    .timeline-item { padding-left: 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .interactive-timeline::before { left: 50%; transform: translateX(-50%); }
    .timeline-dot { position: relative; top: 0; left: auto; transform: none; }
    .timeline-content { width: 100%; margin-top: 20px; }
	.timeline-content, .timeline-item:nth-child(odd) .timeline-content { text-align: center; float: none; }
	.contact-section .col-lg-7 { margin-bottom: 30px; }
	.guiding-stars-section .col-lg-4 { margin-bottom: 30px; }
	.guiding-stars-section .row > .col-lg-4:last-child { margin-bottom: 0; }
	.pricing-section .col-md-6, .addons-section .col-md-6, .how-it-works-section .col-lg-4 { margin-bottom: 30px; }
	.pricing-section .row > .col-md-6:last-of-type, .addons-section .row > .col-md-6:last-of-type, .how-it-works-section .row > .col-lg-4:last-of-type { margin-bottom: 0; }
	.sidebar { margin-top: 60px; }
	.glightbox-mobile .goverlay { background: rgba(244, 241, 238, 0.9); }
	.glightbox-mobile .glightbox-container .gslide-description { display: none; }
	.glightbox-mobile .gslide-image { border-radius: var(--border-radius-soft); }
}

@media (max-width: 767.98px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .footer { text-align: center; }
    .footer-socials { margin-top: 20px; }
    .flip-card { height: auto; margin-bottom: 20px; }
    .flip-card-inner { position: static; transform: none !important; }
    .flip-card-front, .flip-card-back { position: static; transform: none !important; height: auto; }
    .flip-card .flip-card-back { display: none; }
    .flip-card.hover .flip-card-back { display: flex; }
    .team-gamification-scene { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; min-height: auto; }
    .team-avatar { position: static; transform: none; }
    .pricing-section .col-md-6, .services-section .col-md-6 { margin-bottom: 30px; }
    .pricing-section .row > .col-md-6:last-of-type, .services-section .row > .col-md-6:last-of-type { margin-bottom: 0; }
    .code-block { padding: 15px; font-size: 0.85rem; }
    .roster-image-preview { display: none; }
    .roster-item.is-active .roster-image-preview-mobile { display: block; }
}