/* Case Studies Section Styles - Updated for Tailwind compatibility */

/* Section Wrapper */
.case-studies-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.case-studies-section .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Section Header */
.case-studies-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.case-studies-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.case-studies-section .section-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* Case Studies Grid */
.case-studies-section .case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Case Study Card */
.case-studies-section .case-study-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.case-studies-section .case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.case-studies-section .card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #7ed56f 0%, #28b485 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-studies-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-studies-section .card-image .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

/* Placeholder for missing images */
.case-studies-section .card-image::before {
    content: '6X';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.case-studies-section .card-image img[src*="hospital"] ~ .badge::after,
.case-studies-section .card-study-card:first-child .card-image::before {
    content: '196%';
}

.case-studies-section .card-study-card:nth-child(2) .card-image::before {
    content: '1496%';
}

.case-studies-section .card-study-card:last-child .card-image::before {
    content: '6X';
}

/* Card Content */
.case-studies-section .card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-studies-section .card-content .category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.case-studies-section .card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 16px;
    min-height: 75px;
    flex: 1;
}

.case-studies-section .view-case-study {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.case-studies-section .view-case-study:hover {
    background-color: #f5f5f5;
    border-color: #1a1a1a;
}

.case-studies-section .view-case-study svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.case-studies-section .view-case-study:hover svg {
    transform: translateX(4px);
}

/* View All Button */
.case-studies-section .view-all-container {
    text-align: center;
}

.case-studies-section .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ff6b35;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.case-studies-section .btn-view-all:hover {
    background-color: #ff5722;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.case-studies-section .btn-view-all svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.case-studies-section .btn-view-all:hover svg {
    transform: translateX(4px);
}

/* Tablet Styles */
@media (max-width: 992px) {
    .case-studies-section {
        padding: 60px 20px;
    }

    .case-studies-section .section-header h2 {
        font-size: 32px;
    }

    .case-studies-section .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .case-studies-section .card-content h3 {
        font-size: 17px;
        min-height: auto;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .case-studies-section {
        padding: 50px 16px;
    }

    .case-studies-section .section-header {
        margin-bottom: 40px;
    }

    .case-studies-section .section-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .case-studies-section .section-header p {
        font-size: 15px;
    }

    .case-studies-section .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .case-studies-section .card-image {
        height: 180px;
    }

    .case-studies-section .card-content {
        padding: 20px;
    }

    .case-studies-section .card-content h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .case-studies-section .view-case-study {
        font-size: 13px;
        padding: 7px 14px;
    }

    .case-studies-section .btn-view-all {
        font-size: 15px;
        padding: 12px 28px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .case-studies-section {
        padding: 40px 12px;
    }

    .case-studies-section .section-header h2 {
        font-size: 24px;
    }

    .case-studies-section .section-header p {
        font-size: 14px;
    }

    .case-studies-section .card-image {
        height: 160px;
    }

    .case-studies-section .card-image::before {
        font-size: 56px;
    }

    .case-studies-section .card-content {
        padding: 16px;
    }

    .case-studies-section .card-content h3 {
        font-size: 15px;
    }
}

/* Animation for scroll reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.case-studies-section .case-study-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.case-studies-section .case-study-card:nth-child(1) {
    animation-delay: 0.1s;
}

.case-studies-section .case-study-card:nth-child(2) {
    animation-delay: 0.2s;
}

.case-studies-section .case-study-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* ========================================
   STATS & INTRO SECTION CSS
   pm-seo-section.css
   ======================================== */

/* Section Wrapper */
.stats-intro-section {
    padding: 60px 20px;
    background-color: #ffffff;
    

}

.stats-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Stats Cards Grid */
.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Individual Stat Card */
.stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    opacity: 0;
    animation: statsFadeIn 0.6s ease forwards;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Stat Number */
.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 36px;
    margin-left: 2px;
}

.stat-card:nth-child(3) .stat-number::after {
    content: '%';
}

.stat-card:nth-child(4) .stat-number::after {
    content: 'X';
}

/* Stat Label */
.stat-label {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
    font-weight: 500;
}

/* Main Heading */
.stats-main-heading {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

/* Description Container */
.stats-description {
    max-width: 1000px;
    margin: 0 auto;
}

.stats-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 16px;
    text-align: justify;
}

.stats-description p:last-child {
    margin-bottom: 0;
}

/* Animation Classes for CountUp */
.stat-counting {
    color: #f47920;
}

/* Fade in animation for stats cards */
@keyframes statsFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Styles */
@media (max-width: 992px) {
    .stats-intro-section {
        padding: 50px 20px;
    }

    .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 35px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }

    .stats-main-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .stats-description p {
        font-size: 14px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .stats-intro-section {
        padding: 40px 16px;
    }

    .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-number::after {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stats-main-heading {
        font-size: 24px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .stats-description {
        padding: 0 10px;
    }

    .stats-description p {
        font-size: 14px;
        text-align: left;
        margin-bottom: 14px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .stats-intro-section {
        padding: 35px 12px;
    }

    .stats-cards-grid {
        gap: 10px;
    }

    .stat-card {
        padding: 18px 10px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-number::after {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stats-main-heading {
        font-size: 20px;
        line-height: 1.4;
    }

    .stats-description p {
        font-size: 13px;
    }
}
 /* =========================================================
   AI ERA LIGHT BACKGROUND EFFECTS
   Non-intrusive | Professional | Performance-safe
========================================================= */

/* AI gradient background layers */
.stats-intro-section{
  position: relative;
  overflow: hidden; /* keeps effects inside section */
}

/* Soft AI glow – top left */
.stats-intro-section::before{
  content:"";
  position:absolute;
  top:-120px;
  left:-120px;
  width:420px;
  height:420px;
  background:
    radial-gradient(circle,
      rgba(99,102,241,0.18),
      transparent 65%);
  filter: blur(40px);
  pointer-events:none;
  z-index:0;
}

/* Soft AI glow – bottom right */
.stats-intro-section::after{
  content:"";
  position:absolute;
  bottom:-140px;
  right:-140px;
  width:460px;
  height:460px;
  background:
    radial-gradient(circle,
      rgba(34,211,238,0.18),
      transparent 65%);
  filter: blur(50px);
  pointer-events:none;
  z-index:0;
}

/* Keep actual content above AI background */
.stats-intro-container{
  position: relative;
  z-index:1;
}

/* ---------------------------------------------------------
   AI CARD GLOW ON HOVER (Subtle)
---------------------------------------------------------- */
.stat-card{
  position: relative;
  overflow: hidden;
}

/* Glow line animation */
.stat-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(99,102,241,0.15),
      transparent
    );
  opacity:0;
  transition:opacity .4s ease;
}

.stat-card:hover::after{
  opacity:1;
}

/* ---------------------------------------------------------
   AI FLOATING MICRO-MOTION
---------------------------------------------------------- */
@keyframes aiFloat{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
  100%{ transform:translateY(0); }
}

/* Apply float only on large screens */
@media (min-width: 1024px){
  .stat-card:hover{
    animation: aiFloat 2.5s ease-in-out infinite;
  }
}

/* ---------------------------------------------------------
   AI HIGHLIGHT ON STAT NUMBERS
---------------------------------------------------------- */
.stat-number{
  background:linear-gradient(
    90deg,
    #1a1a1a,
    #6366f1,
    #1a1a1a
  );
  background-size:200% auto;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  transition:background-position .6s ease;
}

.stat-card:hover .stat-number{
  background-position:100% center;
}

/* ---------------------------------------------------------
   AI ACCENT LINE UNDER MAIN HEADING
---------------------------------------------------------- */
.stats-main-heading{
  position:relative;
}

.stats-main-heading::after{
  content:"";
  display:block;
  width:90px;
  height:4px;
  margin:18px auto 0;
  border-radius:4px;
  background:
    linear-gradient(
      90deg,
      #6366f1,
      #22d3ee
    );
}



/* ---------------------------------------------------------
 MAIN HEADING GLOW
 Adds subtle futuristic glow to "SEO Packages"
---------------------------------------------------------- */
.section-heading{
  text-shadow:
    0 0 10px rgba(99,102,241,0.25),
    0 0 20px rgba(34,211,238,0.2);
}


/* ======================================== 
   END OF STATS & INTRO SECTION CSS
   ======================================== */
   
 /* ========================================
   TESTIMONIALS SECTION CSS - COLOR MATCHED VERSION
   Copy this code and paste it into your CSS file
   ======================================== */

/* Section Wrapper */
.testimonials-section {
    background-color: #f3f4f6;
    padding-bottom: 80px;
}

/* Header Section with Dark Navy Background */
.testimonials-header {
    background: linear-gradient(135deg, #001752 0%, #002463 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 0 20px 50px;
    position: relative;
    overflow: hidden;
}

.testimonials-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.testimonials-header-content {
    flex: 1;
    max-width: 600px;
}

/* Header Label */
.testimonials-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Header Main Title */
.testimonials-main-title {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.25;
    font-family: 'Montserrat', sans-serif;
}

/* Header Subtitle */
.testimonials-subtitle {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

/* Decorative Boxes on Right */
.testimonials-header-decoration {
    display: flex;
    gap: 18px;
    align-items: flex-end;
}

.deco-box {
    width: 110px;
    border: 2px solid rgba(100, 140, 220, 0.3);
    border-radius: 16px;
    background: rgba(100, 140, 220, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.deco-box:hover {
    border-color: rgba(100, 140, 220, 0.5);
    background: rgba(100, 140, 220, 0.12);
}

.deco-box-1 {
    height: 150px;
}

.deco-box-2 {
    height: 120px;
}

.deco-box-3 {
    height: 90px;
}

/* Cards Container */
.testimonials-cards-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Testimonials Grid */
.testimonials-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Individual Testimonial Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 26px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
    border-color: rgba(0, 0, 0, 0.08);
}

/* Quote Section */
.testimonial-quote {
    flex: 1;
    margin-bottom: 26px;
}

.testimonial-quote p {
    font-size: 14px;
    line-height: 1.75;
    color: #2d3748;
    margin: 0;
    position: relative;
    padding-left: 4px;
}

.testimonial-quote p::before {
    content: '"';
    position: absolute;
    left: -12px;
    top: -6px;
    font-size: 32px;
    color: #e2e8f0;
    font-family: Georgia, serif;
    font-weight: 700;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Author Avatar */
.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    font-size: 17px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Author Info */
.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.author-position {
    font-size: 12px;
    color: #718096;
    line-height: 1.5;
    font-weight: 500;
}

/* Card 1 - Light Pink/Peach with Light Blue Avatar */
.testimonial-card:nth-child(1) {
    background: linear-gradient(135deg, #fef0f0 0%, #fff5f5 100%);
}

.testimonial-card:nth-child(1) .author-avatar {
    background: linear-gradient(135deg, #b3e5fc 0%, #81d4fa 100%);
}

.testimonial-card:nth-child(1) .avatar-placeholder {
    color: #01579b;
}

/* Card 2 - Light Beige/Cream with Light Orange Avatar */
.testimonial-card:nth-child(2) {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e6 100%);
}

.testimonial-card:nth-child(2) .author-avatar {
    background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%);
}

.testimonial-card:nth-child(2) .avatar-placeholder {
    color: #e65100;
}

/* Card 3 - Light Lavender with Light Purple Avatar */
.testimonial-card:nth-child(3) {
    background: linear-gradient(135deg, #f5f0ff 0%, #faf5ff 100%);
}

.testimonial-card:nth-child(3) .author-avatar {
    background: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%);
}

.testimonial-card:nth-child(3) .avatar-placeholder {
    color: #4a148c;
}

/* Card 4 - Light Purple/Pink with Light Pink Avatar */
.testimonial-card:nth-child(4) {
    background: linear-gradient(135deg, #faf0ff 0%, #fff0f9 100%);
}

.testimonial-card:nth-child(4) .author-avatar {
    background: linear-gradient(135deg, #f8bbd0 0%, #f48fb1 100%);
}

.testimonial-card:nth-child(4) .avatar-placeholder {
    color: #880e4f;
}

/* Tablet Styles */
@media (max-width: 992px) {
    .testimonials-header {
        padding: 50px 30px;
        margin: 0 16px 40px;
    }

    .testimonials-header-container {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .testimonials-header-content {
        max-width: 100%;
    }

    .testimonials-main-title {
        font-size: 34px;
    }

    .testimonials-header-decoration {
        justify-content: center;
    }

    .deco-box {
        width: 90px;
    }

    .deco-box-1 {
        height: 130px;
    }

    .deco-box-2 {
        height: 105px;
    }

    .deco-box-3 {
        height: 80px;
    }

    .testimonials-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .testimonial-card {
        min-height: 280px;
        padding: 28px 22px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .testimonials-section {
        padding-bottom: 60px;
    }

    .testimonials-header {
        padding: 40px 20px;
        margin: 0 12px 35px;
        border-radius: 16px;
    }

    .testimonials-main-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .deco-box {
        width: 70px;
        gap: 14px;
    }

    .deco-box-1 {
        height: 110px;
    }

    .deco-box-2 {
        height: 88px;
    }

    .deco-box-3 {
        height: 66px;
    }

    .testimonials-cards-container {
        padding: 0 12px;
    }

    .testimonials-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 26px 20px;
        min-height: auto;
    }

    .testimonial-quote p {
        font-size: 13px;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-position {
        font-size: 11px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .testimonials-header {
        padding: 35px 16px;
    }

    .testimonials-main-title {
        font-size: 24px;
    }

    .testimonials-header-decoration {
        gap: 10px;
    }

    .deco-box {
        width: 55px;
    }

    .deco-box-1 {
        height: 95px;
    }

    .deco-box-2 {
        height: 76px;
    }

    .deco-box-3 {
        height: 57px;
    }

    .testimonial-card {
        padding: 22px 18px;
    }

    .testimonial-quote p {
        font-size: 13px;
        line-height: 1.65;
    }
}

/* Animation for cards on scroll */
@keyframes testimonialSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    opacity: 0;
    animation: testimonialSlideUp 0.7s ease forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Decorative boxes animation */
@keyframes boxFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.deco-box-1 {
    animation: boxFloat 3s ease-in-out infinite;
}

.deco-box-2 {
    animation: boxFloat 3.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.deco-box-3 {
    animation: boxFloat 4s ease-in-out infinite;
    animation-delay: 0.6s;
}

/* ======================================== 
   END OF TESTIMONIALS SECTION CSS
   ======================================== */
   
  /* ========================================
   WHY CHOOSE SECTION CSS
   Copy this code and paste it into your CSS file
   ======================================== */

/* Section Wrapper */
.why-choose-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-title {
    font-size: 40px;
    font-weight: 400;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.highlight-text {
    color: #76bc54;
    font-weight: 700;
}

.why-choose-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin: 0;
    font-weight: 400;
}

/* Two Column Content */
.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

/* Left Column - Text */
.why-choose-text {
    padding-right: 20px;
}

.why-choose-description {
    font-size: 15px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 40px;
    text-align: justify;
}

/* Meet Team Section */
.meet-team-section {
    margin-top: 40px;
}

.meet-team-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.meet-team-subtitle {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 24px;
}

/* Get to Know Button */
.btn-get-to-know {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f47920;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(244, 121, 32, 0.3);
}

.btn-get-to-know:hover {
    background-color: #e06910;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(244, 121, 32, 0.4);
}

.btn-get-to-know svg {
    transition: transform 0.3s ease;
}

.btn-get-to-know:hover svg {
    transform: translateX(4px);
}

/* Right Column - Media */
.why-choose-media {
    position: relative;
}

.media-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.media-wrapper:hover {
    transform: scale(1.02);
}

.team-photo {
    width: 100%;
    height: auto;
    display: block;
    min-height: 300px;
    object-fit: cover;
}

/* Video Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-play-btn svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-play-btn:hover svg circle {
    opacity: 1;
}

/* Footer Text */
.why-choose-footer {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.why-choose-footer p {
    font-size: 15px;
    line-height: 1.8;
    color: #2d3748;
    margin: 0;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.video-modal.active {
    display: block;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.video-modal-close:hover {
    transform: scale(1.2);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Tablet Styles */
@media (max-width: 992px) {
    .why-choose-section {
        padding: 60px 20px;
    }

    .why-choose-title {
        font-size: 34px;
    }

    .why-choose-content {
        gap: 40px;
        margin-bottom: 40px;
    }

    .why-choose-text {
        padding-right: 10px;
    }

    .meet-team-title {
        font-size: 24px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 50px 16px;
    }

    .why-choose-header {
        margin-bottom: 40px;
    }

    .why-choose-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .why-choose-subtitle {
        font-size: 16px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }

    .why-choose-text {
        padding-right: 0;
    }

    .why-choose-description {
        font-size: 14px;
        margin-bottom: 30px;
        text-align: left;
    }

    .meet-team-section {
        margin-top: 30px;
    }

    .meet-team-title {
        font-size: 22px;
    }

    .meet-team-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .btn-get-to-know {
        padding: 12px 28px;
        font-size: 13px;
    }

    .why-choose-footer {
        padding-top: 25px;
    }

    .why-choose-footer p {
        font-size: 14px;
    }

    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -35px;
        font-size: 35px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .why-choose-title {
        font-size: 24px;
    }

    .why-choose-subtitle {
        font-size: 15px;
    }

    .meet-team-title {
        font-size: 20px;
    }

    .btn-get-to-know {
        width: 100%;
        justify-content: center;
    }
}

/* Animation for section on scroll */
@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-choose-content {
    opacity: 0;
    animation: fadeInSection 0.8s ease forwards;
    animation-delay: 0.2s;
}
/* ======================================
 AI ERA FUTURISTIC BACKGROUND EFFECT
====================================== */

section.why-choose-section{
  position:relative;
  background:
    radial-gradient(circle at top left, rgba(99,102,241,0.15), transparent 40%),
    radial-gradient(circle at bottom right, rgba(34,211,238,0.15), transparent 40%),
    linear-gradient(180deg,#f9fbff,#f4f7ff);
  overflow:hidden;
}

/* Soft glowing orbs */
section.why-choose-section:before,
section.why-choose-section:after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background:rgba(99,102,241,0.18);
  filter:blur(120px);
  border-radius:50%;
  z-index:0;
}

section.why-choose-section::before{
  top:-150px;
  left:-150px;
}

section.why-choose-section::after{
  bottom:-150px;
  right:-150px;
  background:rgba(34,211,238,0.18);
}

/* Keep content above glow */
section.why-choose-section > *{
  position:relative;
  z-index:1;
}

/* ======================================== 
   END OF WHY CHOOSE SECTION CSS
   ======================================== */
   
   
   /* ========================================
   BUSINESS GUIDE SECTION CSS
   Copy this code and paste it into your CSS file
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500&display=swap');

/* ================================================
   BUSINESS GUIDE SECTION — High Conversion Edition
   ================================================ */

/* Section Wrapper */
.business-guide-section {
    position: relative;
    background: #f8f5f0;
    padding: 100px 20px;
    overflow: hidden;
    isolation: isolate;
}

/* Animated mesh background */
.business-guide-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 85% 75%, rgba(16, 185, 129, 0.09) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: 0;
    animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0%   { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.05); }
}

/* Grid dot pattern overlay */
.business-guide-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
    pointer-events: none;
}

.business-guide-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Section Header ── */
.guide-header {
    text-align: center;
    margin-bottom: 70px;
}

.guide-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #ff6a00;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding: 7px 20px;
    border: 1.5px solid rgba(255, 106, 0, 0.3);
    border-radius: 100px;
    background: rgba(255, 106, 0, 0.06);
    backdrop-filter: blur(4px);
}

.guide-label::before,
.guide-label::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    opacity: 0.5;
    border-radius: 2px;
}

.guide-title {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 900;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.025em;
}

.guide-title em {
    font-style: normal;
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 760px;
    margin: 0 auto;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

/* ── Two Column Layout ── */
.guide-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: start;
}

/* ── Individual Column ── */
.guide-column {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow:
        0 1px 3px rgba(0,0,0,0.04),
        0 8px 32px rgba(0,0,0,0.07),
        0 0 0 1px rgba(0,0,0,0.04);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    position: relative;
}

/* Shimmer sweep on hover */
.guide-column::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0s;
    z-index: 2;
    pointer-events: none;
    border-radius: 20px;
}

.guide-column:hover::before {
    transform: translateX(200%);
    transition: transform 0.65s ease;
}

.guide-column:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 4px 8px rgba(0,0,0,0.04),
        0 20px 60px rgba(0,0,0,0.12),
        0 0 0 1.5px rgba(255, 106, 0, 0.15);
}

.guide-column:nth-child(1) { animation-delay: 0.1s; }
.guide-column:nth-child(2) { animation-delay: 0.22s; }

/* ── Column Header — Left card (blue accent) ── */
.column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 32px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

/* Animated gradient orb inside header */
.column-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbPulse 4s ease-in-out infinite alternate;
}

@keyframes orbPulse {
    0%   { transform: scale(1) translate(0,0); opacity: 0.6; }
    100% { transform: scale(1.4) translate(-8px, 8px); opacity: 1; }
}

.column-title {
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.2em;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ── Column Icon ── */
.column-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.column-icon svg {
    color: #93c5fd;
    filter: drop-shadow(0 0 6px rgba(147, 197, 253, 0.6));
}

/* Green check column header override */
.guide-column:nth-child(2) .column-header {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
}

.guide-column:nth-child(2) .column-header::before {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, transparent 70%);
}

.column-icon-check {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.column-icon-check svg {
    color: #6ee7b7;
    filter: drop-shadow(0 0 6px rgba(110, 231, 183, 0.6));
}

.column-icon:hover {
    transform: scale(1.12) rotate(-5deg);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    animation: none;
}

/* ── Column Content ── */
.column-content {
    padding: 36px 32px;
    position: relative;
}

/* Subtle left-edge color bar */
.column-content::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    bottom: 24px;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6 0%, rgba(59, 130, 246, 0) 100%);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-column:nth-child(2) .column-content::before {
    background: linear-gradient(180deg, #10b981 0%, rgba(16, 185, 129, 0) 100%);
}

.guide-column:hover .column-content::before {
    opacity: 1;
}

/* ── Content Block ── */
.content-block {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #f1f5f9;
    transition: padding-left 0.3s ease;
}

.content-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.guide-column:hover .content-block {
    padding-left: 4px;
}

/* ── Content Heading ── */
.content-heading {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

/* Animated bullet dot */
.content-heading::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 5px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    animation: dotPing 2.5s ease-in-out infinite;
    transition: background 0.3s ease;
}

.guide-column:nth-child(2) .content-heading::before {
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    animation: dotPingGreen 2.5s ease-in-out infinite;
}

@keyframes dotPing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5); }
    50%       { box-shadow: 0 0 0 6px rgba(59, 130, 246, 0); }
}

@keyframes dotPingGreen {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50%       { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* ── Content Text ── */
.content-text {
    font-size: 14px;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
    padding-left: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    transition: color 0.3s ease;
}

.guide-column:hover .content-text {
    color: #374151;
}

.content-text strong {
    color: #111827;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Tablet Styles ── */
@media (max-width: 992px) {
    .business-guide-section {
        padding: 70px 20px;
    }

    .guide-header {
        margin-bottom: 50px;
    }

    .guide-description {
        font-size: 15px;
    }

    .guide-columns {
        gap: 22px;
    }

    .column-header {
        padding: 22px 26px;
    }

    .column-content {
        padding: 28px 26px;
    }

    .content-heading {
        font-size: 15px;
    }
}

/* ── Mobile Styles ── */
@media (max-width: 768px) {
    .business-guide-section {
        padding: 55px 16px;
    }

    .guide-header {
        margin-bottom: 44px;
    }

    .guide-label {
        font-size: 10px;
        letter-spacing: 0.15em;
    }

    .guide-description {
        font-size: 14px;
    }

    .guide-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .column-header {
        padding: 20px 22px;
    }

    .column-title {
        font-size: 10px;
        letter-spacing: 0.15em;
    }

    .column-icon {
        width: 38px;
        height: 38px;
    }

    .column-icon svg {
        width: 18px;
        height: 18px;
    }

    .column-content {
        padding: 24px 22px;
    }

    .content-block {
        margin-bottom: 22px;
        padding-bottom: 22px;
    }

    .content-heading {
        font-size: 14.5px;
        margin-bottom: 8px;
    }

    .content-text {
        font-size: 13.5px;
    }
}

/* ── Small Mobile ── */
@media (max-width: 480px) {
    .business-guide-section {
        padding: 44px 14px;
    }

    .guide-description {
        font-size: 13px;
    }

    .column-header {
        padding: 18px 18px;
    }

    .column-content {
        padding: 20px 18px;
    }
}

/* ── Entrance Animation ── */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── Icon pulse (legacy support kept) ── */
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.1); }
}
/* ======================================== 
   END OF BUSINESS GUIDE SECTION CSS
   ======================================== */
   
 /* ========================================
   MARKET INSIGHTS SECTION CSS
   Copy this code and paste it into your CSS file
   ======================================== */

/* Section Wrapper */
.market-insights-section {
    background-color: #f9faf9;
    padding: 80px 20px;
}

.market-insights-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Two Column Content */
.insights-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Infographic */
.insights-infographic {
    position: relative;
}

.infographic-wrapper {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.infographic-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.infographic-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Right Column - Text Content */
.insights-text {
    padding-top: 10px;
}

.insights-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.insights-title {
    font-size: 36px;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

/* Paragraphs */
.insights-paragraphs {
    margin-bottom: 32px;
}

.insights-paragraphs p {
    font-size: 15px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 18px;
}

.insights-paragraphs p:last-child {
    margin-bottom: 0;
}

/* CTA Buttons Container */
.insights-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Schedule Consultation Button (Green) */
.btn-schedule-consultation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0f5132;
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 81, 50, 0.3);
}

.btn-schedule-consultation:hover {
    background-color: #0a3d24;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 81, 50, 0.4);
}

/* See Case Studies Button (White) */
.btn-see-case-studies {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #1a202c;
    padding: 15px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-see-case-studies:hover {
    background-color: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Tablet Styles */
@media (max-width: 992px) {
    .market-insights-section {
        padding: 60px 20px;
    }

    .insights-content {
        gap: 50px;
    }

    .insights-title {
        font-size: 32px;
    }

    .insights-paragraphs p {
        font-size: 14px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .market-insights-section {
        padding: 50px 16px;
    }

    .insights-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .infographic-wrapper {
        position: relative;
        top: 0;
        padding: 15px;
    }

    .insights-text {
        padding-top: 0;
    }

    .insights-label {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .insights-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .insights-paragraphs {
        margin-bottom: 28px;
    }

    .insights-paragraphs p {
        font-size: 14px;
        margin-bottom: 16px;
        line-height: 1.7;
    }

    .insights-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-schedule-consultation,
    .btn-see-case-studies {
        width: 100%;
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .market-insights-section {
        padding: 40px 12px;
    }

    .insights-title {
        font-size: 22px;
    }

    .insights-paragraphs p {
        font-size: 13px;
    }

    .btn-schedule-consultation,
    .btn-see-case-studies {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* Animation for content on scroll */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.insights-infographic {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 0.1s;
}

.insights-text {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.3s;
}


/* ======================================== 
   END OF MARKET INSIGHTS SECTION CSS
   ======================================== */
   
   /* Video Modal Styles */
#videoModal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#videoModal.active {
  display: flex;
}

.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 80rem;
  aspect-ratio: 16 / 9;
}

.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: white;
  font-size: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
}

.video-modal-close:hover {
  color: var(--tech-orange, #ff6b35);
}

#videoFrame {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  border: none;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-modal-container {
    max-width: 100%;
  }
  
  .video-modal-close {
    top: -2.5rem;
    font-size: 2rem;
  }
}
/* ============================
   CTA SECTION THEME
============================ */

.pm-cta-section{
  max-width:1240px;
  margin:0 auto 80px;
  padding:0 24px;
}

.pm-cta-box{
  background:linear-gradient(90deg,#0a5aa3,#0b73c8);
  border-radius:24px;
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  position:relative;
  overflow:hidden;
}

/* Glow circle */
.pm-cta-box::after{
  content:"";
  position:absolute;
  right:-120px;
  top:-120px;
  width:300px;
  height:300px;
  background:rgba(255,255,255,0.08);
  border-radius:50%;
  filter:blur(40px);
}

/* IMAGE */
.pm-cta-image{
  width:220px;
  height:220px;
  border-radius:50%;
  overflow:hidden;
  border:6px solid rgba(255,255,255,0.25);
  flex-shrink:0;
}

.pm-cta-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* TEXT */
.pm-cta-content{
  color:#fff;
  max-width:520px;
}

.pm-cta-content h2{
  font-size:36px;
  font-weight:800;
  margin-bottom:15px;
}

.pm-cta-content p{
  font-size:18px;
  color:#dbeafe;
}

/* BUTTON */
.pm-whatsapp-btn{
  background:#25D366;
  color:#fff;
  padding:18px 36px;
  border-radius:999px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
  transition:0.3s;
}

.pm-whatsapp-btn:hover{
  transform:translateY(-2px);
  background:#20bd5a;
}

/* ICON */
.pm-whatsapp-btn svg{
  width:26px;
  height:26px;
  fill:#fff;
}

/* Pulse Effect */
.pm-pulse{
  animation:pulseAnim 1.5s infinite;
}

@keyframes pulseAnim{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,0.7);}
  70%{box-shadow:0 0 0 20px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* MOBILE */
@media(max-width:900px){
  .pm-cta-box{
    flex-direction:column;
    text-align:center;
  }

  .pm-cta-content h2{
    font-size:28px;
  }

  .pm-cta-image{
    width:180px;
    height:180px;
  }
}
/* ===============================
   GLASS CTA  2nd  THEME
================================ */

/* ================================
   FUTURISTIC NETWORK CTA THEME
================================ */

/* ================================
   FUTURISTIC BANNER CTA
================================ */

/* ==============================
   AI NETWORK WHATSAPP BANNER
================================ */

.pm-ai-banner-section{
  width:100%;
  padding:0 20px;
  margin:80 auto 80px;
}

.pm-ai-banner{
  max-width:1240px;
  margin:0 auto;
  background:linear-gradient(90deg,#04142a,#0a3a66,#052244);
  border-radius:22px;
  padding:35px 50px;
  display:flex;
  align-items:center;
  gap:30px;
  position:relative;
  overflow:hidden;
}

/* Animated network streak */
.pm-ai-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent 35%,
    rgba(0,255,255,0.25),
    transparent 65%
  );
  animation:netflow 6s linear infinite;
}

@keyframes netflow{
  from{transform:translateX(-100%);}
  to{transform:translateX(100%);}
}

/* Floating glow */
.pm-ai-glow{
  position:absolute;
  width:220px;
  height:220px;
  background:#22d3ee;
  filter:blur(120px);
  opacity:.35;
  border-radius:50%;
}

.pm-ai-glow.left{left:-80px;top:-80px;}
.pm-ai-glow.right{right:-80px;bottom:-80px;background:#22c55e;}

/* PROFILE */
.pm-ai-profile{
  width:80px;
  height:80px;
  border-radius:50%;
  overflow:hidden;
  border:4px solid rgba(255,255,255,0.4);
  flex-shrink:0;
  position:relative;
  z-index:2;
}

.pm-ai-profile img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* CONTENT */
.pm-ai-content{
  color:#fff;
  flex:1;
  position:relative;
  z-index:2;
}

.pm-ai-content h2{
  font-size:30px;
  font-weight:900;
  margin-bottom:6px;
}

.pm-ai-content p{
  font-size:16px;
  color:#cfe9ff;
}

/* BUTTON */
.pm-ai-whatsapp{
  background:linear-gradient(135deg,#22c55e,#4ade80);
  color:#052e16;
  padding:16px 34px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 0 25px rgba(34,197,94,0.6);
  transition:.3s;
  position:relative;
  z-index:2;
  white-space:nowrap;
}

.pm-ai-whatsapp:hover{
  transform:translateY(-2px);
  box-shadow:0 0 35px rgba(34,197,94,0.9);
}

.pm-ai-whatsapp svg{
  width:22px;
  height:22px;
  fill:#052e16;
}

/* MOBILE */
@media(max-width:900px){
  .pm-ai-banner{
    flex-direction:column;
    text-align:center;
    padding:30px 25px;
  }

  .pm-ai-content h2{
    font-size:24px;
  }
}
/* ===============================
   AI MATCH HERO (SCOPED)   3rd cta button 
================================*/

.ai-match-section{
  padding:80px 20px;
  background:linear-gradient(90deg,#8ec5ff,#a6fff3);
  overflow:hidden;
 
 
}

.ai-match-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

/* TEXT SIDE */
.ai-match-content h2{
  font-size:clamp(26px,3vw,40px);
  font-weight:800;
  color:#0f172a;
  line-height:1.25;
  margin-bottom:25px;
}

/* BUTTON */
.ai-match-btn{
  display:inline-block;
  background:#ff2c2c;
  color:#fff;
  padding:14px 34px;
  border-radius:10px;
  font-size:16px;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
  box-shadow:0 12px 30px rgba(255,44,44,.35);
}

.ai-match-visual img{
  border-radius:50%;
  aspect-ratio:1/1;
  object-fit:cover;
  border:6px solid rgba(255,255,255,0.7);
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* FIX BANNER HEIGHT & TOP SPACE */

.ai-match-section{
  padding-top:40px !important;
  padding-bottom:40px !important;
}

/* Reduce content vertical size */
.ai-match-container{
  min-height:auto !important;
}

/* Reduce heading spacing */
.ai-match-content h2{
  margin-bottom:15px;
}

.ai-match-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(255,44,44,.55);
}

/* IMAGE */
.ai-match-visual img{
  max-width:420px;
  width:100%;
  animation:floatImage 4s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes floatImage{
  0%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
  100%{transform:translateY(0);}
}

/* RESPONSIVE */
@media(max-width:900px){
  .ai-match-container{
    flex-direction:column;
    text-align:center;
  }
}
/* ======================================
 SUCCESS STORIES VIDEO SECTION (GLOBAL)
 File: pm-seo-section.css
====================================== */

/* Section spacing */
section.py-24.bg-gray-50{
  padding-top:80px;
  padding-bottom:80px;
}

/* Headings */
section.py-24.bg-gray-50 h2{
  letter-spacing:-0.5px;
}

/* Cards */
section.py-24.bg-gray-50 .bg-white{
  transition:all .4s ease;
  border-radius:20px;
}

section.py-24.bg-gray-50 .bg-white:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* Video Thumbnail */
section.py-24.bg-gray-50 .aspect-video img{
  transition:transform .7s ease;
}

/* Play Button */
section.py-24.bg-gray-50 .material-symbols-outlined{
  font-variation-settings:'FILL' 1;
}

/* Play Circle */
section.py-24.bg-gray-50 .relative .w-20{
  transition:all .3s ease;
}

section.py-24.bg-gray-50 .relative:hover .w-20{
  transform:scale(1.15);
}

/* Stat Boxes */
section.py-24.bg-gray-50 .grid-cols-2 > div{
  transition:.3s ease;
}

section.py-24.bg-gray-50 .grid-cols-2 > div:hover{
  background:#ffffff;
  transform:scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* Mobile Optimization */
@media(max-width:768px){
  section.py-24.bg-gray-50{
    padding-top:60px;
    padding-bottom:60px;
  }

  section.py-24.bg-gray-50 h2{
    font-size:32px;
  }
}
/* ======================================
 AI ERA FUTURISTIC BACKGROUND EFFECT
====================================== */

section.py-24.bg-gray-50{
  position:relative;
  background:
    radial-gradient(circle at top left, rgba(99,102,241,0.15), transparent 40%),
    radial-gradient(circle at bottom right, rgba(34,211,238,0.15), transparent 40%),
    linear-gradient(180deg,#f9fbff,#f4f7ff);
  overflow:hidden;
}

/* Soft glowing orbs */
section.py-24.bg-gray-50::before,
section.py-24.bg-gray-50::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background:rgba(99,102,241,0.18);
  filter:blur(120px);
  border-radius:50%;
  z-index:0;
}

section.py-24.bg-gray-50::before{
  top:-150px;
  left:-150px;
}

section.py-24.bg-gray-50::after{
  bottom:-150px;
  right:-150px;
  background:rgba(34,211,238,0.18);
}

/* Keep content above glow */
section.py-24.bg-gray-50 > *{
  position:relative;
  z-index:1;
}
/* =====================================
 AI ERA GLOW FOR HEADING & BOXES
===================================== */

/* MAIN HEADING GLOW */
section.py-24.bg-gray-50 h2{
  text-shadow:
    0 0 12px rgba(99,102,241,0.35),
    0 0 25px rgba(34,211,238,0.25);
}

/* SUBTEXT SOFT GLOW */
section.py-24.bg-gray-50 p{
  text-shadow:0 0 8px rgba(180,200,255,0.35);
}

/* CARD BASE GLOW */
section.py-24.bg-gray-50 .bg-white{
  background:linear-gradient(
    180deg,
    rgba(255,255,255,0.95),
    rgba(245,248,255,0.95)
  );
  box-shadow:
    0 15px 40px rgba(0,0,0,0.08),
    0 0 30px rgba(99,102,241,0.18);
}

/* CARD HOVER GLOW */
section.py-24.bg-gray-50 .bg-white:hover{
  box-shadow:
    0 25px 70px rgba(0,0,0,0.15),
    0 0 50px rgba(99,102,241,0.35),
    0 0 80px rgba(34,211,238,0.25);
}

/* STAT BOXES GLOW */
section.py-24.bg-gray-50 .grid-cols-2 > div{
  background:linear-gradient(
    180deg,
    #ffffff,
    #f3f7ff
  );
  box-shadow:
    0 8px 18px rgba(0,0,0,0.06),
    0 0 15px rgba(99,102,241,0.15);
}

/* STAT BOX HOVER */
section.py-24.bg-gray-50 .grid-cols-2 > div:hover{
  box-shadow:
    0 12px 30px rgba(0,0,0,0.12),
    0 0 25px rgba(34,211,238,0.35);
}
/* ================================
 AI LEAD SECTION STYLES
================================ */

/* ================================
 LIGHT AI LEAD SECTION
================================ */

/* ================================
 LIGHT AI AUDIT SECTION
================================ */

.ai-lead-section{
  padding:80px 20px;
  background:
    radial-gradient(circle at top left,#cfe7ff,transparent 45%),
    radial-gradient(circle at bottom right,#d6fff4,transparent 45%),
    linear-gradient(180deg,#f6faff,#ffffff);
}

/* Heading */
.ai-lead-heading{
  text-align:center;
  font-size:clamp(30px,4vw,48px);
  font-weight:900;
  color:#0f172a;
  margin-bottom:60px;
}

.ai-lead-heading span{
  color:#7ac000;
}

/* Layout */
.ai-lead-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* IMAGE */
.ai-lead-image img{
  width:100%;
  max-width:500px;
  display:block;
  margin:auto;
  filter:drop-shadow(0 25px 40px rgba(0,0,0,0.2));
}

/* FORM BOX */
.ai-lead-form-box{
  background:#ffffff;
  padding:40px;
  border-radius:10px;
  box-shadow:
    0 0 40px rgba(120,150,255,0.25),
    0 25px 60px rgba(0,0,0,0.15);
}

/* INPUTS */
.ai-lead-form-box .form-input{
  width:100%;
  padding:14px;
  border:1px solid #dbe3ff;
  border-radius:6px;
  font-size:15px;
}

/* MOBILE */
@media(max-width:900px){
  .ai-lead-container{
    grid-template-columns:1fr;
  }

  .ai-lead-heading{
    margin-bottom:40px;
  }
}

/* IMAGE - Updated for equal height */
.ai-lead-image {
  height: 100%; /* Ensures the container takes full grid height */
  display: flex;
}

.ai-lead-image img {
  width: 100%;
  height: 100%; /* Forces image to match form height */
  object-fit: cover; /* Prevents stretching; crops slightly if aspect ratios differ */
  border-radius: 10px; /* Matches the form's border radius for symmetry */
  display: block;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.2));
}
/* =====================================
 top 6 boxes tech AI SERVICES SECTION ENHANCEMENTS
===================================== */

/* AI BACKGROUND */
section.py-20.px-6.bg-white{
  position:relative;
  background:
    radial-gradient(circle at top left, rgba(99,102,241,.12), transparent 40%),
    radial-gradient(circle at bottom right, rgba(34,211,238,.12), transparent 40%),
    linear-gradient(180deg,#f9fbff,#ffffff);
  overflow:hidden;
}

/* SOFT GLOW LAYER */
section.py-20.px-6.bg-white::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.03) 1px, transparent 1px);
  background-size:40px 40px;
  pointer-events:none;
}

/* Keep content above background */
section.py-20.px-6.bg-white > *{
  position:relative;
  z-index:2;
}

/* SERVICE CARD */
.service-card{
  background:white;
  border-radius:18px;
  padding:28px;
  display:flex;
  flex-direction:column;
  transition:.45s ease;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* HOVER EFFECT */
.service-card:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:
    0 25px 60px rgba(0,0,0,.15),
    0 0 35px rgba(99,102,241,.25);
}

/* ICON CIRCLE */
.service-card-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  background:linear-gradient(135deg,#5b6cff,#22d3ee);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  margin-bottom:18px;
  box-shadow:0 0 25px rgba(99,102,241,.6);
}

/* ARROW */
.service-card-arrow{
  transition:.4s ease;
}

.service-card:hover .service-card-arrow{
  transform:translateX(6px);
}

/* SIDEBAR CARD */
aside > div{
  transition:.4s ease;
}

aside > div:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.15);
}

/* CLIENT LOGO */
aside img{
  transition:.4s ease;
}

aside img:hover{
  filter:grayscale(0);
  opacity:1;
  transform:scale(1.05);
}
/* =========================================================
 FILE NAME : pm-seo-section.css
 PURPOSE   : Styling + Visual Effects for SEO Packages Section
 SECTION   : <section class="py-24 bg-white">
========================================================= */


/* ---------------------------------------------------------
 SECTION BACKGROUND
 Adds soft AI-style gradient glow behind section
---------------------------------------------------------- */
section.py-24.bg-white{
  background:
    radial-gradient(circle at top left, rgba(99,102,241,0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(34,211,238,0.08), transparent 40%),
    #ffffff;
}


/* ---------------------------------------------------------
 MAIN HEADING GLOW
 Adds subtle futuristic glow to "SEO Packages"
---------------------------------------------------------- */
.section-heading{
  text-shadow:
    0 0 10px rgba(99,102,241,0.25),
    0 0 20px rgba(34,211,238,0.2);
}


/* ---------------------------------------------------------
 PACKAGE CARD BASE STYLE
 Targets all pricing cards
---------------------------------------------------------- */
section.py-24.bg-white .border,
section.py-24.bg-white .border-2{
  border-radius:18px;                 /* Rounded corners */
  background:#ffffff;                 /* White background */
  transition:all .45s ease;           /* Smooth animation */
  box-shadow:0 12px 28px rgba(0,0,0,0.06);
}


/* ---------------------------------------------------------
 CARD HOVER EFFECT
 Card lifts up and glows
---------------------------------------------------------- */
section.py-24.bg-white .border:hover,
section.py-24.bg-white .border-2:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.14),
    0 0 40px rgba(99,102,241,0.25);
}


/* ---------------------------------------------------------
 GOLD PLAN EXTRA HIGHLIGHT
 Makes popular plan stand out
---------------------------------------------------------- */
section.py-24.bg-white .border-2{
  box-shadow:
    0 25px 60px rgba(0,0,0,0.15),
    0 0 60px rgba(255,128,0,0.35);
}


/* ---------------------------------------------------------
 CHECK ICON MICRO INTERACTION
---------------------------------------------------------- */
section.py-24.bg-white li span{
  transition:transform .3s ease;
}

section.py-24.bg-white li:hover span{
  transform:scale(1.2);
}


/* ---------------------------------------------------------
 BUTTON BASE
---------------------------------------------------------- */
section.py-24.bg-white button{
  position:relative;
  overflow:hidden; /* Needed for shine animation */
}


/* ---------------------------------------------------------
 BUTTON SHINE EFFECT
 Creates sliding light reflection
---------------------------------------------------------- */
section.py-24.bg-white button::after{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:100%;
  height:100%;
  background:
    linear-gradient(120deg,
      transparent,
      rgba(255,255,255,.7),
      transparent
    );
  transition:.6s;
}

section.py-24.bg-white button:hover::after{
  left:120%;
}


/* ---------------------------------------------------------
 SCROLL ANIMATION BASE STATE
 Cards start hidden
---------------------------------------------------------- */
.pm-pack{
  opacity:0;
  transform:translateY(40px);
  transition:all .6s ease;
}


/* ---------------------------------------------------------
 SCROLL ANIMATION ACTIVE STATE
---------------------------------------------------------- */
.pm-pack.show{
  opacity:1;
  transform:translateY(0);
}
/* 
==========================================================================
PERFORMANCE MKTG - SEO SERVICES SECTION CSS
==========================================================================

FILE PURPOSE: Styles for the Digital Marketing Services section
FEATURES: Responsive grid, animations, hover effects, modern design

TABLE OF CONTENTS:
1. Reset & Base Styles
2. Section Container
3. Header Styles
4. Grid Layout
5. Card Styles
6. Image Styles
7. Content Styles
8. Animations
9. Responsive Design

==========================================================================
*/


/* 
==========================================================================
1. RESET & BASE STYLES
==========================================================================
Purpose: Remove default browser styles and set consistent base
*/

* {
  margin: 0;                    /* Remove default margins */
  padding: 0;                   /* Remove default padding */
  box-sizing: border-box;       /* Include padding/border in width calculations */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  /* System font stack for optimal performance and native look */
  line-height: 1.6;             /* Comfortable reading line height */
  color: #333;                  /* Dark gray text for readability */
  background-color: #f8f9fa;    /* Light gray background */
}


/* 
==========================================================================
2. SECTION CONTAINER
==========================================================================
Purpose: Main wrapper for the entire services section
*/

.search-trends-section {
  max-width: 1400px;            /* Maximum width for large screens */
  margin: 0 auto;               /* Center the section horizontally */
  padding: 80px 20px;           /* Vertical and horizontal spacing */
}


/* 
==========================================================================
3. HEADER STYLES
==========================================================================
Purpose: Title and description at the top of the section
*/

.section-header {
  text-align: center;           /* Center all text */
  margin-bottom: 60px;          /* Space below header before cards */
  animation: fadeInDown 0.8s ease-out;  /* Slide down animation on load */
}

.section-header h1 {
  font-size: 2.8rem;            /* Large heading size (44.8px) */
  font-weight: 700;             /* Bold weight */
  color: #1a1a1a;               /* Almost black for strong contrast */
  margin-bottom: 20px;          /* Space below heading */
  position: relative;           /* Needed for ::after positioning */
  display: inline-block;        /* Allow ::after to center under text only */
}

/* Decorative underline under heading */
.section-header h1::after {
  content: '';                  /* Empty content - purely decorative */
  position: absolute;           /* Position relative to h1 */
  bottom: -10px;                /* 10px below the text */
  left: 50%;                    /* Start from horizontal center */
  transform: translateX(-50%);  /* Center the line */
  width: 80px;                  /* Fixed width */
  height: 4px;                  /* Thickness of line */
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  /* Purple gradient for modern look */
  border-radius: 2px;           /* Slightly rounded edges */
}

.section-description {
  font-size: 1.15rem;           /* Slightly larger than body text */
  color: #666;                  /* Medium gray for softer appearance */
  max-width: 800px;             /* Limit width for readability */
  margin: 30px auto 0;          /* Center with top margin */
  line-height: 1.8;             /* Extra line height for readability */
}


/* 
==========================================================================
4. GRID LAYOUT
==========================================================================
Purpose: Responsive grid that holds all service cards
How it works: Auto-fit creates as many columns as can fit at min 380px
*/

.reports-grid {
  display: grid;                              /* Use CSS Grid layout */
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  /* Creates responsive columns:
     - auto-fit: Creates as many columns as fit
     - minmax(380px, 1fr): Each column min 380px, max equal width
     - Result: 3 columns on desktop, 2 on tablet, 1 on mobile */
  gap: 30px;                                  /* Space between cards */
  margin-top: 40px;                           /* Space above grid */
}


/* 
==========================================================================
5. CARD STYLES
==========================================================================
Purpose: Individual service card container with hover effects
*/

.report-card {
  background: #fff;                           /* White background */
  border-radius: 16px;                        /* Rounded corners */
  overflow: hidden;                           /* Hide overflow from child elements */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07); /* Subtle shadow for depth */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* Smooth transition with custom easing curve */
  opacity: 0;                                 /* Start invisible for animation */
  transform: translateY(30px);                /* Start 30px below for animation */
  animation: fadeInUp 0.6s ease-out forwards; /* Slide up animation */
  position: relative;                         /* For ::before pseudo-element */
}

/* Staggered animation delays for each card */
.report-card:nth-child(1) { animation-delay: 0.1s; }  /* 1st card */
.report-card:nth-child(2) { animation-delay: 0.2s; }  /* 2nd card */
.report-card:nth-child(3) { animation-delay: 0.3s; }  /* 3rd card */
.report-card:nth-child(4) { animation-delay: 0.4s; }  /* 4th card */
.report-card:nth-child(5) { animation-delay: 0.5s; }  /* 5th card */
.report-card:nth-child(6) { animation-delay: 0.6s; }  /* 6th card */

/* Hover effect: Lift card and enhance shadow */
.report-card:hover {
  transform: translateY(-8px);                /* Move up 8px */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Stronger shadow */
}

/* Top border gradient that appears on hover */
.report-card::before {
  content: '';                                /* Empty decorative element */
  position: absolute;                         /* Position at top of card */
  top: 0;
  left: 0;
  right: 0;
  height: 4px;                                /* 4px tall colored bar */
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);                       /* Start hidden (0 width) */
  transform-origin: left;                     /* Grow from left side */
  transition: transform 0.4s ease;            /* Smooth grow animation */
}

/* Show top border on hover */
.report-card:hover::before {
  transform: scaleX(1);                       /* Expand to full width */
}


/* 
==========================================================================
6. IMAGE STYLES
==========================================================================
Purpose: Service image container with zoom effect on hover
*/

.report-image {
  width: 100%;                                /* Full width of card */
  height: 240px;                              /* Fixed height for consistency */
  overflow: hidden;                           /* Hide zoomed image overflow */
  position: relative;                         /* For absolute children */
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  /* Gradient background as placeholder while image loads */
}

.report-image img {
  width: 100%;                                /* Full width */
  height: 100%;                               /* Full height */
  object-fit: cover;                          /* Cover area, crop if needed */
  transition: transform 0.5s ease;            /* Smooth zoom transition */
}

/* Zoom effect on card hover */
.report-card:hover .report-image img {
  transform: scale(1.08);                     /* Zoom to 108% size */
}


/* 
==========================================================================
7. CONTENT STYLES
==========================================================================
Purpose: Text content inside each card
*/

.report-content {
  padding: 28px;                              /* Internal spacing */
}

/* Category badge (e.g., "Rank Higher") */
.report-category {
  display: inline-block;                      /* Allow padding and margin */
  padding: 6px 14px;                          /* Internal spacing */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  /* Purple gradient background */
  color: #fff;                                /* White text */
  font-size: 0.75rem;                         /* Small text (12px) */
  font-weight: 600;                           /* Semi-bold */
  text-transform: uppercase;                  /* ALL CAPS */
  letter-spacing: 0.5px;                      /* Slight letter spacing */
  border-radius: 20px;                        /* Pill shape */
  margin-bottom: 12px;                        /* Space below badge */
}

/* Service title (e.g., "Search Engine Optimisation") */
.report-title {
  font-size: 1.5rem;                          /* Large size (24px) */
  font-weight: 700;                           /* Bold */
  color: #1a1a1a;                             /* Almost black */
  margin: 12px 0 16px;                        /* Vertical spacing */
  line-height: 1.3;                           /* Tight line height for headings */
}

/* Paragraph text */
.report-content p {
  font-size: 0.95rem;                         /* Slightly smaller (15.2px) */
  color: #555;                                /* Medium gray */
  line-height: 1.7;                           /* Comfortable reading */
  margin-bottom: 12px;                        /* Space between paragraphs */
}

.report-content p:last-child {
  margin-bottom: 0;                           /* Remove margin from last paragraph */
}

/* Bold text (used in "Result:") */
.report-content strong {
  color: #333;                                /* Darker gray */
  font-weight: 600;                           /* Semi-bold */
}


/* 
==========================================================================
8. ANIMATIONS
==========================================================================
Purpose: Keyframe animations for smooth entrance effects
*/

/* Header slides down and fades in */
@keyframes fadeInDown {
  from {
    opacity: 0;                               /* Start invisible */
    transform: translateY(-30px);             /* Start 30px above */
  }
  to {
    opacity: 1;                               /* End visible */
    transform: translateY(0);                 /* End at normal position */
  }
}

/* Cards slide up and fade in */
@keyframes fadeInUp {
  from {
    opacity: 0;                               /* Start invisible */
    transform: translateY(30px);              /* Start 30px below */
  }
  to {
    opacity: 1;                               /* End visible */
    transform: translateY(0);                 /* End at normal position */
  }
}


/* 
==========================================================================
9. RESPONSIVE DESIGN
==========================================================================
Purpose: Adapt layout for different screen sizes
*/

/* Large tablets and small desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .reports-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    /* Smaller minimum column width */
    gap: 25px;                                /* Slightly smaller gap */
  }
}

/* Tablets and large phones (max-width: 768px) */
@media (max-width: 768px) {
  .search-trends-section {
    padding: 60px 16px;                       /* Reduced vertical padding */
  }

  .section-header h1 {
    font-size: 2.2rem;                        /* Smaller heading (35.2px) */
  }

  .section-description {
    font-size: 1rem;                          /* Standard size (16px) */
  }

  .reports-grid {
    grid-template-columns: 1fr;               /* Single column */
    gap: 20px;                                /* Smaller gap */
  }

  .report-image {
    height: 200px;                            /* Shorter image height */
  }

  .report-content {
    padding: 24px;                            /* Less padding */
  }

  .report-title {
    font-size: 1.3rem;                        /* Smaller title */
  }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
  .section-header h1 {
    font-size: 1.8rem;                        /* Even smaller heading */
  }

  .section-description {
    font-size: 0.95rem;                       /* Slightly smaller text */
  }

  .report-content {
    padding: 20px;                            /* Minimal padding */
  }

  .report-title {
    font-size: 1.2rem;                        /* Compact title */
  }

  .report-content p {
    font-size: 0.9rem;                        /* Smaller body text */
  }
}

/* 
==========================================================================
END OF STYLESHEET
==========================================================================
*/

/* =====================================================
 PERFORMANCE MKTG – AWARD SECTION
 File: pm-seo-section.css
 Scoped to .pm-award-section only
===================================================== */

.pm-award-section{
  width:100%;
  padding:80px 20px;
  background:#ffffff;
}

/* Centered container */
.pm-award-container{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

/* Main heading */
.pm-award-title{
  font-size:clamp(26px, 4vw, 38px);
  font-weight:800;
  color:#111827;
  line-height:1.25;
  margin-bottom:28px;
}

/* Highlighted award year & title */
.pm-award-title span{
  color:#f26a3e;
}

/* Description text */
.pm-award-description{
  font-size:16px;
  line-height:1.7;
  color:#374151;
  margin-bottom:18px;
}

/* Rating / trust line */
.pm-award-rating{
  font-size:15px;
  font-weight:500;
  color:#1f2937;
}

/* Subtle trust accent */
.pm-award-rating strong{
  color:#f26a3e;
}


/* ==========================
 RESPONSIVE
========================== */
@media (max-width:768px){
  .pm-award-section{
    padding:60px 16px;
  }

  .pm-award-description,
  .pm-award-rating{
    font-size:15px;
  }
}
/* Futuristic AI Card Style */
/* ========================================
   PM SEO Section - AI Futuristic Styles
   ======================================== */
/* ========================================
   PM SEO Section - AI Futuristic Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Fraunces:ital,wght@0,700;0,900;1,700&display=swap');

/* --- Root Variables --- */
:root {
  --tech-navy:        #0B1D3A;
  --tech-orange:      #C8761A;
  --tech-orange-2:    #E8951A;
  --glow-orange:      rgba(200, 118, 26, 0.22);
  --grid-color:       rgba(11, 29, 58, 0.045);
  --card-bg:          #FFFFFF;
  --card-border:      rgba(200, 118, 26, 0.14);
  --card-border-hover:rgba(200, 118, 26, 0.65);
  --text-muted:       #5A6E88;
  --section-bg:       #F4F6FB;
}

/* ─── SECTION WRAPPER ─────────────────────────── */
.seo-benefits-section {
  position: relative;
  padding: 100px 0;
  background: var(--section-bg);
  overflow: hidden;
  isolation: isolate;
}

/* ─── BACKGROUND LAYERS ───────────────────────── */
.seo-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Soft dot grid */
.seo-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(11,29,58,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Center ambient glow */
.seo-bg-glow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(200,118,26,0.07) 0%,
    rgba(11,29,58,0.04)   45%,
    transparent 70%);
  filter: blur(60px);
  animation: breathe 7s ease-in-out infinite alternate;
}
@keyframes breathe {
  0%   { opacity: 0.5; transform: translate(-50%,-50%) scale(1);    }
  100% { opacity: 1;   transform: translate(-50%,-50%) scale(1.1);  }
}

/* Top-left accent */
.seo-bg-accent-tl {
  position: absolute;
  top: -120px; left: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(200,118,26,0.08) 0%, transparent 70%);
  filter: blur(70px);
  animation: floatTL 9s ease-in-out infinite alternate;
}
@keyframes floatTL {
  0%   { transform: translate(0,0); }
  100% { transform: translate(30px,40px); }
}

/* Bottom-right accent */
.seo-bg-accent-br {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(11,29,58,0.07) 0%, transparent 70%);
  filter: blur(70px);
  animation: floatBR 11s ease-in-out infinite alternate;
}
@keyframes floatBR {
  0%   { transform: translate(0,0); }
  100% { transform: translate(-30px,-30px); }
}

/* Scanline — subtle */
.seo-bg-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200,118,26,0.18) 30%,
    rgba(200,118,26,0.30) 50%,
    rgba(200,118,26,0.18) 70%,
    transparent 100%);
  animation: scanline 10s linear infinite;
  opacity: 0.5;
}
@keyframes scanline {
  0%   { top: -2px; }
  100% { top: 100%; }
}

/* Floating particles */
.seo-particles { position: absolute; inset: 0; overflow: hidden; }
.seo-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--tech-orange);
  opacity: 0;
  animation: particleFade var(--dur, 6s) ease-in-out var(--delay, 0s) infinite;
}
@keyframes particleFade {
  0%   { opacity: 0;    transform: translateY(0) scale(1); }
  20%  { opacity: 0.35; }
  80%  { opacity: 0.12; }
  100% { opacity: 0;    transform: translateY(-80px) scale(0.5); }
}

/* ─── SECTION INNER ───────────────────────────── */
.seo-benefits-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ──────────────────────────────────── */
.seo-benefits-header {
  text-align: center;
  margin-bottom: 64px;
}

.seo-benefits-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--tech-orange);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 6px 18px;
  border: 1px solid rgba(200,118,26,0.28);
  border-radius: 2px;
  background: rgba(200,118,26,0.06);
}
.seo-benefits-eyebrow::before,
.seo-benefits-eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--tech-orange);
  opacity: 0.5;
}

