/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #666;
    line-height: 1.6;
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    height: 48px;
}

.nav-links {
    display: flex;
	align-items: center;
}
ul{
	list-style: none;
}

.nav-links li {
    margin: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

.nav-button a {
    display: inline-block;
    /* background-color: #007bff; */
    /* color: white; */
    padding: 0.7rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.nav-button a:hover {
    background-color: #007bff;
	color: #fff;
	font-weight: bold;
	margin: 0 -0.15em;
}

/* Hero Section Styles */
.hero {
    text-align: center;
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #555;
}

/* CTA Button Styles */
.cta-button a {
	display: inline-flex;
	align-items: center;
	background-color: #007bff;
	color: white;
	padding: 1rem 2rem;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s;
}

.cta-button a:hover {
    background-color: #0056b3;
}
.cta-button a i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Section Styles */
.section {
    padding: 4rem 5%;
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
}

/* Features Section Styles */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Why Choose Us Section Styles */
.why-us-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-us-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.why-us-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Privacy Section Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content p {
    margin-bottom: 1;
rem}

.privacy-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}
.fas{
	color: red;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

.mailto {
	color: #fff;
	text-decoration: none;
}
.mailto:hover {
	color: #ddd;
	cursor: pointer;
}

#why-us{
	background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}
.section img{
	width:100%;
	margin-bottom: 1em;
}

.slideshow-container {
	position: relative;
	margin: auto;
	padding: 2em 0em;
	background: black;
}

.mySlides {
	display: none;
}

.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

.bg-back{
	background: black;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
	
	.hero{
		padding:2em;
	}
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
	
	.slideshow-container {
		padding: 1em 0em;
	}
	
	.section {
	    padding: 2rem 2%;
	}
}
