:root {
  --bg: #52646401;
  --panel: #ffffff;
  --text: #42d2ef;
  --muted: #4ad9e3;
  --accent1: #ff5a78;
  --accent2: #ffd166;
  --glass: rgba(19, 19, 19, 0.5);
  --radius: 14px;
  --maxw: 1200px;
  --shadow: 0 8px 30px rgba(11,18,32,0.07);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text);
  transition: background 0.4s, color 0.4s;
}

html.theme-dark {
  --bg: #0b1220;
  --panel: rgba(255,255,255,0.05);
  --text: #e6eef7;
  --muted: #9aa4b2;
  --glass: rgba(0,0,0,0.4);
  --shadow: 0 10px 30px rgba(0,0,0,0.6);
}


* { box-sizing:border-box; margin:0; padding:0; }
body {
  margin: 0;
  background: var(--bg);
  font-size: 16px;
}
.container { max-width: var(--maxw); margin:0 auto; padding:28px; }


.site-header {
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(4, 4, 4, 0.8);
  transition: background 0.3s;
}
html.theme-dark .site-header { background: rgba(11,18,32,0.7); }
.header-inner { display:flex; justify-content:space-between; align-items:center; gap:16px; padding:12px 0; }
.brand { display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit; }
.logo { width:48px; height:48px; border-radius:10px; }
.brand-title { font-weight:700; }
.brand-sub { font-size:12px; color: var(--muted); }


.nav { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.nav-link {
  padding:8px 10px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  color: var(--text);
  transition: all 0.3s ease;
}
.nav-link:hover { background: var(--glass); transform: translateY(-2px); }
.nav-link.is-active {
  box-shadow: inset 0 -3px 0 linear-gradient(90deg, var(--accent1), var(--accent2));
}


.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; border-radius:10px; border:none; cursor:pointer; font-weight:700;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color:#08121b;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-ghost {
  background:transparent; border:1px solid rgba(11,18,32,0.06); color: var(--text);
}


.hero {
  padding:80px 0;
  border-radius:16px;
  position:relative;
  overflow:hidden;
  color: var(--text);
}
.hero::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url(images/1.jpg) center/cover no-repeat;
  z-index:-1;
  border-radius:16px;
  transition: all 0.6s ease;
}
.hero:hover::before { transform: scale(1.07); }
.hero-grid { display:grid; grid-template-columns:1fr 420px; gap:28px; align-items:start; }
.eyebrow { display:inline-block; padding:6px 10px; border-radius:999px; background:linear-gradient(90deg,var(--accent1),var(--accent2)); color:#08121b; font-weight:800; }
.hero h1 { font-size:38px; margin:14px 0 8px; }
.lead { color: var(--muted); max-width:60ch; }
.cta-row { display:flex; gap:12px; margin-top:12px; }


.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
  border:1px solid rgba(11,18,32,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform:translateY(-6px); box-shadow:0 12px 40px rgba(0,0,0,0.1); }
.section { margin-bottom:28px; }
.section-head { display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.center { text-align:center; }


.plans-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
}
.plan-card {
  border-radius:12px;
  overflow:hidden;
  background: var(--panel);
  border:1px solid rgba(11,18,32,0.04);
  box-shadow:var(--shadow);
  position: relative;
}
.plan-thumb {
  height:160px;
  background-size:cover;
  background-position:center;
  position: relative;
}
.plan-thumb::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2));
}
.plan-meta { padding:12px; }
.plan-meta h4 { margin:0 0 6px; }
.small { font-size:13px; }
.muted { color: var(--muted); }


.plan-thumb:nth-child(1) { background-image: url("images/9.jpg"); } 
.plan-thumb:nth-child(2) { background-image: url("images/2.jpg"); }
.plan-thumb:nth-child(3) { background-image: url("images/3.jpg"); }
.plan-thumb:nth-child(4) { background-image: url("images/4.jpg"); }


.input { width:100%; padding:10px 12px; margin-bottom:12px; border-radius:8px; border:1px solid rgba(11,18,32,0.1); outline:none; }
.input:focus { border-color: var(--accent1); box-shadow:0 0 0 2px rgba(255,90,120,0.2); }


@media (max-width:980px) {
  .hero-grid { grid-template-columns:1fr; }
  .header-inner { flex-direction:column; align-items:flex-start; gap:12px; }
}


.modal {
  position:fixed; inset:0; display:none; justify-content:center; align-items:center; background:rgba(0,0,0,0.6); z-index:99;
}
.modal.show { display:flex; }
.dialog {
  background:var(--panel); border-radius:12px; max-width:800px; width:90%; padding:18px; box-shadow:var(--shadow); overflow-y:auto; max-height:90vh;
}


.fade-in { animation: fadeIn 1s ease forwards; opacity:0; }
@keyframes fadeIn { from {opacity:0; transform:translateY(20px);} to {opacity:1; transform:translateY(0);} }


#backToTop {
  position:fixed; bottom:25px; right:25px;
  padding:10px 12px; border-radius:10px;
  background:linear-gradient(90deg,var(--accent1),var(--accent2));
  color:#08121b; border:none; font-weight:700;
  cursor:pointer; display:none; box-shadow:var(--shadow);
}
#backToTop:hover { opacity:0.8; transform:translateY(-2px); }
footer{
  background-color: #111;
}
.footercontainer{
  width: 100%;
  padding: 70px 30px 20px;
}

.socialIcons{
  display: flex;
  justify-content: center;
}

.socialIcons a{
  text-decoration: none;
  padding: 10px;
  background-color: white;
  margin: 10px;
  border-radius: 50%;
}

.socialIcons a i{
  font-size: 2em;
  color: black;
  opacity: 0.9;
}
/* Hover effects on social media icons */
.socialIcons a:hover{
  background-color: #111;
  transition: 0.5s;
}
.socialIcons a:hover i{
  color: white;
  transition: 0.5s;
}

.footerNav{
  margin: 30px 0;
}

footerNav ul{
  display: flex;
  justify-content: center;
}
.footerNav ul li a{
  color: white;
  margin: 20px;
  text-decoration: none;
  font-size: 1.3em;
  opacity: 0.7;
  transition: 0.5s;
}

.footerNav ul a:hover{
  opacity: 1;
}
.footerBottom p{
  background-color: #000;
  padding: 20px;
  text-align: center;
}
.footerBottom p{
  color: white;
}
.designer{
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}

@media (max-width: 700px){
  .footerNav ul{
    flex-direction: column;
  }
  .footerNav ul li{
    width: 100%;
    text-align: center;
    margin: 10px;
  }
}
 