/* ✦ NEW: Fraunces serif display heading */
.seo-benefits-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: var(--tech-navy);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  text-transform: none;
}
.seo-benefits-title span {
  font-style: italic;
  color: var(--tech-orange);
  text-shadow:
    0 0 28px rgba(200,118,26,0.22),
    0 0 60px rgba(200,118,26,0.08);
}

.seo-benefits-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── GRID ────────────────────────────────────── */
.seo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ═══════════════════════════════════════════════
   CARD — Premium Light with Blink + Effects
   ═══════════════════════════════════════════════ */
.seo-benefit-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgba(200,118,26,0.14);
  border-radius: 10px;
  padding: 36px 28px 32px;
  box-shadow:
    0 2px 12px rgba(11,29,58,0.06),
    0 1px 3px  rgba(11,29,58,0.04);
  overflow: hidden;
  cursor: default;

  /* ✦ Continuous blink animation */
  animation: cardBlink 3s ease-in-out infinite;
  transition: transform 0.36s cubic-bezier(.23,1,.32,1), box-shadow 0.36s ease;
}

/* Staggered blink per card */
.seo-benefit-card:nth-child(1) { animation-delay: 0.0s; }
.seo-benefit-card:nth-child(2) { animation-delay: 0.5s; }
.seo-benefit-card:nth-child(3) { animation-delay: 1.0s; }
.seo-benefit-card:nth-child(4) { animation-delay: 1.5s; }
.seo-benefit-card:nth-child(5) { animation-delay: 2.0s; }
.seo-benefit-card:nth-child(6) { animation-delay: 2.5s; }

