/* ==============================================
  MODERN REFACTOR - TUTORIALS STYLESHEET
  - Primary Color: #000036
  - Secondary Color: #d0142c
  ==============================================
*/

:root {
  --primary-color: #000036;
  --secondary-color: #d0142c;
  --text-color: #333;
  --text-color-light: #fefefe;
  --background-color: #fefefe;
  --card-shadow: 0 10px 30px rgba(0, 0, 54, 0.1); /* Shadow from primary color */
  --border-radius: 12px;
  --border-color: rgba(0, 0, 54, 0.1);
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
:after,
:before {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background: var(--background-color);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar-track {
  background: transparent;
}

li {
  font-size: 16px !important;
  margin-bottom: 10px;
}

/* ==============================================
  BLOGS PAGE HEADER
  ==============================================
*/



.dedicareted-hero {
  background-image: linear-gradient(to right, rgba(0, 0, 54, 0.9), rgba(46, 174, 243, 0.9)), url(/assets/images/what-is-a-server-jpg.webp);
  height: 450px ! IMPORTANT;
 padding: 80px 20px 20px;
 display: flex;
 align-items: center;
 background-repeat: no-repeat;
 background-position: center center;
 background-size: cover;
 margin-top: -5px;
}


.blogs-page {
  background: var(--primary-color);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
}

.blogs-page::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(208, 20, 44, 0.1); /* Secondary color opacity */
  border-radius: 50%;
  z-index: 0;
}

.blogs-page-description {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.blogs-page-description h1 {
  color: var(--text-color-light);
 
}

.blogs-page-description h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-color-light);
}

.blogs-page-description h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 8px auto 8px;
}

.blogs-page-description .blogs-page-description-header {
  color: var(--text-color-light);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}

.blogs-page-description .blogs-page-description-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
  color: var(--text-color-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--secondary-color);
}

.breadcrumb-item.active span {
  color: var(--secondary-color);
}

/* ==============================================
  FILTERING SECTION
  ==============================================
*/
.g-tutorials-filtering-section {
  margin-bottom: 3rem;
  margin-top: 2rem;
}

.g-tutorials-filtering-container {
  background-color: var(--background-color);
  padding: 15px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  max-width: 1600px;
  margin: auto;
  border-radius: var(--border-radius);
}

.g-tutorials-filtering-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  padding: 20px;
}

@media screen and (max-width: 991px) {
  .g-tutorials-filtering-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .g-tutorials-filtering-layout {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-tutorials-filtering-group {
  position: relative;
  width: 100%;
  display: flex;
}

.g-tutorials-filtering-common-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background-color: var(--background-color);
  color: var(--text-color);
}

.g-tutorials-filtering-common-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(208, 20, 44, 0.2);
}

.g-tutorials-filtering-saerch-box {
  padding-left: 2.5rem;
  /* Updated SVG icon fill color to --primary-color (#000036) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23000036' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0.8rem center;
}

.g-tutorials-filtering-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
  width: 100%;
  background: var(--background-color) !important;
}

.custom-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  pointer-events: none;
  font-size: 16px;
  z-index: 99;
  transition: transform 0.1s ease;
}

.custom-arrow.rotate-up {
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.1s ease;
  top: 50%;
}

select:not([size]) {
  background-image: none !important; /* Remove default arrow */
}

/* ==============================================
  MAIN CARD SECTION
  ==============================================
*/
.g-tutorials-main-card-section {
  padding: 2rem 0;
  margin: 50px 20px 80px 20px;
}

.g-tutorials-main-card-section-container {
  max-width: 1600px;
  margin: auto;
}

