/* assets/css/style.css */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

:root {
	--primary-color: #1e4a77;
	/* Accurate Logo Blue */
	--secondary-color: #7f8c8d;
	/* Accurate Logo Silver-Grey */
	--accent-color: #1a1a1a;
	--bg-color: #ffffff;
	--text-color: #1a1a1a;
	--text-light: #64748b;
	--section-bg: #f8fafc;
	--card-bg: #ffffff;
	--footer-bg: #0f172a;
	--border-color: #e2e8f0;
	--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--gradient: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
}

[data-theme="dark"] {
	--primary-color: #1e4a77;
	--secondary-color: #7f8c8d;
	--bg-color: #0f172a;
	--text-color: #f8fafc;
	--text-light: #cbd5e1;
	--section-bg: #1e293b;
	--card-bg: #1e293b;
	--footer-bg: #020617;
	--border-color: #334155;
}

/* Logo Cropping and Transparency */
.brand-logo {
	height: 100px;
	width: auto;
	object-fit: contain;
	object-position: center;
}

/* If on white background, we need to remove black. 
   A trick for black background logos on white:
   filter: invert(1) mix-blend-mode: multiply; 
*/
/* Removed legacy blend modes for logo */

/* Better way for logo: mask or just fix the file. 
   I will provide a script to fix the file. */

.logo {
	height: 70px;
	display: flex;
	align-items: center;
}

.logo-text {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--primary-color);
	white-space: nowrap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
	width: 100%;
}

body {
	font-family: "Outfit", sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
	transition: var(--transition);
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--transition);
}

ul {
	list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 3rem;
	position: relative;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: var(--secondary-color);
	border-radius: 2px;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 30px;
	font-weight: 600;
	text-transform: capitalize;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	font-size: 1rem;
}

.btn-primary {
	background: var(--primary-color);
	color: #fff;
	box-shadow: 0 4px 15px rgba(28, 65, 108, 0.2);
}

.btn-primary:hover {
	background: var(--accent-color);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(18, 43, 72, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	background: var(--primary-color);
	color: #fff;
}

/* Layout Utilities */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

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

/* Header & Nav */
header {
	background: var(--card-bg);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--transition);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	gap: 30px;
}

.logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.logo span {
	color: var(--secondary-color);
}

.brand-logo {
	opacity: 0.9;
	transition: var(--transition);
}

.brand-logo:hover {
	opacity: 1;
}

.nav-links {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-links a {
	font-weight: 500;
	color: var(--text-color);
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--secondary-color);
}

/* Theme Switcher */
.theme-switch-wrapper {
	display: flex;
	align-items: center;
}

.theme-toggle-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 1.2rem;
	color: var(--text-color);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

.theme-toggle-btn:hover {
	background: rgba(0, 0, 0, 0.05);
	transform: rotate(15deg);
}

[data-theme="dark"] .theme-toggle-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

.moon-icon {
	color: #f1c40f;
}

.sun-icon {
	color: #f39c12;
}

/* Mobile Menu */
.menu-btn {
	display: none;
	font-size: 1.5rem;
	color: var(--text-color);
	cursor: pointer;
}

/* Hero Section */
.hero {
	min-height: 85vh;
	display: flex;
	align-items: center;
	background:
		linear-gradient(rgba(28, 65, 108, 0.8), rgba(28, 65, 108, 0.9)),
		url("../images/hero.png") center/cover;
	color: #fff;
	position: relative;
}

.hero-content {
	max-width: 700px;
	z-index: 2;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.1;
	color: #ffffff;
}

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

.hero p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	color: #e2e8f0;
}

.hero-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 40px;
}

.hero-features div {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}

.hero-features i {
	color: var(--secondary-color);
	font-size: 1.2rem;
}

.hero-buttons {
	display: flex;
	gap: 15px;
}

.hero .btn-secondary {
	color: #fff;
	border-color: #fff;
}