@keyframes cardBlink {
  0%   {
    border-color: rgba(200,118,26,0.14);
    box-shadow: 0 2px 12px rgba(11,29,58,0.06), 0 1px 3px rgba(11,29,58,0.04);
  }
  50%  {
    border-color: rgba(200,118,26,0.50);
    box-shadow:
      0 0 18px rgba(200,118,26,0.18),
      0 6px 24px rgba(11,29,58,0.09);
  }
  100% {
    border-color: rgba(200,118,26,0.14);
    box-shadow: 0 2px 12px rgba(11,29,58,0.06), 0 1px 3px rgba(11,29,58,0.04);
  }
}

/* ── Gold top shimmer line (blinks in sync) ── */
.seo-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--tech-orange) 30%,
    var(--tech-orange-2) 50%,
    var(--tech-orange) 70%,
    transparent 100%);
  opacity: 0;
  border-radius: 10px 10px 0 0;
  animation: topLineBlink 3s ease-in-out infinite;
}
.seo-benefit-card:nth-child(1)::before { animation-delay: 0.0s; }
.seo-benefit-card:nth-child(2)::before { animation-delay: 0.5s; }
.seo-benefit-card:nth-child(3)::before { animation-delay: 1.0s; }
.seo-benefit-card:nth-child(4)::before { animation-delay: 1.5s; }
.seo-benefit-card:nth-child(5)::before { animation-delay: 2.0s; }
.seo-benefit-card:nth-child(6)::before { animation-delay: 2.5s; }

