*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.btn{
  background: white;
  color: #2d0a5c;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: 0;
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, #ffffff, #f0e6ff);
}

.btn:active {
  transform: translateY(-1px);
}
/* Header Section */
.header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;

}

.header-text h1{
    font-size: 36px;
    color: white;
}

.nav{
    width: 100%;  
    color: white;
    padding: 40px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10; 
    background: black;   
    
}
a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 0 15px;
}
/* Hero Section */
.hero{
    width: 100%;
    min-height: 100vh;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(-45deg, #1a0033, #2d0a5c, #4a1589, #6B46C1, #8b5cf6);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.hero-text{
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1{
    font-size: 60px;
    font-weight: 700;
    padding: 20px;
    text-shadow: 0 0 20px rgba(107, 70, 193, 0.5),
                 0 0 40px rgba(139, 92, 246, 0.3);
    letter-spacing: 2px;
}

.hero-text p{
    max-width: 600px;
    font-size: 22px;
    margin: 10px auto 30px;
    line-height: 1.8;
    font-weight: 300;
    padding: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/*about section*/
.about{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 100px auto;
    
}

.about-left{
    flex-basis: 40%;
    position: relative;
    
}

.about-right{
    flex-basis: 55%;
    
    border-radius: 10px;
    padding: 30px;
    margin-right:20px;
}

.about-img{
    width: 95%;
    border-radius: 10px;
    margin: 5px;
}

.about h3{
    font-size: 30px;
    font-weight: 700;
    color: #fafafa;
}

.about h2{
    font-size: 40px;
    color: #ffffff;
    margin: 10px 0;
    max-width: 400px;
}
.about p{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Title Section */
.title{
    text-align: center;
    color: #e0d9e9;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 70px 0 30px;

}

.title h2{
    font-size: 45px;
    margin-top: 10px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Particle Canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.fade-up {
    transform: translateY(50px);
}

.reveal.fade-left {
    transform: translateX(-50px);
}

.reveal.fade-right {
    transform: translateX(50px);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
