* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #1a3a8f;
    color: white;
}

/* Fixed navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a3a8f;
    padding: 1rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ddd;
}

.logo-icon {
    height: 30px;
    width: 30px;
    margin: 10px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: rgb(217, 151, 29);
}

/* Main content with padding for fixed navbar */
.content {
    padding-top: 4rem; /* Space for navbar */
}

.hero {
    display: flex;
    padding: 2rem;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-image {
    flex: 1;
    padding: 1rem;
}

.hero-text {
    flex: 1;
    text-align: center;
    padding: 10px;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background-color: #c9a227;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.dogpic {
    width: 300px;
}
.marhi-image {
    height: 350px;
    width: 250px;
    margin-left: 30px;
    margin-top: 30px;
}
.cta-button:hover {
    background-color: #dab33e;
    box-shadow: 2px;
    border-color: #1a3a8f;
}

.mission {
    padding: 2rem;
    text-align: center;
    background-color: rgba(19, 42, 102, 0.7);
    margin: 0 1rem 2rem 1rem;
    border-radius: 8px;
}

.mission h2 {
    margin-bottom: 1.5rem;
}

.mission p {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: flex;
    align-items: center;
    padding: 2rem;
    margin: 0 1rem 2rem 1rem;
}

.testimonial-text {
    flex: 1;
    text-align: center;
    padding: 1rem;
    font-style: italic;
}

.testimonial-image {
    flex: 1;
    padding: 1rem;
    text-align: center;
}

.services {
    padding: 2rem;
    text-align: center;
}

.services-title {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.services-icon {
    font-size: 1.5rem;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem;
}

.service-card {
    width: 300px;
    height: 150px;
    background-color: #ddb47c;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    color: #a5660d;
}

.service-card.gold {
    background-color: #eee5c0;
    color: #a37c10;
}

.service-card p {
    font-weight: bold;
}

.see-services {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
}

.see-services:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Add placeholder border for image areas */
.image-placeholder {
    border: 2px dashed #ccc;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    min-height: 200px;
}
