body{font-family: Arial, Helvetica, sans-serif; margin:0; padding:0; background:#f7f7f7;color:#222}
.container{max-width:900px;margin:24px auto;padding:20px;border-radius:6px;box-shadow:0 2px 6px rgba(0,0,0,.06)}
.job{border-bottom:1px solid #eee;padding:12px 0}
.job h2{margin:4px 0}
.meta{color:#666;font-size:0.9rem}
form label{display:block;margin:8px 0}
input,textarea,select{width:100%;padding:8px;margin-top:4px;border:1px solid #ddd;border-radius:4px}
button{padding:10px 14px;border:none;background:#0073e6;color:#fff;border-radius:4px}
.card{background:#fff;border:1px solid #eee;padding:12px;border-radius:6px;flex:1;text-align:center}
.success{background:#e6ffed;border:1px solid #bff0c6;padding:8px;border-radius:4px}
.error{background:#ffe6e6;border:1px solid #f0bfc6;padding:8px;border-radius:4px}
.admin-main{flex:1;padding:12px}
.admin-layout{display:flex}



* {
    margin: 0;
    padding: 0;
}

/* --- Transparent Header --- */
/***************************************
    HEADER + NAVIGATION (TRANSPARENT)
****************************************/

.header {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2000;
    
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}




/* Container */
.containerr {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.containerr > a {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0044ff;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.containerr > a:hover {
    color: #00c6ff;
}

/***************************************
    DESKTOP NAVIGATION
****************************************/

.nav {
    display: flex;
    gap: 18px;
}

.nav a {
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 5px;
    color: blue;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav a:hover {
    background: white;
    color: #0052cc;
}

/* Apply Now button */
.nav a:last-child {
    background-color: rgba(0, 123, 255, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    margin-left: 20px;
}

.nav a:last-child:hover {
    background-color: rgba(0, 86, 179, 0.9);
}

/***************************************
    MOBILE MENU TOGGLE
****************************************/

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    user-select: none;
}

/***************************************
    MOBILE RESPONSIVE MENU
****************************************/

@media (max-width: 900px) {

    /* Show hamburger icon */
    .menu-toggle {
        display: block;
    }

    /* Mobile dropdown menu */
    .nav {
        display: none;           /* hidden by default */
        position: absolute;
        top: 75px;
        right: 0;
        width: 100%;
        background: rgba(0,0,0,0.85);
        backdrop-filter: blur(6px);
        flex-direction: column;
        padding: 25px 0;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .nav a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        margin: 0;
        background: transparent;
    }

    /* Apply Now button for mobile */
    .nav a:last-child {
        border-bottom: none;
        background: #0073ff;
        margin-top: 10px;
        width: 140px;
        
    }
    

    /* Show menu when active */
    .nav.show-menu {
        display: flex;
    }

    .containerr a {
        font-size: 1.4rem;
    }
}






/* General Body Styling */
/* Hero Section */
.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Carousel Container */
.carousel-container {
    max-width: 100%;
    position: relative;
}

/* Slides Wrapper */
.carousel-slides {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

/* Each Slide */
.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

/* Active Slide */
.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Overlay */
.carousel-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* Dark overlay */
    z-index: 3;
}

/* Slide Content */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 700px;
    z-index: 5;
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
}

.carousel-slide.active .slide-content {
    opacity: 1;
}

/* Images */
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide text */
.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.carousel-btn {
    padding: 12px 25px;
    font-size: 1rem;
    background: #0044ff;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.carousel-btn:hover {
    background: #d40000;
}

/* Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    transition: 0.3s;
    user-select: none;
    z-index: 10;
}

.prev:hover, .next:hover {
    color: #ff0000;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.dots-container {
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 5;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.dot.active {
    background-color: #007bff;
}

/* Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide-content h2 { font-size: 2rem; }
    .slide-content p { font-size: 1rem; }
}







/*why about us
/* ==================== WHY CHOOSE US SECTION ==================== */
/* Section Wrapper */
/* Section Wrapper */
.whyChooseUs {
    width: 100%;
   
    font-family: Arial, sans-serif;
}

.whyChooseUs .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Heading */
.whyChooseUs h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.whyChooseUs .highlight {
    color: #007bff; /* Highlight color */
}

.whyChooseUs p {
    font-size: 1rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Cards Container */
.whychooseuscard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Individual Card */
.card1 {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Icon/Text Above Title */
.icon {
    display: inline-block;
    padding: 8px 15px;
    background: #007bff;
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Card Title */
.card1 h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 10px;
}

/* Card Description */
.card1 p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .whychooseuscard {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .whyChooseUs .container{
        width: 90%;
    }
}

@media (max-width: 600px) {
    .whychooseuscard {
        grid-template-columns: 1fr;
    }

    .whyChooseUs h1 {
        font-size: 2rem;
    }
}





/* About Section Wrapper */
.Aboutus {
    padding: 80px 20px;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

/* Container (Text + Image) */
.aboutus-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left Text */
.aboutustext {
    flex: 1;
    min-width: 300px;
}

.aboutustext h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.aboutustext h2 span {
    color: #007bff; /* Ruthko brand red */
}

.aboutustext p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    max-width: 600px;
}

/* Right Image */
.aboutus-image {
    flex: 1;
    min-width: 300px;
}

.aboutus-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

/* Responsiveness */
@media (max-width: 900px) {
    .aboutus-container {
        flex-direction: column;
        text-align: center;
    }

    .aboutustext p {
        margin: auto;
    }

    .aboutus-image img {
        max-width: 90%;
        margin-top: 20px;
    }
}





/* ====================== SITE FOOTER ====================== */
.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Footer Sections */
.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section h3{
    color:#00aaff;
}

.footer-section h3 {
    font-size: 24px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #00aaff;
    padding-bottom: 8px;
    display: inline-block;
}

/* Company Info */
.footer-section p {
    color: #bbbbbb;
    margin-bottom: 12px;
    font-size: 15px;
}

/* Quick Links */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00aaff;
    padding-left: 5px;
}

/* Contact Info */
.footer-section a[href^="mailto:"] {
    color: #00aaff;
    text-decoration: none;
}

.footer-section a[href^="mailto:"]:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-links a.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #333;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a.social-icon:hover {
    background-color: #00aaff;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 170, 255, 0.3);
}

/* Horizontal Rule */
.site-footer hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #444, transparent);
    margin: 20px auto;
    max-width: 90%;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 20px 30px;
    background-color: #111;
    font-size: 14px;
    color: #888;
}

.footer-bottom p {
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .social-links {
        justify-content: center;
    }
    
    .footer-section h4 {
        display: block;
        border-bottom: 2px solid #00aaff;
    }
    
    .site-footer {
        margin-top: 60px;
    }
}

/* Optional: Add a subtle accent color (blue theme) */
:root {
    --accent-color: #00aaff;
}

/* If you want to use a different accent color, just change it here */
.footer-section h4 {
    border-color: var(--accent-color);
}
.social-links a.social-icon:hover {
    background-color: var(--accent-color);
    box-shadow: 0 8px 15px rgba(0, 170, 255, 0.3);
}















.apply-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.apply-modal-content {
    background: #fff;
    padding: 25px;
    width: 95%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    position: relative;
}

.close-modal {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 28px;
    cursor: pointer;
}

.apply-modal-content h2 {
    margin-bottom: 15px;
}

.apply-modal-content input,
.apply-modal-content button {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.submit-btn {
    background: #0077cc;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}


.submit-btn:hover {
    background: #005fa3;
}


.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination .page-link {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    background: none;
    border: 1px solid #ccc;
    color: #3366ff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
}

.pagination .page-link:hover {
    background: #e8f0ff;
}

.pagination .active {
    background: #3366ff;
    color: white !important;
    border-color: #3366ff;
}













/* Empowering Careers Section */
.empowering {
    width: 100%;
    padding: 100px 0px;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.3)),
                url('/Ruthko/public/assets/your-image.jpg') center/cover no-repeat;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Content Box */
.careers {
    max-width: 700px;

}

/* Heading */
.careers h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

/* Paragraph */
.careers p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Button */
.careers button {
    padding: 14px 35px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    background: #0073ff;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.careers button:hover {
    background: #005ad1;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .careers h1 {
        font-size: 2.3rem;
    }

    .careers p {
        font-size: 1rem;
    }

    .careers button {
        font-size: 1rem;
        padding: 12px 28px;
    }
    .careers {
    max-width: 400px;

}
}














/* Contact Section Container */
.send {
    width: 100%;
    padding: 20px 0px;
    background: #e4e5e7;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form Wrapper */
.sendcontact-form {
    width: 100%;
    max-width: 550px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Heading */
.sendcontact-form h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #222;
}

/* Form Group */
.sendform-group {
    margin-bottom: 20px;
}

/* Label */
.sendform-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
    color: #444;
}

/* Input + Textarea */
.sendform-group input,
.sendform-group textarea {
    width: 90%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border 0.3s ease;
}

/* Focus Effects */
.sendform-group input:focus,
.sendform-group textarea:focus {
    border-color: #0073ff;
}

/* Textarea */
.sendform-group textarea {
    height: 150px;
    resize: vertical;
}

/* Submit Button */
.sendcontact-form button {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: #0073ff;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.sendcontact-form button:hover {
    background: #005ad1;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 600px) {
    .sendcontact-form {
        padding: 20px;
    }

    .sendcontact-form h2 {
        font-size: 1.7rem;
    }
}













