/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  background: #f5f6fa;
  color: #2c2c2e;
}
.logo {
  display: flex;
  align-items: center;  /* vertically center logo and text */
  gap: 10px;            /* space between logo and text */
  font-size: 1.5rem;    /* adjust text size */
  font-weight: bold;
  color: white;         /* adjust as per your header */
}

.logo img {
  height: 40px;   /* adjust logo size */
  width: auto;
}



/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  gap: 15px;
}

.tab {
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  background: #e4e7eb;
  font-weight: bold;
  transition: 0.3s;
}

.tab.active {
  background: #228b22;
  color: white;
}

/* Tab content */
.tab-content {
  display: none;
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}
.tab-content.active { display: block; }

.tab-content h2 {
  margin-bottom: 15px;
  color: #7568a6;
}

/* Grid (Projects) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.card:hover {
  transform: translateY(-5px);
}

/* CTA Button */
.cta-btn {
  display: block;
  margin: 30px auto;
  padding: 15px 30px;
  font-size: 18px;
  background: #ffb800;
  color: #1e2a78;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}
.cta-btn:hover { background: #ff9500; }


/* 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;
}

.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 */
}





/* 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;
}


/*body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}
  */

/* Project tab style */
/* Header */
.header {
  text-align: center;
  background: #7568a6;
  color: #f7d3c1;
  padding: 30px 15px;
}
.header h1 { margin: 0; }
.header p { font-size: 1.2rem; }

/* Domains */
.domains {
  padding: 20px;
}
.domains ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
}
.domains li {
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Pricing */
.pricing {
  padding: 20px;
  background: #f0f8ff;
}
.pricing table {
  width: 100%;
  border-collapse: collapse;
}
.pricing td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

/* What You Get */
.benefits {
  padding: 20px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.card h3 {
  color: #0073e6;
  margin-top: 20px;
}
.card ul {
  list-style: "✓ ";
  padding-left: 20px;
}

/* Projects Grid */
.projects {
  padding: 20px;
}
.filter {
  margin-bottom: 15px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}
.project-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-weight: bold;
}

/* Floating Button */
.order-btn {
  
 
  
  background: orange;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;


}
.order-btn:hover {
  background: #e65c00;
}


/* journal tab style */
/* Journal Tab Styling */
#journal {
  padding: 20px;
}

#journal .header {
  text-align: center;
  margin-bottom: 20px;
}

#journal h1 {
  color:#f7d3c1;
}

.journal-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.journal-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.journal-card h3 {
  margin-bottom: 10px;
  color: #444;
}

.journal-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px 0;
  color: #e7b094;
}

.journal-card .old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 5px;
}

.journal-card button {
  margin: 5px;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #0073e6;
  color: white;
  transition: background 0.3s;
}

.journal-card button:hover {
  background: #005bb5;
}

/* What You Get */
#journal .benefits {
  margin: 25px 0;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#journal .benefits ul {
  list-style: none;
  padding-left: 0;
}
#journal .benefits li {
  margin: 8px 0;
  font-weight: 500;
}

/* Additional Services */
.additional-services {
  margin: 25px 0;
}
.additional-services ul {
  list-style: none;
  padding: 0;
}
.additional-services li {
  margin: 10px 0;
  font-weight: 500;
}

/* Floating Order Button */
#journal .order-btn {
 
 background: orange;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
}
#journal .order-btn:hover {
  background: #e65c00;
}


/* report tab style */

/* Header */
.report-header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to right, #9F7EBE, #7568a6);
  color: #f7d3c1;
}

.report-header h1 {
  margin: 0;
  font-size: 28px;
}

.report-header p {
  font-size: 18px;
  margin-top: 8px;
}

/* Pricing */
.pricing {
  padding: 30px 20px;
  text-align: center;
}

.pricing h2 {
  margin-bottom: 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-weight: bold;
}

.price-card span {
  display: block;
  margin-top: 8px;
  color: #eebca3;
  font-size: 18px;
}

/* What you get */
.what-you-get {
  padding: 30px 20px;
}

.what-you-get h2 {
  text-align: center;
  margin-bottom: 20px;
}

