/* GLOBAL */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 90px;
  font-family: Arial, sans-serif;
  background: #f8fafc;
  overflow-x: hidden;
}

/* NAVBAR */

/* LOGO */

.logo-wrapper {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

/* MOBILE */

@media(max-width:768px){

    .site-logo {
        height: 45px;
    }

}

.custom-navbar {
  background: #0f172a;
  padding: 18px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 28px;
  color: white !important;
}

.nav-link {
  color: white !important;
  margin-left: 15px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #facc15 !important;
}


/* =========================================
   CONTACT PAGE
========================================= */

.contact-hero {
    padding: 140px 0 80px;
    background: linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );

    text-align: center;
}

/* TAG */

.contact-tag {
    background: rgba(255,255,255,0.1);
    color: #facc15;

    padding: 12px 20px;
    border-radius: 999px;

    font-weight: 700;
}

/* TITLE */

.contact-title {
    font-size: 64px;
    font-weight: 900;
    color: white;

    line-height: 1.15;
}

/* SUBTITLE */

.contact-subtitle {
    font-size: 20px;
    line-height: 2;
    color: #cbd5e1;

    max-width: 800px;
    margin-inline: auto;
}

/* MAIN */

.premium-contact-section {
    padding: 100px 0;
    background: #f8fafc;
}

/* LEFT */

.contact-info-wrapper h2 {
    font-size: 48px;
    font-weight: 900;
    color: #0f172a;
}

.contact-info-text {
    margin-top: 25px;
    color: #64748b;
    line-height: 2;
    font-size: 18px;
}

/* CARD */

