* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--navy-blue: #001f3f;
	--deep-red: #c41e3a;
	--light-gray: #f5f5f5;
	--dark-gray: #333;
	--white: #ffffff;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Cantarell, "Helvetica Neue", sans-serif;
	line-height: 1.6;
	color: var(--dark-gray);
	background-color:#F7FAFC;
}

/* Navigation Styles */
.navbar {
	background: var(--navy-blue);
	padding: 0.2rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

.logo {
	color: var(--white);
	font-size: 1.5rem;
	font-weight: bold;
	text-decoration: none;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
	font-weight:500px;
}

.nav-menu a {
	color: var(--white);
	text-decoration: none;
	transition: color 0.1s;
}

.nav-menu a:hover {
	color: var(--deep-red);
}

.call-btn {
	background: var(--deep-red);
	color: var(--white);
	padding: 0.4rem 1.2rem;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.1s;
}

.call-btn:hover {
	background: #a01828;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--white);
	transition: 0.3s;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--navy-blue) 0%, #003366 100%);
	color: var(--white);
	padding: 80px 20px;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.hero-content h1 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	line-height: 1.2;
	color:#EDF4FE;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn {
	padding: 12px 30px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s;
	display: inline-block;
}

.btn-primary {
	background: var(--deep-red);
	color: var(--white);
}

.btn-primary:hover {
	background: #a01828;
	transform: translateY(-2px);
}

.btn-secondary {
	background: var(--white);
	color: var(--navy-blue);
}

.btn-secondary:hover {
	background: var(--light-gray);
}

.hero-image {
	background: rgba(255,255,255,0.1);
	height: 400px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.2rem;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
}

/* Section Styles */
.section {
	margin-top: 80px;
	margin-bottom: 80px;
}

.section-title {
	font-size: 2.5rem;
	color: var(--navy-blue);
	margin-bottom: 30px;
	text-align: center;
}

/* Service Section */
.service-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 60px;
	align-items: center;
	padding: 40px;
	background: var(--light-gray);
	border-radius: 10px;
}

.service-item:nth-child(even) {
	direction: rtl;
}

.service-item:nth-child(even) > * {
	direction: ltr;
}

.service-content h3 {
	font-size: 1.8rem;
	color: var(--navy-blue);
	margin-bottom: 10px;
}

.service-content p {
	margin-bottom: 10px;
	line-height: 1.6;
}

.service-image {
	background: rgba(0,31,63,0.1);
	height: 300px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy-blue);
	margin-top:5px;
	margin-bottom:5px;
}

.service-img {
	background: rgba(0,31,63,0.1);
	
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy-blue);
	 
}


/* Quote Section */
.quote {
	background: var(--deep-red);
	color: var(--white);
	padding: 40px;
	margin: 60px 0;
	border-radius: 10px;
	font-style: italic;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.8;
}

/* Table Styles */
.price-table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.price-table th {
	background: var(--navy-blue);
	color: var(--white);
	padding: 15px;
	text-align: left;
}

.price-table td {
	padding: 15px;
	border-bottom: 1px solid #ddd;
}

.price-table tr:hover {
	background: var(--light-gray);
}

/* Brands Grid */
.brands-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.brand-card {
	background: var(--white);
	padding: 30px 20px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	font-weight: bold;
	color: var(--navy-blue);
}

.brand-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Areas Grid */
.areas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-top: 30px;
}

.area-item {
	background: var(--light-gray);
	padding: 15px;
	border-radius: 5px;
	border-left: 4px solid var(--deep-red);
}

