:root {
	--primary-color: #316ca6;
	--secondary-color: #2d5c88;
	--light-bg: #f5f5f5;
	--white: #ffffff;
}
@import url(//fonts.googleapis.com/css?family=Nunito);
body {
	background-color: var(--light-bg);
	 font-family: 'Nunito', sans-serif;
	 font-size:16px;
	color: #333;
	
	
	
	 /* Standard font smoothing for WebKit browsers (Chrome, Safari) */
  -webkit-font-smoothing: antialiased;
  
  /* Font smoothing for Firefox on macOS */
  -moz-osx-font-smoothing: grayscale;
  
  /* Optional: Improve text rendering */
  text-rendering: optimizeLegibility;
  
  /* Optional: Better font rendering in some browsers */
  font-smooth: always;
  -webkit-font-smoothing: subpixel-antialiased;
  
  
}



/* Alternative approach for maximum smoothness */
body.smooth-text {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1;
}



.navbar {
	background-color: var(--primary-color) !important;
	box-shadow: 0 2px 2px rgba(0,0,0,0.1);
	padding: 5px 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 {
	 
	color: var(--white);
	padding: 80px 0 60px;
	position: relative;
	overflow: hidden;
	
	background: #988558;
	background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}


.hero-section::before {
	content: '';
	position: absolute;
	
	top: 0; left: 0; right: 0; bottom: 0;
	  background: radial-gradient(circle at top left, rgba(255,255,255,0.15) 0%, transparent 50%);
	  pointer-events: none;
}

.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: 2px;
	overflow: hidden;
	 
	font-size:14px;
}

.table thead {
	background-color: var(--primary-color);
	color: var(--white);
	text-decoration: uppercase;
}

.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: #8D6298;
	color: var(--white);
	padding: 10px 20px;
	border-radius: 5px;
	margin: 5px;
	font-weight: 500;
	min-width: 150px;
	overflow:hidden;
}

.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: 2px;
	box-shadow: 0 2px 2px 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);
}
	
}







.services-section {
	padding: 60px 20px;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.section-header .highlight {
	color: #DC143C;
	font-weight: 700;
}

.section-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 800px;
	margin: 0 auto;
}

.benefit-card {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	padding: 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.benefit-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	color: #DC143C;
}

.benefit-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

.benefit-description {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

.center-image-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.center-image-container img {
	max-width: 300px;
	width: 100%;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.text-center-left {
	text-align: left;
}

@media (max-width: 768px) {
	.section-header h2 {
		font-size: 1.8rem;
	}

	.text-center-right,
	.text-center-left {
		text-align: center;
	}

	.benefit-card {
		padding: 20px;
	}
}



 .breadcrumb {
		--bs-breadcrumb-divider: '›'; /* Change to desired character or string */
		 text-align: center;
		 padding:0px;
	}

 

.faq-section {
	padding: 20px 0;
	background-color: #f8f9fa;
}
.faq-title {
	color: #212529;
	margin-bottom: 30px;
	text-align: center;
	font-weight: 700;
}
.accordion-button:not(.collapsed) {
	background-color: #ffc107;
	color: #000;
	font-weight: 600;
}
.accordion-button {
	font-weight: 500;
}
.accordion-body {
	background-color: #fff;
	line-height: 1.8;
}



/* BRANDS */

 .brands-section {
	padding: 60px 0;
	background-color: #f8f9fa;
}

.brand-card {
	background: #8D6298;
	border: none;
	border-radius: 4px;
	transition: transform 0.1s ease, box-shadow 0.1s ease;
	height: 100%;
	color: white;
	overflow: hidden;
}

.brand-card:hover {
	transform: translateY(-1px);
	box-shadow: 0 2px 2px rgba(102, 126, 234, 0.3);
}

.brand-card .card-body {
	padding: 0.8rem;
}

.brand-card .card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.7rem;
	color: #ffffff;
}

.brand-card .card-text {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}

.section-title {
	font-size: 2.5rem;
	color:#FFFF00;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 1rem;
	text-align: center;
}

.section-subtitle {
	text-align: center;
	color: #718096;
	margin-bottom: 2rem;
	font-size: 1rem;
}

.bgyellow
{
	background-color:#eeefff;
}

.txtyellow
{
	color:#fffac3;
}
.pinko
{
	background-color:#316ca6;
	color:#FFF;
}

.txtpinko
{
	color: #316ca6;
}
