.btn-3d {
    background: #f9b233;          /* Construction yellow */
    color: #000;
    padding: 14px 28px;
    font-size: 18px;
    border-radius: 6px;
    border: none;
    box-shadow: 0 6px 0 #c98c1a;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-contact {
    background: #2ECC71;
    color: white;
    padding: 10px 22px;
    border-radius: 6px;
    box-shadow: 0 5px 0 #239B56;
    transition: 0.2s;
    text-decoration: none;
}

.btn-contact:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #239B56;
}

.btn-contact:active {
    transform: translateY(5px);
    box-shadow: 0 0 0 #239B56;
}
.btn-contact {
    background: #2ECC71;
    color: white;
    padding: 10px 22px;
    border-radius: 6px;
    box-shadow: 0 5px 0 #239B56;
    transition: 0.2s;
    text-decoration: none;
}

.btn-contact:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #239B56;
}

.btn-contact:active {
    transform: translateY(5px);
    box-shadow: 0 0 0 #239B56;
}


.btn-3d:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #c98c1a;
}

.btn-3d:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #c98c1a;
}


.btn-glass {
    background: linear-gradient(145deg, #1e88e5, #1565c0);
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    /* box-shadow: 5px 5px 12px rgba(0,0,0,0.3),
                -5px -5px 12px rgba(0,0,0,0.3); */
    transition: 0.3s;
    text-decoration: none;
}

.btn-glass:hover {
    box-shadow: inset 5px 5px 12px rgba(0,0,0,0.3),
                inset -5px -5px 12px rgba(255,255,255,0.1);
}


.btn-float {
    background: #25D366;
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37,211,102,0.6);
    transition: transform 0.3s;
    text-decoration: none;
}

.btn-float:hover {
    transform: translateY(-5px);
}
        body {
            font-family: Arial, sans-serif;
        }
        .section-padding {
            padding: 60px 0;
        }
        .angel-logo {
    height: 28px !important;
    width: auto;
}

@media (max-width: 768px) {
    .angel-logo {
        height: 22px;
    }
}

.hero-slide {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Desktop hero height */
.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

/* Mobile hero height FIX */
@media (max-width: 768px) {
  .hero-slide {
    height: 50vh;          /* reduce height */
    min-height: 420px;     /* safe minimum */
    background-position: center top;
  }
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 26px;
  }

  .hero-overlay p {
    font-size: 14px;
  }

  .hero-overlay .btn {
    padding: 10px 22px;
  }
}



.section-padding {
    padding: 80px 0;
}

/* Project Card */
.project-card {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

/* Project Image */
.project-img {
    height: 280px;
    object-fit: cover;
}

/* Title */
.project-card h5 {
    font-weight: 600;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .project-img {
        height: 220px;
    }
}

.project-info li {
    font-size: 15px;
    margin-bottom: 4px;
    color: #555;
}


.page-header {
    padding: 120px 0 60px;
    background: #f8f9fa;
}

.section-padding {
    padding: 80px 0;
}

.about-box {
    background: #fff;
    padding: 30px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-box h3 {
    font-weight: 700;
    color: #2ecc71;
}