.g-tutorials-main-card-section-title {
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

.g-tutorials-main-card-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  max-width: 90%;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.g-tutorials-main-card-section-title span {
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.g-text-center {
  text-align: center;
}

.g-def-title-color {
  color: var(--secondary-color) !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

.g-light-speed-performance-content-p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-top: 2rem;
  padding: 3rem;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  border-left: 4px solid var(--secondary-color);
  position: relative;
  width: 1000px;
  max-width: 95%;
  margin: 0px auto;
}

.g-light-speed-performance-content-title {
  font-family: inherit !important;
  text-transform: capitalize !important;
  font-size: 30px !important;
  font-weight: 600 !important;
}

.g-light-speed-performance-content-title-h4 {
  font-size: 25px !important;
  font-family: inherit !important;
  font-weight: 600 !important;
  color: var(--text-color) !important;
}

@media screen and (max-width: 900px) {
  .g-light-speed-performance-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .g-light-speed-performance-content {
    padding: 0 15px;
  }
  .g-light-speed-performance-content-title {
    text-align: center;
    padding-bottom: 20px;
  }
}

/* ==============================================
  TUTORIAL CARDS
  ==============================================
*/
.g-tutorials-main-card-section-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 50px;
}

.g-tutorial-main-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 420px;
  margin: 0 auto;
  background: var(--background-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 54, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid var(--border-color);
  height: 100%;
}

.g-tutorial-main-card-link:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 54, 0.15);
}

.g-tutorial-main-card-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.g-tutorial-main-card-link:hover::before {
  opacity: 1;
}

.g-tutorial-main-card-img-main {
  height: 200px;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.g-tutorial-main-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0; /* Already clipped by parent */
}

.g-tutorial-main-card-link:hover .g-tutorial-main-card-img-main::after {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0.5;
}

.g-tutorial-main-card-img-content-body {
  padding: 24px;
  position: relative;
  color: var(--text-color) !important;
  display: flex;
  flex-direction: column;
}

.g-tutorial-main-card-category-body {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.g-tutorial-main-card-category {
  background: var(--secondary-color);
  color: var(--text-color-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(208, 20, 44, 0.2);
  transition: all 0.3s ease;
  font-family: inherit !important;
  height: max-content;
}

.g-tutorial-main-card-category:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(208, 20, 44, 0.3);
}

.g-tutorial-main-card-category i {
  font-size: 10px;
}

.g-tutorial-main-card-img-content {
  margin-bottom: 20px;
}

.g-tutorial-main-card-img-content-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}



.g-tutorial-main-card-img-content-para {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

.g-tutorial-main-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
}

.g-tutorial-main-card-footer-author-img-div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.g-tutorial-main-card-footer-author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  transition: 0.3s ease-in-out;
}

.g-tutorial-main-card-footer-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 13px;
}

.g-tutorial-main-card-footer-datetime {
  color: #555;
  font-size: 12px;
  background: rgba(0, 0, 54, 0.05);
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 500;
  margin-left: 40px;
}

.g-tutorial-main-card-read-more {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.g-tutorial-main-card-btn-content-para {
  background: var(--primary-color);
  color: var(--text-color-light);
  margin: 0;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 15px;
}

.g-tutorial-main-card-link:hover .g-tutorial-main-card-btn-content-para {
  background: var(--secondary-color);
  box-shadow: 0 6px 20px rgba(208, 20, 44, 0.4);
  transform: translateY(-1px);
}

.g-tutorial-main-card-btn-content-para i {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.g-tutorial-main-card-link:hover .g-tutorial-main-card-btn-content-para i {
  transform: translateX(4px);
}

@media (max-width: 480px) {
  .g-tutorial-main-card-link {
    max-width: 100%;
    margin: 0 10px;
  }
  .g-tutorial-main-card-img-content-body {
    padding: 20px;
  }
  .g-tutorial-main-card-img-content-title {
    font-size: 18px;
  }
}

/* ==============================================
  HOW-TO / SIDEBAR SECTION
  ==============================================
*/
.g-howto-main-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  position: relative;
}

.g-howto-aside {
  grid-column: span 3;
}

.g-side-bar-main-div {
  background: var(--background-color);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
  height: 100%;
}

.g-side-bar-container {
  padding: 0;
}

.g-side-bar-back-title {
  margin: 0;
  padding: 24px 24px 16px 24px;
  background: var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.g-side-bar-back-title a {
  color: var(--text-color-light);
  text-decoration: none;
  font-size: 40px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 120px;
  transition: all 0.3s ease;
}

.g-side-bar-back-title a:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-4px);
}

