*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

body{
  background:#0b0f19;
  color:#e5e7eb;
}

/* container */
.container{
  width:90%;
  max-width:1100px;
  margin:auto;
}

/* NAV */
/* TOP NAV */
.topbar{
  position:fixed;
  top:0;
  width:100%;
  background:rgba(11,15,25,0.7);
  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;
  background:rgba(11,15,25,0.95);
}

.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:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:22px;
}

/* NAV LINKS */
nav{
  display:flex;
  gap:20px;
  transition: all 0.3s ease;
}

nav a{
  color:#cbd5e1;
  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;
  color:#fff;
}

/* 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:rgba(15,23,42,0.9);
    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;
  }

}
/* HERO */
.hero{
  padding:120px 0 60px;
  text-align:center;
  background: linear-gradient(1deg,rgba(2, 0, 13, 1) 20%, rgba(21, 21, 61, 1) 55%, rgba(2, 117, 117, 1) 100%);
}

.hero h1{
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero h2{
    margin-top:20px; 
    font-size:22px; 
    padding:10px 0;
    color:#94a3b8

}

.hero p{
  font-size: 18px;
  line-height: 1.8;
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto;
}

#services h2{
  text-align: center;
  padding: 20px 0;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  background:#111827;
  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;
  color: #cbd5e1;
  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 */
.about-grid{
  display:grid;
  grid-template-columns:1fr 2fr;
  align-items:center;
  gap:30px;
  margin-top:40px;
}

.about-img{
  text-align: center;
}
.about-img img{
  width:100%;
  border-radius:15px;
}

.about-text h2{
  padding: 15px 0;
}

.about-text p{
  line-height: 1.6;
  padding: 5px 0;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}


/* 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);
}
