/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 40px;
}
.logo h4{
    text-decoration: none;
    list-style: none;
    font-weight: 700;
    font-size: 16px;
    color: #ff3333;
}
.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin-left: 20px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: #ff3333;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #d60c0c;
    margin: 2px 0;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 50px;
    margin-top: 70px;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #ff3333;
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
}

/* About Section */
.about {
    padding: 50px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image {
    width: 40%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text {
    width: 60%;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text h2 span {
    color: #ff3333;
}

.about-text p {
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-box {
    background-color: #333;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    flex: 1;
}

.stat-box h3 {
    font-size: 1.5rem;
    color: #ff3333;
}

.stat-box p {
    font-size: 1rem;
}

 .btn {
    background-color: #ff3333;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 25px;
}

/* Services Section */
.services {
    padding: 50px 0;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ff3333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-box {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff3333;
}
.contact {
    padding: 100px 50px;
}
.service-box p {
    padding-bottom: 10px;
}
.contact-content {
    display: flex
;
    gap: 20px;
    justify-content: space-between;
}
.contact h2{
    margin-bottom: 35px;
    font-size: 32px;
}
.service-box .price {
    font-weight: bold;
    color: #ff3333;
    padding-bottom: 30px;
}
.contact-info,
.contact-form {
    max-width: 500px;
}
.contact-info p{
    font-size: 20px;
}
/* Pricing Section */
.pricing {
    padding: 50px 0;
}

.pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.pricing h2 span {
    color: #ff3333;
}

.pricing-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.pricing-text {
    width: 50%;
}

.pricing-text ul {
    list-style: none;
}

.pricing-text ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
}

.pricing-text ul li span {
    color: #ff3333;
}

.pricing-image {
    width: 50%;
}

.pricing-image img {
    width: 100%;
    border-radius: 10px;
}

/* Team Section */
.team {
    padding: 50px 0;
}

.team h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.team h2 span {
    color: #ff3333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    max-height: 190px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Working Hours Section */
.working-hours {
    padding: 50px 0;
}

.working-hours h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.working-hours h2 span {
    color: #ff3333;
}

.working-hours-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.working-hours-image {
    width: 50%;
}

.working-hours-image img {
    width: 100%;
    border-radius: 10px;
}

.working-hours-text {
    width: 50%;
}

.working-hours-text ul {
    list-style: none;
}

.working-hours-text ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
}

.working-hours-text ul li span {
    color: #ff3333;
}

/* Testimonials Section with Slider */
.testimonials {
    padding: 50px 0;
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials h2 span {
    color: #ff3333;
}

.slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.slide p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.client-info img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
}

.client-info h4 {
    font-size: 1.2rem;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ff3333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.2rem;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff3333;
}

.footer-column p,
.footer-column a {
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
}

.social-icons a {
    margin-right: 10px;
}

.social-icons img {
    height: 20px;
}

.footer-column input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.footer-column .btn {
    background-color: #ff3333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    text-align: center;
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}
.nav-menu {
    display: none;
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    padding: 20px;
}

.nav-menu.active {
    display: block;
}

.nav-menu ul {
    flex-direction: column;
    align-items: center;
}

.nav-menu ul li {
    margin: 10px 0;
}

.burger {
    display: flex;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        padding: 20px;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu ul li {
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-content,
    .services-grid,
    .pricing-content,
    .team-grid,
    .working-hours-content,
    .footer-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .about-image,
    .about-text,
    .pricing-text,
    .pricing-image,
    .working-hours-text,
    .working-hours-image {
        width: 100%;
    }
}
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) {
    .contact-content {
        flex-direction: column;
    }
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
.tyty p, .tyty h2,.tyty h3, .tyty h4{
    text-align: start;
    margin-bottom: 20px;
}