body{
    background:linear-gradient(rgb(1, 0, 67),rgb(4, 0, 255));
    padding:20px;
    font-size:large ;
    font-family: Arial, Helvetica, sans-serif;
    text-align:center ;   
    color:rgb(0, 21, 255)
}
/* NAVBAR */


nav{
    background: linear-gradient(to right, rgb(0, 0, 82), rgb(84, 0, 168));
    padding: 10px;
    color: white;
}


/* NAVIGATION LINKS */

nav ul{
    list-style: none;
}

nav ul li{
    display: inline-block;
    margin-right: 20px;
}

nav ul li a{
    color: white;
    text-decoration: none;
    font-weight: bold;
}


/* CONTAINERS */

.container{
    position: CENTER;
    width: 40%;
    margin: 30px auto;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(to right, #021862, #3e0864);
    color: white;
    box-shadow: 0px 0px 15px rgba(68, 0, 255, 0.5);
}
.container:hover {
     box-shadow: #c084fc;
      transform: translateY(-5px);
    }

/* HEADINGS */

h1, h2{
    color: #0a0eff;
    font-size: xxx-large;
    font-family:elephant;
    text-shadow:purple ;
    text-shadow: 0px 0px 15px rgb(0, 43, 54);
    
}


/*BUTTONS */

button{
    background: linear-gradient(to right, purple, rgb(120, 0, 160));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
}


/* BUTTON HOVER EFFECT */

button:hover{
    background: linear-gradient(to right, darkblue, rgb(162, 0, 255));
}


/* LINKS INSIDE CARDS */

.container a{
    color: #d8b4ff;
    text-decoration: none;
    font-weight: bold;
}
a{
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}


/* FOOTER DESIGHNING */

.footer{
    background: linear-gradient(135deg, #000b46, #350057);
    color: white;
    padding: 40px 20px 10px;
    margin-top: 50px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.4);
}

.footer-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section{
    min-width: 250px
}

.footer-section h2,
.footer-section h3{
    margin-bottom: 15px;
    color: #c084fc;
}

.footer-section p{
    line-height: 1.6;
    color: #d1d5db;
}

/* Quick Links */

.quick-links{
    list-style: none;
    padding: 0;
}

.quick-links li{
    margin: 10px 0;
}

.quick-links a{
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.quick-links a:hover{
    color: #000dff;
    padding-left: 5px;
}

/* Social Links */

.social-links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a{
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.social-links a:hover{
    color: #3700ff;
}

/* Footer Bottom */

.footer-bottom{
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
    color: #d1d5db;
}