@keyframes topLineBlink {
  0%   { opacity: 0; }
  50%  { opacity: 1; box-shadow: 0 0 8px rgba(200,118,26,0.4); }
  100% { opacity: 0; }
}

/* ── Bottom-right corner accent ── */
.seo-benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 22px; height: 22px;
  border-bottom: 2px solid var(--tech-orange);
  border-right:  2px solid var(--tech-orange);
  opacity: 0.2;
  transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  border-radius: 0 0 10px 0;
}

/* ── Hover: lift + freeze blink ── */
.seo-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 28px rgba(200,118,26,0.16),
    0 16px 40px rgba(11,29,58,0.12) !important;
  border-color: rgba(200,118,26,0.60) !important;
  animation-play-state: paused;
}
.seo-benefit-card:hover::after {
  opacity: 1;
  width: 34px; height: 34px;
}

/* Inner glow (always subtle, brightens on hover) */
.seo-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left,
    rgba(200,118,26,0.05) 0%,
    transparent 65%);
  opacity: 0.4;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.seo-benefit-card:hover .seo-card-glow { opacity: 1; }

/* ─── ICON WRAP ───────────────────────────────── */
.seo-card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid rgba(200,118,26,0.20);
  border-radius: 10px;
  background: linear-gradient(135deg,
    rgba(200,118,26,0.08) 0%,
    rgba(232,149,26,0.04) 100%);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Icon shimmer sweep */
