﻿@charset "utf-8";
/* CSS Document 

Tooplate 2149 Strategic Consulting

https://www.tooplate.com/view/2149-strategic-consulting

*/
:root {
--color-bg: #f4fbff;
--color-surface: #ffffff;
--color-text: #123247;
--color-title: #0b2b40;
--color-muted: #4f7185;
--color-primary: #0e7c86;
--color-secondary: #22a8b8;
--color-accent: #ff9f5a;
--color-accent-soft: #ffd7b8;
--color-footer: #062033;
--color-white: #ffffff;
--color-black: #000000;
--color-pattern-mid: #d9eef5;

--ocean-05: rgba(14, 124, 134, 0.05);
--ocean-08: rgba(14, 124, 134, 0.08);
--ocean-10: rgba(14, 124, 134, 0.1);
--ocean-15: rgba(14, 124, 134, 0.15);
--ocean-20: rgba(14, 124, 134, 0.2);
--ocean-30: rgba(14, 124, 134, 0.3);
--ocean-40: rgba(14, 124, 134, 0.4);

--ink-12: rgba(6, 32, 51, 0.12);
--black-20: rgba(0, 0, 0, 0.2);
--black-30: rgba(0, 0, 0, 0.3);
--black-90: rgba(0, 0, 0, 0.9);

--white-05: rgba(255, 255, 255, 0.05);
--white-06: rgba(255, 255, 255, 0.06);
--white-08: rgba(255, 255, 255, 0.08);
--white-10: rgba(255, 255, 255, 0.1);
--white-12: rgba(255, 255, 255, 0.12);
--white-15: rgba(255, 255, 255, 0.15);
--white-16: rgba(255, 255, 255, 0.16);
--white-20: rgba(255, 255, 255, 0.2);
--white-25: rgba(255, 255, 255, 0.25);
--white-30: rgba(255, 255, 255, 0.3);
--white-40: rgba(255, 255, 255, 0.4);
--white-50: rgba(255, 255, 255, 0.5);
--white-60: rgba(255, 255, 255, 0.6);
--white-70: rgba(255, 255, 255, 0.7);
--white-80: rgba(255, 255, 255, 0.8);
--white-84: rgba(255, 255, 255, 0.84);
--white-85: rgba(255, 255, 255, 0.85);
--white-88: rgba(255, 255, 255, 0.88);
--white-90: rgba(255, 255, 255, 0.9);
--white-95: rgba(255, 255, 255, 0.95);
--white-100: rgba(255, 255, 255, 1);

--gradient-brand: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
--gradient-hero: linear-gradient(135deg, var(--color-title) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
--gradient-section: linear-gradient(135deg, var(--color-bg) 0%, var(--color-pattern-mid) 50%, var(--color-bg) 100%);
--gradient-dark: linear-gradient(135deg, var(--color-title) 0%, var(--color-primary) 100%);
--gradient-accent: linear-gradient(135deg, var(--color-accent-soft), var(--color-accent));
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 	boto, sans-serif;
	line-height: 1.6;
	color: var(--color-text);
	overflow-x: hidden;
	background: var(--color-bg);
}

.section-lead {
	max-width: 780px;
	margin: -2rem auto 0;
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--color-muted);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s ease;
}

.section-lead.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: var(--color-surface);
	padding: 1.5rem 5%;
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 1px solid var(--ocean-10);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--color-primary), var(--color-muted));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.logo-icon {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-muted));
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 1rem;
	flex-shrink: 0;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 3rem;
}

.nav-links a {
	text-decoration: none;
	color: var(--color-text);
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a:hover {
	color: var(--color-primary);
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--color-primary), var(--color-muted));
	transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.nav-links a.active {
	color: var(--color-primary);
	font-weight: 600;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.mobile-menu span {
	width: 28px;
	height: 3px;
	background: var(--color-primary);
	margin: 4px 0;
	transition: 0.3s;
	border-radius: 2px;
}

/* Hero Section */
.hero {
	height: 100vh;
	min-height: 600px;
	background: linear-gradient(135deg, var(--color-title) 0%, var(--color-primary) 50%, var(--color-muted) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--color-white);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		linear-gradient(var(--white-08) 1px, transparent 1px),
		linear-gradient(90deg, var(--white-08) 1px, transparent 1px);
	background-size: 60px 60px;
	background-position: 0 0, 0 0;
	animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(60px, 60px);
	}
}

