/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff !important;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(231, 76, 60, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    transition: all 0.3s ease;
    background: transparent !important;
}

.logo-img:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 90px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    margin-bottom: 15px;
    background: transparent !important;
}

/* Responsive Logo Styles */
@media (max-width: 1200px) {
    .logo-img {
        height: 110px;
        max-width: 380px;
    }
    
    .footer-logo {
        height: 85px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .navbar {
        background: #ffffff !important;
    }
    
    .logo-img {
        height: 100px;
        max-width: 320px;
    }
    
    .footer-logo {
        height: 80px;
        max-width: 280px;
    }
    
    .nav-container {
        height: 110px;
    }
    
    .nav-logo {
        height: 90px;
    }
}

@media (max-width: 480px) {
    .navbar {
        background: #ffffff !important;
    }
    
    .logo-img {
        height: 130px;
        max-width: 350px;
    }
    
    .footer-logo {
        height: 120px;
        max-width: 320px;
    }
    
    .nav-container {
        height: 150px;
    }
    
    .nav-logo {
        height: 130px;
    }
}

@media (max-width: 360px) {
    .navbar {
        background: #ffffff !important;
    }
    
    .logo-img {
        height: 120px;
        max-width: 320px;
    }
    
    .footer-logo {
        height: 110px;
        max-width: 300px;
    }
    
    .nav-container {
        height: 140px;
    }
    
    .nav-logo {
        height: 120px;
    }
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(231, 76, 60, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.nav-link.active {
    background: #e74c3c;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.4);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(231, 76, 60, 0.2);
}

.bar {
    width: 25px;
    height: 3px;
    background: #333333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Removed ::before overlay since we're using gradient directly */

/* Removed overlay since we're using solid gradient background */

.hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    color: #fff;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #e74c3c;
    border: none;
    color: #fff;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #e74c3c;
    border-radius: 2px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    position: relative;
}

.section-header p {
    font-size: 1.3rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #fff, #ffffff);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e74c3c;
}

.stat:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.stat h4 {
    font-size: 3rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 0.8rem;
}

.stat p {
    color: #5a6c7d;
    font-weight: 600;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CEO Section */
.ceo {
    padding: 120px 0;
    background: #ffffff;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ceo-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ceo-text h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.ceo-text h4 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e74c3c;
    font-weight: 600;
}

.ceo-text p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #ffffff;
}

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

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Projects Section */
.projects {
    padding: 120px 0;
    background: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    border: 1px solid #e9ecef;
    min-height: 320px;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.project-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Careers Section */
.careers {
    padding: 120px 0;
    background: #ffffff;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.careers-text h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.careers-text ul {
    list-style: none;
    padding: 0;
}

.careers-text li {
    padding: 1rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.careers-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.careers-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.careers-image:hover img {
    transform: scale(1.05);
}

.job-openings h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.job-list {
    display: grid;
    gap: 1.5rem;
}

.job-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #e74c3c;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-item:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateX(5px);
}

.job-item h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.job-item p {
    color: #5a6c7d;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 2rem;
    color: #e74c3c;
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.contact-item p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.submit-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 4rem 0 2rem;
}

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


.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.3rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #e74c3c;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}

.social-links a:hover {
    background: #c0392b;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff !important;
        backdrop-filter: none;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(231, 76, 60, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        margin: 0.5rem 0;
        font-size: 1.1rem;
        padding: 15px 30px;
        border-radius: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: #333333 !important;
    }

    .nav-menu .nav-link:hover {
        background: rgba(231, 76, 60, 0.9);
        transform: translateX(10px);
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content,
    .careers-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .stats {
        gap: 0.5rem;
    }

    .stat {
        padding: 1rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    visibility: visible;
}

img[src=""], img:not([src]) {
    background: #ffffff;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
    min-height: 200px;
}

/* Removed problematic loading animations */
