* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navbar Styling */
/* .navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav-link {
  transition: color 0.3s ease;
  margin-left: 10px;
}

.nav-link:hover {
  color: #d4af37 !important;
}

/* Service Cards */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Buttons */
.btn {
  transition: all 0.3s ease;
  border: none;
  border-radius: 5px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Cards */
.card {
  transition: all 0.3s ease;
  border-radius: 8px;
}

.card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Form Styling */
.form-control,
.form-select {
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Footer */
footer {
  margin-top: 50px;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #d4af37 !important;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeIn 0.5s ease-out;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Section Spacing */
section {
  padding: 60px 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.lead {
  font-size: 1.3rem;
  font-weight: 300;
}

/* Utility Classes */
.text-muted {
  color: #6c757d !important;
}

/* 🌐 UNIVERSAL RESPONSIVE STYLES */

/* 1. Reset browser defaults for consistent design */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Make images, videos, and iframes responsive */
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 3. Make text and layout adapt to screen size */
html {
  font-size: 16px; /* base font */
  scroll-behavior: smooth;
}

/* 4. Responsive containers */
.container, .container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* 5. Responsive typography */
h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
}

/* 6. Flexible layout for all sections */
section, header, footer {
  width: 100%;
  overflow-x: hidden;
}

/* 7. Responsive grids (for custom layouts without Bootstrap) */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

/* 8. Buttons and forms scale properly */
button, input, select, textarea {
  max-width: 100%;
  font: inherit;
}

/* 9. Hide horizontal scrollbar for small screens */
body {
  overflow-x: hidden;
}

/* 🌈 10. Media Queries (Adjust for Different Devices) */
@media (max-width: 1200px) {
  html { font-size: 15px; }
}

@media (max-width: 992px) {
  html { font-size: 14px; }
}

@media (max-width: 768px) {
  html { font-size: 13px; }
  .row { flex-direction: column; align-items: center; }
  section, div, img { text-align: center; }
}

@media (max-width: 576px) {
  html { font-size: 12px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  p  { font-size: 1rem; }
}
