* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html,body {
  /* padding-top: 80px; */
  background-color: #F8F9FA;
  color: #333;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  
}
/* FIX BOOTSTRAP ROW OVERFLOW */
.row {
  margin-left: 0;
  margin-right: 0;
}

.container,
.container-fluid {
  max-width: 100%;
  overflow-x: hidden;
  padding-left: 15px;
  padding-right: 15px;
}



img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* NAVBAR */
.navbar {
  background-color: #111111 !important;
  padding: 15px 25px;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.navbar-brand {
  color: #FFC107 !important;
  font-weight: 700;
  font-size: 22px;
}
.navbar-nav .nav-link {
  color: #f3f9f5 !important;
  font-weight: 500;
  margin: 0 10px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #FFC107 !important;
}
/* Navbar button (if any) */
.navbar .btn {
  padding: 6px 16px;
  font-size: 14px;
}
/* HERO */
.hero-section {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
  padding: 80px 0;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 600;
}

.hero-text span {
  color: #ffd43b;
}

.hero-text p {
  margin: 20px 0;
  font-size: 16px;
}

.hero-img {
  max-height: 350px;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-weight: 600;
}

/* SERVICES */
.home-services {
  padding: 80px 0;
  background: #f3f4ed8f;
}

.service-card {
  background: #f8f9fa;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  transition: 0.3s;
}

.service-card span {
  font-size: 40px;
}

.service-card h3 {
  margin-top: 15px;
}

.service-card:hover,
.service-card:focus {
  background: #cac072;
  color: #fff;
  transform: translateY(-8px);
}

.service-card a {
  display: inline-block;
  margin-top: 15px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
}

/* WHY US */
.why-us {
  padding: 80px 0;
  background: #f8f9fa;
}

.why-box {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.navbar{
  background-color: #111111;
}

/* LOGO IMAGE */
.navbar-logo {
  height: 38px;        /* adjust if needed */
  width: auto;
}
/* NAVBAR BRAND TEXT COLORS */
.brand-safar {
  color: #FFC107; /* Yellow */
  font-weight: 700;
}

.brand-intercity {
  color: #ffffff; /* White */
  font-weight: 700;
}



/* CONTACT PAGE */
.contact-page {
  padding: 80px 20px;
  background: #f0f1dd;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.contact-header p {
  max-width: 750px;
  margin: 15px auto 0;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT INFO BOX */
.contact-info {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.contact-info h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-left: 12px;
}

.contact-info h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 22px;
  background: #FFC107;
  border-radius: 4px;
}

.contact-info p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  font-size: 15px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* RIGHT FORM BOX */
.contact-form-box {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.contact-form-box h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-left: 12px;
}

.contact-form-box h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 22px;
  background: #FFC107;
  border-radius: 4px;
}

/* FORM */
.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14.5px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

.contact-form-box textarea {
  resize: none;
  min-height: 120px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #FFC107;
}

/* BUTTON */
.contact-form-box button {
  background: #111;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form-box button:hover {
  background: #FFC107;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}