.hero-content {
	max-width: 900px;
	padding: 0 2rem;
	margin-top: 8rem;
	transform: translateY(50px);
	opacity: 0;
	animation: fadeInUp 1.2s ease forwards;
	z-index: 2;
	position: relative;
}

@keyframes fadeInUp {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.hero h1 {
	font-size: clamp(2.8rem, 7vw, 5rem);
	font-weight: 800;
	margin-bottom: 2rem;
	line-height: 1.1;
	letter-spacing: -2px;
}

.hero p {
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	margin-bottom: 3rem;
	opacity: 0.95;
	font-weight: 300;
}

.hero-eyebrow {
	display: inline-flex;
	padding: 0.5rem 1rem;
	border: 1px solid var(--white-25);
	border-radius: 999px;
	background: var(--white-10);
	backdrop-filter: blur(8px);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

/* Add this to your existing CSS */
.hero-content h1,
.hero-content p {
	transition: opacity 0.5s ease-in-out;
}

.text-fade-out {
	opacity: 0;
}

.cta-button {
	display: inline-block;
	padding: 1.2rem 3rem;
	background: var(--white-95);
	color: var(--color-title);
	text-decoration: none;
	font-weight: 700;
	border-radius: 60px;
	transition: all 0.4s ease;
	box-shadow: 0 20px 40px var(--black-20);
	backdrop-filter: blur(10px);
	border: 2px solid var(--white-30);
}

.cta-button:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 30px 60px var(--black-30);
	background: var(--white-100);
}

.secondary-button {
	display: inline-block;
	padding: 1.2rem 2rem;
	border: 2px solid var(--white-40);
	border-radius: 60px;
	color: var(--color-white);
	text-decoration: none;
	font-weight: 700;
	background: var(--white-08);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.secondary-button:hover {
	transform: translateY(-4px);
	background: var(--white-16);
	border-color: var(--white-70);
}

.hero-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
	text-align: left;
}

.hero-highlight {
	padding: 1.2rem;
	border-radius: 22px;
	background: var(--white-10);
	backdrop-filter: blur(10px);
	border: 1px solid var(--white-16);
	box-shadow: 0 12px 30px var(--ink-12);
}

.hero-highlight strong {
	display: block;
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.hero-highlight span {
	display: block;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--white-88);
}

.geometric-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.geo-shape {
	position: absolute;
	opacity: 0.15;
}

.geo-shape:nth-child(1) {
	top: 20%;
	left: 15%;
	width: 120px;
	height: 120px;
	background: linear-gradient(45deg, var(--color-white), transparent);
	clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
	animation: float 12s ease-in-out infinite;
}

.geo-shape:nth-child(2) {
	top: 15%;
	right: 20%;
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--color-white), transparent);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	animation: float 10s ease-in-out infinite reverse;
}

.geo-shape:nth-child(3) {
	top: 60%;
	left: 10%;
	width: 80px;
	height: 80px;
	background: linear-gradient(90deg, var(--color-white), transparent);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	animation: float 8s ease-in-out infinite;
}

.geo-shape:nth-child(4) {
	top: 70%;
	right: 15%;
	width: 90px;
	height: 90px;
	background: linear-gradient(180deg, var(--color-white), transparent);
	clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
	animation: float 14s ease-in-out infinite;
}

.geo-shape:nth-child(5) {
	top: 35%;
	left: 50%;
	transform: translateX(-50%);
	width: 110px;
	height: 110px;
	background: linear-gradient(270deg, var(--color-white), transparent);
	clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
	animation: float 9s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-30px) rotate(180deg);
	}
}

/* Section Styles */
.section {
	padding: 8rem 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	margin-bottom: 4rem;
	color: var(--color-title);
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
	letter-spacing: -1px;
}

.section-title.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Services Section - Tab Layout */
.services {
	background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-pattern-mid) 50%, var(--color-bg) 100%);
	position: relative;
}

.services::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diagonals" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,20 L20,0" stroke="var(--ocean-05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23diagonals)"/></svg>');
}

.services-container {
	position: relative;
	z-index: 2;
}

