*{
    margin: 0;
    padding: 0;
  
}
/* style.css */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
     background: radial-gradient(circle at top,  #4a288a, #972c89);
}
 
.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: 12%; */
    /* 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;
}

.hero {
    height: 120vh;
    width: 100%;
    /* Replace with your actual image URL */
    background: linear-gradient(rgba(16, 3, 103, 0.793), rgba(189, 107, 107, 0.623) ,rgba(2, 151, 205, 0.952)), 
                url('https://images.unsplash.com');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: rgb(2, 0, 51);
}

.content {
    padding-left: 10%;
    max-width: 600px;
    display: inline;
    
}

h1 {
    display: flex;
    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;
}

/* Newsletter - Modern/Cute Design */
.newsletter-section {
    padding: 0 50px 80px;
}

.newsletter-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    width: 250px;
}

.newsletter-form button {
    background: #4361ee;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-item {
    padding: 20px 40px;
    cursor: pointer;
    background: linear-gradient(rgba(6, 216, 41, 0.911), rgba(189, 107, 107, 0.623) ,rgba(2, 151, 205, 0.952)), 
                url('https://images.unsplash.com');/* Matching the orange highlight in image */
  
    border-right: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}

.nav-item.active {
      background: linear-gradient(rgba(6, 216, 41, 0.911), rgba(189, 107, 107, 0.623) ,rgba(2, 151, 205, 0.952)), 
                url('https://images.unsplash.com');/* Matching the orange highlight in image */
  
}

.nav-item:hover {
    background: rgb(169, 2, 80);
    cursor: pointer;
     padding: 30px;
     gap: 20px;
    border-right: 1px solid rgba(234, 4, 81, 0.2);
    transition: 0.3s;
}

.news-section {
  display: grid;
  /* Eita 2-ta column baneiba au gap diaba */
  grid-template-columns: repeat(2, 1fr); 
  gap: 30px;
  padding: 40px;
    background: linear-gradient(rgba(16, 3, 103, 0.793), rgba(189, 107, 107, 0.623) ,rgba(2, 151, 205, 0.952)), 
                url('https://images.unsplash.com');
}

.news-card {
  display: flex; /* Image au Text pakhapakhi rahiba pain */
    background: linear-gradient(rgba(16, 3, 103, 0.793), rgba(189, 107, 107, 0.623) ,rgba(2, 151, 205, 0.952)), 
                url('https://images.unsplash.com');
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-card img {
  width: 150px; /* Image size fixed rahiba */
  height: 150px;
  object-fit: cover;

}
.news-card :hover{
     background: rgb(226, 94, 156);
    cursor: pointer;
     padding: 30px;
     gap: 20px;
    border-right: 1px solid rgba(234, 4, 81, 0.2);
    transition: 0.3s;
}
.news-card img :hover{
     background: rgb(169, 2, 80);
    cursor: pointer;
     padding: 30px;
     gap: 20px;
    border-right: 1px solid rgba(234, 4, 81, 0.2);
    transition: 0.3s;
}

.card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h3 {
  font-size: 1.1rem;
  color: #2a0101;
  margin: 0 0 10px 0;
  font-weight: bold;
}

.card-content p {
  font-size: 0.9rem;
  color: #050404;
  line-height: 1.4;
}

/* Mobile pain gote column karidaba */
@media (max-width: 768px) {
  .news-section {
    grid-template-columns: 1fr;
  }
}
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: #080e1e;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

.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;
}