/* --- Google Font & CSS Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #1E848E; /* Teal from logo */
    --secondary-color: #333333; /* Dark Grey from logo */
    --light-color: #f4f4f4;
    --white-color: #ffffff;
    --text-color: #555;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Basic Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #16676f;
}

/* --- Header & Navigation --- */
#main-header {
    background: var(--white-color);
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
}

#main-nav ul {
    list-style: none;
    display: flex;
}

#main-nav ul li {
    margin-left: 25px;
}

#main-nav ul li a {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

#main-nav ul li a:hover,
#main-nav ul li a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* --- Homepage: Slider --- */
.slider-container {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider .slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.slide-content h1 {
    color: var(--white-color);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white-color);
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}
.slider-nav:hover {
    background: rgba(255, 255, 255, 0.5);
}
.slider-nav.prev { left: 15px; }
.slider-nav.next { right: 15px; }

/* --- Homepage: About Snippet --- */
.about-snippet {
    padding: 60px 0;
    text-align: center;
    background: var(--light-color);
}

.about-snippet p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

/* --- Homepage: Testimonials --- */
.testimonials {
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white-color);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--box-shadow);
    border-radius: 5px;
}

.testimonial-card blockquote {
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--secondary-color);
}

/* --- Generic Page Header --- */
.page-header {
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    padding: 80px 0;
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.page-header h1 { color: var(--white-color); }
.page-header p { font-size: 1.2rem; }

/* --- About Us Page --- */
.about-content {
    padding: 60px 0;
}
.content-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}
.content-row.reverse {
    flex-direction: row-reverse;
}
.content-text, .content-image {
    flex: 1;
}
.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* --- Services Page --- */
.services-grid {
    padding: 60px 0;
    background: var(--light-color);
}
.services-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-box {
    background: var(--white-color);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}
.service-box i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* --- Contact Page --- */
.contact-info {
    padding: 60px 0;
}
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}
.detail-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.detail-item p {
    margin-bottom: 0;
    font-size: 1.1rem;
}
.map-section iframe {
    display: block;
    width: 100%;
}

/* --- Footer --- */
#main-footer {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 50px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}
.footer-col h3 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.footer-col p {
    color: #ccc;
    margin-bottom: 0.5rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}
.footer-col ul li a:hover {
    color: var(--primary-color);
}
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}
.copyright p {
    margin: 0;
    color: #aaa;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .slide-content h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    #menu-toggle {
        display: block;
        z-index: 1001; /* Above nav */
    }
    #main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.5s ease;
    }
    #main-nav.active {
        left: 0;
    }
    #main-nav ul {
        flex-direction: column;
    }
    #main-nav ul li {
        margin: 20px 0;
        text-align: center;
    }
    #main-nav ul li a {
        color: var(--white-color);
        font-size: 1.2rem;
    }
    .content-row {
        flex-direction: column;
    }
    .content-row.reverse {
        flex-direction: column;
    }
}
/* --- WhatsApp Floating Icon --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}
/* --- Fixed Social Icons --- */
.fixed-social-icons {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between icons */
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    color: #FFF;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Individual Icon Colors */
.social-icon.whatsapp-icon { background-color: #25D366; }
.social-icon.facebook-icon { background-color: #1877F2; }
.social-icon.tiktok-icon { background-color: #000000; }
.social-icon.instagram-icon { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

@media (max-width: 768px) {
    .fixed-social-icons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Individual Icon Colors */
.social-icon.phone-icon { background-color: #007bff; } /* A distinct blue for the phone */
.social-icon.whatsapp-icon { background-color: #25D366; }
.social-icon.facebook-icon { background-color: #1877F2; }
.social-icon.tiktok-icon { background-color: #000000; }
.social-icon.instagram-icon { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
/* --- Detailed Services List on Services Page --- */
.detailed-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 40px;
}

.detailed-services-list li {
    padding: 15px 0 15px 35px;
    font-size: 1.1rem;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    break-inside: avoid; /* Prevents list items from breaking across columns */
}

.detailed-services-list li::before {
    content: '\f058'; /* Font Awesome checked-circle icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* On smaller screens, use a single column */
@media (max-width: 768px) {
    .detailed-services-list {
        column-count: 1;
    }
}
/* --- Language Switcher --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher a {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lang-switcher img {
    width: 32px;
    height: auto;
    border: 2px solid transparent;
    border-radius: 4px;
}

.lang-switcher a:not(.active) {
    opacity: 0.6;
}

.lang-switcher a:not(.active):hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-switcher a.active img {
    border-color: var(--primary-color);
}
/* --- Gallery Page Styles --- */
.gallery-grid {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.gallery-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-item .video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.gallery-item .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.gallery-item p {
    padding: 15px;
    font-size: 1rem;
    color: #333;
    margin: 0;
    text-align: center;
}
/* Styling for the new Welcome and Videos section */
.welcome-videos-section {
    padding: 60px 0;
    background-color: #f9f9f9; /* A light background to distinguish the section */
}

.welcome-split-container {
    display: flex;
    gap: 40px; /* Space between the text and video columns */
    align-items: center;
}

.welcome-split-container .text-column {
    flex: 1; /* Takes up 50% of the space */
}

.welcome-split-container .video-column {
    flex: 1; /* Takes up the other 50% of the space */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between the two videos */
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
    .welcome-split-container {
        flex-direction: column; /* Stack columns on top of each other */
    }
}
/* --- Feature Section for Services Page --- */
.feature-section {
    padding: 60px 0;
    background-color: var(--light-color); /* Light background to stand out */
}

/* Re-using styles from the About Us page for consistency */
.content-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}
.content-row:last-child {
    margin-bottom: 0;
}
.content-text, .content-image {
    flex: 1;
}
.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

@media (max-width: 768px) {
    .content-row {
        flex-direction: column;
    }
}