/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937;
    background-color: #f9fafb;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ==================== HEADER STYLES ==================== */
.header {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.header:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-logo img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a73e8;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.header-nav a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #1f2937;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #34a853, #1a73e8);
    transition: width 0.3s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-nav a:hover,
.header-nav a.active {
    color: #34a853;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #1f2937;
    cursor: pointer;
    background: none;
    border: none;
}

/* ==================== FOOTER STYLES ==================== */
.footer {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(31,41,55);
    color: #f9fafb;
    padding: 60px 10% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-about h3 {
    font-size: 2.2rem;
    color: #5edb8e;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.footer-about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e7eb;
    max-width: 400px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.8rem;
    color: #5edb8e;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #e5e7eb;
    font-size: 1.15rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #5edb8e;
}

.footer-contact p {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #e5e7eb;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #4a5a6c;
    padding-top: 25px;
    margin-top: 30px;
    font-size: 1rem;
    color: #e5e7eb;
}

/* ==================== HOME PAGE STYLES ==================== */
.hero-banner {
    background-image: url('../assets/Hero-y7tCH0cP.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 60px;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 1s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: slideUp 1.2s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: slideUp 1.4s ease-out;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay button {
    padding: 14px 28px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #34a853, #2c8b42);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.4);
    animation: slideUp 1.6s ease-out;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-overlay button:hover {
    background: linear-gradient(135deg, #2c8b42, #34a853);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(52, 168, 83, 0.6);
}

.hero-overlay button:active {
    transform: translateY(-1px);
}

.home-services {
    text-align: center;
    padding: 80px 10%;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.home-services h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a73e8;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s ease-out;
}

.home-services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #34a853, #1a73e8);
    border-radius: 2px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 115, 232, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #34a853, #1a73e8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.2);
    border-color: rgba(26, 115, 232, 0.3);
}

.service-card h3 {
    color: #34a853;
    margin-bottom: 15px;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #1a73e8;
}

.service-card p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.home-cta {
    background: linear-gradient(135deg, #1a73e8 0%, #0d5ab8 100%);
    color: #fff;
    text-align: center;
    padding: 80px 10%;
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.home-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.home-cta p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.home-cta-button {
    background: linear-gradient(135deg, #34a853, #2c8b42);
    color: #fff;
    border: 2px solid #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.home-cta-button:hover {
    background: #fff;
    color: #1a73e8;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.home-cta-button:active {
    transform: translateY(-1px);
}

/* ==================== ABOUT PAGE STYLES ==================== */
.about-container {
    padding: 40px 10%;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
}

.about-story,
.about-values {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.about-story h2,
.about-values h2 {
    font-size: 2rem;
    color: #34a853;
    margin-bottom: 20px;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-values ul {
    list-style: none;
    padding-left: 0;
}

.about-values li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-values li strong {
    color: #1a73e8;
}

/* ==================== SERVICES PAGE STYLES ==================== */
.services-container {
    padding: 60px 10%;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h1 {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 1.2rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px;
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;

    /* ⭐ Yeh 3 lines add karo */
    max-width: 480px;
    /* Card wide hoga */
    margin: auto;
    /* Center me aayega */
    min-height: 320px;
    /* Balanced height, tall look khatam */
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #34a853, #1a73e8);
    transition: height 0.4s ease;
}

.service-item:hover::before {
    height: 100%;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.15);
    border-left-color: #1a73e8;
}

.service-item h2 {
    color: #34a853;
    font-size: 1.6rem;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.service-item:hover h2 {
    color: #1a73e8;
}

.service-item p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
}

/* ==================== CAREER PAGE STYLES ==================== */
.career-container {
    padding: 60px 10%;
}

.career-hero {
    text-align: center;
    margin-bottom: 50px;
}

.career-hero h1 {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 20px;
}

.career-hero p {
    font-size: 1.2rem;
}

.career-openings h2 {
    font-size: 2rem;
    color: #34a853;
    margin-bottom: 40px;
    text-align: center;
}

.career-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #34a853, #1a73e8);
    transition: width 0.4s ease;
}

.career-card:hover::before {
    width: 100%;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.15);
}

.career-card h3 {
    font-size: 1.5rem;
    color: #1a73e8;
    margin-bottom: 15px;
}

.career-card p {
    font-size: 1.1rem;
}

.career-cta {
    text-align: center;
    margin-top: 60px;
}

.career-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1a73e8;
}

.career-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.career-button {
    padding: 14px 35px;
    background: linear-gradient(135deg, #34a853, #2c8b42);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
}

.career-button:hover {
    background: linear-gradient(135deg, #2c8b42, #34a853);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(52, 168, 83, 0.5);
}

.career-button:active {
    transform: translateY(-1px);
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-container {
    padding: 60px 10%;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.2rem;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info,
.contact-form {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.8rem;
    color: #34a853;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    font-size: 1rem;
    margin-bottom: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a73e8;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background: linear-gradient(135deg, #34a853, #2c8b42);
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
}

.contact-form button:hover {
    background: linear-gradient(135deg, #2c8b42, #34a853);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(52, 168, 83, 0.5);
}

.contact-form button:active {
    transform: translateY(0);
}

.contact-disclaimer {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #374151;
}

.contact-disclaimer input[type="checkbox"] {
    margin-top: 4px;
}

.contact-disclaimer a {
    color: #1a73e8;
    text-decoration: underline;
}

.contact-disclaimer a:hover {
    color: #0c58c9;
}

/* ==================== PRIVACY & TERMS PAGE STYLES ==================== */
.privacy-container,
.terms-container {
    padding: 60px 10%;
}

.privacy-header,
.terms-header {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-header h1,
.terms-header h1 {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 20px;
}

.privacy-header p,
.terms-header p {
    font-size: 1.2rem;
}

.privacy-content h2,
.terms-content h2 {
    font-size: 2rem;
    color: #34a853;
    margin-top: 40px;
    margin-bottom: 15px;
}

.privacy-content p,
.terms-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.privacy-content,
.terms-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        top: 22px;
        right: 10%;
    }

    .header-nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        width: 200px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 16px;
        padding: 0;
    }

    .header-nav ul li {
        width: 100%;
    }

    .header-nav ul li a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .contact-details {
        flex-direction: column;
    }
    
    .footer {
        padding: 40px 8% 25px;
        text-align: center; /* Center everything */
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-section {
        align-items: center; /* Center items horizontally */
    }

    .footer-about p,
    .footer-links a,
    .footer-contact p {
        text-align: center; /* Make text centered */
    }

    
}