/* services.css - Custom CSS for Services Page */

/* Base Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #333333;
    --light-text: #6b7280;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --dark-bg: #1f2937;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}



.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 10px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text-color);
}

.section-header p {
    color: var(--light-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 36px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-color);
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    text-align: center;
}

.service-features {
    text-align: left;
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--light-text);
    list-style-type: none;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.process-step p {
    color: var(--light-text);
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    opacity: 0.9;
}


.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px 30px;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .process-steps {
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 150px 0 80px;
        margin-top: 70px;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-step {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 120px 0 60px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}



/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 30px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-color);
}

.benefit-card p {
    color: var(--light-text);
    margin-bottom: 0;
    text-align: center;
}

.benefit-card p strong {
    color: var(--primary-color);
}

/* Animation delays for cards */
.benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefit-card:nth-child(4) { transition-delay: 0.4s; }
.benefit-card:nth-child(5) { transition-delay: 0.5s; }
.benefit-card:nth-child(6) { transition-delay: 0.6s; }








/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --bg-color: #ffffff;
    --light-bg: #f9fafb;
    --dark-bg: #111827;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.map-section{
    padding: 0px 0px !important;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 15px;
    color: var(--light-text);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0; /* Reduced height */
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}




.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: auto;
    width: 100px;
}

.navbar ul {
    display: flex;
    gap: 30px;
}

.navbar ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: var(--primary-color);
}

.hamburger {
    z-index: 1003;
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}


/* Slider Styles */
.slider-container {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    max-height: 500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slider {
    
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    height: 400px;
}
.slide h1 {
    position: absolute;
    left: 10%;
    top: 30%;
    transform: translateY(-50%);
    color: rgb(0, 0, 0);
    font-size: 4rem;
    font-weight: 700;
    font-family: "Libertinus Sans", sans-serif;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
    z-index: 5;
    width: 40%;
    max-width: 500px;
    animation: fadeInLeft 1s ease;
}
.slide {
    position: relative; /* Ensure this is set for absolute positioning of children */
    display: flex;
    align-items: center;
    min-width: 100%;
    height: 100%;
    position: relative;
    transition: opacity 0.5s ease;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-container {
        max-height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        padding: 0.8rem;
    }
}
/* Hero Section */
/* .hero {
    padding-top: 150px;
    background-color: var(--light-bg);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
} */
/* Hero Section with Background Image */
.hero {
    padding-top: 150px;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('assets/banner_1.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Adjust button colors for light background */
.hero .btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.hero .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}
/* Services Section */
.services {
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* About Section */
.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-content {
    flex: 1;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.about-list i {
    color: var(--primary-color);
}

/* Team Section */
.team {
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    background-color: rgba(37, 99, 235, 0.8);
    transition: bottom 0.3s ease;
}

.team-member:hover .social-links {
    bottom: 0;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.team-member h3 {
    margin-top: 20px;
}

.team-member p {
    color: var(--primary-color);
    font-weight: 500;
}

.team-content {
    padding: 20px;
    text-align: center;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
}

.cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta h2 {
    color: white;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 80px 0 0;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    margin-top: 3px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}
/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer-grid {
        gap: 20px;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    /* Stack footer columns vertically */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Center all content */
    .footer-social,
    .contact-info li {
        justify-content: center;
    }
    
    /* Adjust spacing */
    .footer-col {
        margin-bottom: 40px;
    }
    
    .footer-col:last-child {
        margin-bottom: 0;
    }
    
    /* Stack footer bottom links */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    /* Smaller adjustments for mobile */
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-col h3 {
        font-size: 18px;
    }
    
    .contact-info li {
        font-size: 14px;
    }
}





/*CAREER PAGE CSS*/

/* Careers Page Styles */
.careers-main {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    
}

/* Search Section */
.careers-search {
    /* background-color: #2c3e50; */
    color: #2c3e50;
    padding: 3rem 0;
    text-align: center;
}

.search-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;

}

.search-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.search-bar {
    display: flex;
    margin-bottom: 1.5rem;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 12px;
}

.search-bar input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
}

.search-bar button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background-color: #2980b9;
}

.filter-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    
}

.filter-options select {
    padding: 0.5rem;
    border-radius: 4px;
    border: none;
    background-color: white;
    color: #333;
    
}
/* Add to your CSS */
.no-jobs-message {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: #666;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 2rem 0;
    display: none;
}
#jobsList:empty + .no-jobs-message {
    display: block;
}

