body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}
.logo {
    width: 180px;
    max-width: 90%;
    display: block;
    margin: 0 auto 30px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0a0a0a, #111);
    color: white;
    text-align: center;
    padding: 80px 20px 100px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0E86FF;
    margin: 25px 0 15px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 22px;
    margin-bottom: 15px;
}

.promise {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 35px;
}

/* BUTTONS */
.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all .3s ease;
}

.primary {
    background: #0E86FF;
    color: white;
    box-shadow: 0 8px 25px rgba(14,134,255,.35);
}

.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(14,134,255,.55);
}

.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary:hover {
    background: white;
    color: #111;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* CARDS */
.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* DARK SECTION */
.dark {
    background: #f4f6f8;
}

/* CONTACT */
.contact {
    background: #0a0a0a;
    color: white;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    background: #111;
    color: white;
    font-size: 14px;
}

/* NAVIGATION */

.navbar {
    position: sticky;
    top: 0;
    background: rgba(17,17,17,0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.nav-logo {
    width: 180px;
}

.nav-logo img {
    height: 65px;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-phone {
    margin-left: auto;
    background: #0E86FF;
    color: white;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}
.nav-phone:hover{
    background:white;
    color:#0E86FF;
}

.badge {
    display: table;
    margin: 0 auto 35px;
    background: rgba(255,255,255,0.12);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
}

.hero-slogan{
    color:#0E86FF;
    font-size:36px;
    margin:20px 0;
}

.promise{
    font-size:22px;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}
.section-intro {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 18px;
    color: #555;
}

.card h3 {
    color: #0E86FF;
    margin-bottom: 12px;
}

.card p {
    font-size: 16px;
    color: #555;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:40px;
}

.gallery-item{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.gallery-item:hover{
    transform:translateY(-8px);
}

.placeholder{
    height:220px;
    background:#e9eef3;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:70px;
}

.gallery-item h3{
    padding:20px 20px 10px;
    color:#0E86FF;
}

.gallery-item p{
    padding:0 20px 25px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.placeholder {
    height: 220px;
    background: #e9eef3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px;
}

.gallery-item h3 {
    color: #0E86FF;
    margin: 20px 20px 10px;
}

.gallery-item p {
    margin: 0 20px 25px;
    color: #555;
}
.stats{
    display:flex;
    justify-content:center;
    gap:70px;
    flex-wrap:wrap;
    margin-top:40px;
}

.stats div{
    text-align:center;
}

.stats h2{
    color:#0E86FF;
    font-size:52px;
    margin-bottom:10px;
}

.stats p{
    font-size:18px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stats div {
    text-align: center;
}

.stats h2 {
    color: #0E86FF;
    font-size: 52px;
    margin-bottom: 10px;
}

.stats p {
    font-size: 18px;
}
.team{

    display:flex;

    align-items:center;

    gap:60px;

    max-width:1100px;

    margin:auto;

    flex-wrap:wrap;

}

.team-photo{

    flex:1;

    min-width:250px;

    height:320px;

    background:#e9eef3;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:120px;

}

.team-text{

    flex:2;

    min-width:320px;

    text-align:left;

}

.team-text p{

    font-size:18px;

    line-height:1.8;

}

.team-text h3{

    color:#0E86FF;

    margin-top:30px;

}

.quote-form {
    max-width: 650px;
    margin: 35px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.quote-form button {
    background: #0E86FF;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

.quote-form button:hover {
    background: white;
    color: #0E86FF;
}
.footer-content{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

    max-width:1200px;

    margin:auto;

    text-align:left;

}

.footer-content h3{

    color:#0E86FF;

}

.footer-content p{

    line-height:1.8;

}

footer hr{

    margin:40px auto 20px;

    opacity:.2;

}

.copyright{

    text-align:center;

    font-size:14px;

    opacity:.7;

}


@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-phone {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 60px 20px 80px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-slogan {
        font-size: 28px;
    }

    .promise {
        font-size: 18px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 90%;
        max-width: 320px;
        text-align: center;
    }

    .section {
        padding: 60px 20px;
    }

    .stats {
        gap: 35px;
    }

    .team {
        text-align: center;
        gap: 30px;
    }

    .team-text {
        text-align: center;
    }

}
.floating-quote {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #0E86FF;
    color: white;
    padding: 15px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 9999;
}

.floating-quote:hover {
    background: white;
    color: #0E86FF;
}