* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
body {
    line-height: 1.6;
    color: #333;
}
a{
    text-decoration: none;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
}
/* Header */
header {
    background: #2c3e50;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.nav-links a:hover {
    color: #3498db;
}
.burger {
    display: none;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.hero {
  
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.8);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}
.btn {
    padding: 10px 20px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.btn:hover {
    background: #2980b9;
}

/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
    background: #fff;
}
.services h2 {
    font-size: 2em;
    margin-bottom: 30px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-item {
    padding: 20px;
    background: #ecf0f1;
    border-radius: 5px;
}
.service-item i {
    font-size: 2em;
    color: #3498db;
    margin-bottom: 10px;
}

/* Features Section */
.features {
    padding: 50px 20px;
    background: #2c3e50;
    color: #fff;
    text-align: center;
}
.features h2 {
    font-size: 2em;
    margin-bottom: 30px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-item {
    padding: 20px;
}

/* How It Works Section */
.how-it-works {
    padding: 50px 20px;
    text-align: center;
}
.how-it-works h2 {
    font-size: 2em;
    margin-bottom: 30px;
}
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.step {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 5px;
}

/* Reviews Section */
.reviews {
    padding: 50px 20px;
    text-align: center;
}
.reviews h2 {
    font-size: 2em;
    margin-bottom: 30px;
}
.slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.slides {
    display: flex;
    transition: transform 0.5s ease;
}
.slide {
    min-width: 100%;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 5px;
}
.slide p {
    font-style: italic;
}
.slide .rating {
    color: #f1c40f;
    margin: 10px 0;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #3498db;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}

/* Blog Section */
.blog {
    padding: 50px 20px;
    text-align: center;
}
.blog h2 {
    font-size: 2em;
    margin-bottom: 30px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-post {
    padding: 20px;
    background: #ecf0f1;
    border-radius: 5px;
}
.blog-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

/* FAQ Section */
.faq {
    padding: 50px 20px;
    text-align: center;
}
.faq h2 {
    font-size: 2em;
    margin-bottom: 30px;
}
.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: left;
}
.faq-item summary {
    cursor: pointer;
    font-weight: bold;
    padding: 10px;
    background: #ecf0f1;
    border-radius: 5px;
}

/* CTA Section */
.cta {
    padding: 50px 20px;
  
    color: #fff;
    text-align: center;
    position: relative;
}
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.8);
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #283b48;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 20px;
}
.footer-grid a {
    color: #fff;
    text-decoration: none;
}
.footer-grid a:hover {
    text-decoration: underline;
}
.newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px;
}
button{
    cursor: pointer;
}
.newsletter button {
    padding: 10px 20px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #2c3e50;
        padding: 20px;
    }
    .nav-links.active {
        display: flex;
    }
    .burger {
        display: block;
    }
    .hero h1 {
        font-size: 1.8em;
    }
    .hero p {
        font-size: 1em;
    }
    .steps {
        flex-direction: column;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: #2c3e50;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.nav-links a:hover {
    color: #3498db;
}
.burger {
    display: none;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
}

/* General Section Styles */
section {
    padding: 50px 20px;
    text-align: center;
}
h2 {
    font-size: 2em;
    margin-bottom: 30px;
}
.btn {
    padding: 10px 20px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.btn:hover {
    background: #2980b9;
}

/* Footer */
footer {
    background: #283b48;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 20px;
}
.footer-grid a {
    color: #fff;
    text-decoration: none;
}
.footer-grid a:hover {
    text-decoration: underline;
}
.newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px;
}
.newsletter button {
    padding: 10px 20px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #2c3e50;
        padding: 20px;
    }
    .nav-links.active {
        display: flex;
    }
    .burger {
        display: block;
    }
}

.about-hero {
  
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.8);
}
.about-hero h1 {
    position: relative;
    z-index: 1;
    font-size: 2.5em;
}
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.team-member {
    padding: 20px;
    background: #ecf0f1;
    border-radius: 5px;
    text-align: center;
}
.team-member img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}
.services-hero {
   
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}
.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.8);
}
.services-hero h1 {
    position: relative;
    z-index: 1;
    font-size: 2.5em;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-item {
    padding: 20px;
    background: #ecf0f1;
    border-radius: 5px;
    text-align: center;
}
.service-item i {
    font-size: 2em;
    color: #3498db;
    margin-bottom: 10px;
}
.contact-hero {

    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.8);
}
.contact-hero h1 {
    position: relative;
    z-index: 1;
    font-size: 2.5em;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-info, .contact-form {
    padding: 20px;
    background: #ecf0f1;
    border-radius: 5px;
}
.contact-info p {
    margin-bottom: 10px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.contact-form textarea {
    height: 150px;
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}