.hero .btn-secondary:hover {
	background: #fff;
	color: var(--primary-color);
}

/* About Section */
.about-section {
	background-color: var(--section-bg);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-image {
	position: relative;
}

.about-image img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image::before {
	content: "";
	position: absolute;
	top: -20px;
	left: -20px;
	width: 100px;
	height: 100px;
	background: var(--secondary-color);
	border-radius: 10px;
	z-index: -1;
	opacity: 0.5;
}

.about-content h2 {
	color: var(--primary-color);
	font-size: 2.2rem;
	margin-bottom: 20px;
}

.about-content p {
	color: var(--text-light);
	font-size: 1.1rem;
	margin-bottom: 30px;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.stat-item {
	text-align: center;
}

.stat-item h3 {
	font-size: 2rem;
	color: var(--secondary-color);
	margin-bottom: 5px;
}

.stat-item p {
	font-size: 0.9rem;
	color: var(--text-light);
}

/* Services Section */
.services-section {
	background-color: var(--bg-color);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.service-card {
	background: var(--card-bg);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
	height: 200px;
	overflow: hidden;
}

.service-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
	transform: scale(1.1);
}

.service-content {
	padding: 25px;
}

.service-content h3 {
	color: var(--primary-color);
	font-size: 1.4rem;
	margin-bottom: 15px;
}

.service-content p {
	color: var(--text-light);
	margin-bottom: 20px;
	font-size: 0.95rem;
}

.service-list {
	margin-bottom: 20px;
}

.service-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: var(--text-color);
}

.service-list i {
	color: var(--secondary-color);
}

/* Why Choose Us & Vision/Mission */
.why-choose-section {
	background-color: var(--section-bg);
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.why-content h2 {
	font-size: 2.2rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.why-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

.why-list li {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 1.1rem;
	font-weight: 500;
}

.why-list i {
	color: var(--secondary-color);
	font-size: 1.5rem;
}

.vision-mission {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 30px;
}

.vm-box {
	background: var(--card-bg);
	padding: 25px;
	border-radius: 10px;
	border-left: 4px solid var(--secondary-color);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vm-box h3 {
	color: var(--primary-color);
	margin-bottom: 10px;
}

.why-image img {
	width: 100%;
	border-radius: 15px;
}

/* Testimonials */
.testimonials-section {
	background-color: var(--bg-color);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background: var(--card-bg);
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--border-color);
	position: relative;
}

.testimonial-card i.fa-quote-left {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 3rem;
	color: var(--secondary-color);
	opacity: 0.2;
}

.testimonial-text {
	font-style: italic;
	color: var(--text-light);
	margin-bottom: 20px;
}

.client-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.client-info img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.client-info h4 {
	margin-bottom: 0;
	color: var(--primary-color);
	font-size: 1.1rem;
}

.client-info span {
	font-size: 0.85rem;
	color: var(--secondary-color);
}

/* Careers CTA */
.careers-cta {
	background:
		linear-gradient(rgba(28, 65, 108, 0.9), rgba(28, 65, 108, 0.9)),
		url("../images/WhatsApp Image 2026-05-11 at 4.49.55 PM.jpeg") center/cover;
	padding: 80px 0;
	text-align: center;
	color: #fff;
}

.careers-cta h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #fff;
}

.careers-cta p {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto 30px;
	color: #e2e8f0;
}

/* Contact Section */
.contact-section {
	background-color: var(--section-bg);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact-info {
	padding-right: 30px;
}

.contact-info h2 {
	font-size: 2.2rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.contact-info p {
	color: var(--text-light);
	margin-bottom: 30px;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
}

.info-icon {
	width: 50px;
	height: 50px;
	background: rgba(133, 138, 144, 0.1);
	color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.info-text h4 {
	margin-bottom: 5px;
	color: var(--primary-color);
}

.info-text p {
	margin-bottom: 0;
	color: var(--text-color);
}

.info-text p a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

.info-text p a:hover {
	color: var(--secondary-color);
}

.contact-form {
	background: var(--card-bg);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
	margin-bottom: 20px;
}

.form-control {
	width: 100%;
	padding: 15px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-family: "Outfit", sans-serif;
	font-size: 1rem;
	background: var(--bg-color);
	color: var(--text-color);
	transition: var(--transition);
}

.form-control:focus {
	outline: none;
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 3px rgba(133, 138, 144, 0.1);
}

textarea.form-control {
	height: 150px;
	resize: vertical;
}

.contact-form .btn {
	width: 100%;
}

/* Map */
.map-container {
	height: 400px;
	width: 100%;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* Footer */
footer {
	background: var(--footer-bg);
	color: #fff;
	padding: 60px 0 20px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-about .logo {
	color: #fff;
	margin-bottom: 20px;
}

.footer-about p {
	color: #a0aec0;
	margin-bottom: 20px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--secondary-color);
	transform: translateY(-3px);
}

.footer-links h3 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 1.2rem;
}

.footer-links ul li {
	margin-bottom: 10px;
}

.footer-links ul li a {
	color: #a0aec0;
}

.footer-links ul li a:hover {
	color: var(--secondary-color);
	padding-left: 5px;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #a0aec0;
	font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	/* Switched to right */
	background-color: #25d366;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 100;
	display: flex;
	align-items: center;
	padding: 10px 20px;
	gap: 10px;
	transition: var(--transition);
}

.whatsapp-float:hover {
	background-color: #128c7e;
	color: #fff;
	transform: scale(1.05);
}

.whatsapp-float span {
	font-size: 16px;
	font-weight: 600;
}

/* --- MODERN UI REDESIGN --- */
.hero-modern {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	background: var(--bg-color);
	overflow: hidden;
	padding: 80px 0;
}

.hero-bg-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.hero-bg-shapes .shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.5;
	animation: float 10s infinite ease-in-out alternate;
}

.hero-bg-shapes .shape-1 {
	width: 400px;
	height: 400px;
	background: rgba(28, 65, 108, 0.2);
	top: -100px;
	right: -100px;
}

.hero-bg-shapes .shape-2 {
	width: 500px;
	height: 500px;
	background: rgba(133, 138, 144, 0.15);
	bottom: -150px;
	left: -100px;
	animation-delay: -5s;
}

.hero-bg-shapes .shape-3 {
	width: 300px;
	height: 300px;
	background: rgba(61, 220, 132, 0.1);
	top: 30%;
	left: 40%;
	animation-duration: 15s;
}

@keyframes float {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(30px, -50px) scale(1.1);
	}
}

.hero-modern-container {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 50px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.badge {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(28, 65, 108, 0.1);
	color: var(--primary-color);
	border-radius: 30px;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 20px;
	border: 1px solid rgba(28, 65, 108, 0.2);
}

.hero-content-modern h1 {
	font-size: 3.8rem;
	line-height: 1.1;
	margin-bottom: 20px;
	color: var(--text-color);
}

.hero-content-modern h1 span {
	background: linear-gradient(120deg, var(--primary-color), #00e5ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-content-modern p {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 30px;
	max-width: 90%;
}

.hero-buttons-modern {
	display: flex;
	gap: 15px;
	margin-bottom: 40px;
}

.btn-modern-primary {
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	color: #fff !important;
	padding: 14px 32px;
	border-radius: 30px;
	font-weight: 600;
	box-shadow: 0 10px 20px rgba(28, 65, 108, 0.2);
	display: flex;
	align-items: center;
	gap: 8px;
	border: none;
	cursor: pointer;
	transition: var(--transition);
}

.btn-modern-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 25px rgba(28, 65, 108, 0.3);
}

.btn-modern-secondary {
	background: transparent;
	color: var(--text-color) !important;
	padding: 14px 32px;
	border-radius: 30px;
	font-weight: 600;
	border: 2px solid var(--border-color);
}

.btn-modern-secondary:hover {
	border-color: var(--primary-color);
	color: var(--primary-color) !important;
}

.hero-stats {
	display: flex;
	gap: 40px;
}

.stat h3 {
	font-size: 2.2rem;
	color: var(--primary-color);
	margin-bottom: 0;
}

.stat p {
	font-size: 0.9rem;
	color: var(--text-light);
	margin-bottom: 0;
}

.hero-image-modern {
	position: relative;
}

.glass-card-hero {
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 24px;
	padding: 20px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
	position: relative;
}

[data-theme="dark"] .glass-card-hero {
	background: rgba(30, 41, 59, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card-hero .main-img {
	width: 100%;
	border-radius: 16px;
	display: block;
}

.floating-badge {
	position: absolute;
	background: var(--card-bg);
	padding: 12px 20px;
	border-radius: 50px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	font-weight: 600;
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 10px;
	animation: float 6s infinite ease-in-out alternate;
}

.floating-badge i {
	color: #3ddc84;
	font-size: 1.2rem;
}

.badge-1 {
	top: 40px;
	right: -20px;
}

.badge-2 {
	bottom: 40px;
	left: -20px;
	animation-delay: -3s;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.sub-title {
	color: var(--secondary-color);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.85rem;
	display: block;
	margin-bottom: 10px;
}

.section-header h2 {
	font-size: 2.8rem;
	color: var(--text-color);
	margin-bottom: 15px;
}

.modern-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.modern-service-card {
	background: var(--card-bg);
	padding: 40px 30px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.modern-service-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	z-index: -1;
	transition: height 0.4s ease;
	opacity: 0.05;
}

.modern-service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.modern-service-card:hover::after {
	height: 100%;
}

.modern-service-card .icon-wrapper {
	width: 60px;
	height: 60px;
	border-radius: 15px;
	background: rgba(28, 65, 108, 0.1);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	margin-bottom: 25px;
	transition: 0.4s;
}

.modern-service-card:hover .icon-wrapper {
	transform: rotateY(180deg);
}

.modern-service-card h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
	color: var(--text-color);
}

.modern-service-card p {
	color: var(--text-light);
	margin-bottom: 25px;
	font-size: 0.95rem;
}

.service-link {
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--primary-color);
}

.service-link:hover {
	gap: 10px;
}

.modern-about {
	background: var(--section-bg);
}

.modern-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-image-wrapper {
	position: relative;
}

.image-blob {
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	animation: blob-morph 8s infinite alternate;
}

@keyframes blob-morph {
	0% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	}

	100% {
		border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
	}
}

.image-blob img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.experience-badge {
	position: absolute;
	bottom: 30px;
	right: -20px;
	background: var(--primary-color);
	color: #fff;
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 15px 30px rgba(28, 65, 108, 0.3);
	text-align: center;
	z-index: 2;
}

.experience-badge span {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
}

.about-text-content h2 {
	font-size: 2.5rem;
	color: var(--text-color);
	margin-bottom: 20px;
}

.check-list {
	margin-top: 25px;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-weight: 500;
	font-size: 1.05rem;
}

.check-list i {
	color: #3ddc84;
	background: rgba(61, 220, 132, 0.1);
	padding: 5px;
	border-radius: 50%;
	font-size: 0.8rem;
}

.modern-cta {
	padding: 100px 0;
	background: var(--bg-color);
}

.cta-inner {
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	padding: 60px;
	border-radius: 30px;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(28, 65, 108, 0.2);
}

.cta-inner::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 60%
	);
	animation: spin 20s linear infinite;
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

.cta-inner h2 {
	font-size: 3rem;
	color: #fff;
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
}

.cta-inner p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	position: relative;
	z-index: 1;
	margin-bottom: 40px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	position: relative;
	z-index: 1;
}

.btn-modern-white {
	background: #fff;
	color: var(--primary-color) !important;
	padding: 14px 32px;
	border-radius: 30px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: 0.3s;
}

.btn-modern-white:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
	.brand-logo {
		height: 110px;
	}

	.logo {
		height: 55px;
	}

	.logo-text {
		font-size: 1.1rem;
	}

	.menu-btn {
		display: block;
	}

	.nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--card-bg);
		flex-direction: column;
		padding: 20px;
		gap: 20px;
		box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		transition: clip-path 0.3s ease-in-out;
	}

	.nav-links.active {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}

