/* General Styles */
/* Body Genaral Css */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	background-color: f2f1ef;
}

/* Body Genaral Css End*/


/* Topbar Design */
.top-bar {
	background: #000;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 1rem;
}

.contact-info {
	display: flex;
	align-items: center;
}

.contact-item {
	align-items: center;
	margin-right: 1rem;
}

.contact-item img {
	width: 20px;
	height: 20px;
	margin-right: 0.5rem;
}

.additional-links a {
	color: #fff;
	text-decoration: none;
	margin-left: 1rem;
	border-right: 1px solid #fff;
	padding-right: 1rem;
}

.additional-links a:last-child {
	border-right: none;
	padding-right: 0;
}

.additional-links a:hover {
	text-decoration: underline;
}

/* Topbar Design */


/* navigation bar */
.navbar {
	background: #f4f4f4;
	padding: 1rem 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar .logo img {
	padding-left: 15px;
	height: 50px;
}

.navbar .nav-links {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

.navbar .nav-links li {
	margin: 0 1rem;
}

.navbar .nav-links li a {
	color: #000;
	text-decoration: none;
	font-weight: bold;
}

.navbar .nav-links li a:hover {
	text-decoration: underline;
}

.pay-bill {
	margin-right: 15px;
}

.navbar .pay-bill {
	border-radius: 8px;
	background: red;
	color: #fff;
	padding: 0.5rem 1rem;
	text-decoration: none;
	font-weight: bold;
	border: none;
	cursor: pointer;
}

.navbar .pay-bill:hover {
	background: darkred;
}

@media screen and (min-width:953px) {
	.topnav-mobile {
		display: none;
	}
}

/* navigation bar End */


/* Slider Styles */
.slider {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.slides {
	display: flex;
	width: 300%;
	animation: slide 12s infinite;
}

.slide {
	width: 100%;
	transition: transform 1s;
}

.slide img {
	width: 100%;
	height: auto;
}

@keyframes slide {

	0%,
	33.33% {
		transform: translateX(0%);
	}

	33.34%,
	66.66% {
		transform: translateX(-100%);
	}

	66.67%,
	100% {
		transform: translateX(-200%);
	}
}

/* Pricing Table Styles */
.pricing-table {
	Width:90%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem 1rem;
	background: #f9f9f9;
}

.pricing-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	margin: 0 1rem;
	overflow: hidden;
	width: 300px;
	text-align: center;
}

.card-header {
	background: #ff3c00;
	color: #fff;
	padding: 1rem;
	position: relative;
}

.card-header .badge {
	background: #8fef06;
	color: #d2386c;
	font-size: 0.8rem;
	font-weight: bold;
	padding: 0.2rem 0.5rem;
	position: absolute;
	top: 10px;
	right: 10px;
	border-radius: 5px;
}

.card-header .badge.popular {
	background: #1abc9c;
	color: #fff;
}

.card-price {
	background: #f4f4f4;
	padding: 1rem;
}

.card-price h2 {
	margin: 0;
	color: #d2386c;
}

.card-price span {
	font-size: 0.8rem;
	color: #888;
}

.card-features {
	padding: 1rem;
	text-align: left;
}

.card-features p {
	margin: 0.5rem 0;
	display: flex;
	align-items: center;
}

.card-features p::before {
	content: '✔';
	color: #1abc9c;
	margin-right: 0.5rem;
}

.card-features p:nth-last-child(2)::before {
	content: '✔';
	color: #1abc9c;
	margin-right: 0.5rem;
	/*  color: #e74c3c; */
}

.card-action {
	padding: 1rem;
}

.card-action .btn {
	background: #d2386c;
	color: #fff;
	padding: 0.5rem 1rem;
	text-decoration: none;
	font-weight: bold;
	border: none;
	cursor: pointer;
}

.card-action .btn:hover {
	background: #a52652;
}

/* Slideshow container */
.slideshow-container {
	max-width: 100%;
	height: 400px;
	/* Set the height to 500px */
	object-fit: cover;
	/* Maintain aspect ratio and cover the entire container */
	position: relative;
	margin: auto;
}

/* Next & previous buttons */
.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active,
.dot:hover {
	background-color: #717171;
}

/* Fading animation */
.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {
		opacity: .4
	}

	to {
		opacity: 1
	}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

	.prev,
	.next,
	.text {
		font-size: 11px
	}
}


/* More Packages Styles */
.more-packages {
	text-align: center;
	padding: 2rem 0;
}

.more-packages .btn {
	background: #ed430f;
	color: #fff;
	padding: 0.5rem 1rem;
	text-decoration: none;
	font-weight: bold;
	border: none;
	cursor: pointer;
	display: inline-block;
}

.more-packages .btn:hover {
	background: #a52652;
}


/* scction 2 Reliable Connection */

.features-section {
	display: flex;
	justify-content: space-around;
	background-color: #eecece;
	padding: 2rem 0;
	text-align: center;
}

.feature {
	max-width: 200px;
}

.feature img {
	width: 50px;
	height: 50px;
}

.feature h3 {
	color: #333;
	font-size: 1.2rem;
	margin: 1rem 0 0.5rem;
}

.feature p {
	color: #666;
	font-size: 0.9rem;
	line-height: 1.5;
}

/* home page about section */
.about-section {
	display: flex;
	align-items: center;
	padding: 50px;
	background-color: #f9f9f9;
}

.about-image {
	flex: 1;
	margin-right: 20px;
}

.about-image img {
	width: 100%;
	border-radius: 10px;
}

.about-description {
	flex: 2;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-description h2 {
	margin-top: 0;
	color: #333;
}

.about-description p {
	line-height: 1.6;
	color: #555;
}


/* user review section */
.reviews-section {
	padding: 50px;
	background-color: #fcac77;
}

.reviews-title {
	text-align: center;
	margin-bottom: 40px;
	color: #333;
}

.reviews-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.review-card {
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	width: calc(33% - 40px);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.review-card img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}

.review-rating {
	margin: 10px 0;
}

.review-rating span {
	color: gold;
}

.review-comment {
	color: #555;
	text-align: center;
	margin: 10px 0;
}

.review-user {
	font-weight: bold;
	color: #333;
}

.read-more {
	color: #007BFF;
	cursor: pointer;
	text-decoration: none;
}


/* Our Proud Customers */

.slider-container {
	width: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	background-color: #fff;
	position: relative;
}

.slider-container .slider {
	display: flex;

}

.slider-container .slider img {
	width: 80px;
	height: 80px;
	margin: 0 10px;
	border-radius: 10px;
	object-fit: cover;

}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

/* our upstreems */

.upstreams-section {
	background-color: #fcac77;
	padding: 50px;
	text-align: center;
}

.upstreams-title {
	margin-bottom: 40px;
	color: #333;
	font-size: 24px;
	font-weight: bold;
}

.upstreams-container {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 20px;
	flex-direction: row;
	align-items: stretch;
}

.upstream-box {
	width: calc(16.66% - 20px);
	/* Adjust the width for 6 columns */
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
}

.upstream-box img {
	width: 95%;
	height: 44px;
	/* Adjust height as needed */
	object-fit: cover;
	border-radius: 5px;
}


/* teams mambers */
.team-section {
	padding: 50px;
	background-color: #fff;
	text-align: center;
}

.team-title {
	margin-bottom: 40px;
	color: #333;
	font-size: 24px;
	font-weight: bold;
}

.team-container {

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.team-member {
	width: calc(33.33% - 40px);
	/* Adjust the width for 3 columns */
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
}

.team-member img {
	width: 100%;
	height: 300px;
	/* Adjust height as needed */
	object-fit: cover;
	border-radius: 10px;
}

.team-member h3 {
	margin: 15px 0 5px 0;
	color: #333;
}

.team-member p {
	margin: 5px 0;
	color: #666;
}

.team-member .mobile {
	color: #007BFF;
	margin-bottom: 10px;
}

.team-member .read-more {
	color: #007BFF;
	text-decoration: none;
	font-weight: bold;
}


/* Contact Option Home Page */
.contact-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	padding: 50px;
	background-color: #fff;
	height: 100vh;
}

.contact-form,
.map-container {
	flex: 1;
	min-width: 45%;
	margin: 10px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	box-sizing: border-box;
}

.contact-form {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-form h2 {
	margin-bottom: 20px;
	color: #333;
}

.contact-form label {
	display: block;
	margin-bottom: 8px;
	color: #555;
}

.contact-form input,
.contact-form textarea {
	width: 95%;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.contact-form textarea {
	resize: vertical;
	height: 150px;
}

.contact-form button {
	padding: 10px 20px;
	background-color: #007BFF;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.contact-form button:hover {
	background-color: #0056b3;
}

.map-container {
	height: calc(720px - 20px);
	/* Ensures the height is same as form */
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 10px;
}


/* pop location */


.pops-section {
	padding: 50px;
	background-color: #fff;
	text-align: center;
}

.pops-title {
	margin-bottom: 40px;
	color: #333;
	font-size: 24px;
	font-weight: bold;
}

.pops-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.pop {
	width: calc(33.33% - 20px);
	/* Adjust the width for 3 columns */
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	box-sizing: border-box;
}

.pop h3 {
	margin-bottom: 20px;
	color: #333;
}

.map-container {
	width: 100%;
	height: 200px;
	/* Adjust height as needed */
	border-radius: 10px;
	overflow: hidden;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 768px) {
	.pop {
		width: calc(50% - 20px);
		/* Adjust the width for 2 columns on smaller screens */
	}
}

@media (max-width: 480px) {
	.pop {
		width: calc(100% - 20px);
		/* Adjust the width for 1 column on very small screens */
	}
}


/* footer */
.footer {
	background-color: #000;
	color: #fff;
	padding: 50px 20px;
	text-align: left;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.footer-column {
	flex: 1;
	min-width: 200px;
}

.footer-column img {
	max-width: 100px;
	margin-bottom: 10px;
}

.footer-column h3 {
	margin-bottom: 20px;
	color: #fff;
}

.footer-column p,
.footer-column ul,
.footer-column li,
.footer-column a {
	color: #ccc;
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
}

.footer-column ul {
	padding-left: 0;
}

.footer-column li {
	margin-bottom: 10px;
}

.footer-column a:hover {
	color: #fff;
}

.social-icons {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.social-icons a {
	display: inline-block;
	color: #ccc;
	font-size: 20px;
	text-decoration: none;
}

.social-icons a:hover {
	color: #fff;
}

.copyright {
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 10px 0;
}

@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: flex-start;
	}
}

.copyright p span a {
	color: red;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

.copyright p span a:hover,
a:active {
	color: white;
}
.terms{
	width: 95%;
	margin: 0 auto;
}