.contact-info-card {
    display: flex;
    gap: 20px;

    background: white;
    padding: 28px;
    border-radius: 24px;

    margin-top: 25px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* ICON */

.contact-icon {
    width: 60px;
    height: 60px;

    background: #2563eb;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 28px;
}

/* TEXT */

.contact-info-card h5 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.contact-info-card p {
    color: #64748b;
    margin-top: 8px;
}

/* FORM */

.premium-contact-form {
    background: white;
    padding: 50px;
    border-radius: 32px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

/* LABEL */

.form-label {
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

/* INPUT */

.premium-input {
    height: 60px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;

    padding-left: 20px;

    font-size: 16px;

    transition: 0.3s ease;
}

.premium-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

/* TEXTAREA */

.premium-textarea {
    height: 180px !important;
    padding-top: 20px;
    resize: none;
}

/* BUTTON */

.premium-submit-btn {
    width: 100%;
    height: 65px;

    border-radius: 18px;

    font-size: 18px;
    font-weight: 800;

    transition: 0.3s ease;
}

.premium-submit-btn:hover {
    transform: translateY(-4px);
}

/* MOBILE */

@media(max-width:768px){

    .contact-title {
        font-size: 42px;
    }

    .contact-info-wrapper h2 {
        font-size: 36px;
    }

    .premium-contact-form {
        padding: 30px;
    }

}

/* HERO SECTION */

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  display: flex;
  align-items: center;
  color: white;
  padding: 80px 0;
}

.hero-heading {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-subtext {
  font-size: 20px;
  color: #cbd5e1;
  max-width: 600px;
}

.premium-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #facc15;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-block;
}

.hero-image-wrapper {
  position: relative;
}

.premium-hero-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* STATS */

.hero-stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.hero-stats h2 {
  color: #facc15;
  font-weight: 800;
}

.hero-stats p {
  color: #cbd5e1;
}

/* BRANDS */

.brands-section {
  background: white;
  padding: 80px 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.brand-box {
  background: #f1f5f9;
  padding: 25px;
  text-align: center;
  border-radius: 16px;
  font-weight: bold;
}

/* SERVICES SECTION */

.services-section {
    padding: 120px 0;
    background: #f8fafc;
}

.services-description {
    font-size: 18px;
    line-height: 1.9;
    color: #64748b;
}

/* PREMIUM SERVICE CARD */

.service-card-premium {
    background: white;
    border-radius: 28px;
    padding: 40px;
    height: 100%;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.service-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* TOP */

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.service-icon-box {
    width: 85px;
    height: 85px;
    background: #eff6ff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.service-number {
    font-size: 22px;
    font-weight: 800;
    color: #cbd5e1;
}

/* TEXT */

.service-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.service-text {
    color: #64748b;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 30px;
}

/* FEATURES */

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 12px 0;
    border-top: 1px solid #e2e8f0;
    color: #334155;
    font-weight: 500;
}

.service-features li::before {
    content: "✓";
    color: #2563eb;
    margin-right: 10px;
    font-weight: bold;
}

/* MOBILE */

@media(max-width:768px){

    .services-section {
        padding: 80px 20px;
    }

    .service-card-premium {
        padding: 30px;
    }

    .service-title {
        font-size: 24px;
    }

}

/* PREMIUM CARD */

.premium-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.premium-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 55px;
  margin-bottom: 25px;
}

/* =========================================
   PREMIUM WHY CHOOSE US
========================================= */

.premium-why-section {
    padding: 120px 0;
    background: white;
    overflow: hidden;
}

/* TAG */

.premium-why-tag {
    background: rgba(37,99,235,0.1);
    color: #2563eb;

    padding: 12px 20px;
    border-radius: 999px;

    font-weight: 700;
    display: inline-block;
}

/* TITLE */

.premium-why-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;

    margin-top: 30px;
}

/* TEXT */

.premium-why-text {
    font-size: 19px;
    line-height: 2;
    color: #64748b;

    margin-top: 30px;
}

/* FEATURES */

.premium-why-features {
    margin-top: 50px;
}

/* ITEM */

.premium-why-item {
    display: flex;
    gap: 22px;
    margin-bottom: 35px;
}

/* ICON */

.premium-why-icon {
    width: 65px;
    height: 65px;

    background: #f8fafc;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    font-size: 28px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* TEXT */

.premium-why-item h4 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.premium-why-item p {
    color: #64748b;
    margin-top: 8px;
    line-height: 1.8;
}

/* IMAGE WRAPPER */

.premium-why-image-wrapper {
    position: relative;
}

/* IMAGE */

.premium-why-image {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;

    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

/* TRAFFIC CARD */

.traffic-growth-card {
    position: absolute;
    bottom: 30px;
    left: -20px;

    background: white;

    padding: 30px;
    border-radius: 28px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.growth-label {
    color: #2563eb;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.traffic-growth-card h3 {
    font-size: 54px;
    font-weight: 900;
    color: #0f172a;

    margin-top: 12px;
}

.traffic-growth-card p {
    color: #64748b;
    margin-top: 10px;
}

/* KEYWORD CARD */

.keyword-card {
    position: absolute;
    top: 40px;
    right: -20px;

    background: #0f172a;
    color: white;

    padding: 24px 28px;
    border-radius: 24px;

    display: flex;
    align-items: center;
    gap: 18px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

/* DOT */

.keyword-dot {
    width: 16px;
    height: 16px;

    background: #22c55e;
    border-radius: 50%;
}

/* TEXT */

.keyword-card h5 {
    font-size: 22px;
    font-weight: 800;
}

.keyword-card p {
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
}

/* MOBILE */

@media(max-width:768px){

    .premium-why-section {
        padding: 80px 0;
    }

    .premium-why-title {
        font-size: 40px;
    }

    .traffic-growth-card {
        left: 10px;
        bottom: 10px;
        padding: 20px;
    }

    .keyword-card {
        right: 10px;
        top: 10px;
        padding: 18px;
    }

}

/* TESTIMONIAL SECTION */

.testimonial-section {
    background: #0f172a;
    padding: 120px 0;
}

.testimonial-subtitle {
    max-width: 700px;
    margin: auto;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}

/* CARD */

.testimonial-card-premium {
    background: #1e293b;
    border-radius: 28px;
    padding: 40px;
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    background: #243447;
}

/* STARS */

.testimonial-stars {
    font-size: 22px;
    margin-bottom: 25px;
}

/* TEXT */

.testimonial-text {
    color: #e2e8f0;
    line-height: 1.9;
    font-size: 18px;
    margin-bottom: 35px;
}

/* PROFILE */

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.1);
}

/* NAME */

.testimonial-profile h5 {
    margin: 0;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.testimonial-profile span {
    color: #94a3b8;
    font-size: 15px;
}

/* MOBILE */

@media(max-width:768px){

    .testimonial-section {
        padding: 80px 20px;
    }

    .testimonial-card-premium {
        padding: 30px;
    }

}

/* CTA */

.premium-cta {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  padding: 100px 0;
  color: white;
}

.premium-cta h2 {
  font-size: 56px;
  font-weight: 800;
}

/* BUTTONS */

.btn {
  border-radius: 12px;
}

/* FOOTER */

.footer-section {
  background: #0f172a;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  line-height: 2;
}

.footer-link:hover {
  color: white;
}

/* MOBILE */

@media (max-width: 768px) {
  body {
    padding-top: 75px;
  }

  .hero-section {
    text-align: center;
    padding: 60px 20px;
  }

  .hero-heading {
    font-size: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .premium-cta h2 {
    font-size: 38px;
  }

  .hero-stats {
    justify-content: center;
  }
}


  /* ABOUT SECTION */

 /* =========================================
   MODERN ABOUT SECTION
========================================= */

.modern-about-section {
    padding: 120px 0;
    background: #f8fafc;
}

/* IMAGE */

.modern-about-image-box {
    position: relative;
}

.modern-about-image {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* FLOATING CARD */

.seo-floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;

    background: white;
    padding: 30px;
    border-radius: 24px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.seo-floating-card h3 {
    font-size: 42px;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 8px;
}

.seo-floating-card p {
    color: #64748b;
    margin: 0;
}

/* TAG */

.modern-about-tag {
    background: rgba(37,99,235,0.1);
    color: #2563eb;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-block;
}

/* TITLE */

.modern-about-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    margin-top: 30px;
}

/* TEXT */

.modern-about-text {
    font-size: 19px;
    line-height: 2;
    color: #475569;
    margin-top: 25px;
}

/* FEATURES */

.modern-about-features {
    margin-top: 45px;
}

/* FEATURE ITEM */

.modern-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

/* ICON */

.modern-feature-icon {
    width: 60px;
    height: 60px;

    background: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 26px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TEXT */

.modern-feature-item h5 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.modern-feature-item p {
    color: #64748b;
    line-height: 1.8;
    margin-top: 8px;
}

/* BUTTONS */

.modern-about-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* MOBILE */

@media(max-width:768px){

    .modern-about-section {
        padding: 80px 0;
    }

    .modern-about-title {
        font-size: 40px;
    }

    .seo-floating-card {
        left: 15px;
        bottom: 15px;
        padding: 20px;
    }

    .modern-about-buttons {
        flex-direction: column;
    }

}

  /* SERVICES SECTION */

.services-section {
    padding: 120px 0;
    background: #f8fafc;
}

.services-subtitle {
    max-width: 700px;
    margin: auto;
    color: #64748b;
    font-size: 18px;
    line-height: 1.8;
}

/* SERVICE BOX */

.service-box {
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        #2563eb,
        #1d4ed8
    );
    top: 0;
    left: 0;
}

.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* ICON */

.service-icon {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 38px;
    margin-bottom: 30px;
}

/* TEXT */

.service-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-box p {
    color: #64748b;
    line-height: 1.8;
    font-size: 17px;
}

/* MOBILE */

@media(max-width:768px){

    .services-section {
        padding: 80px 20px;
    }

    .service-box {
        padding: 35px 25px;
    }

}



/* =========================================
   SEO DASHBOARD SECTION
========================================= */

.seo-dashboard-section {
    padding: 120px 0;
    background: white;
}

/* TITLE */

.seo-dashboard-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
}

.seo-dashboard-text {
    font-size: 19px;
    line-height: 2;
    color: #64748b;
}

/* FEATURES */

.dashboard-features {
    margin-top: 40px;
}

.dashboard-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.feature-check {
    width: 34px;
    height: 34px;

    background: #2563eb;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-weight: 700;
}

.dashboard-feature p {
    margin: 0;
    font-size: 18px;
    color: #475569;
}

/* DASHBOARD UI */

.dashboard-ui {
    background: #0f172a;
    padding: 35px;
    border-radius: 32px;
    color: white;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

/* TOP */

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.dashboard-top h4 {
    font-size: 28px;
    font-weight: 800;
}

.dashboard-top p {
    color: #94a3b8;
    margin-top: 8px;
}

.dashboard-badge {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
}

/* STATS */

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.dashboard-stat-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 24px;
}

.dashboard-stat-card h3 {
    font-size: 36px;
    font-weight: 900;
}

.dashboard-stat-card p {
    color: #94a3b8;
    margin-top: 10px;
}

/* GRAPH */

.graph-container {
    margin-top: 40px;
    background: rgba(255,255,255,0.04);
    padding: 30px;
    border-radius: 24px;
}

.graph-bars {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 220px;
    margin-top: 25px;
}

.bar {
    flex: 1;
    background: linear-gradient(
        180deg,
        #3b82f6,
        #2563eb
    );

    border-radius: 12px 12px 0 0;
}

.bar1 { height: 60px; }
.bar2 { height: 100px; }
.bar3 { height: 140px; }
.bar4 { height: 170px; }
.bar5 { height: 200px; }
.bar6 { height: 230px; }

/* KEYWORDS */

.keyword-ranking-box {
    margin-top: 35px;
}

.keyword-row {
    background: rgba(255,255,255,0.05);
    padding: 20px 25px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.keyword-row span {
    color: #e2e8f0;
}

.rank-up {
    color: #22c55e;
}

/* MOBILE */

@media(max-width:768px){

    .seo-dashboard-title {
        font-size: 40px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

}


/* =========================================
   PRICING SECTION
========================================= */

.pricing-section {
    padding: 120px 0;
    background: #f8fafc;
}

/* TITLE */

.pricing-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
}

.pricing-subtitle {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin-inline: auto;
    line-height: 1.9;
}

/* CARD */

.pricing-card {
    background: white;
    padding: 50px;
    border-radius: 32px;
    height: 100%;
    position: relative;

    transition: 0.4s ease;

    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-12px);
}

/* FEATURED */

.featured-pricing {
    background: linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );

    color: white;

    transform: scale(1.05);
}

/* BADGE */

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;

    background: #facc15;
    color: #0f172a;

    padding: 10px 18px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;
}

/* PLAN */

.pricing-plan {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PRICE */

.pricing-price {
    font-size: 62px;
    font-weight: 900;
    margin-top: 30px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 500;
    color: #94a3b8;
}

/* DESCRIPTION */

.pricing-description {
    margin-top: 25px;
    line-height: 1.9;
    color: #64748b;
}

/* FEATURES */

.pricing-features {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    margin-bottom: 40px;
}

.pricing-features li {
    margin-bottom: 18px;
    font-size: 18px;
    color: #475569;
}

/* FEATURED TEXT */

.featured-pricing .pricing-plan,
.featured-pricing .pricing-features li,
.featured-pricing .pricing-description {
    color: rgba(255,255,255,0.85);
}

.featured-pricing .pricing-price span {
    color: rgba(255,255,255,0.7);
}

/* MOBILE */

@media(max-width:768px){

    .pricing-title {
        font-size: 40px;
    }

    .pricing-card {
        padding: 35px;
    }

    .featured-pricing {
        transform: none;
    }

}


/* BRANDS LOGO SECTION */

.brands-section {
    padding: 110px 0;
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 25px;
}

.brand-box {
    background: #f8fafc;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #e2e8f0;
}

.brand-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.brand-box span {
    display: block;
    font-weight: 600;
    color: #0f172a;
}



/* ========================================
   PREMIUM BLOG DESIGN for blog section
======================================== */

/* HERO */

.blog-hero {
    background:
    linear-gradient(
        135deg,
        #0f172a 0%,
        #1e293b 100%
    );

    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(37,99,235,0.12);
    border-radius: 50%;
    top: -250px;
    right: -150px;
}

.blog-category {
    background: rgba(255,255,255,0.08);
    color: #facc15;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    /* backdrop-filter: blur(10px); */
}

.blog-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    color: white;
    margin-top: 35px;
    max-width: 900px;
}

.blog-subtitle {
    font-size: 22px;
    line-height: 1.9;
    color: #cbd5e1;
    max-width: 760px;
    margin-top: 30px;
}

/* META */

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
    color: white;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.1);
}

