/* About Page Styles */

/* Testimonials Section Styles */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.shadow-hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.testimonial-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.testimonial-rating {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    position: relative;
    z-index: 1;
}

.client-avatar img {
    border: 3px solid var(--bs-primary);
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-avatar img {
    transform: scale(1.1);
}

.testimonial-controls {
    margin-top: 30px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--bs-primary);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.nav-prev, .nav-next {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-prev {
    left: -25px;
}

.nav-next {
    right: -25px;
}

.nav-prev:hover, .nav-next:hover {
    background-color: var(--bs-primary);
    color: white;
}

/* Call to Action Section Styles */
.cta-section {
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.9) 0%, rgba(78, 68, 206, 0.8) 100%);
    z-index: -1;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for testimonials and CTA */
@media (max-width: 991.98px) {
    .testimonial-nav {
        display: none;
    }
    
    .cta-section {
        min-height: 350px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-card {
        margin-bottom: 15px;
    }
    
    .cta-section {
        min-height: 300px;
    }
    
    .cta-buttons .btn {
        padding: 10px 20px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-shape {
        width: 70px;
        height: 70px;
    }
    
    .client-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .cta-section {
        min-height: 250px;
    }
}

/* Hero Section Styles */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.about-hero .z-index-1 {
    z-index: 1;
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

/* About Company Section Styles */
.about-company-section .about-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.about-company-section .experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #4e44ce 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
}

.about-company-section .experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-company-section .experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-company-section .stats-card {
    transition: all 0.3s ease;
}

.about-company-section .stats-card:hover {
    transform: translateY(-10px);
}

.about-company-section .icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Mission Vision Values Section Styles */
.mission-vision-section .nav-pills .nav-link {
    color: var(--bs-dark);
    background-color: transparent;
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.mission-vision-section .nav-pills .nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #4e44ce 100%);
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.3);
}

.mission-vision-section .tab-content {
    transition: all 0.3s ease;
}

.mission-vision-section .feature-list {
    list-style: none;
    padding-left: 0;
}

.mission-vision-section .feature-list li {
    margin-bottom: 10px;
}

.mission-vision-section .accordion-button {
    box-shadow: none;
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

.mission-vision-section .accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    box-shadow: none;
}

/* Team Section Styles */
.team-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
}

.team-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: scale(1);
}

.team-social .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--bs-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social .social-icon:hover {
    background-color: var(--bs-primary);
    color: white;
    transform: translateY(-5px);
}

.team-content {
    background-color: white;
}

.team-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Technologies Section Styles */
.technologies-section {
    position: relative;
    overflow: hidden;
}

.tech-filter {
    margin-bottom: 2rem;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #4e44ce 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.3);
}

.tech-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bs-primary);
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.2);
}

.tech-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tech-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--bs-primary-rgb), 0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.tech-card:hover .tech-info {
    opacity: 1;
    transform: scale(1);
}

.tech-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Timeline Section Styles */
.timeline-wrapper {
    position: relative;
    padding: 50px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--bs-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 40px;
    clear: both;
}

.timeline-item.right {
    float: right;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    right: -9px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 4px solid var(--bs-primary);
    z-index: 1;
}

.timeline-item.right .timeline-dot {
    right: auto;
    left: -11px;
}

.timeline-content {
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #4e44ce 100%);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #4e44ce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Section Title Styles */
.section-title .subtitle {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .about-company-section .stats-card {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        max-width: 100% !important;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }
    
    .timeline-item.right {
        float: none;
        padding-left: 50px;
    }
    
    .timeline-dot {
        left: 11px;
        right: auto;
    }
    
    .timeline-item.right .timeline-dot {
        left: 11px;
    }
    
    /* Mobile styles for tech cards */
    .tech-card {
        padding: 1rem 0.5rem;
    }
    
    .tech-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .tech-name {
        font-size: 0.9rem;
    }
    
    .tech-info {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        width: 80%;
        height: auto;
        max-height: 80%;
        border-radius: 1rem;
        z-index: 1000;
        padding: 1.5rem;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
    }
    
    .tech-info.show {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }
    
    .tech-card:hover .tech-info {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    
    .tech-info.show p {
        font-size: 1rem;
    }
    
    /* Overlay for mobile tech info */
    .tech-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .tech-overlay.show {
        opacity: 1;
        visibility: visible;
    }
}

/* Animation Styles */
.counter {
    font-weight: 700;
}

/* Custom Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}
/* Partner Section Styles */
.partner-section {
    position: relative;
    overflow: hidden;
    background-color: #f8fafc;
}

/* Partner Card with Glassmorphism Effect */
.partner-card {
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    overflow: hidden;
    transition: all 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.2);
}

.partner-inner {
    position: relative;
    z-index: 2;
}

/* Partner Logo Styling */
.partner-logo-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #4e44ce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.3);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-circle {
    transform: scale(1.1) rotate(10deg);
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #4e44ce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Partner Features Styling */
.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #4e44ce 100%);
    color: white;
    transform: rotate(360deg);
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Decorative Shapes */
.partner-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1), rgba(78, 68, 206, 0.05));
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(78, 68, 206, 0.1), rgba(var(--bs-primary-rgb), 0.05));
    bottom: -50px;
    right: -50px;
}

/* Partner Image with 3D Effect */
.partner-image-container {
    padding: 20px;
}

.partner-image-wrapper {
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.partner-main-image {
    transform: rotateY(-5deg);
    transition: all 0.5s ease;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.2);
}

.partner-image-wrapper:hover .partner-main-image {
    transform: rotateY(0deg);
}

.image-reflection {
    position: absolute;
    bottom: -20%;
    left: 5%;
    width: 90%;
    height: 20%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    transform: rotateX(180deg) rotateY(-5deg);
    opacity: 0.5;
    filter: blur(5px);
    transition: all 0.5s ease;
}

.partner-image-wrapper:hover .image-reflection {
    transform: rotateX(180deg) rotateY(0deg);
}

/* Floating Stat Cards */
.partner-stat-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px;
    width: 120px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 3;
}

.stat-card-1 {
    top: 20px;
    right: 20px;
}

.stat-card-2 {
    bottom: 60px;
    left: 20px;
}

.partner-stat-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--bs-primary);
    margin-bottom: 5px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #333;
}

.stat-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Partnership Badge */
.partnership-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #4e44ce 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.3);
    z-index: 3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--bs-primary-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
    }
}

/* Modal Styling */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #4e44ce 100%);
}

.partner-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.partner-social .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-social .social-icon:hover {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #4e44ce 100%);
    color: white;
    transform: translateY(-3px);
}

.benefit-item {
    padding: 8px 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .partner-stat-card {
        width: 100px;
        padding: 10px;
    }
    
    .stat-icon {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .partnership-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .partner-image-container {
        margin-top: 30px;
    }
    
    .partner-stat-card {
        width: 90px;
        padding: 8px;
    }
    
    .stat-card-1 {
        top: 10px;
        right: 10px;
    }
    
    .stat-card-2 {
        bottom: 50px;
        left: 10px;
    }
    
    .stat-icon {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-text {
        font-size: 0.7rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-text h5 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
}