.services-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 4rem;
	margin-top: 4rem;
	align-items: start;
}

.services-content {
	background: var(--white-80);
	border-radius: 25px;
	padding: 2.5rem;
	backdrop-filter: blur(15px);
	border: 2px solid var(--ocean-10);
	min-height: 400px;
	transition: all 0.5s ease;
}

.service-details {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
	display: none;
}

.service-details.active {
	opacity: 1;
	transform: translateY(0);
	display: block;
}

.service-details h3 {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--color-title);
}

.service-details .service-subtitle {
	font-size: 1rem;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.service-details p {
	color: var(--color-muted);
	line-height: 1.7;
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.service-features {
	list-style: none;
	padding: 0;
	margin-top: 1.5rem;
}

.service-features li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid var(--ocean-08);
}

.service-features li:last-child {
	border-bottom: none;
}

.feature-check {
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-muted));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 0.7rem;
	flex-shrink: 0;
}

.services-tabs {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service-tab {
	background: var(--white-70);
	border: 2px solid var(--ocean-10);
	border-radius: 18px;
	padding: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.service-tab:hover,
.service-tab.active {
	background: var(--white-90);
	border-color: var(--ocean-30);
	transform: translateX(10px);
	box-shadow: 0 10px 30px var(--ocean-15);
}

.service-tab.active {
	background: var(--ocean-10);
	border-color: var(--ocean-40);
}

.service-tab::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: linear-gradient(135deg, var(--color-primary), var(--color-muted));
	transition: width 0.3s ease;
}

.service-tab.active::before {
	width: 4px;
}

.tab-icon {
	font-size: 2rem;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--ocean-10), var(--ocean-10));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.tab-content {
	flex: 1;
	min-width: 0;
}

.service-tab h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-title);
	margin-bottom: 0.3rem;
	position: relative;
	z-index: 2;
}

.service-tab p {
	color: var(--color-muted);
	font-size: 0.8rem;
	line-height: 1.3;
	position: relative;
	z-index: 2;
}

.service-tab:hover .tab-icon,
.service-tab.active .tab-icon {
	background: linear-gradient(135deg, var(--color-primary), var(--color-muted));
	color: var(--color-white);
	transform: scale(1.05);
}

/* About Section - Enhanced Split Design */
.about-section {
	background: linear-gradient(135deg, var(--color-title) 0%, var(--color-primary) 100%);
	color: var(--color-white);
	position: relative;
	overflow: hidden;
}

/* This is the new code for the diagonal grid */
.about-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	/* Ensure grid is behind content */
background-image:
		repeating-linear-gradient(45deg,
			var(--white-06),
			var(--white-06) 1px,
			transparent 1px,
			transparent 100px),
		repeating-linear-gradient(-45deg,
			var(--white-06),
			var(--white-06) 1px,
			transparent 1px,
			transparent 100px);
}

.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.about-content {
	position: relative;
}

.about-content::before {
	content: '';
	position: absolute;
	left: -2rem;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(to bottom, var(--color-muted), transparent);
	border-radius: 2px;
}

.about-content h2 {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 800;
	margin-bottom: 2.5rem;
	color: var(--color-white);
	letter-spacing: -1px;
	line-height: 1.2;
}

.about-content .highlight {
	color: var(--color-secondary);
	font-weight: 600;
	font-size: 1.3rem;
	margin-bottom: 2rem;
	letter-spacing: 0.5px;
}

.about-content p {
	color: var(--white-85);
	margin-bottom: 2rem;
	font-size: 1.15rem;
	line-height: 1.8;
}

.about-content a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
}

.about-content a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent-soft));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.about-content a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.about-content a:hover {
    opacity: 0.8;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin: 3rem 0;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--white-05);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid var(--white-10);
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: var(--white-08);
	transform: translateX(5px);
}

.feature-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--color-muted), var(--color-secondary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.feature-text {
	color: var(--white-90);
	font-weight: 500;
	font-size: 0.95rem;
}

.stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 0;
}

.stat:first-child {
	grid-column: 1 / -1;
}

