
.page-container {
    transition: transform 0.5s ease-in-out;
}



body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #f1eaea;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    /* padding: 10px 20px 22px 20px; */
}

.logo img{
    height: 109px; /* Adjust the height of your logo */
    width: 100px;
    margin-right: 20px;
    border-radius: 50%;
}

.navbar a {
    color: white;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.navbar-left, .navbar-right {
    display: flex;
}

.navbar-left a {
    margin-left: 20px; /* Adjust the spacing between categories */
}

.navbar-right a {
    margin-left: 20px; /* Adjust the spacing between categories */
}

/* Style for colorful boxes */
.navbar a {
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.navbar-left a {
    background-color: #e74c3c;
}

.navbar-right a {
    background-color: #e74c3c;
}

.navbar a:hover {
    background-color: #633a99;
}

/* Adjust the spacing between the logo and the first box */
.navbar-left a:first-child {
    margin-left: 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: block;
}

.hero-section img {
    width: 100%;
    height: 98%;
    opacity: 20;
}



.hero-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #000000;
}

.hero-text p {
    font-size: 2em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/*Css typewriter animation*/
.hero-text{ display: inline-block;}

.autotext{
    font-size: 5em;
    font-family: verdana;
    letter-spacing: 10px;
    /*border-right: 5px solid; ----> This part is giving a cursor*/
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation:
         typing 4s,
         showSecondParagraph 4s; /* Animation to reveal the second paragraph after the delay */
}

@keyframes typing {
    0% { width: 0 }
    50% { width: 100% }
    55% { border-color: transparent } /* Hide cursor briefly after first paragraph */
    60% {
        font-size: 2em; /* Adjust font size for the second paragraph */
        width: 100%;
    }
    100% { width: 100% }
}

/* Additional keyframes for the second paragraph */
@keyframes typing2 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes showSecondParagraph {
    to {
        opacity: 1; /* Make the second paragraph visible */
    }
}

.small-text {
    font-size: 1em; /* Adjust the font size for the second paragraph */
    white-space: nowrap;
    overflow: hidden;
    position: relative; /* Position the second paragraph relative to the container */
    top: 70%; /* Align the second paragraph with the top of the container */
    left: 0; /* Align the second paragraph with the left of the container */
    opacity: 0; /* Initially hide the second paragraph */
    animation: typing2 2s ease-in-out 4s, fadeIn 1s 4s forwards; /* Delay the second paragraph animation by 4 seconds and fade it in */
}

@keyframes fadeIn {
    from {
        opacity: 0; /* Initially hidden */
    }
    to {
        opacity: 1; /* Faded in */
    }
}

/*glass-effect*/
.glass-effect {
    position: absolute;
    border-radius: 30px;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    height: 80%;
    max-width: 800px;
    max-height: 300px;
    background: rgba(255, 255, 255, 0.2); /* Adjust the alpha value for transparency */
    z-index: 2; /* Place it above the hero image and behind the text */
    backdrop-filter: blur(10px); /* Adjust the blur amount as needed */
}




/*search bar*/

.search-container {
    position: relative;
    text-align: center;
    /* padding: 40px; */
  }
  
  #search {
    width: 500px;
    padding: 10px 50px;
    border: none;
    border-radius: 25px; /* Make it oval-shaped */
    outline: none;
    background-image: url('img/search.png'); /* Add the path to your magnifying glass icon */
    background-image: #dfbf90;
    background-size: 20px; /* Set the size of the magnifying glass icon */
    background-position: 95% 50%; /* Adjust position to place the icon to the right */
    background-repeat: no-repeat;
    transition: width 0.2s ease-in-out;
    background-color: #dfbf90;
  }
  
  #search:focus {
    width: 400px; /* Increase the width on focus for animation */
  }
  
  .search-btn {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    outline: solid;
  }


/*Top Companies Hiring*/
/* Add this to the existing CSS */

.top-companies-section {
    text-align: center;
    padding: 40px 20px; /* Add padding for top and bottom spacing */
    background-color: #f9f9f9; /* Background color for the section */
}

.top-companies-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.company-box {
    display: inline-block;
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 0 10px; /* Add margin between company boxes */
    box-sizing: border-box;
}

.company-box img {
    width: 100%;
    height: 150px; /*You can set it as auto also*/
    border-radius: 5px;
    margin-bottom: 10px;
}

.company-box h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.company-box p {
    margin: 5px 0;
}

.company-box a {
    display: inline-block;
    padding: 8px 12px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}




/*Stand out among existing recruiters*/


.stand-out-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.stand-out-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-form input {
    width: calc(100% - 20px); /* Adjusted width to account for padding */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.hiring-process-animation {
    position: absolute;
    top: 20px; /* Adjust the top position */
    right: -30px; /* Adjust the right position */
    width: 200px; /* Adjust the width of the animation box */
    height: 200px; /* Adjust the height of the animation box */
    background-color: #3498db;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px; /* Add padding */
}

.hiring-process-animation::before,
.hiring-process-animation::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background-image: url('img/manager.png'); /* Replace with the path to your image */
    background-size: cover;
    animation: hiringProcess 2s infinite;
}

.hiring-process-animation::before {
    left: 0;
}

.hiring-process-animation::after {
    right: 0;
}

@keyframes hiringProcess {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(100%);
    }
}



/*contact banner*/

/*footer*/

.footer-banner {
    background-color: #001f3f; /* Dark Blue Background */
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 10px 20px 40px 20px;
}

.footer-column {
    flex: 1;
    margin-right: 20px; /* Adjust the margin between columns */
}

.company-logo img {
    max-width: 100%; /* Adjust the size of the company logo */
    height: auto;
    padding-top: 30px;
    border-radius: 50%;
}

.connect-section,
.quick-links,
.support-links,
.legal-section,
.animation-section {
    text-align: left;
}

.connect-section h3,
.quick-links h3,
.support-links h3,
.legal-section h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.connect-section p,
.connect-section a,
.quick-links ul,
.support-links ul,
.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.connect-section p,
.quick-links li,
.support-links li,
.legal-section li {
    margin-bottom: 5px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}



.map-container {
    width: 300px; /* Set the desired width */
    height: 200px; /* Set the desired height */
    margin-left: 20px; /* Adjust the spacing between the map and other content */
    padding-top: 30px;
}


