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

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 35%, #8b5cf6 60%, #6366f1 100%);
    color: white;
    font-family: "Instrument Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.navbar {
    background: transparent;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar .navbar-brand {
  font-size: 1.75rem;
}

@media (max-width: 768px) {
    .navbar {
        padding-left: 1rem;
        padding-right: 1rem;
        justify-content: space-between;
    }
    
    .navbar .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar .ms-auto {
        margin-left: 0 !important;
    }
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 1rem;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
    background: linear-gradient(to top, rgba(99, 102, 241, 1) 0%, rgba(99, 102, 241, 0.8) 40%, rgba(99, 102, 241, 0) 100%);
    pointer-events: none;
}

.hero .background-image {
    position: absolute;
    width: 85%;
    max-width: 1400px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    opacity: 0.35;
}

@media (max-width: 768px) {
    .hero .background-image {
        display: none;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(to right, #7c3aed, #6366f1);
    color: white;
    border: none;
    padding: 0.75rem 2.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 9999px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.small-button {
    padding: 0.4rem 1.2rem;
    font-size: 0.95rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .small-button {
        padding: 0.35rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .small-button {
        padding: 0.3rem 0.8rem;
        font-size: 0.85rem;
    }
}

.btn-outline-light.small-button {
    border: 1px solid rgba(255, 255, 255, 0.7) ;
    color: white ;
    background-color: transparent ;
}

.btn-outline-light.small-button:hover {
    background-color: rgba(255, 255, 255, 0.15) ;
    color: white ;
}

.btn-light.small-button {
    background: #ffffff ;
    color: #5b21b6 ;
    border: none ;
}

.btn-light.small-button:hover {
    background: #ede9fe ;
    color: #5b21b6 ;
}