.g-side-bar-back-title a i {
  font-size: 14px;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.g-side-bar-back-title a:hover i {
  transform: translateX(-2px);
}

.g-side-bar-title {
  margin: 0;
  padding: 20px 24px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  text-align: center;
}

.g-side-bar-layout {
  padding: 0 24px 24px 24px;
}

.g-side-bar-group {
  margin-bottom: 24px;
  background: #000000 !important;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(208, 20, 44, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.g-side-bar-group:hover {
  background: #000000 !important;
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(208, 20, 44, 0.2);
}

.g-side-bar-group-heading {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.g-side-bar-group:hover .g-side-bar-group-heading span {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.g-side-bar-group-heading-icon {
  font-size: 14px !important;
}

.g-side-bar-group-ul {
  list-style: none;
  margin: 0 !important;
  padding: 0;
}

.g-side-bar-group-list {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.g-side-bar-group-list:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.g-side-bar-group-list:last-child {
  margin-bottom: 0;
}

.g-side-bar-group-list-icon {
  color: var(--text-color-light); /* Better contrast on red */
  font-size: 12px;
  margin-top: 4px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.g-side-bar-group-list:hover .g-side-bar-group-list-icon {
  transform: translateX(2px);
  color: var(--text-color-light);
}

.g-side-bar-group-list-link {
  color: var(--text-color-light);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s ease;
  display: block;
  font-weight: 500;
  padding-left: 12px;
}



/* Gradient animation for group headings */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.g-side-bar-group-heading span {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    
  );
  background-size: 300% 300%;
  animation: gradient-shift 4s ease infinite;
}

/* Scrollbar styling */
.g-side-bar-layout::-webkit-scrollbar,
.g-howto-aside::-webkit-scrollbar {
  width: 6px;
}

.g-side-bar-layout::-webkit-scrollbar-track,
.g-howto-aside::-webkit-scrollbar-track {
  background: rgba(0, 0, 54, 0.05);
  border-radius: 3px;
}

.g-side-bar-layout::-webkit-scrollbar-thumb,
.g-howto-aside::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.g-side-bar-layout::-webkit-scrollbar-thumb:hover,
.g-howto-aside::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Enhanced focus states */
.g-side-bar-back-title a:focus,
.g-side-bar-group-list-link:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

.g-howto-main {
  grid-column: span 9;
  padding: 0px;
  margin-top: 0px;
}

@media screen and (max-width: 1000px) {
  .g-howto-main-container {
    display: flex;
    flex-direction: column-reverse !important;
  }
  .g-howto-main {
    padding: 30px 15px !important;
    margin-top: 50px;
  }
  .g-side-bar-group-heading {
    font-size: 25px !important;
  }
  .g-side-bar-group-list {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 1200px) {
  .g-side-bar-group-list {
    font-size: 10px !important;
  }
  .g-side-bar-group-heading {
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {
  .g-howto-aside {
    max-width: 100%;
    margin: 0;
  }
  .g-side-bar-container {
    margin: 0 10px;
  }
  .g-side-bar-back-title,
  .g-side-bar-title,
  .g-side-bar-layout {
    padding-left: 20px;
    padding-right: 20px;
  }
  .g-side-bar-group {
    padding: 16px;
  }
}

/* ==============================================
  TUTORIAL BANNER SECTION
  ==============================================
*/
.g-rounded-home-banner-section {
  border-radius: 0px;
}

.g-rounded-home-banner-section.g-choose-best-server-tutorial-section {
  position: relative;
  padding: 10px;
  background: var(--primary-color);
  overflow: hidden;
  height: 400px;
}

.g-rounded-home-banner-section.g-choose-best-server-tutorial-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(
      ellipse at 30% 70%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(208, 20, 44, 0.04) 0%,
      transparent 50%
    );
  transform: rotate(-5deg);
  animation: floatBackground 20s ease-in-out infinite;
}

.g-rounded-home-banner-section.g-choose-best-server-tutorial-section::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    45deg,
    rgba(208, 20, 44, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(40px);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes floatBackground {
  0%,
  100% {
    transform: rotate(-5deg) translateX(0) translateY(0);
  }
  33% {
    transform: rotate(-3deg) translateX(20px) translateY(-10px);
  }
  66% {
    transform: rotate(-7deg) translateX(-15px) translateY(15px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.g-rounded-home-banner-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.g-rounded-home-banner-content {
  backdrop-filter: blur(4px) brightness(1) !important;
}

.g-rounded-home-banner-content.g-rounded-home-banner-content-normal {
  position: relative;
  padding: 2rem 0;
}

.g-rounded-home-banner-content-main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  margin: 0 0 2rem 0;
  line-height: 1.1;
  position: relative;
  background: var(--text-color-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  font-family: inherit !important;
  color: #fff; /* Fallback */
}

.g-rounded-home-banner-content-sub-title {
  font-size: 18px;
  font-weight: 400;
  color: #eee;
  line-height: 1.7;
  margin: 0;
  position: relative;
  padding-left: 1.5rem;
  font-family: inherit !important;
}

.g-rounded-home-banner-content-sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
  border-radius: 2px;
  animation: heightGrow 3s ease-out;
}

@keyframes heightGrow {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

.g-rounded-home-banner-content-2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.g-rounded-home-banner-content-2 img {
  width: 100%;
  max-width: 400px;
  height: auto;
  position: relative;
  z-index: 2;
}

.g-rounded-home-banner-content-2::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    45deg,
    rgba(208, 20, 44, 0.1) 0%,
    rgba(208, 20, 44, 0.1) 100%
  );
  border-radius: 50%;
  filter: blur(20px);
  z-index: 1;
  animation: floatAround 6s ease-in-out infinite;
}

.g-rounded-home-banner-content-2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(208, 20, 44, 0.15) 0%,
    rgba(208, 20, 44, 0.1) 100%
  );
  border-radius: 30px;
  z-index: 1;
  animation: floatAround 8s ease-in-out infinite reverse;
}

@keyframes floatAround {
  0%,
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(10px) translateY(-5px) rotate(90deg);
  }
  50% {
    transform: translateX(5px) translateY(10px) rotate(180deg);
  }
  75% {
    transform: translateX(-5px) translateY(5px) rotate(270deg);
  }
}

@media screen and (max-width: 1350px) {
  .g-rounded-home-banner-content-2 {
    display: none;
  }
  .g-rounded-home-banner-content-2 img {
    display: none;
  }
  .g-rounded-home-banner-content {
    grid-column: span 12;
  }
}

@media (max-width: 1024px) {
  .g-rounded-home-banner-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .g-rounded-home-banner-section.g-choose-best-server-tutorial-section {
    padding: 4rem 1.5rem;
  }
  .g-rounded-home-banner-content-sub-title {
    padding-left: 0;
    text-align: center;
  }
  .g-rounded-home-banner-content-sub-title::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .g-rounded-home-banner-section.g-choose-best-server-tutorial-section {
    padding: 3rem 1rem;
  }
  .g-rounded-home-banner-layout {
    gap: 2rem;
  }
  .g-rounded-home-banner-content-main-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  .g-rounded-home-banner-content-sub-title {
    font-size: 1.1rem;
  }
}

/* ==============================================
  TUTORIAL CONTENT (LISTS)
  ==============================================
*/
.g-tutorial-contents-section {
  padding: 30px 30px 50px;
}

.g-tutorial-contents {
  background: var(--background-color);
  position: relative;
  font-family: inherit !important;
  padding: 10px 0;
}

.g-light-speed-performance-tutorial-content-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 30px 0;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.tutorial-content {
  background: var(--background-color);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.tutorial-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 54, 0.01) 0%,
    rgba(208, 20, 44, 0.01) 50%,
    rgba(208, 20, 44, 0.01) 100%
  );
  pointer-events: none;
}

.tutorial-content-link {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  margin-bottom: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  overflow: hidden;
  gap: 9px;
  margin-left: 40px;
}

.tutorial-content-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 54, 0.03) 0%,
    rgba(208, 20, 44, 0.05) 50%,
    rgba(208, 20, 44, 0.03) 100%
  );
  transition: left 0.4s ease;
  z-index: 1;
}

