/* ========== Global Styles ========== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #004aad;
  padding: 1rem 2rem;
}

nav h1 {
  color: #fff;
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* ========== Hero Section & Slider ========== */
.slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Hero Text Overlay */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 10px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #ff9800;
  padding: 0.7rem 1.5rem;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e68900;
}

/* WhatsApp Hero Button */
.whatsapp-btn {
  background: #25D366;
  margin-left: 10px;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 10;
}

.arrow:hover {
  background: rgba(0,0,0,0.8);
}

.arrow.left { left: 15px; }
.arrow.right { right: 15px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active,
.dot:hover {
  background: #ff9800;
}

/* ========== Content Sections ========== */
.content {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.content h2 {
  text-align: center;
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 1.5rem;
}

.content p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

/* Services List */
.content ul {
  list-style: none;
  padding: 0;
}

.content ul li {
  margin: 1rem 0;
  padding: 1rem;
  background: #f0f4ff;
  border-left: 6px solid #004aad;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.content ul li:hover {
  background: #e1ebff;
  transform: translateX(5px);
}

/* ========== Contact Form ========== */
.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
  color: #004aad;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #004aad;
  outline: none;
}

.contact-form button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  background: #004aad;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #003580;
}

/* ========== Footer ========== */
footer {
  text-align: center;
  padding: 1rem;
  background: #004aad;
  color: white;
}

/* ========== Animations ========== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

.slide-up {
  opacity: 0;
  animation: slideUp 1.2s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }

/* ========== Floating WhatsApp Button ========== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float svg {
  width: 40px;
  height: 40px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/* Services Grid on Homepage */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #f0f4ff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, background 0.3s;
}

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

/* CTA Banner */
.cta-banner {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #004aad, #003580);
  color: white;
  margin: 3rem 0;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

/* Footer */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background: #002f6c;
  color: white;
}

.footer-container h3, 
.footer-container h4 {
  margin-bottom: 1rem;
}

.footer-container ul {
  list-style: none;
  padding: 0;
}

.footer-container ul li {
  margin-bottom: 0.5rem;
}

.footer-container a {
  color: white;
  text-decoration: none;
}

.footer-container a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  background: #001d44;
  font-size: 0.9rem;
}
/* FAQ Items */
.faq-item {
  margin: 1rem 0;
  padding: 1rem;
  border-left: 4px solid #004aad;
  background: #f9f9f9;
  border-radius: 5px;
}

.faq-item h3 {
  margin-bottom: 0.5rem;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}
/* Contact Page */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info {
  background: #f0f4ff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-info h3 {
  margin-bottom: 1rem;
}

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

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

.contact-form button {
  padding: 0.8rem;
  background: #004aad;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #003580;
}

/* Map */
.map {
  margin: 3rem 0;
  text-align: center;
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.logo img {
  height: 45px;   /* adjust size */
  width: auto;
}
