/*-------------------------
	General Styles
--------------------------*/

body{
	font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	width: 100%;
	padding-top: 90px;
	color: #333;
	overflow-x: hidden;
}

a{
	color: #2c7bfe !important;
	transition: all 0.3s ease;
}

a:hover, a:focus {
	color: #1c5ed0 !important;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.4;
}

h2 {
	font-size: 32px;
	margin-bottom: 20px;
	position: relative;
}

.btn {
	border-radius: 4px;
	padding: 10px 24px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	letter-spacing: 0.5px;
}

.btn-primary {
	background-color: #2c7bfe;
	color: white !important;
}

.btn-primary:hover, .btn-primary:focus {
	background-color: #1c5ed0;
	transform: translateY(-3px);
	box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.btn-outline {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff !important;
	margin-left: 15px;
}

.btn-outline:hover, .btn-outline:focus {
	background-color: white;
	color: #2c7bfe !important;
	transform: translateY(-3px);
	box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.section-title {
	color: #333;
	margin-top: 80px;
	margin-bottom: 15px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	letter-spacing: 1px;
}

.section-subtitle {
	color: #666;
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto 50px;
}

/*-----------------------------------
	Navigation Bar Styles
------------------------------------*/

.navbar{
	padding: 18px 0;
	background-color: rgba(255,255,255,0.95);
	transition: all 0.3s ease;
	box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Contract the navbar while scrolling */
.navbar.scrolled{
	padding: 10px 0;
	background-color: rgba(255,255,255,0.98);
}

#myNavbar{
	overflow-x: hidden;
}

#myNavbar ul li:last-child a{
	padding-right: 0;
}

/* Brand name */
.brandStyle{
	color: #2c7bfe !important;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.brandStyle i {
	margin-right: 5px;
}

/* Menu */
.menustyle{
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
}

.nav > li > a:hover, .nav > li > a:focus {
	background-color: transparent;
	color: #2c7bfe !important;
}

.nav > li.active > a {
	color: #2c7bfe !important;
	position: relative;
}

.nav > li.active > a:after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 2px;
	background-color: #2c7bfe;
}

/*-----------------------------------
	Hero Section
------------------------------------*/

.hero-section {
	background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%), url(../images/header.jpg);
	background-size: cover;
	background-position: center center;
	height: 650px;
	position: relative;
	margin-top: -90px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 5;
	text-align: center;
	max-width: 900px;
}

.hero-title {
	color: #fff;
	font-size: 52px;
	font-weight: 700;
	margin-top: 150px;
	margin-bottom: 25px;
	text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero-text {
	color: rgba(255,255,255,0.9);
	font-size: 24px;
	max-width: 700px;
	margin: 0 auto 40px;
	line-height: 1.5;
}

.hero-buttons {
	margin-top: 35px;
}

.shape-divider {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120"><path fill="%23FFFFFF" fill-opacity="1" d="M0,96L48,85.3C96,75,192,53,288,53.3C384,53,480,75,576,85.3C672,96,768,96,864,80C960,64,1056,32,1152,26.7C1248,21,1344,43,1392,53.3L1440,64L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z"></path></svg>');
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 2;
}

/*-----------------------------------
	About Section
------------------------------------*/

.about-section {
	padding: 80px 0;
	position: relative;
}

.about-text {
	color: #666;
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 25px;
}

.tech-icon-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
	margin-top: 30px;
}

