body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f3f4f6;
    overflow-x: hidden;
}
.header {
    background: #C3B1E1;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.header h1 {
    margin: 0;
    font-family: GG;
    font-size: 3em;
    animation: fadeInDown 2s ease-in-out;
}

.nav {
    background: #8f5bbd;
    color: white;
    padding: 15px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
    transition: color 0.3s;
}

.nav a:hover {
    color: #E4BA57;
}

.vision {
    padding: 50px 20px;
    text-align: center;
    background: #E4BA57;
    color: #333;
}
.vision p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 2s ease-in-out;
}
.about, .contact {
    padding: 50px 20px;
    text-align: center;
}
.about {
    background: #C3B1E1;
    color: white;
}
.about h2, .contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
}
.about p, .contact p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}
.contact {
    background: #8F5BBD;
    color: white;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.footer p {
    margin: 0;
    font-size: 1em;
}
.button {
    background-color: #E4BA57;
    color: #333;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    border-radius: 5px;
    margin-top: 20px;
}

.button:hover {
    background-color: #C3B1E1;
    transform: scale(1.05);
}

@font-face { font-family: GG; src: url('TAN-NIMBUS.ttf'); } 


::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(128, 128, 128, 0); 
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb {
  background: #8F5BBD; 
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #C3B1E1; 
  }