.tutorial-content-link:hover::before {
  left: 0;
}

.tutorial-content-link:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 24px rgba(0, 0, 54, 0.1),
    0 6px 12px rgba(208, 20, 44, 0.08);
  border-color: rgba(208, 20, 44, 0.2);
}

.tutorial-content-link .fa {
  font-size: 14px;
  margin-right: 16px;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  width: 16px;
  text-align: center;
}

.tutorial-content-link .fa-angle-double-right {
  color: var(--secondary-color);
  font-size: 22px;
  font-style: italic;
}

.tutorial-content-link:hover .fa {
  color: var(--secondary-color);
  transform: translateX(4px);
}

.tutorial-content-link .fa::before {
  content: "▶";
  font-weight: bold;
  font-size: 12px;
}

.tutorial-content-link-p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2d3748;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.tutorial-content-link:hover .tutorial-content-link-p {
  color: var(--primary-color);
  font-weight: 600;
}

.tutorial-content-link:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
  border-radius: 12px;
}

.tutorial-content-link {
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.g-tutorial-contents > p,
.g-border-black-1 {
  font-weight: 400;
}
.g-tutorial-contents > ul > li {
  font-weight: 400;
}
.g-top-pad-10 {
  padding-top: 10px;
  font-weight: 400;
}

.g-tutorial-subcontents {
  margin-left: 40px;
  padding-top: 20px;
}

.g-light-speed-performance-content-subtitle {
  font-size: 25px !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  margin-top: 15px;
  margin-bottom: 5px;
}

/* ==============================================
  CODE BLOCKS
  ==============================================
*/
.code-block-container {
  background: var(--background-color);
  border-radius: 16px;
  overflow: hidden;
  margin: 20px 0;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #212529;
}

.code-block-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(0, 0, 54, 0.12),
    0 15px 25px rgba(0, 0, 54, 0.08), 0 8px 15px rgba(0, 0, 54, 0.06);
}

