@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-blue: #0056b3;
    --text-dark: #1e1e1e;
    --text-gray: #555555;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

/* Typography based on user requirements */
h1,
.heading-xl {
    font-size: 64px;
    font-weight: 700;
}

h2,
.section-heading {
    font-size: 42px;
    font-weight: 600;
}

h3,
.sub-heading {
    font-size: 28px;
    font-weight: 500;
}

p,
.text-large {
    font-size: 18px;
}

.text-regular {
    font-size: 18px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}


@media only screen and (max-width: 767px) {
    .banner-content h1 {
        font-size: 32px !important;
    }
    style attribute {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 0px;
}


}
.card-content {
    transition: transform 0.4s ease;
    transform: translateY(30px);
}
/* Hover effects only for Desktop */
@media (min-width: 769px) {
    .service-card:hover .card-hover-content {
        max-height: 200px; /* enough to contain the content */
        opacity: 1;
        margin-top: 5px;
    }
    .service-card:hover .card-content {
        transform: translateY(0);
    }
}

/* On mobile, keep it center-aligned and disable hover expansion */
@media (max-width: 768px) {
    .card-content {
        transform: translateY(0);
    }
    .service-card:hover {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    style attribute {
    font-size: 32px;
    line-height: normal;
}

}