html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
section {
  flex: 1;   /* THIS is the key line */
  padding: 100px 10%;
  text-align: center;
  animation: fadeUp 0.8s ease;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f7f7f7;
  color: #111;
}

a { text-decoration: none; color: inherit; }

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* PREMIUM LOGO */
.logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo .bms {
  color: #111;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.25);
}

.logo .ws {
  color: #3b82f6;
  font-weight: 600;
  margin-left: 4px;
}

/* NAV LINKS */
.navbar nav a {
  margin-left: 25px;
  font-weight: 500;
  position: relative;
}

.navbar nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #3b82f6;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.navbar nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10%;
}
.hero {
  margin-top: 80px;
}


.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
}

.hero p {
  margin-top: 15px;
  color: #555;
  font-size: 1.1rem;
}

.ai-line {
  margin-top: 25px;
  font-size: 18px;
  color: #3b82f6;
  font-style: italic;
}

/* BUTTON */
.btn {
  padding: 14px 34px;
  border-radius: 40px;
  border: none;
  margin-top: 25px;
  display: inline-block;
  background: linear-gradient(135deg, #111, #333);
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* SECTIONS */
section {
  padding: 100px 10%;
  text-align: center;
  animation: fadeUp 0.8s ease;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
  margin-top: 50px;
}

/* GLASS CARDS */
.card {
  background: rgba(255,255,255,0.75);
  padding: 35px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: 0.4s;
  transform-style: preserve-3d;
}

.card:hover {
  transform: translateY(-12px) rotateX(6deg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

/* ABOUT */
.about-section {
  min-height: 75vh;
}

/* CONTACT */
.contact-box {
  margin-top: 40px;
  line-height: 2.2;
  font-size: 18px;
}

/* FOOTER */
footer {
  margin-top: 80px;
  padding: 25px;
  text-align: center;
  background: #111;
  color: #aaa;
  font-size: 14px;
}

.footer-desktop {
  display: block;
}

.footer-mobile {
  display: none;
}

@media(max-width:768px) {
  .footer-desktop {
    display: none;
  }
  .footer-mobile {
    display: block;
  }
}

/* ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media(max-width:768px) {
  .hero h1 { font-size: 2rem; }
  .navbar { flex-direction: column; gap: 10px; }
  section { padding: 60px 6%; }
}
.contact-section {
  flex: 1;
  text-align: center;
}

.contact-sub {
  margin-top: 10px;
  color: #555;
}

.contact-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

.contact-card {
  background: rgba(255,255,255,0.8);
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: 0.4s;
  transform-style: preserve-3d;
}

.contact-card:hover {
  transform: translateY(-12px) rotateX(6deg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.contact-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card a {
  color: #3b82f6;
  font-weight: 600;
}
/* ABOUT PREMIUM */

.about-hero {
  flex: 1;
  text-align: center;
}

.about-sub {
  margin-top: 12px;
  color: #555;
  font-size: 18px;
}

.about-glass {
  margin: 50px auto;
  max-width: 800px;
  background: rgba(255,255,255,0.8);
  padding: 40px;
  border-radius: 25px;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  line-height: 1.8;
  font-size: 17px;
}

.about-stats {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
}

.stat-card {
  background: linear-gradient(135deg, #111, #333);
  color: white;
  padding: 35px 25px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  transition: 0.4s;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.stat-card h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.stat-card span {
  color: #ccc;
  font-size: 14px;
}
/* SERVICES PREMIUM */

.services-hero {
  flex: 1;
  text-align: center;
}

.services-sub {
  margin-top: 12px;
  color: #555;
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
/* HOME PREMIUM */

.hero-sub {
  margin-top: 12px;
  color: #555;
  font-size: 18px;
  max-width: 700px;
}

.hero-actions {
  margin-top: 35px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn.secondary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.hero-features {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
  max-width: 900px;
}

.hero-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.mail{
  padding-right: 4px;
}
.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
}

.contact-card {
  padding: 50px 35px;
  min-height: 220px;
}

.contact-card h3 {
  font-size: 20px;
}

.contact-card a {
  font-size: 16px;
}
