/* personal-advisory.css */

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
        font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.why-choose-us h2,
.annual-benefits h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.reasons-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-item,
.benefit-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover,
.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.reason-item i,
.benefit-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.reason-item h3,
.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Annual Benefits Section */
.annual-benefits {
    padding: 80px 20px;
}

/* Success Case Section */
.success-case {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.success-case h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.case-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.case-image {
    width: 50%;
    object-fit: cover;
}

.case-text {
    width: 50%;
    padding: 40px;
}

.case-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.case-text .author {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 20px;
}

.btn-video {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.btn-video:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .case-content {
        flex-direction: column;
    }

    .case-image,
    .case-text {
        width: 100%;
    }

    .case-image {
        height: 300px;
    }
}


/* Carousel */

.carousel {
    position: relative;
    width: 600px;
    
    overflow: hidden;
  }
  
  .case-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .case-image.active {
    opacity: 1;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
  }
  
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
  