.stat {
	text-align: center;
	padding: 1.5rem;
	background: var(--white-10);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.stat:hover {
	transform: scale(1.05);
	background: var(--white-15);
}

.stat-number {
	font-size: 3rem;
	font-weight: 900;
	color: var(--color-secondary);
	display: block;
}

.stat-label {
	color: var(--white-80);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 0.5rem;
}

.about-visual {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.about-image {
	position: relative;
	height: 350px;
	max-width: 450px;
	margin: 0 auto;
	background: var(--white-05);
	border-radius: 30px;
	backdrop-filter: blur(15px);
	overflow: hidden;
	border: 1px solid var(--white-10);
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 30px;
	opacity: 0.7;
}

.about-image::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg, transparent, var(--ocean-30), transparent);
	animation: rotate 25s linear infinite;
	z-index: 1;
}

.visual-shapes {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
}

.visual-shape {
	position: absolute;
	background: var(--black-90);
	border-radius: 50%;
	animation: floatSlow 15s ease-in-out infinite;
}

.visual-shape:nth-child(1) {
	width: 140px;
	height: 140px;
	top: 20%;
	left: 20%;
	animation-delay: -2s;
}

.visual-shape:nth-child(2) {
	width: 80px;
	height: 80px;
	top: 60%;
	right: 30%;
	animation-delay: -5s;
}

.visual-shape:nth-child(3) {
	width: 160px;
	height: 160px;
	bottom: 25%;
	left: 30%;
	animation-delay: -8s;
}

@keyframes floatSlow {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
		opacity: 0.1;
	}

	50% {
		transform: translateY(-20px) rotate(180deg);
		opacity: 0.2;
	}
}

/* Team Section - Hexagonal Layout */
.team {
	background: var(--color-bg);
	position: relative;
}

.team-grid {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 3rem;
	margin-top: 4rem;
}

.team-member {
	width: 300px;
	position: relative;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.6s ease;
}

.team-member.animate {
	opacity: 1;
	transform: translateY(0);
}

.member-card {
	background: linear-gradient(135deg, var(--white-90), var(--white-70));
	border-radius: 25px;
	padding: 2.5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	border: 2px solid var(--ocean-10);
	transition: all 0.5s ease;
}

.member-card:hover {
	transform: translateY(-10px) rotate(-2deg);
	border-color: var(--ocean-30);
	box-shadow: 0 20px 40px var(--ocean-20);
}

.member-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, var(--ocean-10), transparent);
	transition: left 0.5s ease;
}

.member-card:hover::before {
	left: 100%;
}

.member-avatar {
	width: 144px;
	height: 144px;
	background: linear-gradient(135deg, var(--color-title), var(--color-primary), var(--color-muted));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2.5rem;
	color: var(--color-white);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.member-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.member-info h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--color-title);
	position: relative;
	z-index: 2;
}

.member-role {
	color: var(--color-primary);
	font-weight: 600;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

.member-info p {
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	position: relative;
	z-index: 2;
}

.member-points {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	text-align: left;
	color: var(--color-muted);
	font-size: 0.95rem;
}

.member-points li {
	padding: 0.55rem 0;
	border-bottom: 1px solid var(--ocean-08);
}

.member-points li:last-child {
	border-bottom: none;
}

/* Testimonials Section - Overlapping Layout */
.testimonials {
	background: linear-gradient(135deg, var(--color-pattern-mid) 0%, var(--color-bg) 100%);
	position: relative;
	overflow: hidden;
}

.testimonials-container {
	position: relative;
	margin-top: 3rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.testimonial {
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.testimonial.animate {
	opacity: 1;
	transform: translateY(0);
}

.testimonial-content {
	background: var(--white-80);
	padding: 2rem;
	border-radius: 20px;
	position: relative;
	backdrop-filter: blur(10px);
	border: 2px solid var(--ocean-10);
	box-shadow: 0 8px 25px var(--ocean-10);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-content::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: var(--ocean-15);
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-text {
	color: var(--color-title);
	font-style: italic;
	margin-bottom: 1.5rem;
	font-size: 1rem;
	line-height: 1.6;
	position: relative;
	z-index: 2;
	flex-grow: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	z-index: 2;
	margin-top: auto;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary), var(--color-muted));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-weight: 700;
	font-size: 1rem;
	flex-shrink: 0;
}

.author-info h4 {
	font-weight: 700;
	color: var(--color-title);
	margin-bottom: 0.2rem;
	font-size: 0.95rem;
}

.author-info span {
	color: var(--color-primary);
	font-size: 0.85rem;
}

/* Contact Section - Futuristic Form */
.contact {
	background: linear-gradient(135deg, var(--color-title) 0%, var(--color-primary) 100%);
	color: var(--color-white);
	position: relative;
	overflow: hidden;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		linear-gradient(var(--white-08) 1px, transparent 1px),
		linear-gradient(90deg, var(--white-08) 1px, transparent 1px);
	background-size: 80px 80px;
	background-position: 0 0, 0 0;
	animation: contactGridMove 30s linear infinite;
}

@keyframes contactGridMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(80px, 80px);
	}
}

