body {
    font-family: Arial;
    margin: 0;
}

/* NAVBAR */
.navbar {
    background: white;
    padding: 15px 40px;
    border-bottom: 1px solid #eee;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}


/* HERO */
.hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('/static/images/hero.jpg') center/cover no-repeat;
}

/* CALL TO ACTION */
 .cta-section{
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/static/images/interial-plastering.gif') center/cover no-repeat;
    min-height: 450px;
    padding: 80px 0 40px;
 }

 .cta-section h2,
 .cta-section p {
    margin-bottom: 0;
 }

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: #fff3cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 34px;
    color: #ffc107;
}

/* HERO */
.about-hero {
    background: #f8f8f8;
}

.section-subtitle {
    color: #f5a623;
    font-weight: 700;
    letter-spacing: 1px;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #f5a623;
}

.title-line-small {
    width: 60px;
    height: 3px;
    background: #f5a623;
}

/* INTRO TEXT */
.about-intro {
    max-width: 800px;
    margin: auto;
    color: #555;
}

/* LOGO */
.about-logo {
    max-width: 300px;
}

/* SERVICES */
.services-section {
    background: #f9f9f9;
}

.services-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);

    height: 100%;
}

.services-image {
    object-fit: cover;
    height: 100%;
    min-height: 100%;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: "•";
    color: #f5a623;
    position: absolute;
    left: 0;
}

/* TRUST */
.trust-box {
    padding: 30px;
    border-right: 1px solid #eee;
}

.trust-box h5 {
    margin-bottom: 15px;
}

/* CTA 
.cta-section {
    background: linear-gradient(
        135deg,
        #1c1c1c,
        #2f4f2f
    );
    border-radius: 14px;
    margin: 40px;
}*/

/* CONTACT */
.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.contact-info h2{
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-hero{
    min-height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url("/static/images/house-exterior-plastering.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.hero-badges {
    display: flex;
    gap:16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-badges span {
    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.18);

    color: #f5f5f5;

    padding: 10px 18px;

    border-radius: 999px;

    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;

    font-weight: 500;
}

@media (max-width: 768px) {

    .hero-badges {
        gap: 10px;
    }

    .hero-badges span {
        font-size: 12px;
        padding: 10px 14px;
    }

}
.submit-btn{
    background: #c49b63;
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.why-choose-us {
    padding: 100px 0;
    background: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.choose-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

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

.choose-card i {
    font-size: 52px;
    color: #c49b63;
    margin-bottom: 25px;
    display: inline-block;
}

.choose-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.choose-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

@media (max-width: 992px) {

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 34px;
    }

}

.contact-section {
    padding: 100px 40px;
    background: #f8f8f8;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.portfolio-section{
    padding: 100px 8%;
}

.section-pheader{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
}

.portfolio-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:30px
}

.project-card{
    flex: 1 1 300px;
    max-width: 320px;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgb (0,0,0,0.08);
    transition: 0.3s ease;
}

.project-card:hover{
    transform: translateY(-8px);
}

.project-card img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.project-content{
    padding: 25px;
}

.project-content h3{
    margin-bottom: 15px;
}

.project-content p{
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-btn{
    display: inline-block;
    padding: 12px 24px;
    background: #c19a6b;
    color: white;
    border-radius: 8px;
    text-decoration:  none;
}

.project-gallery{
    padding: 80px 8%;
}

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px), 1fr);
}

.gallery-grid img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-grid img:hover{
    transform: scale(1.02);
}

.project-hero {
    text-align: center;
    margin-bottom: 60px;
}

.project-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    margin-top: 20px;
}

.project-hero p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.navbar-log{
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo{
    width: auto;
}

.footer-section {
    margin-top: 0;
}

.footer-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-text {
    color: #d1d1d1;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d1d1;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ffc107;
    padding-left: 4px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.15);
    margin-top: 40px;
    margin-bottom: 25px;
}

.footer-bottom {
    color: #b5b5b5;
    font-size: 0.95rem;
}