@media (max-width: 480px) {
	.logo-text {
		font-size: 1.25rem;
	}
	.logo-text span {
		display: inline;
	}
}

@media (max-width: 991px) {
	.hero h1 {
		font-size: 2.8rem;
	}

	.about-grid,
	.why-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.why-image {
		order: -1;
	}

	.hero-modern-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-buttons-modern {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.badge-1 {
		right: 10px;
	}

	.badge-2 {
		left: 10px;
	}

	.modern-about-grid {
		grid-template-columns: 1fr;
	}

	.cta-inner h2 {
		font-size: 2.2rem;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.2rem;
	}

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

	.about-stats {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.vision-mission {
		grid-template-columns: 1fr;
	}

	.whatsapp-float span {
		display: none;
	}

	.whatsapp-float {
		padding: 15px;
		border-radius: 50%;
		bottom: 20px;
		right: 20px;
	}

	.hero-content-modern h1 {
		font-size: 2.8rem;
	}

	.hero-stats {
		gap: 20px;
		flex-wrap: wrap;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-inner {
		padding: 40px 20px;
	}
}

/* AI Development Section */
.modern-ai-dev {
	background: linear-gradient(
		135deg,
		rgba(28, 65, 108, 0.05) 0%,
		rgba(133, 138, 144, 0.05) 100%
	);
	position: relative;
	overflow: hidden;
}

.modern-ai-dev .icon-box {
	width: 70px;
	height: 70px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	margin-bottom: 20px;
	box-shadow: 0 10px 20px rgba(28, 65, 108, 0.2);
}

.ai-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.ai-feature-item {
	background: var(--card-bg);
	padding: 30px;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	transition: var(--transition);
}

.ai-feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	border-color: var(--primary-color);
}

/* Gallery Preview */
.gallery-preview-section {
	background: var(--bg-color);
}

.gallery-grid-preview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.gallery-item-preview {
	height: 250px;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}

.gallery-item-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.gallery-item-preview:hover img {
	transform: scale(1.1);
}

/* Testimonials Slider */
.testimonials-modern {
	background: var(--section-bg);
}

.testimonials-slider {
	padding: 20px 0 50px;
	overflow: hidden;
}

.testimonial-card-modern {
	background: var(--card-bg);
	padding: 40px;
	border-radius: 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--border-color);
	text-align: center;
	margin: 10px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.testimonial-card-modern .quote-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	opacity: 0.1;
	margin-bottom: 20px;
}

.testimonial-card-modern p {
	font-size: 1.1rem;
	color: var(--text-color);
	line-height: 1.8;
	margin-bottom: 25px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.testimonial-author h4 {
	margin-bottom: 5px;
	color: var(--primary-color);
}

.testimonial-author span {
	font-size: 0.9rem;
	color: var(--secondary-color);
}

/* Gallery Page Specific */
.gallery-hero {
	background:
		linear-gradient(rgba(28, 65, 108, 0.9), rgba(28, 65, 108, 0.9)),
		url("../images/hero.png") center/cover;
	padding: 100px 0;
	text-align: center;
	color: #fff;
}

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

.full-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.gallery-card {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	height: 350px;
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

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

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: #fff;
	opacity: 0;
	transition: var(--transition);
	transform: translateY(20px);
}

.gallery-card:hover .gallery-overlay {
	opacity: 1;
	transform: translateY(0);
}
