 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

#showcase {
   background: #333 url("./bg5.jpg") no-repeat center center/cover;
   height: 100vh;
   color: #f4f4f4;
   position: relative;
   animation: fadeIn 1.5s ease-in-out;
}

#showcase h1 {
    font-size: 3rem;
    animation: slideDown 1s ease-in-out;
}

.heading {
    font-size: 2.1rem;
    text-align: center;
    padding: 1.1rem 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #27496d;
    animation: slideIn 1.5s ease-in-out;
}

.items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
}

.items div {
    flex: 1;
    min-width: 280px;
    padding: 1rem;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.items div:hover {
    transform: scale(1.05);
}

.item img { 
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.background {
    display: flex;
    flex-direction: column;
    justify-content : center;
    text-align: center;
    align-items: center;
    height: 100vh;
    padding: 0 2rem;
    position: absolute;
    top: 60px ;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.navbar {
    display: flex;
    position: sticky;
    top: 0;
    background: #344a72;
    color: #fff;
    justify-content: space-between;
    z-index: 10;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.navbar ul {
    display: flex;
    align-items: center;
    list-style: none;
}

.navbar ul li a {
    color: #fff;
    padding: 0.75rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease-in-out;
}

.navbar ul li a:hover {
    color: #f7c08a;
    background-color: #222;
    border-radius: 5px;
}

.text {
    text-decoration: none;
    color: white;
}

main {
    margin-top: 1.2rem;
}

p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #555;
}

.about {
    background: url("./about us.jpg") no-repeat center center/cover;
    text-align: center;
    height: 60vh;
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.description {
    background-color: #f4f4f4;
    font-size: 1.2rem;
    padding: 2rem;
    line-height: 1.8;
}

.box {
    float: left;
    width: 100%;
    padding: 20px;
    text-align: center;
    margin-bottom: 0.8rem;
}


.l-heading {
    font-size: 40px;
    color: #333;
}

.footer {
    font-size: 0.85rem;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #212529;
    color: #fff;
    text-align: center;
    padding: 1rem;
}



.bg-dark {
    background-color: #333;
    color: #fff;
}

.text-primary {
    color: darkblue;
}

.btn {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background: #333;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background-color: #f7c08a;
    color: #333;
}

.btn-light {
    background: #f4f4f4;
    color: #333;
}
#contact-info {
  background-color: #0e1e40;
  color: white;
  padding: 30px 0;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 0 20px;
}

.footer-box {
  flex: 1 1 250px;
}

.footer-box i {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
  color: white;
}

.footer-box h3 {
  font-weight: bold;
  margin-bottom: 5px;
}

.footer-box p {
  color: #dcdcdc;
  font-size: 15px;
  margin: 0;
  word-break: break-word;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

