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

body {
  font-family: "Roboto", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Navigation Styling */
#nav {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.navbar {
  background-color: #ffffff !important;
}

.container-fluid .navbar-brand {
  color: #2c3e50 !important;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.container-fluid .navbar-brand:hover {
  color: #3498db !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #555 !important;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #3498db !important;
}

.navbar-nav .nav-link.active {
  color: #3498db !important;
  font-weight: 600;
}

/* Hero Section */
.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #3498db;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Headings */
h1 {
  color: #2c3e50;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

h3 {
  color: #2c3e50;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

/* Main Content */
.lead {
  color: #666;
  font-size: 1.1rem;
  font-weight: 400;
}

/* Image Styling */
img.img-fluid {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}

/* Client logos */
.client-logo {
  border-radius: 50%;
  padding: 8px;
  background-color: #f0f4f8;
  transition: all 0.3s ease;
}

.client-logo:hover {
  background-color: #e8f0f8;
  transform: scale(1.05);
}

/* Buttons */
.btn-primary {
  background-color: #3498db;
  border-color: #3498db;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Forms */
.form-control {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

/* Toast Notifications */
.toast {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Sections */
section {
  padding: 20px 0;
}

/* Utility Classes */
.bp-border {
  border-color: #3498db;
}

.borderImg {
  border-color: #ddd;
  border-radius: 8px;
}

/* Testimonial Section */
#testimonial {
  background-color: #ffffff;
  padding: 60px 0;
}

#testimonial h3 {
  margin-bottom: 30px;
}

/* Text Center with Padding */
.text-center {
  padding: 40px 20px;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .container-fluid .navbar-brand {
    font-size: 1.3rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
}