/* Global Styles */
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #f4f6f8;
  color: #222;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

/* Header + Navigation */
.header {
  background-color: #0b1d3a;
  padding: 20px 0;
}

.logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #00b3a4;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: url("../assets/background.jpg") no-repeat center center/cover;
  color: #ffffff;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

/* Page Banners */
.page-banner {
  background: url("../assets/background.jpg") no-repeat center center/cover;
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.about-section h2 {
  margin-top: 40px;
  font-size: 28px;
  color: #003366;
}

.about-section p {
  font-size: 18px;
  margin-top: 10px;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 18px;
}

/* Services */
.services-section {
  padding: 60px 20px;
  background-color: #f4f6f8;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h2 {
  color: #003366;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
}

/* Portfolio */
.portfolio-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.portfolio-item {
  background-color: #f4f6f8;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.portfolio-item h3 {
  color: #003366;
  margin-bottom: 10px;
  text-align: center;
}

.portfolio-item p {
  font-size: 16px;
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.gallery-grid img {
  width: 50%; /* Half-size */
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.slide {
  display: none;
  width: 100%;
  height: auto;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.6);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Buttons */
.btn-primary {
  background-color: #00b3a4;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
}

/* Contact */
.contact-section {
  padding: 60px 20px;
  background-color: #f4f6f8;
  text-align: center;
}

.contact-section h2 {
  color: #003366;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 18px;
  margin: 10px 0;
}

.contact-info a {
  color: #00b3a4;
  text-decoration: none;
  font-weight: 600;
}

.contact-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form-wrapper {
  position: relative;
  width: 100%;
  padding-top: 150%; /* Controls aspect ratio; adjust higher/lower if needed */
}

.form-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Intro Section (optional) */
.intro {
  padding: 60px 20px;
  text-align: center;
}

/* Footer */
.footer {
  background-color: #0b1d3a;
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