/* Reviews Grid */
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.review-card {
	background: var(--white);
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-rating {
	color: #ffd700;
	margin-bottom: 15px;
	font-size: 1.2rem;
}

.review-text {
	margin-bottom: 15px;
	line-height: 1.6;
}

.review-author {
	font-weight: bold;
	color: var(--navy-blue);
}

/* FAQ Accordion */
.faq-item {
	background: var(--white);
	margin-bottom: 15px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	overflow: hidden;
}

.faq-question {
	padding: 20px;
	cursor: pointer;
	font-weight: bold;
	color: var(--navy-blue);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question:hover {
	background: var(--light-gray);
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
	padding: 20px;
	max-height: 500px;
}

.faq-icon {
	transition: transform 0.3s;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
	background: var(--navy-blue);
	color: var(--white);
	padding: 60px 20px;
	text-align: center;
	margin: 60px 0;
	border-radius: 10px;
}

.cta-section h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.cta-section p {
	font-size: 1.2rem;
	margin-bottom: 30px;
}

/* Contact Section */
.contact-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
	background-color:;
}

.contact-card {
	background: var(--light-gray);
	padding: 30px;
	border-radius: 10px;
	text-align: center;
}

.contact-card h3 {
	color: var(--navy-blue);
	margin-bottom: 15px;
}


.post-card {
	background: var(--light-gray);
	padding: 20px;
	border-radius: 10px;
	text-align: left;
}

.post-card h3 {
	color: var(--navy-blue);
	margin-bottom: 15px;
}

/* Footer */
.footer {
	background: var(--navy-blue);
	color: var(--white);
	padding: 40px 20px;
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.footer-links a {
	color: var(--white);
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--deep-red);
}

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--navy-blue);
		flex-direction: column;
		padding: 20px;
		gap: 1rem;
		transform: translateX(-100%);
		transition: transform 0.3s;
	}

	.nav-menu.active {
		transform: translateX(0);
	}

	.call-btn {
		position: fixed;
		bottom: 20px;
		right: 40px;
		z-index: 999;
		box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	}

	.hero-container {
		grid-template-columns: 1fr;
	}

	.hero-content h1 {
		font-size: 2rem;color:#EDF4FE;
	}

	.service-item {
		grid-template-columns: 1fr;
	}

	.service-item:nth-child(even) {
		direction: ltr;
	}

	.reviews-grid {
		grid-template-columns: 1fr;
	}

	.contact-info {
		grid-template-columns: 1fr;
	}

	.brands-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 1.75rem;color:#EDF4FE;
	}

	.section-title {
		font-size: 2rem;
	}

	.service-content h3 {
		font-size: 1.5rem;
	}
}

strong {
	color: var(--deep-red);
	font-weight: bold;
}

table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 16px; text-align: left; }

th, td {
padding: 12px;
border: 1px solid #ddd;
}

th {
background-color: #f4f4f4;
font-weight: bold;
}

tr:nth-child(even) {
background-color: #EDF4FE;
}

@media screen and (max-width: 600px) {
table {
display: block;
overflow-x: auto;
white-space: nowrap;
}

th, td {
font-size: 14px;
padding: 8px;
}
}


th {

  background-color: #db007e;
font-size:14px;
  color: #fff;
font-weight:500px;
  padding: 4px;

  transition: background-color 0.3s ease; /* Smooth transition */

}

th:hover {

  background-color: #0056b3; /* Darker blue on hover */

}
td {
font-size:12px;
border-width:1px;border-color:#f7f7f7;border-style:solid;
}

a {
	text-decoration:none;
}



.updatetitle{
	color: var(--navy-blue);
	font-size: 20px;
	margin-bottom:1.4rem;
	font-weight: bold;
}
.updatecontent{
	color: #6c757d;
	font-size: 15px;
	line-height: 1.4;
	margin-bottom:2px;
	
} 
 
.carousel-container {
	background-color: #FFDAB9;
	padding: 10px;
	position: relative;
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top:5px;margin-bottom:5px;border-radius:6px;
}
.carousel-inner {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin; /* For Firefox */
}
.carousel-inner::-webkit-scrollbar {
	height: 5px; /* For Chrome/Safari */
}
.carousel-inner::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 4px;
}
.card {
	background-color: white;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 20px;
	margin: 0 10px;
	text-align: center;
	flex: 0 0 calc(25% - 20px); /* Adjusts for 4 visible items per view, accounting for margins */
	scroll-snap-align: start;
	min-width: 200px; /* Ensures responsiveness */
}
.icon {
	margin-bottom: 4px;
}
.icon svg {
	width: 50px;
	height: 50px;
}
.title {
	font-size: 1.1em;
	margin: 5px 0;
	font-weight: bold;
}
.description {
	font-size: 0.8em;
	margin: 6px 0;
	color: #333;
}
.button {
	background-color: white;
	border: 1px solid #ddd;
	padding: 3px 6px;
	cursor: pointer;
	font-size: 0.9em;
	border-radius: 4px;
}
.button:hover {
	background-color: #f0f0f0;
}
.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 2em;
	color: #333;
	cursor: pointer;
	padding: 0 10px;
}
.left {
	left: 10px;
}
.right {
	right: 10px;
}



