* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header */
header {
    background: #fff;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    color: #e8841a;
    font-size: 1.5em;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}
.nav-links a:hover {
    color: #e8841a;
}
.burger {
    display: none;
    font-size: 1.5em;
    color: #333;
    cursor: pointer;
}

/* General Section Styles */
section {
    padding: 50px 20px;
}h3,
h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #e8841a;
}
p {
    font-size: 1em;
    color: #666;
}
.btn {
    padding: 10px 20px;
background: #e8841a;;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}
.btn:hover {
    color: #75430d;
}

/* Hero Section */
.hero {
    background: #fdefe3;
    text-align: left;
    width: 100%;
    padding: 100px 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}
.hero-image {
    flex: 1;
}
.hero-image img {
    width: 100%;
    max-width: 400px;
}
.hero-content {
    flex: 1;
}
.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #e8841a;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Services Section */
.services {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.services-grid {
    display: flex;
    align-items: center;
    gap: 30px;
}
.services-text {
    flex: 1;
    text-align: left;
}
.services-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.slides {
    display: flex;
    transition: transform 0.5s ease;
}
.slide {
    min-width: 100%;
    padding: 20px;
}
.slide img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    max-height: 400px;
    border-radius: 10px;
}
.slider-btn {
    position: absolute;
    top: 50%;
    display: none;
    transform: translateY(-50%);
  background-color: #e8841a;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.slider-dot.active {
    color: #e8841a;
}

/* Advantages Section */
.advantages {
   background-color:  #e8841a;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}
.advantages h2 {
    color: #fff;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.advantages-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.advantages-item i {
    font-size: 2em;
    margin-bottom: 10px;
}
.advantages-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #fff;
}

/* Process Section */
.process {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}
.process-image {
    flex: 1;
}
.process-image img {
    width: 100%;
    max-width: 400px;
}
.process-content {
    flex: 1;
}
.process-content h2 {
    margin-bottom: 20px;
}
.process-content ul {
    list-style: none;
}
.process-content ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.process-content ul li i {
    color: #e8a71a;
}

/* Testimonials Section */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.testimonials-grid {
    display: flex;
    align-items: center;
    gap: 30px;
}
.testimonials-text {
    flex: 1;
    text-align: left;
}
.testimonials-image {
    flex: 1;
}
.testimonials-image img {
    width: 100%;
    max-width: 400px;
}

/* Blog Section */
.blog {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.blog-item {
    background: #f9f9f9;
    border-radius: 10px;
    text-align: left;
}
.blog-item img {
    width: 100%;
    max-height: 300px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.blog-item p {
    padding: 20px;
}

/* CTA Section */
.cta {
    background: #fdf4e3;
    text-align: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.cta-image {
    flex: 1;
}
.cta-image img {
    width: 100%;
    max-width: 400px;
}
.cta-content {
    flex: 1;
}

/* Footer */
footer {
    background: #e8841a;;
    color: #666;
    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: #fffefe;
    margin: 0 5px;
    text-decoration: none;
}
.footer-grid a:hover {
    color: #0a0a0a;
}
.footer-grid h3 {
    margin-bottom: 10px;
    color: #ffffff;
}
.newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.newsletter input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.newsletter button {
    padding: 10px 20px;
    background: #111111;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
footer h3,
footer p, footer a{
    color:#fff;
}
footer a:hover{
    color:#000;
}
/* Responsive */
@media (max-width: 768px) {
    .services-slider {
        flex: 1;
        position: relative;
        overflow: hidden;
        /* width: max-content; */
        max-width: 350px;
        margin: 0 auto;
        /* width: inherit; */
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .burger {
        display: block;
    }
    .hero, .services-grid, .process, .testimonials-grid, .cta {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
form#frm {
    display: flex
;
    gap: 10px;
    flex-direction: column;
}
textarea,
input{
    padding: 10px;
    border: 3px solid #d98319;
    border-radius: 10px;
}
textarea{
    height: 200px;
}