*{
    margin: 0;
    padding: 0;
  
    gap: 5px;
}
.sikha{
  background: radial-gradient(circle at top, #7a7af7b4, #ffbdd8 );
}
.hero {
    height: 70vh;
    width: 100%;
    /* Replace with your actual image URL */
    background: linear-gradient(rgba(16, 3, 103, 0.793), rgb(216, 2, 138) ,rgba(252, 217, 217, 0.952)), 
                url('https://images.unsplash.com');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
     background: radial-gradient(circle at top,  #29036f, #ff00dd);
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .icon {
    border: 3px solid rgba(97, 252, 0, 0.767);
    border-radius: 50%;
    /* border-top-left-radius: 10%; */
     /* border-top-right-radius: 10%; */
   /* border-bottom-right-radius: -10%;
   border-bottom-left-radius: -10%; */
  
    padding: 2px 8px;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}


.content {
    padding-left: 10%;
    max-width: 600px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: bold;

}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    /* max-width: 450px; */
}
.main-footer {
     background: radial-gradient(circle at top, #07045e, #e6538e); /* Darker background for contrast */
    padding: 80px 50px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Brand gets more space */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand Section */
.footer-brand .logo {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.footer-brand .address {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #4361ee; /* Cute blue accent */
}

/* Menu Titles */
.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

/* Underline decoration for titles */
.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #4361ee;
}

/* Menu Lists */
.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Hover Effect: Links move slightly right and change color */
.footer-links ul li a:hover {
    color: #00f5d4; /* Teal color on hover */
    padding-left: 5px;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
    color: #718096;
}