/* General Styles */

/* Add to your existing styles.css file */
html, body {
    height: 100%;
}

.contact-main {
    height: 85vh;
    padding: 20px; /* Optional: adds some padding on smaller screens */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f9;
    color: #495057;
}

.rounded-corners {
    border-radius: 15px;
}

.shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Glassmorphism Effect */
.glassmorphism-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.glassmorphism-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.glassmorphism-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://fastaccounting.gr/images/fastaccounting.jpeg') no-repeat center center;
    background-size: cover;
    height: 70vh;
}

.hero-content {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Custom Buttons */
.custom-button {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-button:hover {
    background-color: #0056b3;
    border-color: #004085;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Sections */
.services-section, .about-section, .cta-section {
    padding: 80px 0;
}

.section-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.15);
}

/* Footer */
.bg-dark {
    background-color: #212529 !important;
}

/* Utility classes */
.img-fluid {
    max-width: 80%;
    height: auto;
    padding: 45px;
    margin: auto;
    display: flex;
}

.company-formation-hero {
    background-image: url('https://fastaccounting.gr/images/fastaccounting.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
}

.how-it-works-section, .form-section, .location-section {
    padding: 80px 0;
}

.services-hero {
    background-image: url('https://fastaccounting.gr/images/fastaccounting.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
}