@keyframes zigzagMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(40px, 40px);
	}
}

.contact .section-title {
	color: var(--color-white);
}

.contact-content {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.contact p {
	font-size: 1.3rem;
	margin-bottom: 3rem;
	opacity: 0.95;
	text-align: center;
}

.contact-form {
	display: grid;
	gap: 2rem;
	margin-top: 4rem;
}

.form-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.contact-form input,
.contact-form textarea {
	padding: 1.5rem;
	border: none;
	border-radius: 20px;
	font-size: 1rem;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	background: var(--white-10);
	color: var(--color-white);
	transition: all 0.3s ease;
	border: 2px solid var(--white-20);
	backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: var(--white-70);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	background: var(--white-20);
	border-color: var(--color-muted);
	box-shadow: 0 0 0 4px var(--ocean-20);
	transform: scale(1.02);
}

.contact-form textarea {
	grid-column: 1 / -1;
	resize: vertical;
	min-height: 150px;
	font-family: inherit;
}

.submit-btn {
	background: linear-gradient(135deg, var(--color-muted), var(--color-primary));
	color: var(--color-white);
	padding: 1.5rem 3rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.4s ease;
	justify-self: center;
	position: relative;
	overflow: hidden;
}

.submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, var(--white-20), transparent);
	transition: left 0.5s ease;
}

.submit-btn:hover::before {
	left: 100%;
}

.submit-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 30px var(--ocean-40);
}

.faq-section {
	margin-top: 4rem;
}

.faq-section h3 {
	font-size: 2rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 2rem;
}

.faq-list {
	display: grid;
	gap: 1rem;
}

.faq-item {
	padding: 1.5rem;
	border-radius: 20px;
	background: var(--white-08);
	border: 1px solid var(--white-12);
	backdrop-filter: blur(10px);
}

.faq-item h4 {
	font-size: 1.05rem;
	margin-bottom: 0.8rem;
	color: var(--color-white);
}

.faq-item p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	text-align: left;
	color: var(--white-84);
}

