/* --- RESET & BASICS --- */
html {
    scroll-behavior: smooth; /* <--- THIS MAKES IT SCROLL GENTLY */
}

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

body {
    /* HELVETICA FONT STACK */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 4px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- LAYOUT UTILITIES --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* --- HERO SECTION --- */
header {
    background-color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.nav-links a {
    margin-left: 30px;
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #000;
}

.hero {
    /* Background Image - You can change this URL in the CSS */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('BannerImage.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #555;
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.features ul {
    list-style: none;
    margin-top: 20px;
}

.features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.features li::before {
    content: "•";
    color: #777;
    position: absolute;
    left: 0;
}

/* --- LOCATION & CONTACT --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

.form-container {
    padding: 50px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 700;
}

input, textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #333;
}

footer {
    text-align: center;
    padding: 40px;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
}

/* --- NEW SWIPER CAROUSEL STYLES --- */
.swiper {
    width: 100%;
    padding-bottom: 50px; /* Space for pagination dots */
}

.swiper-slide {
    height: 300px; /* Fixed height for consistency */
    border-radius: 4px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the space without stretching */
}

/* Change Swiper Arrow colors to black to match theme */
.swiper-button-next, .swiper-button-prev {
    color: #333 !important; 
}

.swiper-pagination-bullet-active {
    background: #333 !important;
}