.tech-icon {
	background-color: #f8f9fa;
	border-radius: 10px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tech-icon:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.tech-icon i {
	font-size: 48px;
	color: #2c7bfe;
}

.stats-container {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
	padding: 0 10px;
}

.stat-number {
	display: block;
	font-size: 42px;
	font-weight: 700;
	color: #2c7bfe;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 16px;
	color: #666;
}

/*-----------------------------------
	Services Section
------------------------------------*/

.services-section {
	background-color: #f8f9fa;
	padding: 80px 0;
	position: relative;
}

.services-container {
	margin-top: 30px;
}

.service-card {
	background-color: #fff;
	border-radius: 8px;
	padding: 40px 25px;
	margin-bottom: 30px;
	height: 100%;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	position: relative;
	overflow: hidden;
}

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

.service-icon {
	background: linear-gradient(135deg, #2c7bfe 0%, #1c5ed0 100%);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.service-icon i {
	font-size: 28px;
	color: white;
}

.service-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	font-weight: 600;
}

.service-card p {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.6;
}

.service-features {
	padding-left: 20px;
	margin-bottom: 25px;
	color: #666;
}

.service-features li {
	margin-bottom: 8px;
}

.service-link {
	color: #2c7bfe;
	font-weight: 600;
	display: inline-block;
	transition: all 0.3s ease;
}

.service-link i {
	margin-left: 5px;
	transition: all 0.3s ease;
}

.service-link:hover i {
	transform: translateX(5px);
}

/*-----------------------------------
	Tech Stack Section
------------------------------------*/

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

.tech-categories {
	margin-top: 40px;
}

.tech-category {
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	height: 100%;
}

.tech-category:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.tech-category h3 {
	font-size: 18px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.tech-category h3 i {
	margin-right: 10px;
	color: #2c7bfe;
}

.tech-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tech-tag {
	background-color: #fff;
	color: #333;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 13px;
	transition: all 0.3s ease;
	border: 1px solid #eee;
}

.tech-tag:hover {
	background-color: #2c7bfe;
	color: #fff;
}

/*-----------------------------------
	Workflow Section
------------------------------------*/

.workflow-section {
	background-color: #f8f9fa;
	padding: 80px 0;
	position: relative;
}

.workflow-container {
	margin-top: 50px;
	position: relative;
}

.workflow-step {
	display: flex;
	margin-bottom: 30px;
	position: relative;
}

.step-number {
	background-color: #2c7bfe;
	color: white;
	font-size: 20px;
	font-weight: 700;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 25px;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.step-content {
	background-color: #fff;
	border-radius: 8px;
	padding: 25px;
	flex-grow: 1;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.step-content:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-content h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}

.step-content p {
	color: #666;
	margin-bottom: 0;
}

/*-----------------------------------
	CTA Section
------------------------------------*/

.cta-section {
	padding: 60px 0;
	background: linear-gradient(135deg, #2c7bfe 0%, #1c5ed0 100%);
	color: white;
	text-align: left;
	position: relative;
}

.cta-section h2 {
	font-size: 32px;
	margin-bottom: 15px;
	font-weight: 700;
	color: white;
}

.cta-section p {
	font-size: 18px;
	opacity: 0.9;
	margin-bottom: 0;
}

.cta-section .btn {
	margin-top: 10px;
	background-color: white;
	color: #2c7bfe !important;
}

.cta-section .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}

/*-----------------------------------
	Contact Page Styles
------------------------------------*/

.contact-hero-section {
	background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%), url(../images/contact-header.jpg);
	background-size: cover;
	background-position: center center;
	height: 400px;
	position: relative;
	margin-top: -90px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	overflow: hidden;
}

.contact-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.page-title {
	color: #fff;
	font-size: 42px;
	font-weight: 700;
	margin-top: 100px;
	margin-bottom: 20px;
	text-shadow: 0 2px 5px rgba(0,0,0,0.3);
	position: relative;
	z-index: 5;
}

.page-subtitle {
	color: rgba(255,255,255,0.9);
	font-size: 20px;
	margin: 0 auto;
	position: relative;
	z-index: 5;
}

.contact-content {
	margin-bottom: 60px;
}

.contact-info-card, .contact-form-card {
	background-color: #fff;
	border-radius: 8px;
	padding: 30px;
	height: 100%;
	box-shadow: 0 5px 25px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.contact-info-card:hover, .contact-form-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-info-card h2, .contact-form-card h2 {
	margin-top: 0;
	margin-bottom: 25px;
	font-size: 24px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.contact-info-card h2 i, .contact-form-card h2 i {
	margin-right: 10px;
	color: #2c7bfe;
}

.contact-info-item {
	display: flex;
	margin-bottom: 30px;
}

.icon-container {
	margin-right: 20px;
}

.icon-container i {
	width: 50px;
	height: 50px;
	background-color: rgba(44, 123, 254, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2c7bfe;
	font-size: 20px;
}

.info-container h3 {
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 600;
}

.info-container p {
	margin-bottom: 5px;
	color: #333;
}

.text-muted {
	color: #888;
	font-size: 14px;
}

.contact-form label {
	font-weight: 600;
	color: #555;
}

.form-control {
	height: auto;
	padding: 10px 15px;
	border-radius: 4px;
	border: 1px solid #ddd;
	box-shadow: none;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: #2c7bfe;
	box-shadow: 0 0 0 3px rgba(44, 123, 254, 0.2);
}

/*-----------------------------------
	FAQ Section
------------------------------------*/

.faq-section {
	background-color: #f8f9fa;
	padding: 80px 0;
}

.faq-container {
	margin-top: 40px;
}

.faq-item {
	background-color: #fff;
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.faq-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 15px;
	color: #333;
}

.faq-item h3 i {
	color: #2c7bfe;
	margin-right: 10px;
}

.faq-item p {
	color: #666;
	margin-bottom: 0;
	line-height: 1.6;
}

/*-----------------------------------
	Footer Section
------------------------------------*/

.footer-section {
	background-color: #222;
	padding: 70px 0 20px;
	color: #fff;
}

.footer-section h3 {
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 25px;
	color: #fff;
	position: relative;
	padding-bottom: 15px;
	font-weight: 600;
}

.footer-section h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: #2c7bfe;
}

.footer-section p {
	color: rgba(255,255,255,0.7);
	margin-bottom: 20px;
	line-height: 1.6;
}

.social-links {
	display: flex;
	margin-top: 20px;
}

.social-icon {
	width: 40px;
	height: 40px;
	background-color: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.social-icon i {
	color: #fff !important;
	font-size: 18px;
}

.social-icon:hover {
	background-color: #2c7bfe;
	transform: translateY(-3px);
}

.footer-links {
	list-style: none;
	padding-left: 0;
}

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

.footer-links a {
	color: rgba(255,255,255,0.7) !important;
	transition: all 0.3s ease;
	display: block;
}

.footer-links a:hover {
	color: #fff !important;
	padding-left: 5px;
}

.copyright {
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
	text-align: center;
}

.copyright p {
	color: rgba(255,255,255,0.5);
	font-size: 14px;
}

/*-----------------------------------
	Helper classes
------------------------------------*/

.noPadding{
	padding: 0;
}

.noBorder{
	border: 0;
}

.text-right {
	text-align: right;
}

/* Animation for elements */
[data-aos] {
	opacity: 0;
	transition-property: opacity, transform;
}

[data-aos].aos-animate {
	opacity: 1;
}

/*-----------------------------------
	Media querries
------------------------------------*/

/* On smaller screens */
@media (max-width: 992px) {
	
	/* General */
	body{
		padding-top: 76px;
	}

	li{
		padding-left: 8px;
	}
	
	h1 {
		margin-top: 80px;
		font-size: 36px;
	}
	
	h2 {
		font-size: 26px;
	}
	
	.hero-title {
		font-size: 36px;
		margin-top: 120px;
	}
	
	.hero-text {
		font-size: 18px;
	}

	.hero-section, .contact-hero-section {
		height: 400px;
	}

	/* Navigation bar */
	.navbar{
		padding: 15px 0;
	}
	
	/* Services */
	.service-card {
		margin-bottom: 30px;
	}
	
	/* Tech stack */
	.tech-category {
		margin-bottom: 30px;
	}
	
	/* Workflow */
	.workflow-step {
		flex-direction: column;
	}
	
	.step-number {
		margin-bottom: 15px;
		margin-right: 0;
	}
	
	/* CTA */
	.cta-section .text-right {
		text-align: left;
		margin-top: 20px;
	}
	
	/* Contact */
	.contact-info-card, .contact-form-card {
		margin-bottom: 30px;
	}
	
	/* Footer */
	.footer-section [class*="col-"] {
		margin-bottom: 40px;
	}
}

/* On bigger screens */ 
@media (min-width: 993px) {
	.responsiveAlign {
		float: right;
	}
}

