.container,
.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px
}


@font-face {
    font-family: 'Denmark';
    src: url('./font/DENMARK.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}


.mobile-menu,
.navbar {
	position: fixed;
	left: 0;
	right: 0
}

.mobile-menu a,
.nav-links a {
	font-weight: 500;
	text-decoration: none
}

.footer-links ul,
.mobile-menu ul,
.nav-links {
	list-style: none
}

.btn,
.footer-links a,
.logo,
.mobile-menu a,
.nav-links a {
	text-decoration: none
}

.footer-bottom,
.hero-content,
.section-header,
.stat,
.training-box,
.why-card {
	text-align: center
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

:root {
	--primary: #f5aa2d;
	--primary-light: #e0912b;
	--accent: #1a3d66;
	--accent-hover: #1a3d66;
	--white: #ffffff;
	--gray-50: #f8fafc;
	--gray-100: #f1f5f9;
	--gray-200: #e2e8f0;
	--gray-300: #cbd5e1;
	--gray-400: #94a3b8;
	--gray-500: #64748b;
	--gray-600: #475569;
	--gray-700: #334155;
	--gray-800: #1e293b;
	--gray-900: #0f172a
}

html {
	scroll-behavior: smooth
}

body {
	font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--gray-800);
	line-height: 1.6;
	overflow-x: hidden
}

.navbar {
	top: 0;
	background: var(--white);
	box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
	z-index: 1000;
	transition: .3s
}


.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px
}

.logo-icon {
	width: 75px;
	height: 95px;
	/* background: linear-gradient(135deg, var(--primary), var(--primary-light)); */
	color: var(--accent);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 20px
}
.service-icon {
  font-size: 40px;
}
.logo-text,
.nav-links a:hover {
	    color: #09125a;
}

.logo-text {
	font-family: 'Denmark', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
	display: flex;
	gap: 30px
}

.nav-links a {
	color: var(--gray-600);
	font-size: 15px;
	transition: color .3s;
	position: relative
}

.nav-links a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width .3s
}

.btn-full,
.nav-links a:hover::after {
	width: 100%
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: 0 0;
	border: none;
	cursor: pointer;
	padding: 5px
}

.mobile-menu-btn span {
	width: 25px;
	height: 3px;
	background: var(--primary);
	border-radius: 2px;
	transition: .3s
}

.mobile-menu {
	display: none;
	top: 70px;
	background: var(--white);
	box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
	z-index: 999
}

.mobile-menu.active {
	display: block
}

.mobile-menu ul {
	padding: 20px
}

.mobile-menu li {
	border-bottom: 1px solid var(--gray-200)
}

.mobile-menu a {
	display: block;
	padding: 15px 0;
	color: var(--gray-700)
}

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: linear-gradient(135deg, var(--primary) 0, var(--primary-light) 100%);
	padding-top: 90px !important;
	padding-bottom: 50px !important
}

.hero-bg {
	position: absolute;
	inset: 0;
	background: url("/placeholder.svg?height=1080&width=1920") center/cover;
	opacity: .15
}


.hero-content {
	position: relative;
	z-index: 1;
	color: var(--white);
	padding: 40px 20px;
	width: 100%
}

.hero-badge {
	display: inline-block;
	background: rgba(212, 168, 83, .2);
	color: var(--accent);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	border: 1px solid rgba(212, 168, 83, .3)
}

.hero h1 {
	font-size: clamp(32px, 6vw, px);
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.2
}

.hero p {
	font-size: clamp(16px, 2vw, 20px);
	color: rgba(255, 255, 255, .85);
	margin-bottom: 35px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7
}

.hero-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 50px
}

.btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	transition: .3s;
	cursor: pointer;
	border: none
}

.btn-primary {
	background: var(--accent);
	color: #fff
}

.btn-primary:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(212, 168, 83, .3)
}

.btn-secondary {
	background: 0 0;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, .3)
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, .1);
	border-color: var(--white)
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap
}

