/* Custom Styles */
.container {
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}
/* Header Styles */
#header {
    background-color: #f5f5f5;
    padding: 1rem 2rem;
}

#header .navigation a,
#header .navigation p,
#header .navigation button {
    color: #333333;
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 1.5rem;
    text-decoration: none;
}

#header .navigation a:hover,
#header .navigation button:hover {
    color: #666666;
}

#header .navigation a::after,
#header .navigation button::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #666666;
    transition: width 0.3s;
}

#header .navigation a:hover::after,
#header .navigation button:hover::after {
    width: 100%;
}
#header .navigation a:active,
#header .navigation button:active {
    color: #ffa500;
}

#header .navigation a:active::after,
#header .navigation button:active::after {
    width: 100%;
}

.hover-glow:active {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
/*
/* Hover Glow Effect *
.hover-glow:hover {
    /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);*
}
*/
/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/home2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s;
}

.blue-box {
    background-color: blue;
    /*color: white;*/
    -webkit-text-fill-color: blue; /* For Safari */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
  }
  

.overlay {
    position: absolute;
	z-index: 2;
    /*top: 0;*/
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.3);*/
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
}

.hero-section:hover .hero-image {
    transform: scale(1.1);
    filter: blur(0.5px);
}

.hero-section:hover .hero-content {
    /*opacity: 1;*/
    transform: translateY(0);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.hero-content a {
    font-size: 1.5rem;
    color: #ffffff;
    padding: 1rem 2rem;
    background-color: #ffa500;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero-content a:hover {
    background-color: #ff8200;
}

/* Unique Features Section Styles */
.unique-features-section {
    background-color: #f1f5f9;
    padding: 4rem 0;
    text-align: center;
}

.unique-features-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.unique-features-description {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.feature-card {
    border: 1px solid #e1e1e1;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.feature-card-description {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.feature-card-icon {
    font-size: 3rem;
    color: #333;
}

/* Footer Section Styles *
.footer-section {
    background-color: #333;
    color: #f5f5f5;
    padding: 4rem 0;
    text-align: center;
    width: 100vw;
}

/******************/

.footer-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #333;
    color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
	text-align: center;
    padding: 0 20px;
    z-index: 5; /* Set a higher z-index value */
}

/***************/
.footer-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: #f5f5f5;
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 1rem;
    text-decoration: none;
}

.footer-link:hover {
    color: #999;
}

/* Updated Colors */
.btn-primary {
    background-color: #ffa500;
}

.feature-card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1), 0 0 10px #ffa500;
}

/* Responsive Styles */
@media (min-width: 640px) {
    .hero-section {
        height: 600px;
    }
}

@media (min-width: 768px) {
    .hero-section {
        height: 700px;
    }

    .benefits-section {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }

    #header .navigation {
        display: flex;
    }

    #header .navigation a {
        margin-left: 2rem;
    }

    .feature-card {
        padding: 2.5rem;
    }

    .footer-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-navigation a {
        margin-left: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        height: 800px;
    }

    .benefits-section {
        gap: 3rem;
    }
}

@media (min-width: 1280px) {
    .hero-section {
        height: 900px;
    }
}

.slider {
  width: 100%;
  height: 900px; /* Adjust the height as needed */
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire slide */
}

.topnav{
    /*font-family: 'Montserrat', sans-serif;*/
    font-family: 'Tahoma', sans-serif;
    font-size: 12px;
}

.jobheading{
    /*font-family: 'Montserrat', sans-serif;*/
    font-family: 'Tahoma', sans-serif;
    font-size: 14px;
    font-weight: 900;
    font-weight: bold;
    color: #181996;
}

h3 {
    font-family: Tahoma, sans-serif;
    font-size: 14px;
    /*font-weight: 700;/* bold*/
    font-weight: bold;
    color: #181996;
}
