.page-header {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.page-header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.page-header p {
  color: #ccc;
  font-size: 1.2em;
}

.plans {
  padding: 60px 20px;
  background: #181818;
}

.plan-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.plan {
  background: #222;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

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

.plan.featured {
  border: 2px solid #f00;
  transform: scale(1.05);
}

.plan h2 {
  margin-bottom: 15px;
}

.plan .price {
  font-size: 1.8em;
  margin: 15px 0;
  color: #d89140;
}

.plan ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.plan ul li {
  margin: 10px 0;
}

.plan .btn {
  background: #f00;
  padding: 12px 25px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.plan .btn:hover {
  background: #c00;
}

.why-choose {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

.why-choose h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #fff;
}

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature {
  width: 280px;
  background: #222;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.feature i {
  font-size: 2em;
  margin-bottom: 15px;
  color: #d89140;
}

.portfolio {
  padding: 60px 20px;
  background: #181818;
  text-align: center;
}

.portfolio h2 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 10px;
}

.portfolio p {
  color: #ccc;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.portfolio-item {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.portfolio-item:hover {
  transform: scale(1.05);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.testimonials {
  background: #111;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  color: #ccc;
  font-style: italic;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

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

.testimonial h4 {
  margin-top: 15px;
  color: #f00;
  font-style: normal;
}
.faq {
  background: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.faq h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  padding: 15px;
  border-left: 3px solid #e60000;
  background: #1a1a1a;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.faq-item p {
  color: #ccc;
}
.faq {
  background: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.faq h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  padding: 15px;
  border-left: 3px solid #e60000;
  background: #1a1a1a;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.faq-item p {
  color: #ccc;
}
.sample-download {
  text-align: center;
  margin-top: 30px;
}

.sample-download .btn-secondary {
  background: #e60000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.sample-download .btn-secondary:hover {
  background: #b30000;
}
.sample-download {
  text-align: center;
  margin-top: 30px;
}

.sample-download a {
  margin: 10px;
}

.sample-download .btn-secondary {
  background: #e60000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.sample-download .btn-secondary:hover {
  background: #b30000;
}

.sample-download .btn-outline {
  background: transparent;
  color: #e60000;
  border: 2px solid #e60000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.sample-download .btn-outline:hover {
  background: #e60000;
  color: #fff;
}

.comparison {
  background: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.comparison h2 {
  margin-bottom: 20px;
  font-size: 2em;
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 900px;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
}

.comparison th, .comparison td {
  padding: 15px;
  border-bottom: 1px solid #333;
}

.comparison th {
  background: #e60000;
  color: #fff;
}

.comparison tr:nth-child(even) {
  background: #222;
}
.btn-table {
  display: inline-block;
  background: #e60000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-table:hover {
  background: #b30000;
}
.btn-table {
  display: inline-block;
  background: #e60000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-table:hover {
  background: #b30000;
}

/* Highlighted Professional Button */
.featured-btn {
  background: #ffcc00;
  color: #000;
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.8);
}

.featured-btn:hover {
  background: #e6b800;
  color: #000;
}
.best-value {
  position: relative;
}

.badge {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  text-transform: uppercase;
  box-shadow: 0 0 6px rgba(255, 204, 0, 0.7);
}

/* Highlight background for Professional column */
.highlight-col,
.best-value {
  background: rgba(255, 204, 0, 0.1); /* subtle gold tint */
}

.best-value {
  background: rgba(255, 204, 0, 0.2);
}

/* Badge */
.badge {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  text-transform: uppercase;
  box-shadow: 0 0 6px rgba(255, 204, 0, 0.7);
}
/* Custom Quote Section */
.custom-quote {
  margin-top: 30px;
  text-align: center;
}

.custom-quote p {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #444;
}

.btn-quote {
  display: inline-block;
  background: #ff3b3b;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.btn-quote:hover {
  background: #e03131;
  transform: translateY(-2px);
}
.service-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-grid .card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-grid .card i {
  font-size: 40px;
  color: #ff3b3b;
  margin-bottom: 10px;
}

.why-choose {
  background: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
}

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

.why-choose li {
  font-size: 1.1em;
  margin: 8px 0;
}
.service-intro,
.why-choose,
.faq {
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.light-bg {
  background: #f4f4f4;
  color: #111;
}

.dark-bg {
  background: #111;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: #1c1c1c;
  color: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(255, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.service-card i {
  font-size: 42px;
  color: #d89140;
  margin-bottom: 12px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.why-item {
  background: #1c1c1c;
  padding: 15px;
  border-radius: 8px;
  color: #ccc;
}

.cta {
  text-align: center;
  padding: 60px 20px;
}

/* === General Layout Cleanup === */

/* Remove any unwanted white gaps between stacked sections */
section {
  margin: 0;
  padding: 60px 0;
}

/* Ensure all containers fit edge-to-edge */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Fix background color bleed issues */
body {
  background: #111;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Ensure alternating backgrounds stay consistent */
.dark-bg {
  background: #111;
  color: #fff;
}

.light-bg {
  background: #1a1a1a; /* changed from white/gray to match site tone */
  color: #fff;
}

/* Adjust tables to match dark design */
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #1a1a1a;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #333;
  padding: 14px 20px;
  text-align: center;
}

.pricing-table thead {
  background: #ff3b3b;
  color: #fff;
}

.pricing-table .best-value {
  background: #e03131;
  color: #fff;
}

/* Section titles consistency */
h2 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #ff0000;
  letter-spacing: 1px;
}
/* WHY CHOOSE SECTION */
.why-choose {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 2em;
  color: #ff0000;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-choose .feature {
  background: #1a1a1a;
  padding: 40px 25px;
  border-radius: 12px;
  border: 1px solid #222;
  transition: all 0.3s ease;
}

.why-choose .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(255, 59, 59, 0.2);
  border-color: #ff3b3b;
}

.why-choose .feature i {
  font-size: 40px;
  color: #d89140;
  margin-bottom: 15px;
}

.why-choose .feature h3 {
  font-size: 1.3em;
  color: #fff;
  margin-bottom: 10px;
}

.why-choose .feature p {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95em;
  margin: 0;
}

/* ===========================
   WHAT WE OFFER SECTION
   =========================== */
.what-we-offer {
  background: #111; /* Dark background to match the site */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.what-we-offer h2 {
  font-size: 2em;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Grid Layout */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq {
  background: #111;
  color: #fff;
  padding: 80px 20px;
}

.faq h2 {
  text-align: center;
  color: #ff3b3b;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 2em;
}

.faq-item {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item.active {
  border-color: #ff3b3b;
  box-shadow: 0 5px 20px rgba(255, 59, 59, 0.2);
}

.faq-item h3 {
  margin: 0;
  padding: 18px 25px;
  font-size: 1.2em;
  color: #fff;
  position: relative;
}

.faq-item h3::after {
  content: "\f078"; /* Font Awesome down arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-item.active h3::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 25px;
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95em;
}

.faq-item.active p {
  max-height: 200px;
  padding: 15px 25px 25px;
}

.faq-item {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.faq-item.active {
  border-color: #ff3b3b;
  box-shadow: 0 5px 20px rgba(255, 59, 59, 0.2);
}

.faq-item h3 {
  margin: 0;
  font-size: 1.2em;
  color: #fff;
  position: relative;
}

.faq-item h3::after {
  content: "\f078"; /* Font Awesome arrow-down */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  color: #ff3b3b;
}

.faq-item.active h3::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  color: #ccc;
  margin: 0;
  padding-top: 10px;
  line-height: 1.6;
}
/* ===========================
   WHAT WE OFFER SECTION
   =========================== */
.what-we-offer {
  background: #111; /* Dark background to match the site */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.what-we-offer h2 {
  font-size: 2em;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Grid Layout */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Feature Boxes */
.feature-box {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 40px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 59, 59, 0.1);
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: #ff3b3b;
  box-shadow: 0 6px 20px rgba(255, 59, 59, 0.25);
}

/* Icons */
.feature-box i {
  font-size: 42px;
  color: #ff0000;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.feature-box:hover i {
  color: #fff;
}

/* Headings */
.feature-box h3 {
  font-size: 1.3em;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Paragraphs */
.feature-box p {
  font-size: 0.95em;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Tuning */
@media (max-width: 768px) {
  .what-we-offer {
    padding: 60px 15px;
  }

  .what-we-offer h2 {
    font-size: 1.8em;
  }

  .feature-box {
    padding: 30px 20px;
  }
}

/* --- Gallery Layout --- */
.gallery-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2rem;
  color: #004b6b;
  margin-bottom: 10px;
}

.gallery-section .section-intro {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-img {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.caption {
  text-align: center;
  color: #f2f2f2;
  font-size: 18px;
  margin-top: 15px;
}

.close,
.prev,
.next {
  position: absolute;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}

.close {
  top: 20px;
  right: 40px;
}

.prev,
.next {
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.close:hover,
.prev:hover,
.next:hover {
  color: #00a8e8;
}
.feature-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.feature-box img:hover {
  transform: scale(1.03);
}
.feature-box i {
  font-size: 2.5rem;
  color: #d89140; /* match accent color from your site */
  margin-bottom: 15px;
  transition: color 0.3s, transform 0.3s;
}

.feature-box:hover i {
  color: #0a0a0a; /* hover color accent (red/orange theme) */
  transform: scale(1.2);
}

/* Domain Search */
.domain-search {
  text-align: center;
  padding: 60px 20px;
}

.domain-search h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.domain-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.domain-form input {
  padding: 12px;
  width: 350px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.domain-form .btn-primary {
  padding: 12px 24px;
  background: linear-gradient(90deg, #000 0%, #111 40%, #d89140 100%);
;
  color: #d89140;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.domain-form .btn-primary:hover {
  background: linear-gradient(90deg, #d89140 0%, #111 40%, #000 100%);
}

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

.domain-pricing h2 {
  margin-bottom: 30px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: linear-gradient(90deg, #d89140 0%, #d89140 100%);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px 20px;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pricing-card .price {
  font-size: 1.5rem;
  color: #00c851;
  margin: 10px 0;
}
 
.page-header {
  background: linear-gradient(90deg, #000, #1a1a1a);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-bottom: 3px solid #d89140;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 10px;
}

.page-header p {
  color: #ccc;
  font-size: 1.1rem;
}

.domain-transfer {
  background: #0d0d0d;
  color: #fff;
  padding: 60px 20px;
}

.transfer-text h2 {
  color: #d89140;
  margin-bottom: 15px;
}

.transfer-list i {
  color: #d89140;
  margin-right: 8px;
}

.transfer-form-box {
  flex: 1;
  min-width: 300px;
  background: #1a1a1a;
  border: 1px solid #d89140;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(216, 145, 64, 0.3);
}

.transfer-form label {
  color: #d89140;
}

.btn-primary {
  background: linear-gradient(90deg, #d89140, #b3701f);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #b3701f, #d89140);
  transform: scale(1.05);
}

.faq h2 {
  text-align: center;
  color: #d89140;
}

.faq-item {
  border-left: 4px solid #d89140;
}

.faq-item h3 {
  color: #d89140;
}

    .icon {
      font-size: 100px;
      color: orange;
    }