.code-header {
  background: var(--primary-color);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.code-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.code-header:hover::before {
  left: 100%;
}

.code-header span {
  color: var(--text-color-light);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.copy-button {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color-light);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.copy-button:hover {
  background: rgba(208, 20, 44, 0.2);
  border-color: rgba(208, 20, 44, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(208, 20, 44, 0.2);
}

.copy-button:active {
  transform: translateY(0);
}

.copy-button .fa {
  font-size: 0.8rem;
}

.copy-button.copied .fa-check {
  color: var(--text-color-light);
}

.copy-button.copied {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.3);
  color: #ffffff;
}

.copy-button.copied::after {
  content: "✓ Copied!";
  position: absolute;
  top: -35px;
  right: 0;
  background: rgba(34, 197, 94, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0;
    transform: translateY(5px);
  }
  20%,
  80% {
    opacity: 1;
    transform: translateY(0);
  }
}

pre {
  background: var(--background-color);
  margin: 0;
  padding: 24px;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
}

pre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20px 20px,
      rgba(0, 0, 54, 0.02) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 60px 60px,
      rgba(208, 20, 44, 0.02) 1px,
      transparent 1px
    );
  background-size: 40px 40px, 80px 80px;
  pointer-events: none;
  opacity: 0.5;
}

pre code,
code {
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier,
    monospace;
  position: relative;
  z-index: 2;
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 700;
  word-wrap: break-word;
  padding: 3px 5px 0px;
  border-radius: 5px;
}

pre code {
  background: transparent;
  padding: 0;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  border-radius: 0;
}

g-top-pad-10 code {
  display: inline;
}

/* Syntax Highlighting */
.comment {
  color: #6a737d;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
}
.command {
  color: rgb(97, 175, 239);
  font-weight: 400;
  font-size: 14px;
}
.parameter {
  color: #5a0a91;
  font-weight: 400;
  font-size: 14px;
}
.option {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}
.value {
  color: rgb(209, 154, 102);
  font-weight: 400;
  font-size: 14px;
}
.operator {
  color: var(--secondary-color);
  font-weight: 500;
}
.string {
  color: rgb(152, 195, 121);
  font-weight: 400;
  font-size: 14px;
}
.file-path {
  color: #b55578;
  font-weight: 400;
  font-size: 14px;
}
.query {
  color: var(--primary-color);
  font-weight: 500;
}