.author-box h6 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
}

.author-box span {
    color: #94a3b8;
}

/* FEATURED IMAGE */

.featured-image-section {
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.featured-blog-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* CONTENT */

 .blog-content-section {
    padding: 120px 0;
    background: white;
}

.blog-content {
    font-size: 20px;
    line-height: 2;
    color: #334155;
}

/* PARAGRAPH */

.blog-content p {
    margin-bottom: 32px;
    color: #475569;
}

/* HEADINGS */

.blog-content h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-top: 70px;
    margin-bottom: 25px;
    color: #0f172a;
}

.blog-content h3 {
    font-size: 34px;
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #0f172a;
}

/* LISTS */

.blog-content ul {
    padding-left: 25px;
    margin-bottom: 35px;
}

.blog-content li {
    margin-bottom: 15px;
    color: #475569;
}

/* BLOCKQUOTE */

.blog-content blockquote {
    background: #0f172a;
    color: white;
    padding: 45px;
    border-radius: 30px;
    font-size: 28px;
    line-height: 1.8;
    margin: 60px 0;
    font-weight: 600;
    position: relative;
}

.blog-content blockquote::before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 25px;
    font-size: 90px;
    color: rgba(255,255,255,0.08);
}

/* HIGHLIGHT BOX */

.blog-highlight-box {
    background: linear-gradient(
        135deg,
        #eff6ff,
        #dbeafe
    );

    padding: 40px;
    border-radius: 28px;
    margin: 60px 0;
    border-left: 6px solid #2563eb;
}

