:root {
	/* Modern color palette */
	--primary-blue: #2563eb;
	--primary-dark: #1e40af;
	--secondary-teal: #06b6d4;
	--accent-purple: #7c3aed;
	--dark-bg: #0f172a;
	--darker-bg: #020617;
	--light-bg: #f8fafc;
	--text-dark: #1e293b;
	--text-light: #64748b;
	--gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--gradient-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
	font-family: 'Inter', 'Segoe UI', 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	outline: none;
}

*::selection {
	background: var(--primary-blue);
	color: #fff;
}

html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	background: var(--light-bg);
	color: var(--text-dark);
	line-height: 1.6;
}

section {
	padding: 0 7%;
}

.btn {
	padding: 1.2rem 3.5rem;
	font-size: 1.6rem;
	font-weight: 600;
	margin-top: 1rem;
	cursor: pointer;
	border: none;
	background: var(--gradient-primary);
	color: #fff;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-lg);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.btn:hover::before {
	left: 100%;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
}

.btn:active {
	transform: translateY(0);
}

.btn-secondary {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	margin-left: 1rem;
}

/* International Badges */
.international-badges {
	display: flex;
	gap: 1.5rem;
	margin: 2.5rem 0;
	flex-wrap: wrap;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1rem 2rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-dark);
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.badge i {
	font-size: 1.6rem;
	color: var(--primary-blue);
}

.badge:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-blue);
}

/* Global Reach */
.global-reach {
	background: rgba(37, 99, 235, 0.05);
	padding: 2rem;
	border-radius: 15px;
	margin: 2.5rem 0;
	border-left: 4px solid var(--primary-blue);
}

.global-reach h3 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.global-reach h3 i {
	color: var(--primary-blue);
}

.regions-served {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.region-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.8rem 1.8rem;
	background: #fff;
	color: var(--text-dark);
	border-radius: 25px;
	font-size: 1.4rem;
	font-weight: 600;
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
	border: 2px solid rgba(37, 99, 235, 0.2);
}

.region-tag i {
	color: var(--primary-blue);
	font-size: 1.5rem;
}

.region-tag:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	border-color: var(--primary-blue);
	background: rgba(37, 99, 235, 0.05);
}

