/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* style.css */

header {
    background-color: #333; /* Dark background for the header */
    color: #fff; /* White text */
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    display: block;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffa500; /* Highlight color on hover */
}

.dropdown:hover .dropdown-menu {
    display: block;
}



.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #444; /* Darker background for dropdown */
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%; /* Position below the parent item */
    left: 0;
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.dropdown-menu li {
    border-bottom: 1px solid #555; /* Separator between dropdown items */
}

.dropdown-menu li:last-child {
    border-bottom: none; /* Remove separator for the last item */
}

.dropdown-menu li a {
    padding: 10px 20px;
    color: #fff;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #555; /* Background change on hover */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333; /* Dark background for contrast */
    color: white;
  }
  
  .company-name {
    font-size: 1.5rem; /* Adjust size for prominence */
    font-weight: bold; /* Make the text bold */
    color: #fff; /* White text */
  }
  
  .company-name span {
    text-transform: uppercase; /* Capitalize all letters */
    font-family: 'Arial', sans-serif; /* Clean font for the company name */
    letter-spacing: 1px; /* Add some space between letters */
  }
  
  nav ul {
    list-style: none; /* Remove bullet points */
    display: flex;
    gap: 20px; /* Space between navigation items */
    margin: 0;
    padding: 0;
  }
  
  nav a {
    color: white; /* White text for nav links */
    text-decoration: none; /* Remove underlines */
    font-size: 1rem;
  }
  
  nav a:hover {
    text-decoration: underline; /* Add underline on hover */
  }
  
  .dropdown-menu {
    display: none; /* Initially hidden */
    position: absolute;
    background-color: #444; /* Dropdown background */
    list-style: none;
    padding: 10px;
    margin: 0;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block; /* Show dropdown on hover */
  }
  

/* Slider styles */
.slider {
    position: relative;
    height: 100vh; /* Full screen height */
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
}

/* Home content styles */
.home-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white; /* Add text color for better visibility on background */
    z-index: 2;
}

.home-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.home-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.explore-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.explore-btn:hover {
    background-color: #45a049;
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 30px;
}


