/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Header */
header {
  background: #f8fafc;
  color: rgb(27, 1, 1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.logo img {
  height: 70px;
}

/* Desktop logo default */
.logo-desktop {
  display: block;
}

/* Mobile logo hidden by default */
.logo-mobile {
  display: none;
}

/* Navigation */
.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar ul li a {
  color: rgb(31, 1, 1);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: #FFA500;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #FD8701;
  margin: 4px 0;
}

/* Hero Section */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(13,42,78,0.7), rgba(13,42,78,0.7)), url('../images/banner.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  flex-direction: column;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .btn {
  padding: 12px 25px;
  background: #FFA500;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #ffbf47;
}

.hero .tagline {
  font-size: 1.25rem;
  background-color: rgba(253, 135, 1, 0.8);
  color: white;
  padding: 10px 20px;
  margin: 0px 30px 100px 30px;
  width: fit-content;
  max-width: 90%;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.4;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Tablet adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero .tagline {
    font-size: 1.1rem;
    padding: 8px 16px;
  }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .hero .tagline {
    font-size: .8rem;
    padding: 3px 6px;
    white-space: normal;
  }
}


.brand-logo{width:40px;height:40px;border-radius:12px;background:linear-gradient(135deg, var(--blue), #1e88e5);display:grid;place-items:center;box-shadow:var(--shadow);color:#fff;font-weight:800}
.brand-name{font-weight:800;letter-spacing:.3px;color:var(--blue)}

/* Base body */
body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
  margin: 0;
  padding: 5px;
}

/* Headings */
h1 {
  color: #f5f1f1;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1;
}

h2, h3, h4, h5, h6 {
  color: #2c1616;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1;
}

/* Paragraphs */
p {
  font-size: 16px;
  font-weight: 400;
  color: #444444;
  text-align: justify;
  margin-bottom: 1em;
}

/* Services Section */
.services {
  padding: 1px 5px 1px;
  margin-bottom: 60px;
  text-align: center;
  box-sizing: border-box;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 0 15px;
}

.service-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  width: 200px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  transition: box-shadow 0.3s;
}

.service-link:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Cards */
.card {
  position: relative;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  min-height: 220px;
  text-align: left;
  transition: box-shadow 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* About Us */
.about-us {
  position: relative;
  border-radius: 5px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-bottom: 40px;
  min-height: 400px;
}

.about-us ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.about-us li {
  margin-bottom: 8px;
}

.about-us a {
  text-decoration: none;
}

/* Footer */
footer {
  background: #0D2A4E;
  color: white;
  text-align: center;
  padding: 15px 0;
  padding-top: 40px;
}

footer p {
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  color: #f7f4f4;
  margin-bottom: 0.5em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
    height: 50px;
  }
}

@media (max-width: 600px) {
  .service-link {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .card {
    padding: 5px;
  }
}

/* --- ✅ NEW: ABOUT US "CLICK FOR MORE" BUTTON FIX --- */
.about-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.about-btn-wrapper .more-btn {
  background-color: #007bff;
  color: white;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: static;
  pointer-events: auto;
}

.about-btn-wrapper .more-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 600px) {
  .about-btn-wrapper {
    justify-content: center;
  }

  .about-btn-wrapper .more-btn {
    width: 100%;
    text-align: center;
  }
}

.service_card {
  position: relative;
  border-radius: 5px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-bottom: 40px;
  min-height: 400px;
  box-sizing: border-box;
}

.service_card h2,
.service_card h3 {
  color: #2c1616;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.service_card p {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  text-align: justify;
  margin-bottom: 1em;
}

.service_card ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.service_card li {
  margin-bottom: 8px;
}

/* Optional: Add a button inside service_card */
.service_card .more-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #007bff;
  color: white;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service_card .more-btn:hover {
  background-color: #0056b3;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .service_card {
    padding: 15px;
  }

  .service_card .more-btn {
    width: 100%;
    text-align: center;
  }
}

.contact-form {
  margin-top: 20px;
}

.contact-form div {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}
.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* For larger screens (desktop) */
@media (min-width: 768px) {
  .contact-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-info {
    flex: 1;
    padding-right: 30px;
    border-right: 1px solid #ddd;
  }

  .contact-form-wrapper {
    flex: 2;
    padding-left: 30px;
  }
}

.contact-info ul {
  list-style-type: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
}

.contact-form {
  margin-top: 20px;
}

.contact-form div {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}
.contact-details {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 20px;
}

.detail-row {
  display: contents;
}

.label {
  font-weight: bold;
  white-space: nowrap;
  vertical-align: top;
}

.value {
  line-height: 1.5;
}
