body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header, footer {
  background-color: #2a2a2a;
  color: white;
  padding: 1rem;
  text-align: center;
}

nav {
  background-color: #444;
  display: flex;
  justify-content: center;
}

nav a {
  color: white;
  padding: 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  background-color: #666;
}

.section {
  display: flex;
  padding: 2rem;
  align-items: center;
  justify-content: center;
}

.section:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #f4f4f4;
}

.section-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.text {
  flex: 1;
  margin: 1rem;
}

.content {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: bold;
}

input, textarea {
  padding: 0.5rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

button {
  padding: 0.75rem;
  background-color: #2a2a2a;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #444;
}

.contact-info {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f4f4f4;
  border-left: 4px solid #2a2a2a;
}

.testimonials {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.testimonial {
  background-color: white;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-left: 6px solid #2a2a2a;
}

.testimonial h3 {
  margin-top: 0;
  color: #2a2a2a;
}

.testimonial p {
  font-style: italic;
}

@media (max-width: 768px) {
  .section {
    flex-direction: column !important;
  }
}
header h1 {
  margin: 0;
  font-size: 2rem;
}

nav a.active {
  background-color: #2a2a2a;
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #2a2a2a;
}

header, footer {
  background-color: #0d1b2a;
  color: white;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

nav {
  background-color: #1b263b;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

nav a {
  color: white;
  padding: 1rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 6px;
}

nav a:hover,
nav a.active {
  background-color: #415a77;
  color: #fff;
}

.section {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 1rem;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.section:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #e0e5ec;
}

.section-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.text {
  flex: 1;
  padding: 1rem;
  max-width: 600px;
}

.text h2 {
  color: #1b263b;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

input, textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
}

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

button {
  padding: 0.75rem 1rem;
  background-color: #0d1b2a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #1b263b;
}

.testimonial {
  background-color: white;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  border-left: 6px solid #0d1b2a;
  border-radius: 10px;
}

.contact-info {
  margin-top: 2rem;
  padding: 1.25rem;
  background-color: #e0e5ec;
  border-left: 4px solid #0d1b2a;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .section {
    flex-direction: column !important;
    padding: 2rem 1rem;
  }

  .section-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
}

.testimonial {
  background-color: white;
  padding: 2rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  border-left: 6px solid #0d1b2a;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover {
  transform: scale(1.015);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.testimonial h3 {
  margin-bottom: 0.5rem;
  color: #1b263b;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 0.5rem;
}


.stars {
  color: #f5c518;
  font-size: 1.1rem;
}




@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-top: 1rem;
  transition: box-shadow 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}


.testimonials {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.testimonial h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  background-color: #0a2a43;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

.gallery {
  padding: 2rem;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.gallery-grid img {
  width: 100%;
  border: 3px solid #ccc;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  opacity: 0.95;
}
input,
textarea,
button,
select {
  font-family: 'Poppins', sans-serif;
}
.section-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

html, body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
