@charset "utf-8";
@import"./common.css";


.service-hero {
    position: relative;
    height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.hero-overlay {
    text-align: center;
    background: rgba(0, 0, 0, 0.65); 
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-overlay h1 {
    font-family: 'Playfair Display';
    font-size: 4.5rem;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 2rem;
    color: #ebe4e4;
    letter-spacing: 2px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.service-detail-container {
    padding: 100px 5%;
    background: transparent;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.detail-row:nth-child(even) {
    flex-direction: row-reverse;
}

.detail-img {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.detail-img img {
    width: 100%;
    height: 500px; 
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.detail-img:hover img {
    transform: scale(1.05);
}

.detail-text {
    flex: 1;
    color: #fff;
}

.detail-text h2 {
    font-family: 'Playfair Display';
    font-size: 3.2rem;
    font-style: italic;
    margin-bottom: 25px;
    border-bottom: 2px solid #5c4c6e;
    padding-bottom: 10px;
    display: inline-block;
}

.detail-text p {
    font-size: 1.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #fff;
}

.detail-text ul {
    list-style: none;
    padding: 0;
}

.detail-text ul li {
    font-size: 1.7rem;
    margin-bottom: 14px;
    padding-left: 35px;
    position: relative;
}

.detail-text ul li::before {
    content: "✦"; /* Adds a decorative star symbol as a custom bullet point */
    position: absolute;
    left: 0;
    color:#5c4c6e;
}

.more-services {
    padding: 100px 5%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    border-radius: 5px;
}

.section-header h2 {
    font-family: 'Playfair Display';
    font-style: italic;
    font-size: 3.5rem;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
}

.section-header {
    font-size: 1.8rem;
}

.services-list-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.list-item {
    flex: 1 1 300px; /* Bases size at 300px but allows growth */
    max-width: 400px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease; 
}

.list-item:hover {
    background: rgba(92, 76, 110, 0.2);
    transform: translateY(-5px);
}

.list-item h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 2.4rem;
}

.list-item p{
    font-size: 1.9rem;
    color: #fff;
}

.why-choose-us {
    padding: 100px 5%;
}

.choose-container {
    display: flex;
    align-items: stretch; /* This ensures both the image and text sides are the same height */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.choose-img {
    flex: 1;
    height: 100%;
}

.choose-img img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.choose-content {
    flex: 1;
    padding: 60px;
    font-style: italic;
    color: #fff;
}

.reason-item {
    margin-bottom: 30px;
}

.reason-item h4 {
    font-size: 2rem;
    color: #453756;
    margin-bottom: 8px;
}

.reason-item p {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.consult {
    padding: 120px 5%;
    text-align: center;
    background: rgba(0,0,0,0.2);
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.consult h2 {
    font-family: 'Playfair Display';
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.consult p {
    font-size: 1.6rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 40px;
}

.consult a {
    display: inline-block;
    padding: 18px 45px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: 0.3s;
}

.consult a:hover {
    background: #5c4c6e;
    color: #fff;
    transform: scale(1.05);
}

/*  TABLET VIEW (900PX) */
@media screen and (max-width: 900px) {
    .detail-row, 
    .detail-row:nth-child(even) {
        flex-direction: column; 
        gap: 30px;
        margin-bottom: 80px;
    }

    .detail-img {
        width: 100%;      
        height: 400px;     
        overflow: hidden;
        border-radius: 10px;
    }

    .detail-img img {
        height: 400px;
        width: 100%;
        object-fit: cover;
    }

    .choose-container {
        flex-direction: column; 
    }
}

/* MOBILE VIEW (600PX) */
@media screen and (max-width: 600px) {
    .detail-text h2 {
        font-size: 2.4rem;
    }

    .detail-img {
        height: 300px;  
    }

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

    .detail-text ul li {
        padding-left: 20px;     
        text-align: left;     
        display: inline-block; 
    }

    .detail-text ul {
        text-align: left;
    }

    .detail-text p, 
    .list-item p,
    .reason-item p {
        font-size: 1.6rem;
    }
}
