/* Global Styles */
:root {
    --primary-color: #d4af37;
    /* Gold accent */
    --bg-color: #ffffff;
    --text-color: #333333;
    --secondary-bg: #f9f9f9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

/* Simulate the logo icon from screenshot */
.logo::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50% 0 50% 0;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section - Boxed Layout */
.hero-container {
    max-width: 1200px;
    margin: 100px auto 40px;
    /* Top margin for header, bottom for spacing */
    height: 600px;
    /* Fixed height for boxed look */
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
    /* Allow dragging through overlay */
}

.hero-content {
    display: none;
    /* Keeping hidden as per previous request, or can be re-enabled */
}

/* Welcome Section */
.welcome-section {
    background-color: #fcfcfc;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
}

.welcome-title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

.welcome-subtitle {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 30px;
}

/* About Section */
.about {
    background-color: #fff;
    /* Optional: Add a subtle background image or texture here to match the shadow effect if available */
    /* background-image: url('path/to/shadow-texture.png'); */
    background-size: cover;
    background-position: center;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
}

.about-intro p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-item h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
}

.mv-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    /* Justify text for a cleaner block look */
    text-align-last: center;
    /* Center the last line */
}

/* Services */
.services {
    background-color: #fff;
    /* Changed to white to match reference */
    padding: 80px 0;
}

.section-description {
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
}

.services-grid-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    text-align: center;
}

.service-item img {
    width: 100%;
    height: 400px;
    /* Fixed height for uniformity */
    object-fit: cover;
    border-radius: 30px;
    /* Rounded corners as per image */
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item:hover img {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    font-size: 1.1rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 15px;
}

/* Testimonials */
.testimonials {
    background-color: #f0f0f0;
    padding: 80px 0;
}

.testimonial-swiper {
    padding-bottom: 50px;
    /* Space for pagination */
}

.testimonial-card {
    display: flex;
    background-color: #e8e8e8;
    max-width: 1000px;
    margin: 0 auto;
    /* Centered in slide */
    align-items: center;
    overflow: hidden;
    height: 100%;
    /* Ensure full height in slide */
}

.testimonial-content {
    flex: 1;
    padding: 60px;
    text-align: left;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.testimonial-image {
    flex: 1;
    height: 400px;
    /* Fixed height for consistency */
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Swiper Customization */
.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column-reverse;
    }

    .testimonial-content {
        padding: 40px 20px;
    }

    .testimonial-image {
        height: 300px;
        width: 100%;
    }
}

/* Footer */
.footer {
    background-color: #111;
    padding: 60px 0 20px;
    color: #888;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.8rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}