.heading {
	text-align: center;
	font-size: 4rem;
	font-weight: 800;
	color: var(--text-dark);
	padding: 1rem;
	padding-top: 8.5rem;
	margin: 0 auto;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Top Bar */

.top-bar {
	background: var(--dark-bg);
	color: #fff;
	padding: 1rem 0;
	font-size: 1.3rem;
	transition: all 0.3s ease;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1001;
}

.top-bar.hidden {
	transform: translateY(-100%);
	opacity: 0;
}

.top-bar-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 7%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.top-bar-left {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.top-bar-link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	transition: all 0.3s ease;
	font-size: 1.3rem;
}

.top-bar-link:hover {
	color: var(--secondary-teal);
}

.top-bar-link i {
	font-size: 1.4rem;
}

.top-bar-right {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.top-bar-social {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.6rem;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.top-bar-social:hover {
	background: var(--secondary-teal);
	color: #fff;
	transform: translateY(-3px);
}

/* Header Start */

header {
	width: 100%;
	position: fixed;
	top: 47px;
	left: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(15px);
	z-index: 1000;
	box-shadow: var(--shadow-md);
	transition: all 0.4s ease;
}

header.scrolled {
	top: 0;
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 1);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 1.2rem 7%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header.scrolled .header-container {
	padding: 0.8rem 7%;
}

/* Logo */

.navbar-logo {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.navbar-logo img {
	width: 260px;
	height: auto;
	transition: all 0.3s ease;
}

header.scrolled .navbar-logo img {
	width: 220px;
}

.logo-tagline {
	font-size: 1.1rem;
	color: var(--text-light);
	font-weight: 500;
	letter-spacing: 0.5px;
	font-style: italic;
	margin-left: 0.5rem;
}

header.scrolled .logo-tagline {
	font-size: 1rem;
}

/* Navigation */

.navbar {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
}

.nav-link {
	font-size: 1.5rem;
	font-weight: 600;
	padding: 1rem 1.8rem;
	color: var(--text-dark);
	position: relative;
	border-radius: 8px;
	transition: all 0.3s ease;
	display: block;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0.8rem;
	left: 50%;
	transform: translateX(-50%);
	height: 3px;
	width: 0%;
	background: var(--gradient-primary);
	border-radius: 2px;
	transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-blue);
	background: rgba(102, 126, 234, 0.05);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 50%;
}

/* Mobile Menu Toggle */

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1002;
}

.mobile-menu-toggle span {
	width: 100%;
	height: 3px;
	background: var(--text-dark);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
	overflow: hidden;
}

/* Navbar end */

/* Header end */

/* Home section */

.home {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4rem;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%),
		url(images/home.png) no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding-top: 16rem;
	padding-bottom: 5rem;
}

.home .content {
	padding: 2rem;
	flex: 1 1 40rem;
	animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

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

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

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

.home .content h1 {
	font-size: 5rem;
	font-weight: 800;
	color: var(--dark-bg);
	line-height: 1.2;
	margin-bottom: 2rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.home .content p {
	font-size: 1.8rem;
	color: var(--text-dark);
	line-height: 1.8;
	margin-bottom: 2rem;
}

/* Home Form section */

.form-container {
	flex: 1 1 40rem;
	padding: 3rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	box-shadow: var(--shadow-xl);
	max-width: 450px;
	animation: fadeInRight 1s ease;
}

.form-container h3 {
	font-size: 3rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 2rem;
}

.form-container label {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-dark);
	display: block;
	margin-bottom: 0.5rem;
}

.form-container input,
.form-container textarea {
	width: 100%;
	padding: 1.2rem;
	margin-bottom: 1.5rem;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	font-size: 1.5rem;
	transition: all 0.3s ease;
	background: #fff;
}

.form-container input:focus,
.form-container textarea:focus {
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-container button {
	width: 100%;
	padding: 1.4rem 3rem;
	font-size: 1.6rem;
	font-weight: 600;
	background: var(--gradient-primary);
	color: #fff;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-lg);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.form-container button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
}

/* Home section end */

/* Service section */

.service {
	padding: 8rem 0;
	text-align: center;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%),
		url("images/header-background.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.service h2 {
	font-size: 4.5rem;
	font-weight: 800;
	margin-bottom: 5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
}

.service-card {
	display: flex;
	flex-direction: column;
	width: 35rem;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	transition: all 0.4s ease;
}

.service-card:hover {
	transform: translateY(-15px);
	box-shadow: var(--shadow-xl);
}

.service-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

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

.service-card h3 {
	font-size: 2rem;
	font-weight: 700;
	margin: 2rem 2rem 1rem 2rem;
	color: var(--text-dark);
}

.service-card p {
	font-size: 1.5rem;
	color: var(--text-light);
	padding: 0 2rem 2rem 2rem;
	line-height: 1.8;
}

/*Service section end */

/* About section */

.about {
	background: var(--dark-bg);
	padding: 8rem 7%;
}

.about .row {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5rem;
	padding-top: 3rem;
}

.about .row .image {
	flex: 1 1 45rem;
	text-align: center;
}

.about .row .image img {
	width: 100%;
	max-width: 500px;
	border-radius: 20px;
	box-shadow: var(--shadow-xl);
	transition: transform 0.4s ease;
}

.about .row .image img:hover {
	transform: scale(1.05);
}

.about .row .content {
	flex: 1 1 45rem;
	padding: 2rem;
}

.about h1 {
	font-size: 4.5rem;
	font-weight: 800;
	background: var(--gradient-blue);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about .row .content h3 {
	font-size: 3.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 2rem;
}

.about .row .content p {
	font-size: 1.6rem;
	color: #cbd5e1;
	padding: 1rem 0;
	line-height: 1.8;
}

.about .row .content p i {
	padding-right: 1rem;
	color: var(--secondary-teal);
	font-size: 1.8rem;
}

/* Why Section start */

.why {
	padding: 8rem 7%;
	background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%),
		url("images/about-background.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	text-align: center;
}

.why h2 {
	font-size: 4.5rem;
	font-weight: 800;
	margin-bottom: 5rem;
	background: var(--gradient-blue);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.why-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
}

.why-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
	padding: 3rem;
	width: 35rem;
	text-align: center;
	transition: all 0.4s ease;
}

.why-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl);
}

.why-img {
	height: 100px;
	width: 100px;
	object-fit: contain;
	margin-bottom: 2rem;
	transition: transform 0.4s ease;
}

.why-card:hover .why-img {
	transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.why-card p {
	font-size: 1.5rem;
	color: var(--text-light);
	line-height: 1.8;
}

/* The Description page */
#page3 {
	min-height: 250px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5rem 7%;
	background: var(--gradient-primary);
	position: relative;
	overflow: hidden;
}

#page3::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.5;
}

