body {
  padding-bottom: 20px;
  color: #5a5a5a;
    
}

/* Navbar */
.navbar-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
}
.navbar-wrapper > .container {
  padding-right: 0;
  padding-left: 0;
}
.navbar-wrapper .navbar {
  padding-right: 20px;
  padding-left: 20px;
}
.navbar-wrapper .navbar .container {
  width: auto;
}
.navbar-brand img {
  height: 65px;
  width: 150px;
  text-align: center;
  margin-top: -19px;
  margin-left: -31px;
  padding-top: 7px;
  padding-bottom: 15px;
}

/* Header image */
.image-header {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.image-header img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.overlay-text {
  position: absolute;
  top: 80%;
  left: 35%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 5vw; /* Scales text with screen size */
  font-weight: bold;
  text-align: center;
  text-shadow: 4px 4px 6px rgba(0,0,0,0.5);
}

/* Footer */
footer {
  background-color: #004d66;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1.7em;
  width: 100%;
}

/* Section styling */
.container {
  text-align: center;
}
.consult-section h1 {
    font-size: 26px;
    text-align: center;
    line-height: 1.7;
    font-weight: 500;
    color: #003366;
    margin: 40px 0;
}

.consult-section h2 {
    margin-top: 40px;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: #002b5b;
    border-left: 5px solid #0074d9;
    padding-left: 12px;
    display: inline-block;
}


/* Circular Image */
.consult-img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin: 20px auto;
  display: block;
}

/* Services */
.consult-img:hover {
    transform: scale(1.05) rotate(2deg);
}

.services ul {
    margin-top: 30px;
    list-style: none;
    padding-left: 0;
}

.services ul li {
    background: #ffffff;
    margin: 12px 0;
    padding: 15px 20px;
    font-size: 25px;
    text-transform: uppercase;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    border-left: 6px solid #0074d9;
    transition: 0.3s ease;
}

.services ul li:hover {
    transform: translateX(10px);
    background: #e9f6ff;
}


/* Social links */
.social-links {
  margin-top: 20px;
}
.social-links a {
  text-decoration: none;
  color: white;
  font-size: 22px;
  margin: 0 10px;
  transition: color 0.3s;    
}
.social-links a:hover {
  color: #0077b5;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .overlay-text {
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .overlay-text {
        bottom: 15%;
        font-size: 34px;
    }
    .consult-section h1 {
        font-size: 22px;
    }
    .services ul li {
        font-size: 18px;
    }
}

