@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');
        
:root {
    --light1: rgb(255, 255, 255);
    --light2: rgb(241, 207, 170);
    --primary1: rgb(251, 182, 117);
    --primary2: rgb(233, 142, 63);
    --dark1: rgb(192, 98, 34);
    --dark2: rgb(95, 49, 16);}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;}
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark2);
    overflow-x: hidden;
    position: relative;
    background-color: var(--light1);
    display: flex;
    flex-direction: column;
    min-height: 100vh;}
        
.bg-blur {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 1;}
.bg-1 {
    width: 500px;
    height: 500px;
    background: var(--light2);
    top: -200px;
    right: -200px;}
.bg-2 {
    width: 300px;
    height: 300px;
    background: var(--primary2);
    bottom: -100px;
    left: -100px;}
.bg-3 {
    width: 200px;
    height: 200px;
    background: var(--dark1);
    top: 40%;
    left: 40%;}
        
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    width: 100;}
        
header {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    padding: 1rem 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(95, 49, 16, 0.5);}
        
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;}
        
.logo {
    font-size: 2.5rem;
    font-weight: 1000;
    text-decoration: none;
    background: linear-gradient(to right, var(--primary2), var(--dark1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}
        
nav ul {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;}
        
nav a {
    text-decoration: none;
    color: var(--dark2);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;}
    
.header-content p {
    color: var(--dark1);
    font-size: 1.2rem;
    font-weight: 1000;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;}
        
nav a:hover {
    color: var(--primary2);}
        
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;}
        
h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(to right, var(--dark1), var(--primary2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}
        
.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 1.2rem;
    line-height: 1.6;}
    
.hmega {
    font-size: 5.6rem;
    margin-bottom: 0.8rem;
    font-weight: 1000;
    background: linear-gradient(to right, var(--primary1), var(--primary2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        }
        
.btn {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(to right, var(--primary1), var(--primary2), var(--dark1));
    background-size: 200% 100%;
    background-position: right;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(192, 98, 34, 0.5);}
        
.btn:hover {
    transform: scale(1.05);
    background-position: center;}
        
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;}
        
.text-card {
    background-color: rgba(251, 182, 117, 0.5);
    border-radius: 40px;
    padding: 0.8rem;
    text-align: center;
    gap: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 25px rgba(95, 49, 16, 0.5);}
        
.feature-card {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2), rgba(251, 182, 117, 1));
    background-size: 200% 200%;
    background-position: top;
    border-radius: 40px;
    transform: scale(1);
    text-decoration: none;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(95, 49, 16, 0.5);}
    
.project-card {
    background-color: rgba(255, 255, 255, 0.2);
    background-blend-mode: overlay;
    background-position: top;
    border-radius: 40px;
    text-decoration: none;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(95, 49, 16, 0.5);}
        
.feature-card:hover {
    background-position: bottom;
    transform: scale(1.05);}
        
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom right, var(--light2), var(--primary2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;}
        
.feature-icon img {
    width: 30px;
    height: 30px;
    fill: white;}
        
h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark1);}
        
.feature-card p {
    line-height: 1.6;
    color: var(--dark2);}
        
.text-card p {
    line-height: 1.6;
    color: var(--dark2);
    padding: 1.2rem;}
        
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.4);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: auto;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 10px 25px rgba(95, 49, 16, 0.5);}
        
.footer-content {
    max-width: 1200px;
    margin: 0 auto;}
        
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.2rem 0;}
        
.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;}
        
.social-link:hover {
    background-color: var(--primary1);}
        
.social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--dark2);}
        
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;}
            
    nav ul {
        gap: 0.5rem;}
            
    nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;}
            
    .feature-card {
        padding: 1.5rem;}}