*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

#banner{
    background: linear-gradient(rgba(0,0,0,0.5),#87996f),url(images/Banner-1.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.logo {
    width: 140px;
    position: absolute;
    top: 4%;
    left: 15%;
}
.banner-text {
    text-align: center;
    color: #fff;
    padding-top: 180px;
}
.banner-text h1 {
    font-size: 130px;
    font-family: 'Kaushan Script', cursive;
}
.banner-text p {
    font-size: 20px;
    font-style: italic;
}
.banner-btn{
    margin: 70px auto 0;
}
.banner-btn a {
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: #fff;
    border: .5px solid #fff;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
}
.banner-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}
.banner-btn a:hover span{
    width: 100%;
}
.banner-btn a:hover{
    color: #000;
}
#sideNav{
    width: 200px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    background: none;
    z-index: 2;
    transition: 0.5s;
    overflow-y: auto;
}
nav ul li {
    list-style: none;
    margin: 50px 20px;
}
nav ul li a {
    text-decoration: none;
    color: #c5490fff;
    display: block; /* Changed to block for full clickable area */
    padding: 10px;
}
#menuBtn{
    width: 50px;
    height: 50px;
    background: #d6b937;
    text-align: center;
    position: fixed;
    right: 30px;
    top: 20px;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
}
#menuBtn img{
    width: 20px;
    margin-top: 15px;
}
@media screen and (max-width: 770px){
    .banner-text h1 {
        font-size: 44px;
    }
    .banner-btn a {
        display: block;
        margin: 20px auto;
    }
}

/*--feature--*/
#feature{
    width: 100%;
    padding: 70px 0;
}
.title-text{
    text-align: center;
    padding: 30px;
    padding-bottom: 70px;
}
.title-text p{
    margin: auto;
    font-size: 30px;
    color: #87996f;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#87996f,#fff);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.title-text h1{
    font-size: 50px;
}
.feature-box{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: inherit;
}
.features{
    flex-basis: 50%;
}
.features-img{
    flex-basis: 50%;
    margin: auto;
}
.features-img img{
    width: 70%;
    border-radius: 10px;
}
.features h1{
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    color: #87996f;
}

.features-desc{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.feature-icon .fa-solid, .feature-icon .fa-regular { /* Updated to target Font Awesome 6 classes */
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 8px;
    color: #d6b937;
    border: 1px solid #f34e31;
    text-align: center;
}
.feature-text p{
    padding: 0 20px;
    text-align: initial;
}
@media screen and (max-width: 770px){
    .title-text h1{
        font-size: 35px;
    }
    .features{
        flex-basis: 100%;
        }
    .features-img{
            flex-basis: 100%;
            margin: auto;
    }
    .features-img img{
        width: 100%;
    }
}

/*-----service-----*/
#service{
    width: 100%;
    padding: 20px 0;
    background: #e6d7a3;
}
.service-box{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}
.single-service{
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: hsl(0, 43%, 99%);
    position: relative;
}
.single-service img{
    width: 80%;
    border-radius: 7px;
}
.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0, 0, 0, 0.5),#f7f6b9);
    opacity: 0;
    transition: 1s;
}
.single-service:hover .overlay{
    opacity: 1;
}
.service-desc{
    width: 80%;
    position: absolute;
    bottom: 0%;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    transition: 1s;
}
hr{
    background: #fff;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}
.service-desc p{
    font-size: 14px;
}
.single-service:hover .service-desc{
    bottom: 40%;
    opacity: 1;
}
@media screen and (max-width: 770px){
    .single-service{
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    .service-desc p{
        font-size: 12px;
    }
    hr{
        margin: 5px auto;
    }
    .single-service:hover .service-desc{
        bottom: 25% !important;
    }
}

/*------news-blog (Newspaper Style)-----*/
#news-blog {
    width: 100%;
    padding: 70px 0;
    background: #fff; /* A light background to stand out */
}
#news-blog .title-text h1 {
    font-size: 45px;
    color: #333;
}
#news-blog .title-text p {
    color: #555;
}
.news-container {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px;
    padding-top: 50px;
}
.news-article {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: transform 0.3s;
    overflow: hidden; /* To contain the image with border-radius */
}

.news-article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-content {
    padding: 20px;
}
.news-article:hover {
    transform: scale(1.05);
}
.news-article h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.news-article p {
    color: #666;
}


/*------testimonial-----*/