/* Scrollbar styling */
pre::-webkit-scrollbar {
  height: 8px;
}
pre::-webkit-scrollbar-track {
  background: rgba(0, 0, 54, 0.05);
  border-radius: 4px;
}
pre::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
}
pre::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

@media (max-width: 768px) {
  .code-block-container {
    border-radius: 12px;
    margin: 15px 0;
  }
  .code-header {
    padding: 14px 16px;
  }
  .code-header span {
    font-size: 0.8rem;
  }
  .copy-button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  pre {
    padding: 20px 16px;
    font-size: 0.85rem;
  }
}

/* ==============================================
  TABLES
  ==============================================
*/
.g-blog-table {
  width: 100%;
  margin: 2rem auto;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: var(--card-shadow);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, #000020 100%);
  position: relative;
}

.g-blog-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color),
    var(--secondary-color)
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

.g-blog-table-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #000020 100%);
  position: relative;
}

.g-blog-table-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
}

.g-blog-table-header-column {
  padding: 1.5rem 2rem;
  color: var(--text-color-light);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: left;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.g-blog-table-header-column:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(208, 20, 44, 0.5),
    transparent
  );
}

.g-blog-table-row {
  background: rgba(255, 255, 255, 0.98);
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.g-blog-table-row:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateX(4px);
  box-shadow: inset 4px 0 0 var(--secondary-color),
    0 4px 12px rgba(0, 0, 54, 0.15);
}

.g-blog-table-row:last-child {
  border-bottom: none;
}

.g-blog-table-column {
  padding: 1.25rem 2rem;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.5;
  border: none;
  position: relative;
  transition: all 0.3s ease;
}

.g-blog-table-column:first-child {
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.g-blog-table-column:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 54, 0.2), transparent);
}

.g-blog-table-column:last-child {
  font-weight: 700;
  color: var(--secondary-color);
  position: relative;
}

@media (max-width: 768px) {
  .g-blog-table {
    margin: 1rem;
    border-radius: 12px;
  }
  .g-blog-table-header-column,
  .g-blog-table-column {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
  .g-blog-table-header-column {
    font-size: 1rem;
  }
}

/* ==============================================
  SUGGESTED BLOGS / DISCOVER
  ==============================================
*/
.suggest-blogs {
  background: var(--background-color);
  padding: 40px 25px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  margin: 20px 0;
}

.suggest-blogs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.suggest-blogs-header {
  text-align: center;
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.recommend-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.recommend-card-link {
  text-decoration: none;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommend-card-link:hover {
  transform: translateY(-8px);
}

.recommend-card {
  background: var(--background-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  position: relative;
}

.recommend-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 54, 0.02) 0%,
    rgba(208, 20, 44, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recommend-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 54, 0.15);
  transform: scale(1.02);
}

.recommend-card:hover::before {
  opacity: 1;
}

.recommend-card-image {
  height: 200px;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.recommend-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(208, 20, 44, 0.1) 0%,
    transparent 50%
  );
}

.recommend-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 0;
}

.recommend-card:hover .recommend-card-image img {
  transform: scale(1.1);
}

.recommend-card-content {
  padding: 30px;
  position: relative;
}

