*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

body{
  
  
}

/* container */
.container{
  width:90%;
  max-width:1100px;
  margin:auto;
}

/* NAV */
/* TOP NAV */
.topbar{
  position:fixed;
  top:0;
  background: #fff;
  width:100%;
 box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  z-index:999;
}

/* shrink effect */
.topbar.shrink{
  padding:5px 0;

}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
  
}

.logo{
  font-size:22px;
  font-weight:700;
  color:#fff;
}

.logo a{
  color:#191313;
  text-decoration:none;
  font-weight:700;
  font-size:22px;
}

/* NAV LINKS */
nav{
  display:flex;
  gap:20px;
  transition: all 0.3s ease;
}

nav a{
  color:#141618;
  text-decoration:none;
  position:relative;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -1px;
}

/* ACTIVE LINK */
nav a.active,
nav a:hover{
  color:#22c55e;
}

nav a.active::after,
nav a:hover::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:100%;
  height:2px;
  background:#22c55e;
}

/* CTA */
.cta{
  background:#22c55e;
  color:#000;
  padding:6px 12px;
  border-radius:6px;
}

/* BURGER */
.burger{
  display:none;
  font-size:26px;
  cursor:pointer;
  
}

/* MOBILE MENU (GLASS EFFECT) */
@media(max-width:768px){

  nav{
    position:fixed;
    top:0;
    right:-100%;
    width:250px;
    height:100vh;
    flex-direction:column;
    padding:80px 20px;
    background:rgb(191 220 228);
    backdrop-filter: blur(15px);
    border-left:1px solid rgba(255,255,255,0.1);
    gap:20px;
    transition: right 0.4s ease;
  }

  nav.active{
    right:0;
  }

  .burger{
    display:block;
  }

}


#services h2{
  text-align: center;
  padding: 20px 0;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  background:#e8ecf6;
  padding:20px;
  border-radius:12px;
}

.card.highlight{
  border:1px solid #22c55e;
}

.card ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card ul li{
  line-height: 1.9;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.card ul li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.price{
  color:#22c55e;
  margin:10px 0;
}

.package-option {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}


/* ABOUT */
#hello{
  padding: 60px 0;
  box-shadow: 0 1.5px 1px -1px rgba(0, 0, 0, 0.3);
}

.hello-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  align-items:center;
  gap:30px;
  margin-top:40px;
}

.hello-img{
  text-align: center;
}
.hello-img img{
  width:100%;
  border-radius:15px;
}

.hello-text h2{
  padding: 15px 0;
}

.hello-text p{
  line-height: 1.6;
  padding: 5px 0;
}

@media (max-width: 768px) {
  .hello-grid {
    grid-template-columns: 1fr;
  }
}

#goal{
  padding: 40px 0;
}

.goal-section{
  padding-top: 20px;
}

.goal-box{
  background: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 4px 5px rgba(0,0,0,0.06);
}

.goal-box h2{
  margin-bottom: 20px;
  text-align: center;
}

.goal-box p{
  margin-bottom: 15px;
  line-height: 1.7;
}

.goal-box ul{
  margin: 20px 0;
  padding-left: 20px;
}

.goal-box li{
  margin-bottom: 10px;
}









/* BUTTON */
.btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 16px;
  background:#22c55e;
  color:#000;
  text-decoration:none;
  border-radius:8px;
}

/* CONTACT */
.contact-box{
  text-align:center;
  padding:60px 0;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: #444;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
}
.social-button:hover {
  background-color: #e4e4e4;
  transform: scale(1.05);
}
.social-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.facebook  { color: #1877F2; }
.twitter   { color: #000000; } /* X (formerly Twitter) is black */
.linkedin  { color: #0077B5; }
.youtube   { color: #FF0000; }
.whatsapp  { color: #25D366; }
.messenger { color: #0084FF; }
.copylink  { color: #6c757d; }

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}



/* Footer */
.main-footer {
    color: rgba(255, 255, 255, 0.8);
    background-color: #1f272f;
    text-align: center;
    margin-top: auto; /* Pushes footer to the bottom */
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-height: 150px;
    padding:30px 0;
}


.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}


.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}