#page3>h3 {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 1;
	margin-bottom: 2rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#page3>p {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.8;
	text-align: center;
	color: rgba(255, 255, 255, 0.95);
	position: relative;
	z-index: 1;
	max-width: 800px;
}

/* International Markets Section */

.international-markets {
	padding: 8rem 7%;
	background: linear-gradient(135deg, rgba(240, 147, 251, 0.03) 0%, rgba(245, 87, 108, 0.03) 100%), var(--light-bg);
	text-align: center;
}

.international-markets h2 {
	font-size: 4.5rem;
	font-weight: 800;
	margin-bottom: 2rem;
	background: var(--gradient-secondary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-flex;
	align-items: center;
	gap: 1rem;
}

.international-markets h2 i {
	background: var(--gradient-secondary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	font-size: 1.8rem;
	color: var(--text-light);
	margin-bottom: 5rem;
	font-weight: 500;
}

.markets-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
	margin-bottom: 6rem;
}

.market-card {
	background: #fff;
	padding: 3rem 2.5rem;
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
	transition: all 0.4s ease;
	border-top: 4px solid transparent;
	position: relative;
	overflow: hidden;
}

.market-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.market-card:hover::before {
	transform: scaleX(1);
}

.market-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl);
}

.flag-icon {
	font-size: 6rem;
	margin-bottom: 1.5rem;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.market-card:hover .flag-icon {
	animation: none;
	transform: scale(1.1);
}

.market-card h3 {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.market-countries {
	font-size: 1.4rem;
	color: var(--primary-blue);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.market-industries {
	font-size: 1.4rem;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	min-height: 60px;
}

.market-stats {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.stat-item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 1.3rem;
	color: var(--text-dark);
	font-weight: 600;
}

.stat-item i {
	color: #10b981;
	font-size: 1.4rem;
}

/* Export Capabilities */
.export-capabilities {
	margin-top: 6rem;
	padding: 4rem 3rem;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 25px;
	box-shadow: var(--shadow-lg);
}

.export-capabilities h3 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 3rem;
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

.export-capabilities h3 i {
	color: var(--primary-blue);
}

.international-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.feature-item {
	background: rgba(102, 126, 234, 0.05);
	padding: 2.5rem 2rem;
	border-radius: 15px;
	transition: all 0.3s ease;
	text-align: left;
	border: 2px solid transparent;
}

.feature-item:hover {
	background: #fff;
	transform: translateY(-5px);
	border-color: var(--primary-blue);
	box-shadow: var(--shadow-md);
}

.feature-item i {
	font-size: 4rem;
	color: var(--primary-blue);
	margin-bottom: 1.5rem;
	display: block;
}

.feature-item h4 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.feature-item p {
	font-size: 1.4rem;
	color: var(--text-light);
	line-height: 1.8;
}

/* Review section */

.reviews-section {
	padding: 8rem 7%;
	background: var(--light-bg);
	text-align: center;
}

.reviews-section h2 {
	font-size: 4.5rem;
	font-weight: 800;
	margin-bottom: 5rem;
	background: var(--gradient-secondary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.reviews-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
}

.review-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
	padding: 3rem;
	width: 32rem;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
}

.review-card::before {
	content: '"';
	position: absolute;
	top: 1rem;
	left: 2rem;
	font-size: 8rem;
	color: rgba(102, 126, 234, 0.1);
	font-family: Georgia, serif;
	line-height: 1;
}

.review-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl);
}

.client-img {
	border-radius: 50%;
	width: 90px;
	height: 90px;
	object-fit: cover;
	margin-bottom: 2rem;
	border: 4px solid var(--primary-blue);
	box-shadow: var(--shadow-md);
}

.review-card h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.review-card p {
	font-size: 1.5rem;
	color: var(--text-light);
	line-height: 1.8;
	font-style: italic;
}

/* Contact section */

.contact {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5rem;
	padding: 12rem 7% 5rem 7%;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%),
		url(images/home.png) no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.login-box {
	flex: 1 1 45rem;
	max-width: 550px;
	padding: 4rem;
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-xl);
	border-radius: 20px;
}

