/* Reset some default styles */
ul {
    margin: 0;
    padding: 0;
}

li {
    font-size: 19px;
    font-family: Arial;
}

p {

}

body, {
    font-family: Arial, sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;

}

div {
    font-family: Arial, sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
    padding-top: 20px;
}

header {
    background-image: url('hero-image.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 25px 0;
}

footer {
    padding: 1px 0;
    text-align: center;
    background-color: #96C9DC;
    color: black;

}
nav {
    background-color: #96C9DC;
    padding: 17px 0;

}

nav ul {
    list-style: none;
    text-align: center;

}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: black;
    text-decoration: none;
}

.about-us {
    text-align:center;
    padding: 40px;
    font-size: 20px;

}

.company-name {
    text-align: center;
}

.cohop {
    font-family: Georgia;
    font-style: italic;
    font-weight: bold;

}

.contact-us {
    text-align:center;
    padding: 40px 0;

}

.dohop {
    font-family: Georgia;
    font-style: italic;
}


.features {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature h1 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 17px;
    color: #666;
}

/* Basic slider layout */

.airlines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 25px;
}

.airlines-item {
    position: relative;
    overflow: hidden;
}

.airlines-item img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.airlines-item:hover img {
    transform: scale(1.1); /* Add a zoom effect on hover */
}

.airlines-item:hover .overlay {
    opacity: 1; /* Show the overlay on hover */
}

.caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;

}

.highlight {
    background-color: black; /* Set the background color for highlighting */
    /* Optionally, adjust other styles */
    font-weight: bold; /* Example: make the text bold */
    color: white;
    padding: 2px 4px; /* add padding for better visibility */
    border-radius: 4px; /* rounded corners */
  }

.logo {
    width: 200px;
    height: auto;
    vertical-align: middle; /* Vertically align the image with the header text */
}

.ohop {
    font-family: Georgia;
    font-weight: bold;
    font-size: 23px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal img {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    max-height: 80%;
}

.close {
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}


/* Animation for the pop-up effect */
@keyframes popUp {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.picture-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
    border: 1px solid #ccc;
    padding: 5px;
    margin: 0 auto; /* Center the picture container */
}

.picture-container img {
    max-width: 100%;
    max-height: 100%;
    margin: 10px 0; /* Adjust the vertical margin as needed for spacing */

}

.row {

    display: flex;
    flex-direction: column;
}

.row-item {
    display: flex;
    flex-direction: row;
    margin: 20px;
    border: 1px solid #ccc;
}

.text, .image {
    flex: 1;
    padding: 20px;
}

.image img {
    width: 80%;
    height: auto;
    padding-left: 60px;
}

/* Alternate background color for better visual separation */
.row-item:nth-child(even) {
    background-color: #f5f5f5;
}

.reversed {
    flex-direction: row-reverse;
}

/* Individual slide */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider {
    position: relative;
    width: auto;
    height: 500px;
    overflow: hidden;
}

/* Positioning the slides in a row */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tab Styles */

.tabs {
  
}

.tab-link {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  margin-right: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.tab-link:hover {
  background-color: #ddd;
  font-size: 20px;
  font-weight: bold;
}

.welcome-message {
    text-align: center;

}


/* Media query for smaller screens */
@media (max-width: 768px) {
    .features {
        flex-direction: column; /* Stack the features vertically */
        align-items: center;
    }

    .feature {
        width: 80%; /* Adjust the width as needed */
        margin: 20px 0;
    }

    .picture-container {
        width: 100%; /* Expand to the full width of the container */
    }
}








