/* Reset & basic */
* {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #0d0d0d;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  font-size: 1.8rem;
}
nav {
  display: flex;
  gap: 1rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  color: #00c6ff;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin-bottom: 4px;
  border-radius: 2px;
}

/* Banner */
.banner {
  position: relative;
}
.banner img {
  width: 100%;
  height: auto;
  display: block;
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 0 1rem;
}
.banner-text h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.banner-text p {
  font-size: 1.2rem;
}

/* Section titles */
.section {
  padding: 3rem 0;
}
.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #0d0d0d;
}

/* Services */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.card h3 {
  margin: 1rem;
  font-size: 1.4rem;
}
.card p {
  margin: 0 1rem 1rem;
  font-size: 1rem;
  color: #666;
}

/* Contact */
.contact p, .contact a {
  text-align: center;
  font-size: 1.1rem;
  margin: 0.5rem 0;
}
.contact a {
  color: #0d0d0d;
  text-decoration: none;
}
.contact a:hover {
  color: #007bff;
}

/* Footer */
footer {
  background: #f5f5f5;
  padding: 2rem 0;
  text-align: center;
}
footer a {
  color: #007bff;
  text-decoration: none;
  margin: 0 0.5rem;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #0d0d0d;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
  }
  nav.show {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .banner-text h2 {
    font-size: 2rem;
  }
}
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-img {
  flex: 1 1 40%;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1 1 55%;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0d0d0d;
}

.about-content p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-content {
    padding: 0 1rem;
  }
}
/* Contact Section */
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: #f9f9f9;
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-info {
  flex: 1 1 40%;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1 1 55%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.8rem;
  background: #007bff;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0056b3;
}

/* Footer */
footer {
  background: #0d0d0d;
  color: #fff;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left h3 {
  margin-bottom: 0.5rem;
}

.footer-links a {
  margin: 0 0.5rem;
  color: #aaa;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
/* Why Choose Us */
.why-choose {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.choose-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.choose-card:hover {
  transform: translateY(-5px);
}

.choose-card h3 {
  color: #007bff;
  margin-bottom: 1rem;
}

/* CTA */
.cta {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  background: white;
  color: #007bff;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #f0f0f0;
}
.faq {
  background: #fff;
  padding: 4rem 2rem;
}

.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #0d0d0d;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: #f7f7f7;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #007bff;
}

.faq-item p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
/* Testimonials Section */
.testimonials {
  background: #f7f7f7;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  font-style: italic;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

.testimonial-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: #007bff;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #666;
}
/* ======= BIG FOOTER STYLES ======= */
.site-footer {
  background: linear-gradient(180deg,#0d1220 0%, #08101a 100%);
  color: #d9e6ff;
  font-family: Poppins, Arial, sans-serif;
  margin-top: 3rem;
}
.site-footer a { color: #cfe6ff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }

/* containers */
.footer-top { padding: 48px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 360px 1fr 1fr 360px;
  gap: 28px;
  align-items: start;
}

/* Brand */
.footer-brand .brand-logo { display:flex; gap:14px; align-items:center; margin-bottom:12px; }
.footer-brand h2 { color:#fff; font-size:26px; margin:0; letter-spacing:0.4px; }
.footer-brand .tagline { color:#bfe4ff; font-size:13px; margin-top:4px; }
.about-small { color:#bcd6ff; margin:12px 0 14px; line-height:1.6; }
.contact-mini a { display:inline-block; margin-right:12px; color:#e6f3ff; font-weight:600; }
.socials { margin-top:12px; display:flex; gap:8px; }
.social-icon {
  width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:8px; background:rgba(255,255,255,0.06); color:#fff; font-weight:600;
}

/* link columns */
.footer-links-col h3, .footer-newsletter h3 { color:#fff; margin-bottom:12px; font-size:18px; }
.footer-links-col ul { list-style:none; padding:0; margin:0; color:#d0e8ff; }
.footer-links-col ul li { margin:8px 0; }
.footer-links-col ul li a { color:#cfe6ff; }

/* newsletter */
.footer-newsletter p { color:#c9e6ff; margin-bottom:10px; }
.newsletter-form { display:flex; gap:10px; margin-top:10px; }
.newsletter-form input[type="email"] {
  flex:1; padding:10px 12px; border-radius:8px; border:1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03); color:#fff;
}
.newsletter-form button {
  background: #00a8ff; color:#fff; border:none; padding:10px 14px; border-radius:8px; cursor:pointer;
  font-weight:600;
}
.newsletter-form button:hover { background:#008ed6; }

/* trust badges */
.trust { margin-top:16px; color:#d6eeff; }
.trust-logos { display:flex; gap:8px; margin-top:8px; }
.trust-badge { background: rgba(255,255,255,0.06); padding:6px 8px; border-radius:6px; font-size:13px; }

/* middle */
.footer-middle { background: rgba(255,255,255,0.02); padding:18px 0; border-top:1px solid rgba(255,255,255,0.03); border-bottom:1px solid rgba(255,255,255,0.03); }
.footer-middle-grid { display:flex; gap:20px; align-items:center; justify-content:space-between; }
.footer-middle h4 { margin:0 0 8px 0; color:#fff; }

/* bottom */
.footer-bottom { padding:16px 0; }
.footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.big-brand { font-size:20px; color:#00c6ff; margin-right:10px; font-weight:700; letter-spacing:0.6px; }
.bottom-links a { margin-left:12px; color:#a9d8ff; font-size:14px; }

/* small screens */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-middle-grid { flex-direction:column; align-items:flex-start; gap:12px; }
  .footer-bottom-inner { flex-direction:column; text-align:center; gap:8px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand .brand-text h2 { font-size:22px; }
  .newsletter-form { flex-direction:column; }
  .newsletter-form button { width:100%; }
  .bottom-links a { margin-left:8px; display:inline-block; margin-top:6px; }
}
