/* style.css */

/* Reset basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

/* Header */
.site-header {
  background-color: #004080;
  color: #fff;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
}

.tagline {
  font-size: 0.9rem;
}

.top-nav a {
  color: #fff;
  margin-left: 1rem;
  text-decoration: none;
}

.top-nav select {
  margin-left: 1rem;
  padding: 0.2rem;
}

/* Hero */
.hero {
  display: flex;
  background-color: #e6f2ff;
  padding: 2rem;
  margin: 1rem 0;
  border-radius: 8px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.photo img {
  max-width: 200px;
  border-radius: 50%;
}

.hero-content {
  flex: 1;
}

.hero-ctas .btn {
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #004080;
  color: #004080;
  transition: 0.3s;
}

.btn.primary {
  background-color: #004080;
  color: #fff;
}

.btn.primary:hover {
  background-color: #0066cc;
}

.btn.outline {
  background-color: transparent;
}

.btn.outline:hover {
  background-color: #004080;
  color: #fff;
}

/* Cards */
.card {
  background: #fff;
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.quote-card {
  margin: 1rem 0;
  padding: 1rem;
  border-left: 4px solid #004080;
}

.emphasis {
  background-color: #f0f8ff;
}

/* Contact form */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-grid form {
  flex: 1;
}

.contact-grid input, .contact-grid textarea, .contact-grid select {
  width: 100%;
  padding: 0.5rem;
  margin: 0.2rem 0 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Footer */
.site-footer {
  background-color: #004080;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

/* Responsive */
@media(max-width:768px){
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid {
    flex-direction: column;
  }

  .header-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
}


#chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #004080;
  color: white;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#chatbot-window {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 320px;
  height: 420px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#chatbot-header {
  background: #004080;
  color: white;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

#chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

#chatbot-input-area {
  display: flex;
  border-top: 1px solid #ccc;
}

#chatbot-input {
  flex: 1;
  padding: 8px;
  border: none;
  font-size: 14px;
}

#chatbot-send {
  background: #004080;
  color: white;
  border: none;
  padding: 0 15px;
  cursor: pointer;
}