/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  background: #fafafa;
  color: #212121;
}

/* ========== HEADER ========== */
header {
  background: #007BFF;
  color: #fff;
  padding: 20px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 100px;
  border: #fff solid 2px;
  border-radius: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #FFD700;
}

/* ========== HERO ========== */
.hero {
  background: url('https://source.unsplash.com/1600x600/?office,bright') no-repeat center/cover;
  text-align: center;
  padding: 100px 20px;
  color: #007BFF;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 20px;
  padding: 60px 20px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  font-size: larger;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #FF5722;
  color: white;
  border-radius: 10px;
  margin-top: 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #e64a19;
}

/* ========== SERVICES ========== */
.services {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.service-boxes {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.service-box {
  background: #e3f2fd;
  padding: 20px;
  border-radius: 15px;
  width: 30%;
  min-width: 280px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

.serimg {
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* ========== ABOUT ========== */
.about {
  padding: 60px 20px;
  background: #fce4ec;
  text-align: center;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 30px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* ========== CONTACT ========== */
.contact {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #007BFF;
}

.contact-card {
  background: #e3f2fd;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: auto;
  text-align: left;
  line-height: 1.6;
}

/* ========== SERVICE DETAIL PAGE ========== */
.service-detail {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
}

.service-detail h2 {
  color: #007BFF;
  font-size: 34px;
  margin-bottom: 15px;
}

.service-detail p {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px;
}

.service-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.service-gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.service-gallery img:hover {
  transform: scale(1.05);
}

/* ========== FOOTER ========== */
footer {
  background: #007BFF;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* ========== MOBILE NAV ========== */
.hamburger {
  display: none;
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  background: #fff;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 5px;
  left: 0;
  transition: all 0.4s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  nav {
    display: none;
    width: 100%;
    background: #007BFF;
    text-align: center;
  }

  nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    padding: 10px 0;
  }

  .hero-content,
  .about-container {
    flex-direction: column;
  }

  .service-boxes {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 90%;
  }

  .contact-card {
    width: 90%;
    text-align: center;
  }

  .hamburger {
    display: block;
  }

  .logo img {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .hero h2 { font-size: 24px; }
  .btn { font-size: 14px; padding: 8px 16px; }
  .service-box { padding: 15px; }
}
/* CONTACT SECTION */
.contact {
  padding: 60px 20px;
  text-align: center;
  background: #f5f5f5;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

/* Form & info box layout */
.contact-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Contact Form Box */
.contact-form {
  background: white;
  padding: 25px;
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: left;
}

.contact-form h3 {
  margin-bottom: 15px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #ff5722;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #e64a19;
}

/* Info Card */
.contact-card {
  background: white;
  padding: 25px;
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* CONTACT SECTION */
.contact {
  padding: 60px 20px;
  text-align: center;
  background: #f5f5f5;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

/* MAIN CONTAINER */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

/* COMMON BOX STYLE */
.contact-form,
.contact-card {
  background: white;
  padding: 25px;
  width: 350px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* FORM */
.contact-form h3 {
  text-align: center;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #ff5722;
  border: none;
  color: white;
  font-size: 17px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.contact-form button:hover {
  background: #e64a19;
}

/* INFO CARD */
.contact-card h3 {
  margin-bottom: 12px;
  text-align: center;
}

/* ⭐ RESPONSIVE DESIGN ⭐ */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .contact-card {
    width: 100%;
    max-width: 400px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .contact h2 {
    font-size: 26px;
  }

  .contact-form,
  .contact-card {
    padding: 20px;
  }
}
/* Contact Section */
.contact {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Contact info box */
.contact-card {
  flex: 1;
  min-width: 280px;
  background: #e3f2fd;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-card h3 {
  margin-bottom: 15px;
  color: #007BFF;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 280px;
  background: #e8f5e9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form h3 {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-card,
  .contact-form {
    width: 100%;
  }
}
