/* style.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* General Body Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  color: #555;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: #007bff;
}

/* Intro Section */
#intro {
  background-color: #f8f9fa;
}

/* Specialization Section */
#specialization {
    padding: 60px 0;
    background-color: #e7f3ff;
}

#specialization h2 {
    font-weight: 700;
    color: #0056b3;
}

/* Services Section */
#services {
    background-color: #fff;
    padding: 60px 0;
}

#services .card {
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

#services .card:hover {
  transform: translateY(-10px);
}

#services .card-title {
  font-weight: 600;
  color: #007bff;
}

/* Contact Section */
#contact {
    padding: 60px 0;
    background-color: #f8f9fa;
}

#contact h2 {
    font-weight: 700;
    margin-bottom: 40px;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}


/* Accordion */
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button:not(.collapsed) {
    color: #007bff;
    background-color: #e7f3ff;
}

/* Footer */
.footer {
  background-color: #343a40;
  color: #fff;
  padding: 40px 0;
}

.footer h5 {
  color: #ffc107;
  font-weight: 600;
}

.footer p {
  color: #ccc;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ffc107;
}

.footer .social-icons a {
  font-size: 20px;
  margin-right: 15px;
}

/* Process Section */
#process {
    background-color: #fff;
}

.process-step {
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.process-icon {
    margin-bottom: 20px;
    color: #007bff;
}

/* Testimonials Section */
#testimonials {
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.testimonial-author {
    font-weight: 600;
    color: #007bff;
    text-align: right;
}

/* Services Section */
.service-icon {
    color: #007bff;
}

/* Contact Section */
#contact .form-control {
    border-radius: 0;
}

#contact .btn-primary {
    width: 100%;
}