/* Reset */
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html, body {
    width: 100%;
    min-height: 100%;
}

/* Container that keeps video proportional */
.video-container {
    width: 100%;
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically if taller than screen */
    overflow: hidden;
}

/* Full width, height auto */
video {
    width: 100%;
    height: auto;
    display: block;
}

/* Optional overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}


/* Content */
.content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 30px;
    font-size: 1rem;
    color: white;
    background: #e91e63;
    border: none;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s;
}

.btn:hover {
    background: #c2185b;
}

/* Responsive Text & Video Adjustments */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }
    .content p {
        font-size: 1rem;
    }
    .btn {
        font-size: 0.9rem;
        padding: 10px 25px;
    }
}


.info-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.info-content {
    max-width: 1200px;
    margin: auto;
}

.heading-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.heading-line span {
    font-size: 20px;
    font-weight: 500;
}

.heading-line hr {
    flex: 1;
    border: none;
    border-top: 2px solid #888;
}

/* Text and image stacked under the line */
.text-image-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.text-column {
    flex: 1;
}

.text-column h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.text-column p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 25px;
}
.text-image-wrappersecond {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 50px;
}
.info-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #000;
    color: #000;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.info-btn:hover {
    background-color: #000;
    color: #fff;
}

.image-column {
    flex: 1;
    text-align: center;
}

.image-column img {
    max-width: 80%;
    height: auto;
}

/* Mobile view */
@media (max-width: 768px) {
    .text-image-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .heading-line {
        justify-content: center;
    }
}



.services-section {
    background-color: #2c2a2a; /* Dark background */
    color: #fff;
    padding: 60px 0; /* No side padding here — container will handle it */
    width: 100%;
}

.container {
    max-width: 1200px; /* Same width as grey section */
    margin: auto;
    padding: 0 20px; /* Same side padding as above section */
}

.services-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.services-header h2 {
    font-size: 1.5rem;
    font-weight: normal;
}

.services-header hr {
    flex: 1;
    border: none;
    border-top: 1px solid #aaa;
}

/* Service item layout */
.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 20px 0;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-text h3 em {
    font-style: italic;
}

.service-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ccc;
}

/* Button styling */
.service-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-btn:hover {
    background-color: #fff;
    color: #000;
}

.service-image {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.service-image img {
    width: 400px;         /* fixed width */
    height: 150px;        /* fixed height */
    object-fit: cover;    /* crop to fit without distortion */
    border-radius: 5px;   /* optional, smooth corners */
}


/* Divider line between services */


.section-title .divider {
    flex-grow: 1;
    height: 1px;
    background-color: #ccc;
    max-width: 600px; /* matches text column width */
}


/* Responsive */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    .service-image {
        text-align: center;
    }
}