.blog-highlight-box h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #0f172a;
}

.blog-highlight-box p {
    margin: 0;
}

/* SHARE */

.share-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.share-section h4 {
    font-weight: 800;
    margin-bottom: 25px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 14px 24px;
    background: #f1f5f9;
    border-radius: 12px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    transition: 0.3s;
}

.share-btn:hover {
    background: #2563eb;
    color: white;
} */

/* RELATED POSTS */

.related-posts-section {
    padding: 120px 0;
    background: #f8fafc;
}

.related-post-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.4s ease;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.related-post-card:hover {
    transform: translateY(-10px);
}

.related-post-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.related-post-content {
    padding: 35px;
}

.related-category {
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.related-post-content h4 {
    font-size: 28px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.read-more-btn {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}

/* CTA */

.blog-cta {
    background:
    linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    padding: 120px 0;
    color: white;
}

.blog-cta h2 {
    font-size: 60px;
    font-weight: 900;
}

.blog-cta p {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
}

/* MOBILE */

@media(max-width:768px){

    .blog-title {
        font-size: 42px;
    }

    .blog-subtitle {
        font-size: 18px;
    }

    .featured-blog-image {
        height: 350px;
    }

    .blog-content {
        font-size: 18px;
    }

    .blog-content h2 {
        font-size: 34px;
    }

    .blog-content blockquote {
        font-size: 22px;
        padding: 35px;
    }

    .blog-cta h2 {
        font-size: 40px;
    }

}




/* =========================================
   PREMIUM BLOG CONTENT
========================================= */

.blog-content-section {
    padding: 120px 0;
    background: #f8fafc;
}

/* CONTENT CARD */

.blog-content-card {
    background: white;
    padding: 60px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

/* TYPOGRAPHY */

.blog-content-card h2 {
    font-size: 48px;
    font-weight: 900;
    margin-top: 60px;
    margin-bottom: 25px;
    color: #0f172a;
    line-height: 1.2;
}

.blog-content-card h3 {
    font-size: 34px;
    font-weight: 800;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #0f172a;
}

.blog-content-card p {
    font-size: 20px;
    line-height: 2;
    color: #475569;
    margin-bottom: 30px;
}

/* LIST */

.blog-content-card ul {
    padding-left: 25px;
    margin-bottom: 30px;
}

.blog-content-card li {
    margin-bottom: 15px;
    color: #475569;
    font-size: 18px;
}

/* BLOCKQUOTE */

.blog-content-card blockquote {
    background: #0f172a;
    color: white;
    padding: 45px;
    border-radius: 30px;
    margin: 60px 0;
    font-size: 28px;
    line-height: 1.8;
    font-weight: 600;
}

/* HIGHLIGHT BOX */

.blog-highlight-box {
    background: linear-gradient(
        135deg,
        #eff6ff,
        #dbeafe
    );

    padding: 40px;
    border-radius: 28px;
    margin: 60px 0;
    border-left: 6px solid #2563eb;
}

.blog-highlight-box h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* AUTHOR CARD */

.author-card {
    background: white;
    border-radius: 28px;
    padding: 35px;
    margin-top: 35px;
    display: flex;
    gap: 25px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.author-card-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

.author-label {
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-card h4 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 10px;
}

.author-card p {
    color: #64748b;
    line-height: 1.8;
    margin-top: 10px;
}

/* SHARE */

.share-section {
    background: white;
    border-radius: 28px;
    padding: 35px;
    margin-top: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.share-section h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 15px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.facebook-btn {
    background: #1877f2;
    color: white;
}

.linkedin-btn {
    background: #0a66c2;
    color: white;
}

.twitter-btn {
    background: #111827;
    color: white;
}

.share-btn:hover {
    transform: translateY(-5px);
    color: white;
}

/* SIDEBAR */

.blog-sidebar {
    position: sticky;
    top: 120px;
}

/* SIDEBAR CARD */

.sidebar-card {
    background: white;
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-card h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* TOC */

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 18px;
}

.toc-list a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    transition: 0.3s;
}

.toc-list a:hover {
    color: #2563eb;
}

/* SIDEBAR CTA */

.sidebar-cta {
    background: linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    padding: 40px;
    border-radius: 32px;
    color: white;
}

.sidebar-tag {
    background: rgba(255,255,255,0.15);
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-block;
    font-weight: 700;
}

.sidebar-cta h3 {
    font-size: 34px;
    font-weight: 800;
    margin-top: 25px;
    line-height: 1.3;
}

.sidebar-cta p {
    margin-top: 20px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

/* MOBILE */

@media(max-width:768px){

    .blog-content-card {
        padding: 35px;
    }

    .blog-content-card h2 {
        font-size: 34px;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

}