* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    flex: 1;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgb(0 0 0 / 64%)), url(../img/3.webp) no-repeat center center / cover;
    padding: 80px 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
}

.small-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #f1f1f1;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .desc {
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.btn {
    display: block;
    text-align: center;
    padding: 20px 80px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn.green {
    background: #008000;
}

.btn.blue {
    background: #0000ff;
}

.btn:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 20px;
        text-align: center;
    }

    .hero-buttons {
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-image {
        display: none;
    }
}




.services-section {
    padding: 80px 0;
}

.services-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.service-box {
    flex: 1 1 300px;
    max-width: 360px;
    text-align: center;
    padding: 10px;
}

.service-box .icon {
    margin-bottom: 20px;
}

.service-box .icon img {
    width: 70px;
    height: auto;
    opacity: 0.7;
    transition: 0.3s;
}

.service-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a2342;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.service-box:hover .icon img {
    transform: scale(1.1);
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .services-section .container {
        flex-direction: column;
        align-items: center;
    }
}







.about-section {
    padding: 80px 5%;
    background-color: #fffbea;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.about-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    flex: 1 1 400px;
}

.about-images img {
    width: 260px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.about-images img:hover {
    transform: scale(1.03);
}

.about-content {
    flex: 1 1 450px;
    max-width: 700px;
}

.about-content .subtitle {
    color: #c9a800;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.about-content h2 {
    font-size: 32px;
    color: #0a2342;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.call-btn {
    display: inline-block;
    background-color: #283593;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background-color: #1a237e;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
    }

    .about-images img {
        width: 100%;
    }
}




.services-section {
    background-color: #fff;
    padding: 80px 7%;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.subtitle {
    color: #c9a800;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.title {
    color: #0a2342;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro {
    color: #555;
    font-size: 16px;
    max-width: 100%;
    line-height: 1.8;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px 50px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-item .icon {
    background-color: #0a2342;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 4px;
}

.service-item h4 {
    font-size: 18px;
    color: #0a2342;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}



.testimonials-section {
    background-color: #f9f9f9;
    padding: 80px 7%;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.testimonials-section .subtitle {
    color: #c9a800;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.testimonials-section .title {
    color: #0a2342;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    margin-bottom: 10px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-card .message {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .name {
    color: #0a2342;
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 17px;
}

.testimonial-card .location {
    color: #c9a800;
    font-size: 14px;
    font-weight: 500;
}




.footer-section {
    background-color: #fff;
    padding: 80px 0 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.footer-title {
    font-size: 28px;
    font-weight: 700;
    color: #0a2342;
    margin-bottom: 15px;
}

.footer-desc {
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.footer-address {
    font-size: 14.5px;
    color: #444;
    margin-bottom: 25px;
}

.footer-phone {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #2948ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-phone:hover {
    color: #c9a800;
}

.footer-bottom {
    background: linear-gradient(90deg, #c9a800, #d4af37);
    color: #fff;
    padding: 15px 0;
    margin-top: 50px;
    font-size: 14px;
}

.footer-bottom span {
    font-weight: 600;
}

.footer-bottom div p {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .footer-title {
        font-size: 24px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .footer-phone {
        font-size: 20px;
    }
}


.float-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-whatsapp img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.float-whatsapp:hover {
  transform: scale(1.1);
  background-color: #20b957;
}