.login-box .user-box {
	position: relative;
	margin-bottom: 3rem;
}

.login-box .user-box textarea,
.login-box .user-box input {
	width: 100%;
	padding: 1.2rem 0;
	font-size: 1.6rem;
	color: #fff;
	border: none;
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	outline: none;
	background: transparent;
	transition: all 0.3s ease;
}

.login-box .user-box textarea:focus,
.login-box .user-box input:focus {
	border-bottom-color: var(--secondary-teal);
}

.login-box .user-box label {
	position: absolute;
	top: 0;
	left: 0;
	padding: 1.2rem 0;
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.7);
	pointer-events: none;
	transition: 0.3s ease;
}

.login-box .user-box input:focus~label,
.login-box .user-box input:valid~label {
	top: -2.5rem;
	left: 0;
	color: var(--secondary-teal);
	font-size: 1.3rem;
	font-weight: 600;
}

.login-box form button {
	width: 100%;
	padding: 1.4rem 3rem;
	cursor: pointer;
	background: var(--gradient-blue);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	border: none;
	border-radius: 50px;
	overflow: hidden;
	transition: all 0.3s ease;
	margin-top: 2rem;
	letter-spacing: 2px;
	box-shadow: var(--shadow-lg);
}

.login-box button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
}

.contact .content {
	flex: 1 1 40rem;
	padding: 3rem;
}

.contact .content h3 {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--dark-bg);
	margin-bottom: 2rem;
}

.contact .content p {
	font-size: 1.7rem;
	color: var(--text-dark);
	padding: 1rem 0;
	line-height: 1.8;
}

.contact .content .icons {
	display: flex;
	align-items: center;
	margin: 2rem 0;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.contact .content .icons:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateX(10px);
	box-shadow: var(--shadow-md);
}

.contact .content .icons p {
	font-size: 1.6rem;
	color: var(--text-dark);
	font-weight: 500;
}

.contact .content .icons a {
	color: var(--primary-blue);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 600;
}

.contact .content .icons a:hover {
	color: var(--accent-purple);
}

.contact .content .icons i {
	font-size: 2.5rem;
	color: var(--primary-blue);
	padding-right: 1.5rem;
	min-width: 50px;
}

/* Footer section */

.footer {
	background: var(--darker-bg);
	text-align: center;
	padding: 3rem 0;
	color: #fff;
}