#Testimonial{
    width: 100%;
    padding: 70px 0;
}
.testimonial-row{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.testimonial-col{
    flex-basis: 28%;
    padding: 10px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 10px 20px 3px #b99c19;
    cursor: pointer;
    transition: transform .5s;
}
.testimonial-col p{
    font-size: 14px;
}
.user{
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.user img{
    width: 40px;
    margin-right: 20px;
    border-radius: 3px;
}
.user-info .fa{
    margin-left: 10px;
    color: #27c0ff;
    font-size: 20px;
}
.user-info small{
    color: #009688;
}
.testimonial-col:hover{
    transform: translateY(-7px);
}
@media screen and (max-width: 770px){
    .testimonial-col{
        flex-basis: 100%;
    }    
}

/*------footer-----*/

#footer{
    padding: 100px 0 20px;
    background: #efefef;
    position: relative;
}
.footer-row{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-left, .footer-right{
    flex-basis: 45%;
    padding: 10px;
    margin-bottom: 20px 5px 0 0;
}
.footer-right{
    text-align: right;
}
.footer-row h1{
    margin: 10px 0;
}
.footer-row p{
    line-height: 35px;
}
.footer-left .fa, .footer-right .fa {
    font-size: 20px;
    color: #009688;
    margin: 10px;
}
.footer-img{
    max-width: 370px;
    opacity: 0.8;
    position: absolute;
    left: 40%;
    top: 35%;
    transform: translate(-50%, -50%);
}
.social-links{
    text-align: center;
}
.social-links .fa {
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    border: 1px solid #009688;
    margin: 40px 5px 0;
    color: #009688;
    cursor: pointer;
    transition: .5s;
}
.social-links .fa:hover{
    background: #009688;
    color: #fff;
    transform: translateY(-7px);
}
.social-links p{
    font-size: 12px;
    margin-top: 20px;
}
@media screen and (max-width: 770px){
    .footer-left, .footer-right{
        flex-basis: 100%;
        font-size: 14px;
    }
    .footer-img{
        top: 25%; 
    }
}
/* Booking Section Styles */
#booking {
    width: 100%;
    padding: 70px 0;
    background: #f7f6b9; /* Light background for the booking section */
}

.booking-container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

.calendar-wrapper {
    flex-basis: 45%;
    min-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 15px;
}

.calendar-grid div {
    padding: 10px 5px;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.calendar-grid div:hover:not(.past-day) {
    background-color: #e6d7a3;
}

.calendar-grid div.selected {
    background-color: #87996f;
    color: #fff;
}

.calendar-grid div.past-day {
    background-color: #f0f0f0;
    color: #bbb;
    cursor: not-allowed;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.calendar-nav button {
    background: #87996f;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.calendar-nav button:hover {
    background: #6a7a58;
}

#currentMonthYear {
    font-weight: bold;
    font-size: 1.2em;
    color: #333;
}

.booking-form-wrapper {
    flex-basis: 45%;
    min-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.booking-form-wrapper label {
    display: block;
    margin-bottom: 8px;
    margin-top: 15px;
    font-weight: bold;
    color: #555;
}

.booking-form-wrapper input[type="text"],
.booking-form-wrapper input[type="email"],
.booking-form-wrapper select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.booking-form-wrapper button[type="submit"] {
    background: #d6b937;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.booking-form-wrapper button[type="submit"]:hover {
    background: #c7a910;
}

#bookingMessage {
    margin-top: 15px;
    font-weight: bold;
}

@media screen and (max-width: 770px) {
    .booking-container {
        flex-direction: column;
        align-items: center;
    }
    .calendar-wrapper, .booking-form-wrapper {
        flex-basis: 100%;
        width: 90%;
    }
    
}
/* Raven-specific styles */

#raven-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/547287666_727743953553449_4477259921234447522_nFGlobal-Exploree-LVN507-PTY-cover.jpg') no-repeat center center; /* Replace with your Raven specific banner image */
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

#raven-hero h1 {
    font-family: 'Kaushan Script', cursive;
    font-size: 80px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

#raven-hero p {
    font-size: 24px;
    margin-bottom: 40px;
    font-style: italic;
}

.hero-buttons a {
    text-decoration: none;
    display: inline-block;
    margin: 0 15px;
    padding: 15px 30px;
    border: 2px solid #fff;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
}

.hero-buttons a.btn-primary {
    background-color: #c7a910ff; /* Raven accent color */
    border-color: #c7a910ff;
}

.hero-buttons a.btn-primary:hover {
    background-color: #a0880e;
    border-color: #a0880e;
    color: #fff;
}

.hero-buttons a.btn-secondary:hover {
    background-color: #fff;
    color: #333;
}

/* About Section */
#raven-about {
    padding: 100px 0;
    background: #fdfdfd;
}