.seo-card-icon-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(200,118,26,0.12) 50%,
    transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.seo-benefit-card:hover .seo-card-icon-wrap::after {
  transform: translateX(100%);
}

.seo-benefit-card:hover .seo-card-icon-wrap {
  background: linear-gradient(135deg,
    rgba(200,118,26,0.14) 0%,
    rgba(232,149,26,0.08) 100%);
  border-color: rgba(200,118,26,0.50);
  box-shadow: 0 0 18px rgba(200,118,26,0.18);
}

.seo-card-icon-wrap .material-symbols-outlined {
  font-size: 26px;
  color: var(--tech-orange);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.seo-benefit-card:hover .seo-card-icon-wrap .material-symbols-outlined {
  filter: drop-shadow(0 0 6px rgba(200,118,26,0.5));
  transform: scale(1.1);
}

/* ─── CARD NUMBER ─────────────────────────────── */
.seo-card-number {
  position: absolute;
  top: 18px; right: 20px;
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
  color: rgba(200,118,26,0.07);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
  user-select: none;
}
.seo-benefit-card:hover .seo-card-number {
  color: rgba(200,118,26,0.14);
}

/* ─── CARD TITLE ──────────────────────────────── */
.seo-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--tech-navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.seo-benefit-card:hover .seo-card-title {
  color: #061020;
}

/* ─── DIVIDER ─────────────────────────────────── */
.seo-card-divider {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--tech-orange), var(--tech-orange-2));
  border-radius: 2px;
  margin-bottom: 14px;
  transition: width 0.35s ease;
  box-shadow: 0 0 6px rgba(200,118,26,0.30);
}
.seo-benefit-card:hover .seo-card-divider {
  width: 52px;
}

