/* ========== Base Reset ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  background: #fff;
  padding-top: 100px; /* space for fixed header */
}

/* ========== Typography ========== */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }


p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ========== Links ========== */
a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  background-color: #003b80;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #002855;
}

/* ========== Header ========== */
.subheader {
  background-color: #002855;
  color: white;
  font-size: 14px;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.main-header {
  background-color: #003b80;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: fixed;
  width: 100%;
  top: 30px;
  z-index: 999;
}

.logo {
  font-weight: bold;
  font-size: 18px;
}

/* ========== Hero Section ========== */
.top_section {
  background-color: #ccc;
  padding: 80px 20px;
  color: white;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_section-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
}

.top_section h1 { font-size: 28px; margin-bottom: 15px; }
.top_section p { font-size: 16px; margin-bottom: 25px; }
.top_section-btn { background-color: #ffcc00; color: black; }
.top_section-rating { margin-top: 15px; font-size: 14px; }

@media (min-width: 768px) {
  .top_section { min-height: 500px; }
  .top_section h1 { font-size: 36px; }
  .top_section p { font-size: 18px; }
  .top_section-btn { font-size: 18px; padding: 12px 24px; }
  .top_section-rating { font-size: 16px; }
}

/* ========== Sections ========== */
.section {
  background: white;
  border-radius: 8px;
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.half {
  flex: 1;
  min-width: 280px;
}






/* ========== Practice Areas / Services ========== */
.practice-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.practice-card {
  background: #f4f8ff;
  padding: 20px;
  width: 200px;
  border-radius: 8px;
  text-align: center;
}

.practice-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ========== Testimonials ========== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.testimonial {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}

/* ========== FAQs Section ========== */

h2 {
  margin-bottom: 20px;
}

details {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  background-color: #f9f9f9;
}

summary {
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  padding: 5px;
  list-style: none;
  position: relative;
}

summary::marker {
  display: none;
}

summary::after {
  content: "▼";
  position: absolute;
  right: 10px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(-180deg);
}

details p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
}


/* ========== Case Studies Section ========== */
.case-studies {
  padding: 40px 20px;
  background: #fefefe;
  border-radius: 8px;
  margin-top: 30px;
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 30px;
}

.case-study {
  margin-bottom: 25px;
  padding: 20px;
  background: #f4f8ff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ========== Contact Form ========== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

label {
  margin-top: 15px;
  display: block;
  font-weight: bold;
}

button {
  background: #003b80;
  color: white;
  padding: 12px;
  border: none;
  margin-top: 20px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background: #002855;
}

.success-msg {
  display: none;
  color: green;
  margin-top: 20px;
}

.whatsapp-btn {
  display: none;
  background: #25D366;
  color: white;
  text-align: center;
  padding: 12px;
  margin-top: 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

/* ========== Footer ========== */
.site-footer {
  background-color: #002855;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section h2, .footer-section h3 {
  color: #00bcd4;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 6px 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00bcd4;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 0.9rem;
}


/* ========== Base Reset ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  background: #fff;
  padding-top: 100px; /* space for fixed header */
}

/* ========== Typography ========== */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ========== Links ========== */
a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  background-color: #003b80;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #002855;
}

/* ========== Header ========== */
.subheader {
  background-color: #002855;
  color: white;
  font-size: 14px;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.main-header {
  background-color: #003b80;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: fixed;
  width: 100%;
  top: 30px;
  z-index: 999;
}

.logo {
  font-weight: bold;
  font-size: 18px;
}

/* ========== Hero Section ========== */
.top_section {
  background-color: #ccc;
  padding: 80px 20px;
  color: white;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_section-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
}

.top_section h1 { font-size: 28px; margin-bottom: 15px; }
.top_section p { font-size: 16px; margin-bottom: 25px; }
.top_section-btn { background-color: #ffcc00; color: black; }
.top_section-rating { margin-top: 15px; font-size: 14px; }

@media (min-width: 768px) {
  .top_section { min-height: 500px; }
  .top_section h1 { font-size: 36px; }
  .top_section p { font-size: 18px; }
  .top_section-btn { font-size: 18px; padding: 12px 24px; }
  .top_section-rating { font-size: 16px; }
}

/* ========== Sections ========== */
.section {
  background: white;
  border-radius: 8px;
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.half {
  flex: 1;
  min-width: 280px;
}

/* ========== Practice Areas / Services ========== */
.practice-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.practice-card {
  background: #f4f8ff;
  padding: 20px;
  width: 200px;
  border-radius: 8px;
  text-align: center;
}

.practice-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ========== Testimonials ========== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.testimonial {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}

/* ========== Contact Form ========== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

label {
  margin-top: 15px;
  display: block;
  font-weight: bold;
}

button {
  background: #003b80;
  color: white;
  padding: 12px;
  border: none;
  margin-top: 20px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background: #002855;
}

.success-msg {
  display: none;
  color: green;
  margin-top: 20px;
}

.whatsapp-btn {
  display: none;
  background: #25D366;
  color: white;
  text-align: center;
  padding: 12px;
  margin-top: 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.case-studies {
  padding: 40px 20px;
  background: #fefefe;
  border-radius: 8px;
  margin-top: 30px;
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 30px;
}

.case-study {
  margin-bottom: 25px;
  padding: 20px;
  background: #f4f8ff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ========== Footer ========== */
.site-footer {
  background-color: #002855;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section h2, .footer-section h3 {
  color: #00bcd4;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 6px 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00bcd4;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 0.9rem;
}
#lawyerBox {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background-color: #007bff;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  z-index: 9999;
  cursor: move;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#lawyerBox a {
  color: white;
  text-decoration: none;
}

#lawyerBox i {
  margin-right: 8px;
}








