@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 20px;
        padding-bottom: 80px; /* Increased space for footer */
    }
    
    .tw-text-6xl {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(90deg, #007BFF, #00BCD4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.1;
    }
    
    footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: left;
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
        background-color: transparent;
        z-index: 10;
    }
}

:root{
    --bg-color: #fff;
    --btn-color: #fdfdfd;/* button color*/
    --btn-bg: #000;/* button bg color*/
    --primary-text-color: #000;
    --header-link-hover: #000;
    --input-hover-bd-color: #000;
}

html {
    scroll-behavior: smooth;
    font-family: "Ubuntu", sans-serif;
}

body {
    background: url('../assets/images/background/dots.svg') repeat, linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    background-size: contain;
    overflow: hidden; /* Prevent scrolling */
    height: 100vh; /* Full viewport height */
    position: relative;
}

header{
    color: #4b4b4b;
    position: relative;
    z-index: 20;
}

.btn{
    padding: 8px 12px;
    width: max-content;
    border-radius: 5px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn:hover{
    transform: scale(1.05);
}

.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    min-height: 100vh; /* Ensure full viewport height */
    overflow: hidden; /* Prevent scrolling */
}

.tw-text-6xl {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #007BFF, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1; /* Reduce line height to save space */
}

footer {
    background-color: transparent;
    border-top: none;
    z-index: 10;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 0.75rem; /* xs text size */
    padding: 0.5rem 1rem; /* Reduced padding */
    width: 100%;
}