#raven-about .title-text p {
    color: #c7a910ff;
}
#raven-about .title-text h1 {
    color: #333;
}

.about-content {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.about-text .btn-primary {
    display: inline-block;
    background-color: #c7a910ff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.about-text .btn-primary:hover {
    background-color: #a0880e;
}

/* Gallery Section (Image Cards) */
#raven-gallery {
    padding: 100px 0;
    background: #e6d7a3; /* Consistent with your service section background */
}

#raven-gallery .title-text p {
    color: #c5490fff; /* A contrasting accent from your brand */
}
#raven-gallery .title-text h1 {
    color: #333;
}

.image-cards-container {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-top: 50px;
}

.image-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

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

.image-card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #333;
}

.card-info p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
}

/* Video Cards Section */
#raven-videos {
    padding: 100px 0;
    background: #fdfdfd;
}

#raven-videos .title-text p {
    color: #87996f; /* Another accent from your brand */
}
#raven-videos .title-text h1 {
    color: #333;
}

.video-cards-container {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 50px;
}

.video-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact / Lead Capture Section */
#raven-contact {
    padding: 100px 0;
    background: #efefef; /* Consistent with your footer background */
    text-align: center;
}

#raven-contact .title-text p {
    color: #009688; /* From your footer social links */
}
#raven-contact .title-text h1 {
    color: #333;
}

.contact-form-container {
    width: 60%;
    margin: 50px auto 0;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left;   
}

/* Admin-specific styles */

#banner-admin {
    background: linear-gradient(rgba(121, 160, 222, 0.5),#87996f),url(images/Workspace.1.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.banner-admin p {
    font-size: 20px;
    font-style: italic;
}

.admin-dashboard, #admin-event-creation {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 32px;
  margin: 32px auto;
  max-width: 600px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
#admin-event-creation label {
  font-weight: bold;
  margin-top: 12px;
}
#admin-event-creation input, #admin-event-creation textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
#admin-event-creation button {
  background: #222;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#admin-event-creation button:hover {
  background: #444;
}
 #updateCredentialsForm label {
            font-weight: bold;
            font-size: 1.1em;
            margin-top: 15px;
            display: block;
}

#updateCredentialsForm input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* To include padding and border in the width */
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.approval-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.approval-card h3 {
    margin-top: 0;
}

.changes-list {
    list-style: none;
    padding: 0;
}

.changes-list li {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8px;
    margin-bottom: 8px;
}

.changes-list strong {
    font-weight: bold;
}

/* Basic styles for recruitment page */
body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}
h1, h2, h3 {
    color: #c7a910ff;
}
.btn-primary {
    background: #222;
    color: #fff;
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    border-radius: 4px;
}
#sideNav {
    position: fixed;
    right: -250px;
    width: 250px;
    background: #222;
    transition: right 0.3s;
    z-index: 1000;
}
#sideNav nav ul {
    list-style: none;
    padding: 0;
}
#sideNav nav ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px;
}
#menuBtn {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
}
#recruitment-hero {
    background: linear-gradient(rgba(0,0,0,0.5), #87996f), url('images/Recruitmentimg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.contact-form-container {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
label {
    display: block;
    margin-top: 16px;
    font-weight: bold;
}
input[type="text"], input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.disclaimer {
    font-size: 0.9em;
    color: #555;
    margin-top: 24px;
}

/* community styles */
#raven-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/547287666_727743953553449_4477259921234447522_nFGlobal-Exploree-LVN507-PTY-cover.jpg') no-repeat center center; /* Replace with your Raven specific banner image */
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

#raven-hero h1 {
    font-family: 'Kaushan Script', cursive;
    font-size: 80px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

#raven-hero p {
    font-size: 24px;
    margin-bottom: 40px;
    font-style: italic;
}

.hero-buttons a {
    text-decoration: none;
    display: inline-block;
    margin: 0 15px;
    padding: 15px 30px;
    border: 2px solid #fff;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
}

.hero-buttons a.btn-primary {
    background-color: #c7a910ff; /* Raven accent color */
    border-color: #c7a910ff;
}

.hero-buttons a.btn-primary:hover {
    background-color: #a0880e;
    border-color: #a0880e;
    color: #fff;
}

.hero-buttons a.btn-secondary:hover {
    background-color: #fff;
    color: #333;
}

/* Social Media Icons in Footer */
 .social-media-icons {
    margin-top: 10px;
}
.social-media-icons a {
    margin-right: 10px;
    color: #333;
    font-size: 20px;
}