/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --primary-dark: #004499;
    --accent-color: #00a86b;
    --accent-light: #7fffd4;
    --neutral-dark: #1a1a1a;
    --neutral-light: #f5f5f5;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

/* ===== Navigation ===== */
.navbar {
    background-color: #f7d63b;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.homeinfo {
    border-radius: 10px;
    z-index: 20000;
    padding: 20px;
}

.logo-img {
    height: 50px;      
    width: auto;  
    transform: scale(1.8);       
    object-fit: contain;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: red;
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: rgb(0, 0, 0);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: rgb(0, 0, 0);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    color: rgb(255, 221, 0);
    overflow: hidden;
}

.hero-content {
    position: relative;
    height: 100vh;
}

.hero-content h1, .hero-content p {
    position: absolute;
    z-index: 10;
    color: rgb(255, 221, 0);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    top: 40%;
    left: 5%;
    right: 5%;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    animation: slideInDown 0.8s ease;
}

.hero-content p {
    top: 55%;
    left: 5%;
    right: 5%;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    opacity: 0.9;
    animation: slideInUp 0.8s ease;
}

.homepagevideo {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    bottom: 20%;
    left: 5%;
    z-index: 10;
}

.cta-button:hover {
    background-color: #00994d;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button-dark {
    display: inline-block;
    background-color: var(--neutral-dark);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
}

.cta-button-dark:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.smooth-band {
    width: 100%;
    height: 35px;
    margin: 0;
    position: relative;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, rgb(122, 115, 115) 0%, rgb(137, 131, 131) 45%, rgb(137, 130, 130) 55%, rgb(136, 131, 131) 100%);
    filter: blur(6px);
    transform: translateZ(0);
}

/* ===== Services Section ===== */
.services {
    position: relative;
    padding: 80px 20px;
    min-height: 100vh;
}

.servicebg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.servicebg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.services h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: rgb(255, 221, 0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card img {
    max-width: 100%;
    height: auto;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background-color: yellow;
    color: black;
}

.service-card:hover i {
    color: black;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 0.5rem;
    color: var(--neutral-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 80px 20px;
    background-color: white;
}

.why-us h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    background-color: yellow;
    color: black;
}

.feature:hover .feature-icon {
    background-color: black;
    color: yellow;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgb(244, 232, 12);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 0.5rem;
    color: var(--neutral-dark);
}

.feature p {
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

/* ===== CTA Section ===== */
.cta-section {
    background-color: rgb(244, 225, 12);
    color: rgb(0, 0, 0);
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== Page Hero Section ===== */
.page-hero {
    position: relative;
    color: rgb(0, 0, 0);
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    opacity: 0.9;
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 20px;
}

.about-section h2 {
    font-size: clamp(2rem, 3.5vw, 2.2rem);
    margin-bottom: 2rem;
    color: var(--neutral-dark);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* ===== Mission & Vision Section ===== */
.mission-vision {
    padding: 80px 20px;
    background-color: var(--neutral-light);
}

.mission-vision h2 {
    font-size: clamp(2rem, 3.5vw, 2.2rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-dark);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mission-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.mission-card:hover {
    background-color: #f7d63b;
    transform: translateY(-5px);
    cursor: pointer;
}

.mission-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 1rem;
    color: var(--neutral-dark);
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* ===== Stats Section ===== */
.stats {
    padding: 80px 20px;
    background: #f7d63b;
    color: rgb(0, 0, 0);
}

.stats h2 {
    font-size: clamp(2rem, 3.5vw, 2.2rem);
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-card h3 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-card p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    opacity: 0.9;
}

/* ===== Team Section ===== */
.team {
    padding: 80px 20px;
}

.team h2 {
    font-size: clamp(2rem, 3.5vw, 2.2rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-top: 1rem;
    color: var(--neutral-dark);
}

.team-card p {
    color: var(--primary-color);
    font-weight: bold;
    margin: 0.5rem 0;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.team-card span {
    display: block;
    color: var(--text-light);
    font-size: clamp(0.85rem, 1.3vw, 0.9rem);
    padding: 0 1rem 1rem;
}

/* ===== Why Work With Us Section ===== */
.why-work {
    padding: 80px 20px;
    background-color: var(--neutral-light);
}

.why-work h2 {
    font-size: clamp(2rem, 3.5vw, 2.2rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-dark);
}

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

.benefit-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    background-color: #f7d63b;
    transform: translateY(-5px);
    cursor: pointer;
}

.benefit-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 0.5rem;
    color: var(--neutral-dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

/* ===== Announcement ===== */
.announcement {
    max-width: 720px;
    margin: 24px auto;
    padding: 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
    box-shadow: 0 6px 20px rgba(11, 102, 255, 0.08), 0 2px 6px rgba(16, 24, 40, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.announcement__content {
    display: grid;
    gap: 8px;
    justify-items: center;
}

.announcement__eyebrow {
    margin: 0;
    font-size: clamp(18px, 4vw, 25px);
    text-transform: uppercase;
    letter-spacing: 0.6em;
    color: #f7d63b;
    font-weight: 600;
}

.announcement__title {
    margin: 0;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
    color: #0f1724;
}

.announcement__subtitle {
    margin: 0;
    font-size: clamp(12px, 2vw, 14px);
    color: #6b7280;
    font-weight: 500;
}

/* ===== Open Positions Section ===== */
.open-positions {
    padding: 80px 20px;
}

.open-positions h2 {
    font-size: clamp(2rem, 3.5vw, 2.2rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-dark);
}

.jobs-list {
    display: grid;
    gap: 2rem;
}

.job-card {
    background: white;
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: var(--shadow-lg);
}

.job-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.job-header h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--neutral-dark);
    flex: 1;
    min-width: 200px;
}

.job-location {
    background-color: var(--neutral-light);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: var(--text-color);
    white-space: nowrap;
}

.job-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

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

.tag {
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: clamp(0.8rem, 1.3vw, 0.85rem);
}

.job-apply-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.job-apply-btn:hover {
    background-color: #00994d;
}

/* ===== Contact Section ===== */
.contact-info {
    padding: 60px 20px;
    background-color: var(--neutral-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.contact-card:hover {
    background-color: #ffe680;
    transform: scale(1.03);
    cursor: pointer;
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 0.5rem;
    color: var(--neutral-dark);
}

.contact-card p {
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

.contact-section {
    padding: 80px 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-form-container h2,
.contact-map-container h2 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
    color: var(--neutral-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--neutral-dark);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.submit-btn:hover {
    background-color: var(--primary-dark);
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-map-container iframe {
    border-radius: 10px;
}

/* ===== FAQ Section ===== */
.faq {
    padding: 80px 20px;
    background-color: var(--neutral-light);
}

.faq h2 {
    font-size: clamp(2rem, 3.5vw, 2.2rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq-item:hover {
    background-color: #ffe680;
    transform: scale(1.03);
    cursor: pointer;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--neutral-dark);
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    }   