.card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  margin: 10px 0;
  font-size: 16px;
}


/* card tab */
/* Header */
.card-header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to right, #9F7EBE,#7568A6);
  color: #f7d3c1;
}

.card-header h1 {
  margin: 0;
  font-size: 28px;
}

.card-header p {
  font-size: 18px;
  margin-top: 8px;
}

/* Card Types */
.card-types {
  padding: 30px 20px;
  text-align: center;
}

.card-types h2 {
  margin-bottom: 20px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.type-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-weight: bold;
  transition: transform 0.2s ease-in-out;
}

.type-card:hover {
  transform: scale(1.05);
  background: #ffe9e9;
}

/* What you get */
.what-you-get {
  padding: 30px 20px;
}

.what-you-get h2 {
  text-align: center;
  margin-bottom: 20px;
}

.card-info {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card-info ul {
  list-style: none;
  padding: 0;
}

.card-info li {
  margin: 10px 0;
  font-size: 16px;
}


/* Additional service */
/* Header */
.service-header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to right, #9F7EBE, #7568A6);
  color: #f7d3c1;
}

.service-header h1 {
  margin: 0;
  font-size: 28px;
}

.service-header p {
  font-size: 18px;
  margin-top: 8px;
}

/* Services Table */
.services-list {
  padding: 30px 20px;
  text-align: center;
}

.services-list h2 {
  margin-bottom: 20px;
}

.services-list table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 80%;
  max-width: 700px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.services-list td {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
}

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

/* What you get */
.what-you-get {
  padding: 30px 20px;
}

.what-you-get h2 {
  text-align: center;
  margin-bottom: 20px;
}

.card-info {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card-info ul {
  list-style: none;
  padding: 0;
}

.card-info li {
  margin: 10px 0;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* 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;
  }
}

.make-btn {
  
   background: #7568a6;
  color: #f7d3c1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
}
.service-order-btn:hover {
  background: #e65c00;
}


.make-btn {
  background: #7568a6;
  color: #f7d3c1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
}
.report-order-btn:hover {
  background: #e65c00;
}

.make-btn {
   background: #7568a6;
  color: #f7d3c1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
}
.card-order-btn:hover {
  background: #e65c00;
}

.make-btn {
   background: #7568a6;
  color: #f7d3c1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
}
.journal-order-btn:hover {
  background: #e65c00;
}




/* ================= Business Website Customization CSS ================= */

/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Header */
#business .header {
  text-align: center;
  background: #1E2A78; /* Navy Blue from your brand palette */
  color: white;
  padding: 30px 15px;
}
#business .business-header h1 {
  margin: 0;
  font-size: 2.5rem;
}
#business .business-header p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Domains Section */
#business .domains {
  padding: 20px;
}
#business .domains h2 {
  margin-bottom: 15px;
  color: #1E2A78;
  text-align: center;
}
#business .domains ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}
#business .domains li {
  background: white;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
  font-weight: 500;
}

/* Pricing Section */
#business .pricing {
  padding: 20px;
  background: #f0f8ff;
}
#business .pricing h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #1E2A78;
}
#business .pricing table {
  width: 100%;
  border-collapse: collapse;
  max-width: 600px;
  margin: 0 auto;
}
#business .pricing td {
  padding: 12px;
  border-bottom: 1px solid #ccc;
  text-align: center;
  font-weight: 500;
}

/* Benefits Section */
#business .benefits {
  padding: 20px;
}
#business .benefits h2 {
  text-align: center;
  color: #1E2A78;
  margin-bottom: 15px;
}
#business .card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 0 auto;
}
#business .card ul {
  list-style: "✓ ";
  padding-left: 20px;
}
#business .card ul li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* Projects / Delivered Websites Grid */
#business .projects {
  padding: 20px;
}
#business .projects h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #1E2A78;
}
#business .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}
#business .project-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
#business .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Floating Button */
#business .make-btn {
   background: orange;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
}
#business .order-btn:hover {
  background: #E6A800;
  transform: scale(1.05);
}

/* 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 */
  }
}
