/* Custom Styles for About Page */
.hero-about {
    background: linear-gradient(135deg, #0396FF 0%, #0D47A1 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero-about::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
}

.hero-about img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.hero-about img:hover {
    transform: rotate(0);
}

.section-title {
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #0396FF;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.story-section {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
}

.story-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(3, 150, 255, 0.1) 0%, rgba(13, 71, 161, 0.1) 100%);
    border-radius: 0 0 0 100%;
}

.vision-section {
    padding: 100px 0;
    background: #fff;
}

.vision-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    border-top: 5px solid #0396FF;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0396FF 0%, #0D47A1 100%);
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
}

.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f9 100%);
    position: relative;
}

.process-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0396FF 0%, #0D47A1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    z-index: 2;
}

.team-section {
    padding: 100px 0;
    background: #fff;
}

.team-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-card .team-image {
    height: 250px;
    overflow: hidden;
}

.team-card .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    position: relative;
    background: white;
    padding: 30px 20px;
    text-align: center;
}

.team-social {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.team-card:hover .team-social {
    bottom: 20px;
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0396FF 0%, #0D47A1 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    transform: translateY(-5px);
}

.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f9 100%);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    padding: 30px;
    margin-top: 50px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    position: absolute;
    top: -30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    position: absolute;
    top: 15px;
    right: 30px;
    color: #FFD700;
}

.testimonial-content {
    margin-top: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 60px;
    color: #0396FF;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.testimonial-author-info {
    margin-left: 15px;
}

.faq-section {
    padding: 100px 0;
    background: #fff;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 20px 25px;
    background: white;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #0396FF 0%, #0D47A1 100%);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-size: 18px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0396FF 0%, #0D47A1 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.btn-light {
    background: white;
    color: #0D47A1;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: white;
    color: #0396FF;
}

.btn-outline-light {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.floating-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.floating-bubble:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-bubble:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.floating-bubble:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: 2s;
}

.floating-bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}