.footer .share {
	padding: 2rem 0;
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.footer .share a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	font-size: 2.2rem;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.footer .share a:hover {
	background: var(--gradient-primary);
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.footer p {
	margin: 0;
	padding-bottom: 2rem;
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.7);
}

/* Mobile Phones */
@media (max-width: 480px) {
	html {
		font-size: 55%;
	}

	.top-bar-content {
		flex-direction: column;
		text-align: center;
		padding: 1rem 5%;
	}

	.top-bar-left {
		flex-direction: column;
		gap: 1rem;
	}

	.top-bar-link span {
		font-size: 1.2rem;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.navbar-logo img {
		width: 180px !important;
	}

	.logo-tagline {
		font-size: 1rem;
	}

	.nav-menu {
		position: fixed;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--dark-bg);
		flex-direction: column;
		padding: 2rem;
		gap: 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: all 0.3s ease;
		max-height: calc(100vh - 140px);
		overflow-y: auto;
	}

	.nav-menu.active {
		top: 140px;
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	header.scrolled .nav-menu.active {
		top: 70px;
	}

	.nav-link {
		width: 100%;
		text-align: center;
		color: #fff !important;
		font-size: 1.8rem;
		padding: 1.5rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nav-link:hover,
	.nav-link.active {
		background: rgba(255, 255, 255, 0.1);
	}

	.service-card,
	.why-card,
	.review-card {
		width: 100%;
	}

	.home {
		padding-top: 15rem;
	}

	.home .content h1 {
		font-size: 3.5rem;
	}

	.form-container {
		max-width: 100%;
	}

	/* International section mobile styles */
	.international-badges {
		gap: 1rem;
	}

	.badge {
		padding: 0.8rem 1.5rem;
		font-size: 1.3rem;
	}

	.standards-title {
		font-size: 1.4rem;
	}

	.standard-badge {
		font-size: 1.2rem;
		padding: 0.5rem 1.2rem;
	}

	.global-reach {
		padding: 1.5rem;
	}

	.global-reach h3 {
		font-size: 1.7rem;
	}

	.region-tag {
		font-size: 1.3rem;
		padding: 0.7rem 1.5rem;
	}

	.international-markets h2 {
		font-size: 3rem;
	}

	.section-subtitle {
		font-size: 1.5rem;
	}

	.markets-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.market-card h3 {
		font-size: 2rem;
	}

	.export-capabilities {
		padding: 2.5rem 1.5rem;
	}

	.export-capabilities h3 {
		font-size: 2.2rem;
	}

	.international-features {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about .row .image img {
		width: 100%;
	}

	.heading {
		font-size: 3rem;
		padding-top: 5rem;
	}

	.contact .content {
		padding: 1rem;
	}

	.login-box {
		padding: 2rem;
	}

	.form-loader {
		padding: 1.5rem;
		gap: 1rem;
	}

	.form-loader span {
		font-size: 1.3rem;
	}

	.spinner {
		width: 30px;
		height: 30px;
	}
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
	html {
		font-size: 58%;
	}

	.top-bar-left {
		gap: 1.5rem;
	}

	.top-bar-link {
		font-size: 1.2rem;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.navbar-logo img {
		width: 200px !important;
	}

	.logo-tagline {
		font-size: 1rem;
	}

	.nav-menu {
		position: fixed;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--dark-bg);
		flex-direction: column;
		padding: 2rem;
		gap: 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: all 0.3s ease;
		max-height: calc(100vh - 140px);
		overflow-y: auto;
	}

	.nav-menu.active {
		top: 120px;
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	header.scrolled .nav-menu.active {
		top: 70px;
	}

	.nav-link {
		width: 100%;
		text-align: center;
		color: #fff !important;
		font-size: 1.8rem;
		padding: 1.5rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nav-link:hover,
	.nav-link.active {
		background: rgba(255, 255, 255, 0.1);
	}

	.service-card,
	.why-card {
		width: 45%;
	}

	.review-card {
		width: 100%;
	}

	.home {
		padding-top: 15rem;
	}

	.home .content h1 {
		font-size: 4rem;
	}

	.form-container {
		max-width: 100%;
	}

	.about .row .image img {
		width: 100%;
	}

	.heading {
		font-size: 3.5rem;
	}

	.contact .content {
		padding: 2rem;
	}
}

/* Laptops */
@media (min-width: 769px) and (max-width: 1024px) {
	html {
		font-size: 60%;
	}

	.top-bar-link span {
		font-size: 1.2rem;
	}

	.navbar-logo img {
		width: 230px !important;
	}

	.service-card,
	.why-card {
		width: 45%;
	}

	.review-card {
		width: 45%;
	}
}

/* Desktops */
@media (min-width: 1025px) {

	.service-card,
	.why-card {
		width: 30%;
		max-width: 400px;
	}

	.review-card {
		width: 30%;
	}
}

/* Form Loader */
.form-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	padding: 2rem;
	margin: 2rem 0;
	background: rgba(102, 126, 234, 0.05);
	border-radius: 10px;
}

.form-loader span {
	font-size: 1.5rem;
	color: var(--text-dark);
	font-weight: 600;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid rgba(102, 126, 234, 0.2);
	border-top-color: var(--primary-blue);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

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

/* Smooth scroll animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

/* Add scroll reveal animations */
section {
	animation: fadeIn 0.8s ease-out;
}
