/* ========================================
   LOGO AND NAVIGATION STYLES
   ======================================== */

/* Logo Styling - 3x Bigger */
.logo img {
    height: 120px; /* 3x bigger than 40px */
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Ensure logo works well in navigation */
nav .logo {
    display: flex;
    align-items: center;
}

/* Adjust header padding for larger logo */
header {
    padding: 1rem 0; /* Add more vertical padding for the bigger logo */
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 140px; /* Ensure enough height for the larger logo */
}

/* Footer logo removed - using text-based branding */

/* ========================================
   HERO AND SERVICE IMAGES STYLES
   ======================================== */

/* Hero Section with Image */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem; /* Add some top padding to account for larger header */
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.hero-text p {
    text-align: left;
    margin: 0 0 2rem 0;
    max-width: none;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-5px);
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Service Images - No longer used but keeping for future use */

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-text h1 {
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        margin: 0 auto 2rem auto;
        max-width: 600px;
    }
    
    .hero-image {
        order: 1;
    }
    
    /* Services Grid - 2 columns on tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    

}

@media (max-width: 768px) {
    .logo img {
        height: 105px; /* 3x bigger than 35px */
    }
    

}

@media (max-width: 480px) {
    .hero-content {
        gap: 1.5rem;
    }
    

    
    .logo img {
        height: 90px; /* 3x bigger than 30px */
    }
    
    /* Services Grid - 1 column on mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}