.footer {
	background: var(--color-footer);
	color: var(--white-80);
	padding: 2rem 5%;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-links {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.footer-links a,
.footer-design a {
	color: var(--color-accent-soft);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-design a:hover {
	color: var(--color-white);
}

/* Mobile Styles */
@media (max-width: 1000px) {
	.about {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}
}

@media (max-width: 900px) {}


@media (max-width: 940px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: color-mix(in srgb, var(--color-bg) 95%, transparent);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 2rem 5%;
		box-shadow: 0 10px 30px var(--ocean-10);
		border-radius: 0 0 20px 20px;
	}

	.nav-links.active {
		display: flex;
	}

	.mobile-menu {
		display: flex;
	}

	.about {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 4rem;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

	.hero-highlights {
		grid-template-columns: 1fr;
	}

	.stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.form-group {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 5rem 5%;
	}

	.services-tabs {
		flex-direction: column;
		gap: 1rem;
	}

	.service-tab {
		width: 100%;
		flex-shrink: 0;
		flex-direction: column;
		text-align: center;
		gap: 0.8rem;
	}

	.tab-content {
		text-align: center;
	}

	.services-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.services-tabs {
		order: -1;
	}

	.service-tab:hover,
	.service-tab.active {
		transform: translateY(-2px);
	}

	.team-grid {
		flex-direction: column;
		align-items: center;
	}

	.testimonials-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.testimonial-content {
		padding: 1.5rem;
	}

	.testimonial,
	.testimonial:nth-child(even) {
		transform: translateY(30px);
		margin: 0;
	}

	.testimonial.animate,
	.testimonial:nth-child(even).animate {
		transform: translateY(0);
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.stat:first-child {
		grid-column: 1;
	}

	.service-item {
		padding: 2rem;
	}

	.member-card {
		padding: 2rem;
	}
}

/* Scroll Animations */
.fade-in {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

.fade-in.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Loading Animation */
@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

.loading {
	animation: pulse 2s ease-in-out infinite;
}

/* Footer */
.footer {
	background: var(--color-footer);
	color: var(--color-white);
	padding: 3rem 5% 2rem;
	text-align: center;
	border-top: 1px solid var(--ocean-20);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.footer-links a {
	color: var(--white-70);
	text-decoration: none;
	font-weight: 400;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--color-muted);
}

.footer-copyright {
	color: var(--white-60);
	font-size: 0.9rem;
}

.footer-design {
	color: var(--white-50);
	font-size: 0.85rem;
}

.footer-design a {
	color: var(--white-70);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-design a:hover {
	color: var(--color-muted);
}

/* Footer V2 */
.site-footer {
	background: linear-gradient(150deg, #041a2a 0%, #062033 55%, #0a3551 100%);
	color: var(--white-88);
	border-top: 1px solid var(--white-10);
	position: relative;
	overflow: hidden;
}

.site-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 15% 20%, var(--white-10) 0, transparent 45%),
		radial-gradient(circle at 85% 80%, var(--ocean-20) 0, transparent 40%);
	pointer-events: none;
}

.site-footer .container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 5%;
	padding-right: 5%;
	position: relative;
	z-index: 1;
}

.site-footer .footer-content {
	padding-top: 4rem;
	padding-bottom: 3rem;
	display: grid;
	grid-template-columns: 1.1fr 1fr 0.9fr;
	gap: 2.5rem;
	align-items: start;
}

.footer-logo-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1rem;
	border: 1px solid var(--white-25);
	border-radius: 999px;
	letter-spacing: 0.06em;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--color-accent-soft);
	margin-bottom: 1rem;
	background: var(--white-05);
}

.footer-info p {
	font-size: 0.98rem;
	line-height: 1.8;
	color: var(--white-80);
	max-width: 430px;
}

.social-icons {
	display: flex;
	gap: 0.8rem;
	margin-top: 1.4rem;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--white-20);
	color: var(--white-90);
	text-decoration: none;
	transition: all 0.3s ease;
	background: var(--white-06);
}

.social-icons a:hover {
	transform: translateY(-3px);
	background: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-white);
}

.footer-links-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(140px, 1fr));
	gap: 1.8rem;
}

.footer-group h4 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 1rem;
}

.footer-group a {
	display: block;
	margin-bottom: 0.7rem;
	color: var(--white-80);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.25s ease, transform 0.25s ease;
}

.footer-group a:hover {
	color: var(--color-accent-soft);
	transform: translateX(3px);
}

.contact-group p {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.95rem;
	margin-bottom: 0.7rem;
	color: var(--white-85);
}

.contact-group i {
	color: var(--color-accent);
	width: 16px;
	text-align: center;
}

.footer-bottom {
	border-top: 1px solid var(--white-10);
	background: var(--white-05);
	position: relative;
	z-index: 1;
}

.bottom-inner {
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.9rem;
	color: var(--white-70);
	padding-top: 0.6rem;
	padding-bottom: 0.6rem;
}

.tursab-license {
	padding: 0.3rem 0.7rem;
	border: 1px solid var(--white-16);
	border-radius: 999px;
	color: var(--white-84);
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	background: var(--white-05);
}

.whatsapp-fixed-left {
	position: fixed;
	left: 20px;
	bottom: 22px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #25d366;
	color: #ffffff;
	font-size: 1.9rem;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
	z-index: 1000;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-fixed-left:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 980px) {
	.site-footer .footer-content {
		grid-template-columns: 1fr 1fr;
	}

	.contact-group {
		grid-column: 1 / -1;
	}
}

@media (max-width: 700px) {
	.site-footer .footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-top: 3.2rem;
	}

	.footer-links-grid {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}

	.bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 0.9rem;
		padding-bottom: 0.9rem;
	}

	.whatsapp-fixed-left {
		left: 14px;
		bottom: 14px;
		width: 50px;
		height: 50px;
		font-size: 1.7rem;
	}
}

