/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #004aad;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
}

.text-center {
    text-align: center;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: #f4b400;
    color: #004aad;
}

.btn-primary:hover {
    background: #d49f00;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #004aad;
}

.btn-gold {
    background: #f4b400;
    color: #004aad;
}

.btn-gold:hover {
    background: #d49f00;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1.125rem;
}
/* ========== PRE-HEADER ========== */
.pre-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
     background: white;
    color: #004aad;
    z-index: 1001;
    font-size: 0.875rem;
}

.pre-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}
    .pre-header-left span {
        display: none;
    }
    
.social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #004aad;
    transform: translateY(-2px);
}

.pre-header-right {
    display: flex;
    gap: 30px;
    align-items: right;

}

.pre-header-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.pre-header-link:hover {
    opacity: 0.8;
}

.pre-header-link i {
    font-size: 0.875rem;
}
/* ========== HEADER ========== */
.header {
    position: fixed;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #004aad, #0066cc);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text h1 {
    font-size: 1.125rem;
    color: #004aad;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 0.75rem;
    color: #666;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: #004aad;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e5e5;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu nav a {
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.mobile-menu nav a:hover {
    background: #f5f5f5;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 122px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 74, 173, 0.95), rgba(0, 74, 173, 0.85), rgba(0, 74, 173, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.hero-text {
    max-width: 700px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

/* ========== ABOUT SECTION ========== */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.25rem;
    color: #004aad;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #f4b400;
    color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.875rem;
}

/* ========== SERVICES SECTION ========== */
.services {
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    color: #004aad;
    font-size: 3rem;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.service-card:hover .service-icon {
    color: #f4b400;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* ========== INDUSTRIES SECTION ========== */
.industries {
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.05), rgba(0, 74, 173, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    background: linear-gradient(135deg, #004aad, #0066cc);
    color: white;
    transform: translateY(-5px);
}

.industry-icon {
    color: #004aad;
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.industry-card:hover .industry-icon {
    color: white;
}

.industry-card p {
    font-size: 0.875rem;
    font-weight: 600;
    color: #222;
    text-align: center;
    transition: color 0.3s;
}

.industry-card:hover p {
    color: white;
}

/* ========== OVERSEAS SECTION ========== */
.overseas {
    position: relative;
    background: linear-gradient(135deg, #004aad, #0066cc);
    color: white;
    overflow: hidden;
}

.overseas-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.overseas-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overseas .container {
    position: relative;
    z-index: 1;
}

.overseas .section-header h2,
.overseas .section-header p {
    color: white;
}

.overseas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.overseas-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.overseas-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.overseas-flag {
    font-size: 3rem;
    margin-bottom: 20px;
}

.overseas-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.overseas-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* ========== CAREERS SECTION ========== */
.careers {
    background: #f9fafb;
}

.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.careers-jobs h3,
.careers-form h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 24px;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s;
}

.job-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.job-card h4 {
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 12px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 12px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.job-badge.primary {
    background: rgba(0, 74, 173, 0.1);
    color: #004aad;
}

.job-badge.gold {
    background: rgba(244, 180, 0, 0.1);
    color: #f4b400;
}

.job-card p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ========== FORMS ========== */
.form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #004aad;
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

.upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.upload-box:hover {
    border-color: #004aad;
}

.upload-box i {
    font-size: 2.5rem;
    color: #999;
    margin-bottom: 10px;
}

.upload-box p {
    font-size: 0.875rem;
    color: #666;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: linear-gradient(135deg, #f9fafb, white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.quote-mark {
    font-size: 3rem;
    color: #f4b400;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author .author-name {
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.testimonial-author .author-position {
    font-size: 0.875rem;
    color: #999;
}

.client-logos {
    text-align: center;
    margin-top: 60px;
}

.client-logos p {
    color: #999;
    margin-bottom: 30px;
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    opacity: 0.5;
}

.logos-row i {
    font-size: 4rem;
    color: #666;
}

/* ========== CONTACT SECTION ========== */
.contact {
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: #004aad;
    flex-shrink: 0;
    margin-top: 3px;
}

.info-label {
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.info-value {
    color: #666;
}

.map-placeholder {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.map-placeholder > div {
    width: 100%;
    height: 250px;
    background: #e5e5e5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder i {
    font-size: 3rem;
    color: #999;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: #666;
}

/* ========== FOOTER ========== */
.footer {
    background: #00264d;
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    background: #f4b400;
}

.footer-logo .logo-icon span {
    color: #004aad;
}

.footer-logo h3 {
    font-size: 1.125rem;
    line-height: 1;
    margin-bottom: 3px;
}

.footer-logo p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.newsletter-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 0.875rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 10px 20px;
    background: #f4b400;
    border: none;
    border-radius: 6px;
    color: #004aad;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #d49f00;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 2rem;
    color: white;
}

/* ========== TOAST NOTIFICATION ========== */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    min-width: 300px;
    animation: slideIn 0.3s ease;
}

.toast.show {
    display: block;
}

.toast.success {
    border-left: 4px solid #10b981;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
     .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
     
    .pre-header-left {
        display: none;
    }
    .about-grid,
    .careers-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .pre-header-content {
        padding: 8px 0;
    }
    
    .pre-header-right {
        gap: 15px;
        font-size: 0.75rem;
    }
    
    .pre-header-link span {
        display: none;
    }
    
    .header {
        top: 38px;
    }
    
    .hero {
        padding-top: 118px;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-badge {
        left: 20px;
        bottom: -20px;
    }
    
    .overseas-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .form {
        padding: 30px 20px;
    }
    .logo-img {
    height: 10px; /* Adjust height as needed */
    width: 10px;
    margin-right: 10px;
}

.footer-logo-img {
    height: 10px; /* Adjust height as needed */
    width: 10px;
    margin-right: 10px;
}
}
/* Tech stack marquee */
.tech-stack { padding: 40px 0; background: var(--card-bg, #fff); }
.tech-stack .section-header { margin-bottom: 18px; text-align: center; }
.tech-marquee { overflow: hidden; position: relative; }
.tech-track { display: flex; gap: 28px; align-items:center; padding: 10px 0; min-width: 200%; animation: marquee-linear 20s linear infinite; }
.tech-item { display:flex; align-items:center; gap: 10px; background: rgba(0,0,0,0.03); border-radius: 8px; padding: 10px 18px; font-weight:600; color: var(--text-color,#222); min-width:150px; justify-content:center; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.tech-item i { font-size: 30px; color: #0072ff; }

/* continuous scroll */
@keyframes marquee-linear { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* pause on hover / focus */
.tech-marquee:hover .tech-track,
.tech-marquee:focus-within .tech-track { animation-play-state: paused; }

/* responsive */
@media (max-width: 900px) {
  .tech-item { min-width: 120px; padding:8px 14px; font-size: 14px; }
  .tech-track { gap: 18px; animation-duration: 16s; }
}
@media (max-width: 480px) {
  .tech-track { gap: 12px; animation-duration: 14s; }
  .tech-item i { font-size: 22px; }
}
