/********** Template CSS **********/
:root {
    --primary: #219c90;
    --light: #F0FBFC;
    --dark: #181d38;
}
body 
{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
 .hero-section {
    background-image: url("../img/carousel.jpg"); /* your image path */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* optional parallax */
    min-height: 100vh; /* full screen */
    position: relative;
    color: #000;
}


.hero-content {
    max-width: 900px;
}

.btn-primary {
    background-color: #0d144a;
    border: none;
    transition: 0.3s;
    color: white;
}

.btn-primary:hover {
    background-color: #1a237e;
}
.border-custom {
  border: 2px solid #219c90;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.border-custom:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
#about {  
  background-image: url("../img/about.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* gives a subtle parallax effect */
  padding: 60px 0; /* balanced vertical space */
  position: relative;
}
/* Overlay layer */
#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(39, 37, 37, 0.7); /* white overlay with opacity */
  z-index: 1;
}

/* Make sure text appears above overlay */
#about .container {
  position: relative;
  z-index: 2;
}
