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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #222;
}

/* Header */
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: #0d1b2a;
  color: #fff;
}

.logo {
  margin-bottom: 0;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #00b4d8;
}

@media (max-width: 700px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1rem;
  }
  .logo {
    margin-bottom: 1rem;
  }
  nav {
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
  }
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 4rem 1rem;
  color: white;
  background: linear-gradient(to right, rgba(13,27,42,0.7), rgba(27,38,59,0.7)),
              url('assets/hero_section.jpg') center center/cover no-repeat;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #d9d9d9;
}

.cta-button {
  background-color: #00b4d8;
  color: white;
  padding: 0.9rem 1.7rem;
  font-size: 1.1rem;
  border: none;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0096c7;
}

/* Services Section */
.services {
  padding: 4rem 2rem;
  background-color: #f4f6f8;
  text-align: center;
}

.services h2 {
  font-size: 2.3rem;
  margin-bottom: 2rem;
  color: #0d1b2a;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: auto;
  padding: 0 1rem;
}

.service-item {
  background-color: white;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-item h3 {
  color: #0d1b2a;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-item p {
  font-size: 1rem;
  color: #444;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00b4d8;
}

/* Contact Section */
.contact-section {
  padding: 3rem 1rem;
  background-color: #f4f6f8;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.2rem;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
}

.contact-section p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: #555;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 900px;
  margin: 2rem auto 0 auto;
}

/* Contact Form */
.contact-form {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-form button {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.9rem 0;
}

/* WhatsApp Section */
.whatsapp-section {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 420px;
  background: #e0f7fa;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,212,255,0.06);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.whatsapp-section p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}

.whatsapp-button {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  margin-top: 1rem;
  transition: background 0.3s;
  width: 100%;
  text-align: center;
}

.whatsapp-button:hover {
  background: #128c7e;
}

/* About Section */
.about-section {
  background: #f4f6f8;
  padding: 4rem 2rem;
  min-height: 70vh;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 2.5rem 2rem;
}

.about-container h1 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.about-container p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #444;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 2.5rem;
}

.about-content {
  flex: 2;
  min-width: 260px;
}

.about-content h2 {
  color: #0096c7;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-content ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: #222;
}

.about-content li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.about-image {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* About Preview Section */
.about-preview {
  background: #fff;
  padding: 2.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.about-preview-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-preview h2 {
  color: #0096c7;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-preview p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-cta {
  background: #0d1b2a;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s;
}

.about-cta:hover {
  background: #0096c7;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(90deg, #00b4d8 0%, #0096c7 100%);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem;
  margin-top: 2rem;
}

.cta-banner h2 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.cta-banner p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
  background: #f4f6f8;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #0d1b2a;
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonial-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 220px;
  font-size: 1.05rem;
  color: #333;
}

.testimonial-item span {
  display: block;
  margin-top: 1rem;
  color: #0096c7;
  font-weight: 600;
  font-size: 0.98rem;
}

.testimonial-cta {
  margin-top: 2.5rem;
  background: #0d1b2a;
  color: #fff;
  font-size: 1.1rem;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.3s;
}

.testimonial-cta:hover {
  background: #0096c7;
  color: #fff;
}

/* Footer */
footer {
  font-size: 0.98rem;
  padding: 1.2rem 0 1rem 0;
  text-align: center;
  background: #0d1b2a;
  color: #fff;
  margin-top: 2rem;
  letter-spacing: 0.5px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}

/* General: Make buttons and text scale */
.cta-button, .about-cta, .testimonial-cta {
  font-size: 1rem;
  padding: 0.8rem 1.3rem;
}

/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive header and nav */
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: #0d1b2a;
  color: #fff;
}
.logo {
  margin-bottom: 0;
}
nav {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 700px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1rem;
  }
  .logo {
    margin-bottom: 1rem;
  }
  nav {
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
  }
}

/* Responsive about section */
.about-section {
  padding: 3rem 1rem;
}
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 2.5rem 2rem;
}
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 2.5rem;
}
.about-content {
  flex: 2;
  min-width: 260px;
}
.about-content h2 {
  color: #0096c7;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.about-content ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: #222;
}
.about-content li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.about-image {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.team-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border: 4px solid #fff;
  background: #eaf6fb;
  display: block;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .team-photo {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 900px) {
  .about-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .about-image {
    margin-top: 0;
    margin-bottom: 2rem;
    justify-content: flex-start;
  }
  .about-content {
    min-width: 0;
  }
}
@media (max-width: 500px) {
  .about-container {
    padding: 1.2rem 0.5rem;
  }
  .about-section {
    padding: 1.5rem 0.2rem;
  }
  .about-content h2 {
    font-size: 1.2rem;
  }
  .about-content p, .about-content ul {
    font-size: 1rem;
  }
}

/* Responsive footer */
footer {
  font-size: 0.98rem;
  padding: 1.2rem 0 1rem 0;
  text-align: center;
}

/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
}
