        /* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa !important;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('../img/slideone.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Black Banner */
.black-banner {
    background: black;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
}

.black-banner a {
    font-size: 14px;
}

/* Search Box */
.search-box {
    display: flex;
    width: 50%;
    margin: 20px auto;
    background: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 10px;
    border-radius: 5px;
    outline: none;
}

.search-box button {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-sgn{
    background-color: #32498d !important;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-box {
        width: 80%;
    }

    .hero {
        height: 70vh;
    }
}

/*service cards*/
.service-card {
    border: 1px solid #ddd;
    padding: 30px;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%; /* Ensures equal width */
}

.row > .col-md-6 {
    display: flex;
    align-items: stretch; /* Ensures all service cards stretch equally */
}

.service-card img {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* Ensures images resize properly */
}

        
        /*footer*/
        
        .footer {
            background: #111;
            color: white;
            padding: 40px 0;
        }
        .footer a {
            color: white;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .footer .social-icons a {
            margin-right: 10px;
            font-size: 20px;
        }
        .newsletter input[type="email"] {
            width: 100%;
            padding: 10px;
            margin-top: 10px;
            border-radius: 5px;
            border: none;
        }
        .newsletter button {
            margin-top: 10px;
            width: 100%;
            background: #ff6f00;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
        }
    
    /*nav*/
      /*.navbar-brand {*/
      /*      font-weight: bold;*/
      /*  }*/

      /*  .nav-item .nav-link {*/
      /*      color: #333;*/
      /*      font-size: 14px;*/
      /*      font-weight: 500;*/
      /*  }*/

      /*  .dropdown-menu {*/
      /*      min-width: 200px;*/
      /*  }*/

      /*  .dropdown-menu a {*/
      /*      font-size: 14px;*/
      /*  }*/

      /*  .profile-icon {*/
      /*      width: 35px;*/
      /*      height: 35px;*/
      /*      border-radius: 50%;*/
      /*      background: #ccc;*/
      /*      display: inline-block;*/
      /*  }*/

      /*  .user-dropdown {*/
      /*      display: flex;*/
      /*      align-items: center;*/
      /*      cursor: pointer;*/
      /*  }*/

      /*  .user-name {*/
      /*      margin-left: 8px;*/
      /*      font-size: 14px;*/
      /*      font-weight: 500;*/
      /*  }*/