/* ─── CARD TEXT ───────────────────────────────── */
.seo-card-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.78;
  letter-spacing: 0.005em;
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .seo-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .seo-benefits-section { padding: 70px 0; }
  .seo-benefits-grid    { grid-template-columns: 1fr; gap: 16px; }
  .seo-benefits-header  { margin-bottom: 44px; }
  .seo-benefit-card     { padding: 28px 20px 24px; }
  .seo-bg-glow-center   { width: 300px; height: 300px; }
  .seo-benefits-title   { font-size: 30px; }
}
/*releated post */
/* ================================
   [START] 22. CITY PRESENCE SECTION (Updated)
   Lists for Top Cities/Costs
   ----------------------------------------------------------------- */

/*releated post */
/* ================================
   [START] 22. CITY PRESENCE SECTION (Updated)
   Lists for Top Cities/Costs
   ----------------------------------------------------------------- */

/* Specific container for City Presence Section */
body .city-presence-section {
    padding: 60px 20px;
    background: var(--bg-white);
    border-top: 1px solid rgba(0,0,0,0.05); /* Subtle separator */

    /* ✨ ADDED: Soft ambient lighting from top-left and bottom-right */
    position: relative;
    overflow: hidden;
}

/* ✨ ADDED: Top-left warm glow */
body .city-presence-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(244, 121, 32, 0.07), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* ✨ ADDED: Bottom-right cool glow */
body .city-presence-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(0, 36, 99, 0.08), transparent 65%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

