
/* Hero Section Container */
.hero-section {
    /* background-color: #fdb813; Bright orange/yellow background */
    background: linear-gradient(135deg, #3e008e, #5b00b3);
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Left Content Area */
.hero-content {
    flex: 1;
    max-width: 600px;
}

/* Badge Container */
.badge-container {
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}

.badge-success {
    background-color: #2ecc71; /* Green */
    color: white;
}

.badge-light {
    background-color: white;
    color: #333;
}

/* Heading */
.hero-heading {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Description */
.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #eeeeee;
    margin-bottom: 20px;
}

/* CTA Text */
.cta-text {
    font-size: 18px;
    font-weight: bold;
    color: #e4e4e4;
    margin-bottom: 25px;
}

/* Buttons */
.button-container {
    display: flex;
    gap: 15px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff0000; /* Red */
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #cc0000;
}

.btn-secondary {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

/* Right Image Area */
.hero-image-container {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .button-container {
        justify-content: center;
    }

    .hero-image-container {
        max-width: 100%;
        margin-top: 30px;
    }
}
/*  */

.dashboard-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #EA4335;
}

.section-description {
    text-align: center;
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-image-container {
    width: 100%;
    margin-bottom: 2rem;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dashboard-caption {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.metrics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.metric-card {
    flex: 1;
    min-width: 220px;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.metric-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.metric-card p {
    font-size: 1.2rem;
    line-height: 1.4;
}

.bg-primary {
    background-color: #0d6efd;
    color: white;
}

.bg-danger {
    background-color: #dc3545;
    color: white;
}

.bg-warning {
    background-color: #ffc107;
    color: #333;
}

.bg-success {
    background-color: #198754;
    color: white;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .metrics-grid {
        gap: 1rem;
    }
    
    .metric-card {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .dashboard-section {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .metrics-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .metric-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .dashboard-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .section-heading {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .metric-card h4 {
        font-size: 1.2rem;
    }
}

/*  */

.section-title-container {
    width: 100%;
    padding: 0 14rem;
    margin: 5rem 0;
}

.section-title {
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #333;
    border-radius: 4px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    max-width: 1200px;
    margin: 0 auto;
    /* line-height: 1.4; */
    
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .section-title-container {
        margin: 3rem 0;
    }
    
    .section-title {
        font-size: 24px;
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title-container {
        margin: 2rem 0;
    }
    
    .section-title {
        font-size: 20px;
        padding: 1rem;
    }
}

/*  */

/*  */

.benefits-diagram-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.diagram-title {
    text-align: center;
    /* font-size: 1.8rem; */
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.diagram-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Arrows section */
.arrows-container {
    display: flex;
    justify-content: center;
    position: relative;
    height: 60px;
    margin-bottom: 10px;
}

.arrow {
    width: 8%;
    height: 60px;
    position: relative;
}

.arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 45px;
    transform: translateX(-50%);
}

.arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 15px solid;
}

.arrow-blue::before, .arrow-blue::after {
    background-color: #6f91ec;
    border-top-color: #6f91ec;
}

.arrow-cyan::before, .arrow-cyan::after {
    background-color: #4ac7ec;
    border-top-color: #4ac7ec;
}

.arrow-green::before, .arrow-green::after {
    background-color: #b5e58f;
    border-top-color: #b5e58f;
}

.arrow-yellow::before, .arrow-yellow::after {
    background-color: #ffde7a;
    border-top-color: #ffde7a;
}

/* Cards grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.card-blue {
    background-color: #e6eeff;
    border: 1px solid #d0dbff;
}

.card-cyan {
    background-color: #e6f9ff;
    border: 1px solid #cceeff;
}

.card-green {
    background-color: #f0fae5;
    border: 1px solid #e3f6d3;
}

.card-yellow {
    background-color: #fffaeb;
    border: 1px solid #fff2cc;
}

.icon-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.benefit-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.4;
}

.footnote {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    margin-top: 2rem;
}

/* SVG Icons */
.icon {
    width: 30px;
    height: 30px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .arrows-container {
        display: none; /* Hide arrows on mobile for cleaner display */
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
}
/*  */

.psychic-ads-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding: 20px 0;
}

.psychic-ads-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.psychic-ads-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.psychic-ads-section h1 {
    color: #EA4335;
    margin-bottom: 15px;
}

.psychic-ads-section .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.psychic-ads-section .cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
}

.psychic-ads-section .card-wrapper {
    padding: 10px;
    width: 33.333%;
    min-width: 300px;
}

.psychic-ads-section .psychic-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    min-height: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.psychic-ads-section .psychic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.psychic-ads-section .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.psychic-ads-section .card-icon {
    width: 40px;
    height: 40px;
    background-color: #f0e6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: #EA4335;
}

.psychic-ads-section .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #EA4335;
    margin-top: 0;
}

.psychic-ads-section .card-content {
    font-size: 0.95rem;
}
.psychic-ads-section .card-content p{
    font-size: 1.4rem;
}

.psychic-ads-section .highlight {
    font-weight: 600;
    color: #EA4335;
}

/* Bootstrap icon customization */
.psychic-ads-section .bs-icon {
    margin-right: 0;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .psychic-ads-section .card-wrapper {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .psychic-ads-section .card-wrapper {
        width: 100%;
    }
}
/*  */

/* Factors Section Custom Styling */
.factors-section {
    background-color: #f8f5ff;
    padding: 80px 0;
  }
  
  .factors-section h2 {
    color: #EA4335;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
  }
  
  .factors-section h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8a4baf, #EA4335);
  }
  
  .factor-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(74, 40, 130, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 75, 175, 0.1);
    height: 100%;
  }
  
  .factor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(74, 40, 130, 0.2);
  }
  
  .factor-image {
    text-align: center;
    margin-bottom: 20px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .factor-image img {
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .factor-card:hover .factor-image img {
    transform: scale(1.05);
  }
  
  .factor-title {
    color: #EA4335;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
  }
  
  .factor-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #8a4baf, #6a3a9c);
  }
  
  .factor-text {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  /* Ensuring this CSS doesn't affect other sections */
  .factors-section .container,
  .factors-section .row,
  .factors-section [class*="col-"] {
    box-sizing: border-box;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .factors-section h2 {
      font-size: 2.2rem;
    }
    
    .factor-title {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 768px) {
    .factors-section {
      padding: 60px 0;
    }
    
    .factors-section h2 {
      font-size: 1.8rem;
    }
    
    .factor-card {
      margin-bottom: 20px;
    }
  }