﻿
:root {
    --primary-color: #00a8ff;
    --secondary-color: #0097e6;
    --dark-color: #2f3640;
    --light-color: #f5f6fa;
}

body {
    font-family: 'Vazir', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/pool in zibakenar.jpg');

    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    color: var(--dark-color);
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        right: 0;
        width: 80px;
        height: 3px;
        background: var(--primary-color);
    }

.portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

    .portfolio-item img {
        transition: transform 0.5s;
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .portfolio-item:hover img {
        transform: scale(1.1);
    }

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 168, 255, 0.8);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.consultation-btn {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 10px;
    border-radius: 0 5px 5px 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-decoration: none;
}

    .consultation-btn:hover {
        background: var(--secondary-color);
        padding-left: 15px;
        color: white;
    }

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

.info-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-right: 3px solid var(--primary-color);
}

.price-table th {
    background-color: var(--primary-color);
    color: white;
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 20px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration:none;
}

    .whatsapp-float:hover {
        background: #128C7E;
        transform: scale(1.1);
    }

.intro-text {
    line-height: 2;
    font-size: 1.1rem;
}

.form-label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #8d8484;
}

.required-field::after {
    content: " *";
    color: red;
}

.textp {
    text-align: justify;
}

strong {
    color: #00a8ff;
}


.btn-more{
    text-align:center;
}