@import url(//fonts.googleapis.com/css?family=Nunito);
:root {
	--primary-color: #2d5c88;
	--secondary-color: #2d5c88;
	--light-bg: #f5f5f5;
	--white: #ffffff;
}

body {
	background-color: var(--light-bg);
	font-family: 'Nunito', sans-serif;
	color: #6c757d;
	font-size:15px;
	padding: 0 !important; /* Remove any default padding */
    margin: 0 !important; /* Remove any default margin */
}

a {
	text-decoration: none;
}

.navbar {
	background-color: #36454F ; !important;
	box-shadow: 0 2px 2px rgba(0,0,0,0.1);
	padding: 2px 0;
}

.navbar-brand {
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--white) !important;
}

.nav-link {
	color: var(--white) !important;
	margin: 0 10px;
	transition: all 0.3s;
}

.nav-link:hover {
	color: #ffc107 !important;
	transform: translateY(-2px);
}

.hero-section {
	background-color:#2d5c88;
	color: var(--white);
	padding: 120px 0 60px;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	background-color:#2d5c88;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 18px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 10px;
	opacity: 0.95;
}

.btn-primary-custom {
	background-color: #ffc107;
	color: var(--primary-color);
	padding: 15px 40px;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s;
	margin: 10px;
}

.btn-primary-custom:hover {
	background-color: #ffca2c;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(255,193,7,0.3);
}

.btn-outline-custom {
	color: var(--white);
	border: 2px solid var(--white);
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s;
	margin: 10px;
}

.btn-outline-custom:hover {
	background-color: var(--white);
	color: var(--primary-color);
	transform: translateY(-3px);
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	text-align: center;
}

.section-subtitle {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 40px;
	text-align: center;
}

section {
	padding: 40px 0;
}

.card {
	border: none;
	border-radius: 5px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	transition: all 0.1s;
	height: 100%;
	background: var(--white);
}



.card-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.service-card {
	text-align: left;
	padding: 30px;
}

.service-image-container {
	position: relative;
	height: 250px;
	overflow: hidden;
	background: #89CFF0;
}

.brand-card {
	text-align: center;
	padding: 15px;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.brand-card h5 {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 15px;
}

.accordion-button {
	background-color: var(--primary-color);
	color: var(--white);
	font-weight: 600;
}

.accordion-button:not(.collapsed) {
	background-color: var(--secondary-color);
	color: var(--white);
}

.accordion-button:focus {
	box-shadow: none;
}

.table {
	background: var(--white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	font-size:14px;
}

.table thead {
	background-color: var(--primary-color);
	color: var(--white);
}

.float-button {
	position: fixed;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 24px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.3);
	z-index: 1000;
	transition: all 0.3s;
	text-decoration: none;
}

.float-button:hover {
	transform: scale(1.1);
	color: var(--white);
}

.call-button {
	bottom: 100px;
	right: 30px;
	background-color: var(--primary-color);
}

.whatsapp-button {
	bottom: 30px;
	right: 30px;
	background-color: #25D366;
}

.coverage-badge {
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 25px;
	margin: 5px;
	font-weight: 500;
}

.list-unstyled{
	line-height:14px;
}

footer {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 30px 0;
	text-align: left;
}

.contact-info-item {
	display: flex;
	align-items: left;
	margin-bottom: 20px;
	padding: 20px;
	background: var(--white);
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-icon {
	font-size: 2rem;
	color: var(--primary-color);
	margin-right: 20px;
}

.keyword-highlight {
	font-weight: 700;
	color: var(--primary-color);
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2rem;
	}
	.hero-subtitle {
		font-size: 1.1rem;
	}
	.section-title {
		font-size: 1.8rem;
	}
	
	.services-container {
	padding: 10px 0;
}
	
	
	.service-description {
	color: #666;
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 20px;
	flex-grow: 1;
}

.service-features {
	list-style: none;
	padding: 0;
	margin: 10px 0;text-align:left;
}

.service-features li {
	padding: 4px 0;
	color: #555;
	font-size: 0.8rem;
	text-align:left;
}

.service-features li i {
	color: #28a745;
	margin-right: 10px;
	font-size: 1rem;text-align:left;
}

.price-container {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 20px;
	border-radius: 12px;
	margin: 20px 0;
	text-align: left;
}

.price-label {
	font-size: 0.9rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
}

.price-amount {
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.price-note {
	font-size: 0.85rem;
	color: #888;
	font-style: italic;
}
	
. list-unstyled {
	font-size: 1rem;
	color: #888;
	font-style: italic;
}	

.order-button {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	width: 100%;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}
	
}