/* Container that holds all city groups */
body .city-presence-container {
    max-width: var(--container-width);
    margin: 0 auto;

    /* ✨ ADDED: Keep content above bg glows */
    position: relative;
    z-index: 1;
}

/* Space between each group */
body .city-presence-group {
    margin-bottom: 40px; /* Space between the 3 groups */
}

/* Title styling for each category */
body .city-presence-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark); /* Uses your Navy Blue variable */
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0,0,0,0.05); /* Optional underline for style */
    padding-bottom: 10px;
    display: inline-block;

    /* ✨ ADDED: Gold shimmer underline replaces flat border */
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--brand-primary, #f47920), rgba(244, 121, 32, 0.15)) 1;
}

/* The Grid Layout for city lists */
body .city-presence-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive grid */
    column-gap: 40px;
    row-gap: 12px;
}

/* Styling for individual list items */
body .city-presence-list li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    color: var(--text-muted); /* Uses your Grey variable */
    line-height: 1.6;
    transition: color 0.2s;

    /* ✨ ADDED: Smooth left-slide on hover */
    transition: color 0.25s ease, padding-left 0.25s ease;
}

/* Hover Effect for the city links (interactive feel) */
body .city-presence-list li:hover {
    color: var(--brand-primary);
    cursor: pointer;

    /* ✨ ADDED: Slight indent on hover for interactivity feel */
    padding-left: 24px;
}

/* Custom Bullet Point - optional if needed, otherwise use .city-link */
body .city-presence-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0px;
    color: var(--brand-dark); /* Bullet color */
    font-size: 18px;
    line-height: 1.5;

    /* ✨ ADDED: Bullet glows orange on hover via parent */
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

/* ✨ ADDED: Bullet color + glow when list item is hovered */
body .city-presence-list li:hover::before {
    color: var(--brand-primary, #f47920);
    text-shadow: 0 0 8px rgba(244, 121, 32, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Stacks items in a single column on small screens */
    body .city-presence-list {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
    }

    /* Adjust title size for mobile */
    body .city-presence-title {
        font-size: 18px;
        border-bottom: none;
    }
}

/* [END] City Presence Section */


/* ================================================
   partnerships.css
   Luxury Premium Certified Partnerships Section
   Google Font used — add to <head>:
   <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap" rel="stylesheet">
   ================================================ */

/* ── CSS VARIABLES ─────────────────────────────── */
:root {
  --p-navy:          #05101f;
  --p-navy-mid:      #091828;
  --p-gold:          #D4A843;
  --p-gold-light:    #F0C866;
  --p-gold-dim:      rgba(212, 168, 67, 0.18);
  --p-gold-glow:     rgba(212, 168, 67, 0.30);
  --p-orange:        #E8621A;
  --p-white:         #FFFFFF;
  --p-silver:        #A8B8CC;
  --p-muted:         #5A7090;
  --p-card-bg:       rgba(12, 26, 48, 0.80);
  --p-card-border:   rgba(212, 168, 67, 0.16);
  --p-font-display:  'Cinzel', Georgia, serif;
  --p-font-body:     'DM Sans', system-ui, sans-serif;
  --p-marquee-speed: 38s;
}


/* ── SECTION SHELL ─────────────────────────────── */
.partnerships-section {
  position: relative;
  padding: 72px 0 60px;
  background: var(--p-navy);
  overflow: hidden;
  border-top:    1px solid rgba(212,168,67,0.14);
  border-bottom: 1px solid rgba(212,168,67,0.14);
}


/* ── AMBIENT ORB LIGHTING ───────────────────────── */
.partnerships-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.partnerships-orb--left {
  width: 520px;
  height: 380px;
  top: -80px;
  left: -140px;
  background: radial-gradient(ellipse,
    rgba(212,168,67,0.10) 0%,
    rgba(232,98,26,0.06) 40%,
    transparent 70%);
}
.partnerships-orb--right {
  width: 480px;
  height: 340px;
  bottom: -80px;
  right: -120px;
  background: radial-gradient(ellipse,
    rgba(26,58,110,0.18) 0%,
    rgba(212,168,67,0.05) 45%,
    transparent 70%);
}


/* ── DECORATIVE CORNER ACCENTS ─────────────────── */
.partnerships-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
  transition: opacity 0.4s ease;
}
.partnerships-section:hover .partnerships-corner { opacity: 0.9; }

.partnerships-corner--tl { top: 16px; left: 16px;
  border-top: 2px solid var(--p-gold); border-left: 2px solid var(--p-gold); }
.partnerships-corner--tr { top: 16px; right: 16px;
  border-top: 2px solid var(--p-gold); border-right: 2px solid var(--p-gold); }
.partnerships-corner--bl { bottom: 16px; left: 16px;
  border-bottom: 2px solid var(--p-gold); border-left: 2px solid var(--p-gold); }
.partnerships-corner--br { bottom: 16px; right: 16px;
  border-bottom: 2px solid var(--p-gold); border-right: 2px solid var(--p-gold); }


/* ── HEADER ────────────────────────────────────── */
.partnerships-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
  padding: 0 24px;
}

/* Eyebrow badge */
.partnerships-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--p-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--p-gold);
  background: rgba(212,168,67,0.07);
  border: 1px solid rgba(212,168,67,0.22);
  border-radius: 2px;
  padding: 6px 18px;
  margin-bottom: 18px;
}
.partnerships-badge__line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p-gold));
  opacity: 0.6;
}
.partnerships-badge__line:last-child {
  background: linear-gradient(90deg, var(--p-gold), transparent);
}

/* Main title */
.partnerships-title {
  font-family: var(--p-font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--p-white);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.partnerships-title--gold {
  color: var(--p-gold);
  text-shadow:
    0 0 24px rgba(212,168,67,0.45),
    0 0 60px rgba(212,168,67,0.15);
}

/* Subtitle */
.partnerships-subtitle {
  font-family: var(--p-font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--p-silver);
  line-height: 1.65;
  margin: 0;
  letter-spacing: 0.01em;
}


/* ── GOLD DIVIDER ───────────────────────────────── */
.partnerships-divider {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  max-width: 480px;
  padding: 0 24px;
}
.partnerships-divider::before,
.partnerships-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212,168,67,0.5) 50%,
    rgba(212,168,67,0.2));
}
.partnerships-divider::after {
  background: linear-gradient(90deg,
    rgba(212,168,67,0.2),
    rgba(212,168,67,0.5) 50%,
    transparent);
}
.partnerships-divider__gem {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--p-gold);
  transform: rotate(45deg);
  margin: 0 14px;
  box-shadow: 0 0 12px rgba(212,168,67,0.7);
  flex-shrink: 0;
}


/* ── MARQUEE WRAPPER ────────────────────────────── */
.partnerships-marquee-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Soft edge fade masks */
.partnerships-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 3;
  pointer-events: none;
}
.partnerships-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--p-navy) 0%, transparent 100%);
}
.partnerships-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--p-navy) 0%, transparent 100%);
}


/* ── MARQUEE TRACK ──────────────────────────────── */
.partnerships-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: partnershipsScroll var(--p-marquee-speed) linear infinite;
}
.partnerships-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes partnershipsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partnerships-marquee-set {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 10px;
  flex-shrink: 0;
}


/* ── LOGO CARD ──────────────────────────────────── */
.partnerships-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 76px;
  padding: 14px 24px;
  background: var(--p-card-bg);
  border: 1px solid var(--p-card-border);
  border-radius: 6px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color  0.35s ease,
    box-shadow    0.35s ease,
    transform     0.35s cubic-bezier(.23,1,.32,1);
}

/* Corner micro-accent */
.partnerships-logo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-top: 1px solid var(--p-gold);
  border-left: 1px solid var(--p-gold);
  opacity: 0.3;
  transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
}

/* Inner shimmer sweep on hover */
.partnerships-logo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(212,168,67,0.06) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

/* Logo image default: grayscale, dimmed */
.partnerships-logo-card img {
  max-height: 40px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.6);
  transition:
    filter    0.4s ease,
    transform 0.4s ease;
  display: block;
}

/* ── HOVER STATES ── */
.partnerships-logo-card:hover {
  border-color: rgba(212,168,67,0.50);
  box-shadow:
    0 0 20px rgba(212,168,67,0.18),
    0 8px 28px rgba(5,16,31,0.55);
  transform: translateY(-4px) scale(1.03);
}
.partnerships-logo-card:hover::before {
  opacity: 1;
  width: 22px;
  height: 22px;
}
.partnerships-logo-card:hover::after {
  transform: translateX(100%);
}
.partnerships-logo-card:hover img {
  filter: grayscale(0%) brightness(1.05);
  transform: scale(1.06);
}


/* ── BOTTOM TRUST LINE ──────────────────────────── */
.partnerships-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.partnerships-footer__text {
  font-family: var(--p-font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--p-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.partnerships-footer__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--p-gold);
  border-radius: 50%;
  opacity: 0.55;
  box-shadow: 0 0 6px rgba(212,168,67,0.6);
}


/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .partnerships-section { padding: 52px 0 44px; }
  .partnerships-title   { font-size: 22px; }
  .partnerships-subtitle{ font-size: 14px; }
  .partnerships-fade    { width: 80px; }
  .partnerships-logo-card { min-width: 130px; height: 68px; padding: 12px 18px; }
  .partnerships-logo-card img { max-height: 34px; max-width: 110px; }
  :root { --p-marquee-speed: 26s; }
}

@media (max-width: 480px) {
  .partnerships-title { font-size: 19px; }
  .partnerships-logo-card { min-width: 110px; height: 60px; padding: 10px 14px; }
  .partnerships-logo-card img { max-height: 28px; }
  .partnerships-fade { width: 50px; }
}


/* =====================================================
   stats-intro.css
   Luxury Light — Professional SEO Stats + Intro Section
   
   Google Font (add to <head>):
   <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Outfit:wght@300;400;500;600&display=swap" rel="stylesheet">
   ===================================================== */