.stat-number {
	display: block;
	font-size: 36px;
	font-weight: 800;
	color: var(--accent)
}

.stat-label {
	font-size: 14px;
	color: rgba(255, 255, 255, .7)
}

.section-badge,
.section-header h2 {
	color: var(--primary);
	margin-bottom: 15px
}

section {
	padding: 100px 0
}

.section-badge {
	display: inline-block;
	background: rgba(15, 42, 74, .1);
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px
}

.about-grid,
.about-highlights {
	display: grid;
	grid-template-columns: 1fr 1fr
}

.service-card,
.why-card {
	padding: 30px;
	transition: .3s
}

.section-header {
	margin-bottom: 60px
}

.section-header h2 {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800
}

.section-header p {
	color: var(--gray-500);
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto
}

.about,
.industries {
	background: var(--gray-50)
}

.about-grid {
	gap: 60px;
	align-items: center
}

.about-content h2 {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 20px
}

.about-content p {
	color: var(--gray-600);
	margin-bottom: 20px;
	line-height: 1.8
}

.about-highlights {
	gap: 15px;
	margin-top: 30px
}

.highlight {
	display: flex;
	align-items: center;
	gap: 10px
}

.highlight-icon {
	width: 24px;
	height: 24px;
	background: var(--accent);
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0
}

.contact,
.service-card,
.services,
.training {
	background: var(--white)
}

.industries-grid,
.services-grid,
.why-us-grid {
	display: grid;
	gap: 25px
}

.highlight span {
	font-size: 14px;
	font-weight: 500;
	color: var(--gray-700)
}

.about-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .15)
}

.services-grid {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
}

.service-card {
	border: 1px solid var(--gray-200);
	border-radius: 16px
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
	border-color: var(--accent)
}

.service-icon {
	font-size: 40px;
	margin-bottom: 20px
}

.service-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 12px
}

.service-card p {
	color: var(--gray-500);
	font-size: 15px;
	line-height: 1.6
}

.why-us {
	background: linear-gradient(135deg, var(--primary) 0, var(--primary-light) 100%)
}

.why-us .section-badge {
	background: rgba(212, 168, 83, .2);
	color: var(--accent)
}

.footer-about .logo-text,
.why-card h3,
.why-us .section-header h2 {
	color: var(--white)
}

.why-us .section-header p {
	color: rgba(255, 255, 255, .7)
}

.why-us-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))
}

.industries-grid,
.training-content {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
}

.why-card {
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 16px
}

.why-card:hover {
	background: rgba(255, 255, 255, .15);
	transform: translateY(-5px)
}

.why-number {
	font-size: 48px;
	font-weight: 800;
	color: #000;
	opacity: .5;
	margin-bottom: 15px
}

.why-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px
}

.footer-about .logo,
.training-box h3 {
	margin-bottom: 15px
}

.why-card p {
	color: rgba(255, 255, 255, .7);
	font-size: 14px;
	line-height: 1.6
}

.industry-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 220px;
	cursor: pointer
}

.industry-card img {
	width: 100%;

	object-fit: cover;
	transition: transform .5s
}

.industry-card:hover img {
	transform: scale(1.1)
}

.industry-overlay {
	position: absolute;
	inset: 0;
	/* background: linear-gradient(to top, rgba(15, 42, 74, .9) 0, rgba(15, 42, 74, .3) 100%); */
	display: flex;
	align-items: flex-end;
	padding: 25px
}

.contact-card,
.contact-form-wrapper,
.training-box {
	background: var(--gray-50)
}

.industry-overlay h3 {
	color: var(--white);
	font-size: 20px;
	font-weight: 700;
filter: drop-shadow(2px 4px 6px black);
}

.training-content {
	display: grid;
	gap: 30px
}

.training-box {
	border-radius: 16px;
	padding: 35px;
	border: 1px solid var(--gray-200);
	transition: .3s
}

.training-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
	border-color: var(--accent)
}

