@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans+Thai:wght@100..800&family=Playwrite+HU:wght@100..400&family=Viga&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;

    /* GIF background */
    background-image: url("images/bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    font-family: Arial, sans-serif;
}

.bg-danger {
    background-color: #ff0000 !important;
}
.text-danger{
    color: #f00 !important;
}

/* center content */
.content-box {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* dark overlay effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.zoom {
    color: #fc0;
    animation: zoom-in 1s ease-in-out infinite;
}

@keyframes zoom-in {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(0.9, 0.9);
        color: #fff;
    }

    100% {
        transform: scale(1, 1);
    }
}


/* section spacing */

.services-section {
    padding: 40px 0;
}

/* title */

.section-title {
    text-align: center;
    color: #fc0;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.title-line {
    text-align: center;
    margin-bottom: 25px;
}

.title-line span {
    display: inline-block;
    width: 120px;
    height: 6px;
    background: #f5b400;
    border-radius: 5px;
}

/* card */

.service-card {
    background: transparent;
    box-shadow: 0 0px 15px 0px rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    border: 1px solid #ffffff60;
    border-radius: 4px 4px 20px 20px;
    background-color: #00000030;
}

.service-card img {
    width: 100%;
}

/* yellow title */

.service-title {
    background: #f5a000;
    color: black;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    font-size: 22px;
    font-family: "Viga", sans-serif;
}

/* content */

.service-content {
    padding: 18px;
    text-align: center;
}

.service-content p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    text-align: start;
}

/* button */

.chat-btn {
    display: inline-block;
    background: #f5a000;
    color: black;
    padding: 8px 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    border-radius: 40px;
}

.chat-btn:hover {
    background: #fff;
}

/* hover */

.service-card:hover {
    transform: translateY(-10px);
}

/* responsive */

@media(max-width:768px) {

    .section-title {
        font-size: 28px;
    }

    .service-card img {
        height: 100%;
    }

}

.why-section {
    padding: 30px 0;
    background: #f2f2f200;
    overflow: hidden;
}

/* title */

.section-title {
    text-align: center;
    font-size: 48px;
    color: #fc0;
    font-weight: 700;
    margin-bottom: 20px;
}

/* card */

.why-card {

    background: #16161680;

    color: white;

    padding: 60px 30px 40px;

    border-radius: 25px;

    text-align: center;

    position: relative;

    transition: .3s;
    width: 100%;
    border: 1px solid #ffffff60;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
}

/* icon circle */

.icon-box {

    width: 90px;
    height: 90px;

    background: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;

    top: -40px;
    left: 50%;

    transform: translateX(-50%);

    font-size: 30px;
    color: #5b0007;
    border: 6px solid #f2f2f2;
}

/* heading */

.why-card h4 {

    margin-top: 20px;

    color: #ffcc00;

    font-weight: 700;
}

/* paragraph */

.why-card p {

    font-size: 15px;

    margin-top: 10px;

    line-height: 1.6;
}

/* hover */

.why-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* responsive */

@media(max-width:768px) {

    .section-title {
        font-size: 32px;
    }

    .why-card {
        margin-top: 50px;
    }

    .icon-box {
        width: 70px;
        height: 70px;
        font-size: 24px;
        top: -35px;
    }

}


.problem-section {
    padding: 30px 0;
}

/* main box */

.problem-box {
    background: #6b0f2a;
    color: #fff;
    padding: 6px 40px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: start;
    border: 1px solid #ffc107;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

/* gold glow hover */

.problem-box:hover {

    background: #ffc107;

    color: #000;

    box-shadow: 0 0 20px #ffc107;

    transform: translateY(-5px);

}

/* slide animation */

.left {

    animation: slideLeft 1s ease forwards;

}

.right {

    animation: slideRight 1s ease forwards;

}

/* animation keyframes */

@keyframes slideLeft {

    0% {
        opacity: 0;
        transform: translateX(-80px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes slideRight {

    0% {
        opacity: 0;
        transform: translateX(80px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }

}

/* responsive */

@media(max-width:768px) {

    .problem-box {

        font-size: 16px;

        padding: 15px 20px;

    }

}

.testimonial-section {
    padding: 30px 0;
    background: transparent;
}

/* titles */

.small-title {
    color: #ffc107;
    font-weight: 600;
}

.main-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

/* card */

.testimonial-card {

    background: #ffffff15;

    border: 1px solid #ffffff30;

    backdrop-filter: blur(10px);

    border-radius: 25px;

    padding: 30px;

    text-align: center;

    color: #fff;

    transition: .4s;

}

/* hover glow */

.testimonial-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 0 20px #ffc107;

}

/* profile */

.profile-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffc107;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
    border: 1px solid #fc0;
    padding: 2px;
}

/* text */

.review-text {

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 15px;

}

/* user */

.user-name {

    font-weight: 700;
    color: #fc0;
    margin-bottom: 3px;

}

.user-location {

    color: #ff5c5c;

    font-size: 15px;

}

/* stars */

.stars {

    color: #ffc107;

    margin-top: 8px;

    font-size: 18px;

}

/* responsive */

@media(max-width:768px) {

    .main-title {
        font-size: 30px;
    }

    .testimonial-card {
        padding: 25px;
    }

}


.best-services{
padding: 30px 0;
background:transparent;
color:white;
}

/* heading */

.section-header h2{
font-size:40px;
font-weight:700;
margin-bottom:10px;
}

.section-header p{
color:#ccc;
}

.line{
width:80px;
height:3px;
background:#ff7b00;
margin:10px auto 20px;
}

/* card */

.service-card1{

background:#111;

border-radius:20px;

padding:25px;

text-align:center;

border:1px solid #444;

transition:0.4s;

height:100%;
}

/* hover */

.service-card1:hover{

transform:translateY(-10px);

box-shadow:0 0 20px rgba(255,140,0,0.6);

}

/* image */

.service-img{

border:3px solid #ff7b00;

border-radius:15px;

padding:5px;

margin-bottom:20px;

}

.service-img img{

width:100%;

border-radius:10px;

display:block;

}

/* title */

.service-card1 h4{

color:#ff7b00;

margin-bottom:10px;

}

/* text */

.service-card1 p{
font-size: 16px;
color:#ccc;
margin-bottom:20px;
padding: 8px 0;

}

/* button */

.chat-btn1{

display:inline-block;

padding:8px 20px;

border:2px solid #ff7b00;

color:#ff7b00;

border-radius:30px;

text-decoration:none;

transition:0.3s;

}

.chat-btn1:hover{

background:#ff7b00;

color:black;

}

/* responsive */

@media(max-width:768px){

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

}