/* =====================================================
   stats-intro.css
   Luxury Light — Professional SEO Stats + Intro Section
   
   Google Font (add to <head>):
   <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Outfit:wght@300;400;500;600&display=swap" rel="stylesheet">
   ===================================================== */


/* ── VARIABLES ──────────────────────────────────── */
:root {
  --si-white:        #FFFFFF;
  --si-cream:        #FDFCF9;
  --si-bg:           #F7F5F1;
  --si-navy:         #0B1D3A;
  --si-navy-mid:     #1A3260;
  --si-blue-accent:  #1E4DB7;

  --si-gold:         #C8922A;
  --si-gold-light:   #E5B84A;
  --si-gold-pale:    rgba(200, 146, 42, 0.10);
  --si-gold-border:  rgba(200, 146, 42, 0.22);

  --si-text-main:    #0D1F3C;
  --si-text-body:    #3D4E68;
  --si-text-muted:   #7A8FAA;

  --si-card-bg:      #FFFFFF;
  --si-card-shadow:  0 4px 24px rgba(11,29,58,0.08), 0 1px 4px rgba(11,29,58,0.05);
  --si-card-hover:   0 12px 40px rgba(11,29,58,0.13), 0 2px 8px rgba(11,29,58,0.06);

  --si-font-display: 'Cormorant Garamond', Georgia, serif;
  --si-font-body:    'Outfit', system-ui, sans-serif;
}


/* ── SECTION SHELL ──────────────────────────────── */
.si-section {
  position: relative;
  padding: 96px 24px 100px;
  background: var(--si-cream);
  overflow: hidden;
}


/* ── BACKGROUND GEOMETRY ────────────────────────── */
.si-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.si-bg-orb--top {
  width: 700px;
  height: 500px;
  top: -200px;
  right: -180px;
  background: radial-gradient(ellipse,
    rgba(200,146,42,0.07) 0%,
    rgba(30,77,183,0.04) 45%,
    transparent 70%);
  filter: blur(60px);
}
.si-bg-orb--bottom {
  width: 500px;
  height: 400px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(ellipse,
    rgba(11,29,58,0.05) 0%,
    rgba(200,146,42,0.04) 50%,
    transparent 70%);
  filter: blur(70px);
}

/* Subtle dot-grid texture */
.si-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(11,29,58,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,
    transparent 20%, black 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,
    transparent 20%, black 80%);
}

/* Corner accent brackets */
.si-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.45;
}
.si-corner--tl { top: 20px; left: 20px;
  border-top: 2px solid var(--si-gold); border-left: 2px solid var(--si-gold); }
.si-corner--tr { top: 20px; right: 20px;
  border-top: 2px solid var(--si-gold); border-right: 2px solid var(--si-gold); }


/* ── CONTAINER ──────────────────────────────────── */
.si-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}


/* ── STAT CARDS GRID ────────────────────────────── */
.si-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

/* ── INDIVIDUAL CARD ── */
.si-card {
  position: relative;
  background: var(--si-card-bg);
  border: 1px solid rgba(11,29,58,0.07);
  border-radius: 10px;
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--si-card-shadow);
  overflow: hidden;
  cursor: default;
  transition:
    transform     0.36s cubic-bezier(.23,1,.32,1),
    box-shadow    0.36s ease,
    border-color  0.36s ease;

  /* Entrance animation */
  opacity: 0;
  transform: translateY(24px);
  animation: siCardIn 0.65s cubic-bezier(.23,1,.32,1) forwards;
}
.si-card[data-index="0"] { animation-delay: 0.05s; }
.si-card[data-index="1"] { animation-delay: 0.15s; }
.si-card[data-index="2"] { animation-delay: 0.25s; }
.si-card[data-index="3"] { animation-delay: 0.35s; }

@keyframes siCardIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Gold accent line at top — always visible, pulses */
.si-card__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--si-gold) 30%,
    var(--si-gold-light) 50%,
    var(--si-gold) 70%,
    transparent 100%);
  opacity: 1;
  animation: siTopLinePulse 2.4s ease-in-out infinite;
}

/* Stagger the blink delay per card */
.si-card[data-index="0"] .si-card__top-line { animation-delay: 0.0s; }
.si-card[data-index="1"] .si-card__top-line { animation-delay: 0.6s; }
.si-card[data-index="2"] .si-card__top-line { animation-delay: 1.2s; }
.si-card[data-index="3"] .si-card__top-line { animation-delay: 1.8s; }

@keyframes siTopLinePulse {
  0%   { opacity: 0.15; box-shadow: none; }
  50%  { opacity: 1;    box-shadow: 0 0 14px 2px rgba(200,146,42,0.55); }
  100% { opacity: 0.15; box-shadow: none; }
}

/* Soft inner glow — always on, pulses */
.si-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top center,
    rgba(200,146,42,0.10) 0%,
    transparent 65%);
  opacity: 1;
  pointer-events: none;
  animation: siGlowPulse 2.4s ease-in-out infinite;
}

.si-card[data-index="0"] .si-card__glow { animation-delay: 0.0s; }
.si-card[data-index="1"] .si-card__glow { animation-delay: 0.6s; }
.si-card[data-index="2"] .si-card__glow { animation-delay: 1.2s; }
.si-card[data-index="3"] .si-card__glow { animation-delay: 1.8s; }

@keyframes siGlowPulse {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Card border blink */
.si-card[data-index="0"] { animation: siCardIn 0.65s cubic-bezier(.23,1,.32,1) 0.05s forwards, siCardBorderBlink 2.4s ease-in-out 0.0s infinite; }
.si-card[data-index="1"] { animation: siCardIn 0.65s cubic-bezier(.23,1,.32,1) 0.15s forwards, siCardBorderBlink 2.4s ease-in-out 0.6s infinite; }
.si-card[data-index="2"] { animation: siCardIn 0.65s cubic-bezier(.23,1,.32,1) 0.25s forwards, siCardBorderBlink 2.4s ease-in-out 1.2s infinite; }
.si-card[data-index="3"] { animation: siCardIn 0.65s cubic-bezier(.23,1,.32,1) 0.35s forwards, siCardBorderBlink 2.4s ease-in-out 1.8s infinite; }

@keyframes siCardBorderBlink {
  0%   { border-color: rgba(11,29,58,0.07); box-shadow: var(--si-card-shadow); }
  50%  { border-color: rgba(200,146,42,0.40); box-shadow: 0 4px 24px rgba(11,29,58,0.08), 0 0 18px rgba(200,146,42,0.18); }
  100% { border-color: rgba(11,29,58,0.07); box-shadow: var(--si-card-shadow); }
}

/* Hover state */
.si-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--si-card-hover);
  border-color: var(--si-gold-border);
}

/* Number */
.si-card__number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
  line-height: 1;
}

.si-counter {
  font-family: var(--si-font-display);
  font-size: 54px;
  font-weight: 700;
  color: var(--si-navy);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--si-navy) 0%, var(--si-blue-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.4s ease;
}

.si-card:hover .si-counter {
  background: linear-gradient(135deg, var(--si-gold) 0%, var(--si-gold-light) 60%, var(--si-navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.si-card__suffix {
  font-family: var(--si-font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--si-gold);
  -webkit-text-fill-color: var(--si-gold);
}

/* Label */
.si-card__label {
  font-family: var(--si-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--si-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* Icon */
.si-card__icon {
  position: absolute;
  bottom: 14px;
  right: 16px;
  color: rgba(200,146,42,0.20);
  transition: color 0.3s ease, transform 0.3s ease;
}
.si-card:hover .si-card__icon {
  color: rgba(200,146,42,0.50);
  transform: scale(1.1);
}


/* ── CONTENT BLOCK ──────────────────────────────── */
.si-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;

  opacity: 0;
  transform: translateY(20px);
  animation: siContentIn 0.75s cubic-bezier(.23,1,.32,1) 0.5s forwards;
}

@keyframes siContentIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Eyebrow */
.si-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--si-font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--si-gold);
  margin-bottom: 20px;
}
.si-eyebrow__bar {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--si-gold));
  opacity: 0.7;
}
.si-eyebrow__bar:last-child {
  background: linear-gradient(90deg, var(--si-gold), transparent);
}

/* Main heading */
.si-heading {
  font-family: var(--si-font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--si-navy);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.si-heading__em {
  font-style: italic;
  color: var(--si-gold);
  position: relative;
  display: inline-block;
}
/* Underline stroke on italic part */
.si-heading__em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--si-gold), var(--si-gold-light), transparent);
  border-radius: 1px;
}

/* Rule / divider */
.si-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 28px auto 32px;
  max-width: 320px;
}
.si-rule::before,
.si-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(200,146,42,0.45) 60%,
    rgba(200,146,42,0.2));
}
.si-rule::after {
  background: linear-gradient(90deg,
    rgba(200,146,42,0.2),
    rgba(200,146,42,0.45) 40%,
    transparent);
}
.si-rule__gem {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--si-gold);
  transform: rotate(45deg);
  margin: 0 14px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(200,146,42,0.55);
}

/* Body text */
.si-body {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 36px;
}

.si-body p {
  font-family: var(--si-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--si-text-body);
  line-height: 1.80;
  margin-bottom: 18px;
}
.si-body p:last-child { margin-bottom: 0; }

.si-body strong {
  font-weight: 600;
  color: var(--si-navy);
}

/* ── CTA BUTTON ─────────────────────────────────── */
.si-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 16px 40px;
  background: var(--si-navy);
  color: var(--si-white);
  font-family: var(--si-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(11,29,58,0.22),
    0 1px 4px rgba(11,29,58,0.12);
  transition:
    transform   0.35s cubic-bezier(.23,1,.32,1),
    box-shadow  0.35s ease,
    background  0.35s ease;
}
.si-cta:hover {
  background: linear-gradient(135deg, var(--si-navy-mid) 0%, var(--si-blue-accent) 100%);
  transform: translateY(-3px);
  box-shadow:
    0 10px 36px rgba(11,29,58,0.28),
    0 0 0 1px rgba(200,146,42,0.35);
  color: var(--si-white);
  text-decoration: none;
}

.si-cta__text { position: relative; z-index: 1; }

.si-cta__arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.si-cta:hover .si-cta__arrow { transform: translateX(4px); }

/* Gold shimmer sweep */
.si-cta__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(200,146,42,0.14) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.65s ease;
}
.si-cta:hover .si-cta__shine { transform: translateX(100%); }


/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .si-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .si-counter     { font-size: 46px; }
}

@media (max-width: 768px) {
  .si-section  { padding: 72px 20px 80px; }
  .si-cards-grid { gap: 14px; margin-bottom: 56px; }
  .si-card     { padding: 26px 18px 24px; }
  .si-counter  { font-size: 40px; }
  .si-card__suffix { font-size: 24px; }
  .si-heading  { font-size: 30px; }
  .si-body p   { font-size: 15px; }
  .si-body     { text-align: left; }
}

@media (max-width: 520px) {
  .si-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .si-card       { padding: 22px 14px 20px; }
  .si-counter    { font-size: 36px; }
  .si-card__suffix { font-size: 20px; }
  .si-card__label  { font-size: 11.5px; }
  .si-heading    { font-size: 26px; }
}