.recommend-card-datalabel {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  background: rgba(208, 20, 44, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  border: 1px solid rgba(208, 20, 44, 0.2);
}

.recommend-card-content-details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.recommend-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.recommend-card:hover .recommend-card-title {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.recommend-card-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.recommend-card-container .error-message {
  color: transparent;
}

@media (max-width: 768px) {
  .suggest-blogs {
    padding: 40px 20px;
    border-radius: 16px;
  }
  .suggest-blogs-header {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .recommend-card-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Discover Servers */
.discover-servers {
  background: var(--primary-color);
  padding: 40px 25px;
  margin: 20px 0;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 5px solid var(--primary-color);
  color: var(--text-color-light);
}

.discover-servers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(208, 20, 44, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(208, 20, 44, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.discover-servers-header {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--text-color-light);
  position: relative;
  z-index: 2;
}

.discover-servers-desc {
  text-align: center;
  font-size: 18px;
  color: #eee;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

.discover-servers-continents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.discover-servers-continent-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-color-light);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.discover-servers-continent-link:hover {
  background-color: var(--secondary-color);
  color: var(--text-color-light);
  border-color: var(--secondary-color);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 54, 0.15),
    0 0 30px rgba(208, 20, 44, 0.1);
}

.discover-servers-continent-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(208, 20, 44, 0.3),
    0 8px 32px rgba(0, 0, 54, 0.08);
}

/* ==============================================
  MISC & UTILITIES
  ==============================================
*/
.g-tutorials-no-result-div {
  display: block;
  background-color: #ffd5c5; /* Keeping this light red for alerts */
  padding: 10px 20px;
  font-family: inherit !important;
  font-weight: 500 !important;
  border-radius: 8px;
}

.g-server-performance-and-features-card-title {
  font-family: inherit !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  padding-bottom: 5px;
  color: var(--primary-color) !important;
  margin-top: 20px;
  display: flex;
  gap: 7px;
  align-items: center;
}

.g-server-performance-and-features-card-title i {
  color: var(--primary-color);
}

.color-grey {
  color: #a9a9a9 !important;
}

.dot-ul {
  list-style-type: disc !important;
  margin-left: 40px;
  line-height: 1;
}

.list-no {
  list-style: auto !important;
  margin-left: 35px;
  font-weight: 700;
  line-height: 1.5;
}

.list-no-num {
  list-style: none !important;
  margin-left: 35px;
  font-weight: 700;
  line-height: 1.5;
}

.list-no .g-top-pad-10 {
  font-weight: 400;
}

.circle-ul {
  list-style: circle;
  margin-left: 35px;
  line-height: 1;
  margin-top: 10px;
}

.square-ul {
  list-style: square;
  margin-left: 35px;
  line-height: 1;
  margin-top: 10px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.up-button {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.up-button.show {
  opacity: 1;
  visibility: visible;
  border-radius: 50%;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.up-button.show i {
  font-size: 25px;
  color: white;
}

.font-weight-400 {
  font-weight: 400;
}

.special-content {
  border-radius: 15px;
  background: var(--primary-color);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-light);
  margin: 15px 0px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}

.special-content-p {
  text-align: center;
  margin-bottom: 10px;
}

.blog-internal-link {
  font-weight: 700;
  text-decoration: underline;
  color: var(--secondary-color);
}

.fs-20 {
  font-size: 20px;
}
.fw-600 {
  font-weight: 600;
}

.g-tutorial-main-card-btn-content-para {
  /* padding: 5px 15px; */
  border-radius: 15px;
  background: var(--primary-color);
  color: white;
  display: flex
;
  align-items: center;
  max-width: 143px;
  margin-left: 85px;
  margin-bottom: 10px;
}

.g-tutorial-main-card-footer-author-icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #eee;
}


.g-rounded-home-banner-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr); 
  border-radius: 12px; 
  overflow: hidden; 
}


.g-rounded-home-banner-content {

  grid-column: span 7; 
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.g-rounded-home-banner-content-3 {
 
  grid-column: span 5; 
  height: 456px;
  object-fit: cover;
}


.g-rounded-home-banner-content-3 img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  border-radius: 0; 
}



@media (max-width: 768px) {
  
  .g-rounded-home-banner-layout {
      grid-template-columns: 1fr; 
  }

  .g-rounded-home-banner-content,
  .g-rounded-home-banner-content-3 {
    
      grid-column: span 1; 
  }

  .g-rounded-home-banner-content-3 img {
      
      height: 250px; 
  }
}

/* CSS for the hosting comparison table */

.hosting-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  border: 1px solid #ddd; /* This was on the main table tag */
}

.hosting-comparison-table thead {
  background-color: #f4f4f4;
}

.hosting-comparison-table th,
.hosting-comparison-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}