/* Hide no jobs message when there are jobs */
#jobsList:not(:empty) + .no-jobs-message {
    display: none;
}


/* Job Listings Section */
.job-listings {
    padding: 1rem 0;
}

.jobs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.jobs-container h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.job-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-header h3 {
    color: #2c3e50;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.job-type {
    background-color: #e8f4fc;
    color: #3498db;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-location {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.job-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.job-skills span {
    background-color: #f0f0f0;
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.apply-btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.apply-btn:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
    }
    
    .search-bar input {
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
    
    .search-bar button {
        border-radius: 4px;
        justify-content: center;
    }
    
    .filter-options {
        flex-direction: column;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Application Modal Styles */
.application-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.application-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.application-form label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: white;
    padding: 0 5px;
    font-size: 0.9rem;
    color: #3498db;
}

.application-form input,
.application-form select {
    width: 95%; 
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.application-form input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52,152,219,0.2);
}

.file-upload {
    padding: 1rem;
    border: 1px dashed #ddd;
    border-radius: 4px;
    text-align: center;
   
    margin-bottom: 1.5rem;
}

.file-upload input[type="file"] {
    display: none;
    
}

.file-upload label {
    display: block;
    cursor: pointer;
    color: #666;
    margin-bottom: 0.5rem;
}

.file-name {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}


/* Contact Page Styles */
.contact-hero {
    background-size: cover;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    /* margin-top: 80px; */
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-content {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info1 {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* .contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
} */
/* Logo Styles */
.contact-logo {
    text-align: center;
    padding-top: 50px;
    margin-bottom: 30px;
}

.contact-logo img {
    max-width: 200px; /* Adjust this to your preferred size */
    height: auto;
    border-radius: 8px; /* Optional: adds rounded corners */
}
.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-method p {
    color: var(--light-text);
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
}



/* Add this to your existing CSS file */
.page-banner {
    background: linear-gradient(135deg, #ffc472 0%, #82b4fb 50%, #ff6971 100%);
    color: rgb(40, 19, 19);
    height: 60vh;
    /* padding: 50vh 0; */
    text-align: center;
    position: relative;
    overflow: hidden;
    /* margin-top: 80px; */
}

.page-banner .banner-content h1 {
    font-size: 78px;
    font-family: "Libertinus Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease;
}

/* Optional: Add some decorative elements */
.page-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
/* @media (max-width: 768px) {
    .page-banner {
        padding: 80px 0;
        margin-top: 70px;
    }
    .page-banner .banner-content h1 {
        font-size: 38px;
    }
    .slider-container h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 60px 0;
    }
    .page-banner .banner-content h1 {
        font-size: 28px;
    }
} */


/* Responsive Adjustments */
@media (max-width: 1200px) {
    /* Services grid adjustments */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    /* Header adjustments */
    .header .container {
        padding: 0 15px;
    }
    
    /* Slider adjustments */
    .slider-container {
        max-height: 400px;
    }
    
    .slide h1 {
        font-size: 3rem;
        width: 50%;
    }
}

@media (max-width: 992px) {
    /* Navigation toggle adjustments */
    .navbar {
        position: absolute;
        top: 100px;
        left: 0;
        text-align: center;
        width: 100%;
        background-color: var(--white);
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 1002;
    }
    
    .navbar.active {
        transform: translateY(0);
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Slider adjustments */
    .slider-container {
        max-height: 350px;
    }
    
    .slide h1 {
        font-size: 2.5rem;
        width: 60%;
    }
    
    /* Process steps adjustments */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header adjustments */
    .logo img {
        height: 60px;
        width: 80px;
    }
    
    /* Slider adjustments */
    .slider-container {
        max-height: 300px;
    }
    
    .slide h1 {
        font-size: 2rem;
        width: 70%;
        top: 25%;
    }
    
    /* Services section adjustments */
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    /* Why choose us section */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Process steps adjustments */
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    /* Slider adjustments */
    .slider-container {
        max-height: 250px;
    }
    
    .slide h1 {
        font-size: 1.5rem;
        width: 80%;
        top: 20%;
    }
    
    /* Services section adjustments */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    /* Why choose us section */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA section */
    .cta-content h2 {
        font-size: 24px;
    }
}

/* Toggle menu positioning fix */
@media (max-width: 992px) {
    .header {
        position: relative;
    }
    
    .hamburger {
        position: absolute;
        top: 30px;
        right: 20px;
    }
    
    .navbar {
        top: 80px;
    }
}

/* Service cards single line fix */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

