/* Button Styles */
.btn {
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-primary {
    background-color: #2c7ae0;
    color: white;
    border: 1px solid #2c7ae0;
}

.btn-primary:hover {
    background-color: #1d5ba3;
    border-color: #1d5ba3;
}

.btn-outline {
    border: 1px solid #2c7ae0;
    color: #2c7ae0;
    background: transparent;
}

.btn-outline:hover {
    background-color: #f0f7ff;
}

.btn-primary-large {
    background-color: #2c7ae0;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border: 1px solid #2c7ae0;
}

.btn-primary-large:hover {
    background-color: #1d5ba3;
    border-color: #1d5ba3;
}

.btn-outline-large {
    border: 1px solid #2c7ae0;
    color: #2c7ae0;
    background: transparent;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.btn-outline-large:hover {
    background-color: #f0f7ff;
}

.btn-small {
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    background-color: #2c7ae0;
    color: white;
}

.btn-small:hover {
    background-color: #1d5ba3;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e1e1e;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.search-container {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.search-container input, .search-container select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex: 1;
}

.search-container button {
    padding: 0.75rem 1.5rem;
}

.hero-graphic {
    position: relative;
}

/* SVG Animation */
.rotating-part {
    transform-origin: center;
    animation: rotate 10s linear infinite;
}

.rotating-gear {
    transform-origin: center;
    animation: rotate 15s linear infinite;
}

.rotating-gear-reverse {
    transform-origin: center;
    animation: rotate-reverse 10s linear infinite;
}

.moving-part {
    animation: move 3s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes move {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    background-color: #fff;
}

.feature-card {
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #2c7ae0;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
}
/* How It Works Section */
.how-it-works {
    padding: 4rem 5%;
    background-color: white;
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.step {
    width: 220px;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2c7ae0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: #aaa;
}

/* CTA Section */
.cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #2c7ae0 0%, #1d5ba3 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta .btn-primary-large {
    background-color: white;
    color: #2c7ae0;
    border-color: white;
}

.cta .btn-primary-large:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.cta .btn-outline-large {
    border-color: white;
    color: white;
}

.cta .btn-outline-large:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #ddd;
    padding: 4rem 5% 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column p {
    margin-bottom: 1.5rem;
    color: #aaa;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #2c7ae0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #2c7ae0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-info li i {
    color: #2c7ae0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2c7ae0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    
    
    .search-container {
        flex-direction: column;
    }
    
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
}

