/* BRAND COLORS */
:root {
  --primary: #0F5CB8;
  --accent: #FFC107;
  --dark: #333;
  --light: #f8f8f8;
  --bg: #ffffff;
  --radius: 10px;
}
/* GLOBAL */
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--bg);
}
.boldtext {
	color: var(--primary);
	font-weight: bold;
}
/* LAYOUT */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.margintop{
	margin-top: 32px;
}
.marginbottom{
	margin-bottom: 32px;
}
/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo img {
display: flex;
align-items: center;
height: 25px;
max-width: 90%;	
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color .3s ease;
}
.nav ul li a:hover {
  color: var(--primary);
}
.nav-toggle {
  display: none;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
/* HERO */
.hero {
  background: linear-gradient(to bottom right, #d6e5ff, #ffffff);
  padding: 90px 0;
  text-align: center;
}
.hero h1 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 12px;
}
.hero p {
  font-size: 20px;
  max-width: 650px;
  margin: 0 auto 25px;
}
/* BUTTONS */
.button-primary,
.button-secondary {
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}
.button-primary {
  background: var(--primary);
  color: white;
}
.button-secondary {
  background: var(--accent);
  color: #222;
}
/* INTRO */
.intro {
  padding: 40px 0;
  text-align: center;
}
/* SERVICES */
.services .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 50px 0;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.service-card img {
  width: 55px;
  margin-bottom: 15px;
}
/* DETAILS SECTIONS */
.service-details {
  padding: 50px 0;
}
.service-block {
display: flex;
align-items: center; /* Vertically centers items */
/*height: 100vh; /* Example height to allow vertical centering */
/*align-items: flex-start;*/
gap: 20px;
margin-bottom: 35px;
}
.service-block img {
  width: 45px;
}
/* PROMO */
.promo {
  background: var(--light);
  padding: 40px 0;
}
.promo-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
.promo-img {
  width: 70px;
}
.promo-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}
/* ELITE FEATURES */
.elite-features {
  padding: 50px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.feature-item {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.feature-item img {
  width: 55px;
  margin-top: 10px;
}
/* CTA */
.cta {
  padding: 40px 0;
  text-align: center;
}
/* HOSTING PLANS */
.plans {
  padding: 50px 0;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.plan-card {
  background: white;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  text-align: center;
}
.plan-card.featured {
  border: 2px solid var(--primary);
}
.price {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 15px;
}
.plan-card ul {
  text-align: left;
  padding-left: 18px;
}
/* DOMAIN */
.domain-section {
  background: var(--light);
  padding: 50px 0;
}
.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  align-items: center;
}
.domain-grid img {
  width: 180px;
}
/* CPANEL */
.cpanel {
  padding: 50px 0;
}
.cpanel-inner {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}
.cpanel-img {
  width: 85px;
}
/* SOFTWARE GRID */
.software {
  padding: 50px 0;
  text-align: center;
}
.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
}
.software-grid img {
  width: 100px;
}
/* FOOTER */
.footer {
  background: #fff;
  padding: 40px 0;
  border-top: 1px solid #eee;
  text-align: center;
}
.footer-logo {
  width: 50px;
  margin-bottom: 10px;
}
.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-bottom: 15px;
}
.footer-links a {
  text-decoration: none;
  color: var(--dark);
}
/* CONTACT FORM */
.contact-form-section {
  padding: 60px 0;
}
.contact-form-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
}
.contact-form {
  max-width: 650px;
  margin: auto;
}
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
}
.form-success,
.form-error {
  padding: 14px;
  margin-bottom: 20px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
}
.form-success {
  background: #e6ffe6;
  color: #0a7a0a;
}
.form-error {
  background: #ffe6e6;
  color: #a30000;
}
.g-recaptcha {
  margin: 20px 0;
}
.hero p {
  max-width: 600px;
  margin: auto;
}
.hero-success {
  background: #eaffea;
  color: #0a7a0a;
}
.hero-error {
  background: #ffecec;
  color: #a30000;
}
/* MOBILE */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    right: 0;
    top: 70px;
    background: white;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 18px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
  .nav.open {
    display: flex;
	  background: #cbe8ff;
  }
  .nav-toggle {
    display: block;
  }
  .service-block {
    flex-direction: column;
    text-align: center;
  }
  .promo-inner {
    flex-direction: column;
    text-align: center;
  }
  .cpanel-inner {
    flex-direction: column;
    text-align: center;
  }
}