/* ================================
   GLOBAL STYLES
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f6fa;
  color: #2c2c2e;
  line-height: 1.6;
}

img, video {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================
   HEADER
================================ */
.navbar {
 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #7568a6;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #f7d3c1;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color:  #f7d3c1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: white;
}

/* ================================
   QUOTE SECTION
================================ */
.quote {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  background: #fff;
  border-left: 6px solid #f7d3c1;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.quote span {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #7568a6;
}

/* ================================
   BUSINESS SECTION
================================ */
/* =========================
   Business Section Styles
========================= */

/* Container */
#business {
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* =========================
   Header
========================= */
.business-header {
  text-align: center;
  margin-bottom: 40px;
}

.business-header h1 {
  font-size: 28px;
  color:#7568a6;
  margin-bottom: 10px;
}

.business-header p {
  font-size: 16px;
  color: #f3b697;
}

/* =========================
   Domains Section
========================= */
.domains {
  margin: 40px 0;
}

.domains h2,
.pricing h2,
.benefits h2 {
  color: #7568A6;
  font-size: 22px;
  margin-bottom: 15px;
  border-left: 5px solid #f7d3c1;
  padding-left: 10px;
}

.domains ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
}

.domains li {
  background: #f5f7fb;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #f7d3c1;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.domains li:hover {
  background: #fef3e2;
  transform: translateY(-3px);
}

/* =========================
   Pricing Section
========================= */
.pricing {
  margin: 40px 0;
}

.pricing table {

  width: 50%;
  border-collapse: collapse;
  padding-left: 50%;
  background: #fdfdfd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.pricing td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.pricing tr:last-child td {
  border-bottom: none;
}

.pricing td:first-child {
  font-weight: 600;
  color:black;
}

.pricing td:last-child {
  text-align: right;
  color:#e1a485;
  font-weight: bold;
}

/* =========================
   Benefits Section
========================= */
.benefits {
  margin: 40px 0;
}

.benefits .card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.benefits .card h3 {
  color: #0073e6;
  margin-bottom: 15px;
}

.benefits .card ul {
  list-style: "✓ ";
  padding-left: 20px;
  text-align: left;
}

.center-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.center-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.center-list li:last-child {
  border-bottom: none;
}


/* =========================
   Floating / Order Button
========================= */
.order-btn {
  display: block;
  margin: 40px auto 0;
  padding: 14px 30px;
  background: #7568a6;
  color: #f7d3c1;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.order-btn:hover {
  background:  #7a70a2;
  transform: translateY(-2px);
}

/* ================================
   ORDER BUTTON
/* ================================
   FOOTER
================================ */
/* Footer Main */
footer {
  background: #7568a6;
  color:#f7d3c1 ;
  padding: 40px 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

/* Left Section */
.footer-left h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
}

.footer-left h2 span {
  color:#3f3663;
}

.footer-left p {
  font-size: 14px;
  color: #c7c7c7;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  color: #c7c7c7;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #F7D3C1;
}

/* Middle Section */
.footer-links h3,
.footer-contact h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #c7c7c7;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color:#F7D3C1;
}

/* Right Section */
.footer-contact p {
  margin: 8px 0;
  font-size: 14px;
  color: #c7c7c7;
}

.footer-contact .contact-link {
  text-decoration: none;
  color: #c7c7c7;
  transition: color 0.3s;
}

.footer-contact .contact-link:hover {
  color: #F7D3C1;
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  margin: 0;
  color: #c7c7c7;
}

.footer-bottom-links a {
  text-decoration: none;
  margin-left: 15px;
  font-size: 13px;
  color: #c7c7c7;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #F7D3C1;
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    margin-top: 10px;
  }
}


.container {
  width: 90%;  /* instead of fixed 1200px */
  max-width: 1200px;
  margin: 0 auto;
}
img, video {
  max-width: 100%;
  height: auto;
}
.main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 300px; /* grows, shrinks, min 300px */
}
/* For tablets */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
  }
  .content {
    grid-template-columns: 1fr;
  }
}

/* For mobile phones */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .sidebar {
    display: none; /* hide sidebar on small screens */
  }
}