.training-icon {
	font-size: 48px;
	margin-bottom: 20px
}

.training-box h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary)
}

.training-box p {
	color: var(--gray-600);
	font-size: 15px;
	line-height: 1.7
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 50px
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px
}

.contact-card {
	border-radius: 12px;
	padding: 25px;
	display: flex;
	align-items: flex-start;
	gap: 15px
}

.contact-icon {
	font-size: 24px
}

.contact-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 5px
}

.contact-card p {
	color: var(--gray-600);
	font-size: 14px;
	line-height: 1.6
}

.contact-form-wrapper {
	border-radius: 20px;
	padding: 40px
}

.contact-form h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 25px
}

.form-group {
	margin-bottom: 20px
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid var(--gray-300);
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	transition: .3s;
	background: var(--white)
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: 0;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(212, 168, 83, .2)
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px
}

.footer {
	background: linear-gradient(135deg, var(--primary) 0, var(--primary-light) 100%);
	color: var(--white);
	padding: 60px 0 0
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-about p {
	color: #fff;
	font-size: 14px;
	line-height: 1.7
}

.footer-contact h4,
.footer-links h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--white)
}

.footer-bottom p,
.footer-contact p,
.footer-links a {
	font-size: 14px;
	color: #fff
}

.footer-contact p,
.footer-links li {
	margin-bottom: 10px
}

.footer-links a {
	transition: color .3s
}

.footer-links a:hover {
	color: var(--accent)
}

.footer-bottom {
	padding: 25px 0
}

.animate-fade-left,
.animate-fade-right,
.animate-fade-up,
.animate-scale {
	opacity: 0;
	transition: .8s cubic-bezier(.4, 0, .2, 1)
}

.animate-fade-up {
	transform: translateY(40px)
}

.animate-fade-right {
	transform: translateX(-40px)
}

.animate-fade-left {
	transform: translateX(40px)
}

.animate-scale {
	transform: scale(.9)
}

.animate-fade-left.visible,
.animate-fade-right.visible,
.animate-fade-up.visible,
.animate-scale.visible {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1)
}

@media (max-width:1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr
	}
}

@media (max-width:768px) {

	.about-grid,
	.about-highlights,
	.contact-grid,
	.footer-grid,
	.form-row {
		grid-template-columns: 1fr
	}

	.nav-links {
		display: none
	}

	.mobile-menu-btn {
		display: flex
	}

	.about-grid {
		gap: 40px
	}

	.about-image {
		order: -1
	}

	.hero-stats {
		gap: 30px
	}

	.footer-grid {
		text-align: center
	}

	.footer-about .logo {
		justify-content: center
	}
}

@media (max-width:480px) {
	.hero-buttons {
		flex-direction: column;
		align-items: center
	}

	.contact-card {
		padding: 10px
	}

	.btn {
		width: 100%;
		text-align: center
	}

	.contact-form-wrapper {
		padding: 25px
	}
}

/* Swiper Container */
.hero-swiper {
    width: 100%;
    padding: 20px 0;
}

.servicesImageSwiper {
    width: 100%;
}

/* Each Slide */
.service-slide {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
}

/* Image Proper Fit */
.service-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* IMPORTANT */
    display: block;
}

/* Overlay */
.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.1)
    );
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
}

/* Hover Effect */
.service-slide:hover img {
    transform: scale(1.05);
    transition: 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .service-slide {
        height: 220px;
    }

    .service-overlay {
        font-size: 14px;
        padding: 10px;
    }
}

.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 25px;
	right: 25px;
	background-color: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	box-shadow: 0 10px 25px rgba(37, 211, 102, .4);
	animation: 1.8s infinite whatsapp-pulse
}

.whatsapp-float img {
	width: 32px;
	height: 32px
}

@keyframes whatsapp-pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, .6)
	}

	70% {
		transform: scale(1.05);
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
	}
}

.whatsapp-float:hover {
	transform: scale(1.1);
	animation-play-state: paused
}