/* Index Page Specific Styles */

/* Enhanced Hero Section */
.hero-section {
    padding: 150px 0 120px;
    position: relative;
    overflow: hidden;
    background-color: #f8fafc;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at top right, rgba(106, 17, 203, 0.08), transparent 70%),
        radial-gradient(circle at bottom left, rgba(37, 117, 252, 0.08), transparent 70%);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.03) 0%, rgba(37, 117, 252, 0.03) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse-slow 15s infinite alternate;
}

@keyframes pulse-slow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-weight: 800;
    margin-bottom: 25px;
    color: #1e293b;
    font-size: 3rem;
    line-height: 1.2;
    position: relative;
}

.hero-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 2px;
}

.hero-section h1 span {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-section p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 35px;
    max-width: 90%;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-primary {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border: none;
}

.hero-buttons .btn-outline-primary {
    border: 2px solid #2575fc;
    color: #2575fc;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 117, 252, 0.3);
}

.hero-image {
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    transform: rotateY(-5deg);
}

.hero-image::before {
    content: '';
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 20px;
    top: 25px;
    left: 25px;
    z-index: -1;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px dashed rgba(37, 117, 252, 0.3);
    border-radius: 20px;
    top: 15px;
    left: 15px;
    z-index: -1;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-image:hover img {
    transform: rotateY(0deg) translate(-8px, -8px);
}

.hero-image:hover::before {
    transform: translate(8px, 8px);
}

/* Floating elements for hero section */
.hero-floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2));
    filter: blur(20px);
    z-index: 0;
    animation: float 8s ease-in-out infinite alternate;
}

.hero-floating-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-floating-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.hero-floating-3 {
    width: 70px;
    height: 70px;
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* About Section */
.about-section {
    position: relative;
    background-color: #fff;
}

.section-title .subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.gradient-text {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 117, 252, 0.1);
    flex-shrink: 0;
}

.about-image {
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(37, 117, 252, 0.3);
    text-align: center;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.counter-wrapper {
    margin-top: 50px;
}

.counter-item {
    padding: 15px;
}

.counter-item h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
}

.counter-text {
    font-size: 0.8rem;
    color: #64748b;
}

/* Services Section */
.services-section {
    position: relative;
    background-color: #f8fafc;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, rgba(106, 17, 203, 0.05) 0%, rgba(37, 117, 252, 0.05) 100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    transform: rotateY(180deg);
}

.service-icon i {
    font-size: 30px;
    color: #2575fc;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #2575fc;
}

.btn-link {
    color: #2575fc;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #6a11cb;
}

.btn-link:hover::after {
    width: 100%;
}

.btn-link i {
    transition: all 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Products Section */
.products-section {
    position: relative;
    background-color: #fff;
}

.product-tabs .nav-pills {
    border-radius: 50px;
    background-color: #f1f5f9;
    padding: 5px;
    display: inline-flex;
    margin-bottom: 40px;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.product-tabs .nav-link {
    border-radius: 50px;
    padding: 10px 25px;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.product-tabs .nav-link.active {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
}

.product-tabs .tab-content {
    padding: 20px 0;
}

.product-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.feature-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.product-image {
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.product-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.product-image:hover img {
    transform: scale(1.03);
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px 15px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 120px;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(37, 117, 252, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    margin-bottom: 3px;
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-author-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/pattern.png');
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 600px;
    font-size: 0.95rem;
}

.cta-section .btn-light {
    background-color: #fff;
    color: #2575fc;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Gallery Section */
.gallery-section {
    position: relative;
    background-color: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.9));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    text-align: center;
    color: #fff;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #fff;
    color: #2575fc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-link:hover {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
    transform: scale(1.1);
}

/* Portfolio Section */
.portfolio-section {
    position: relative;
    background-color: #f8fafc;
}

.portfolio-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: #fff;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.8));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #2575fc;
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: scale(0);
}

.portfolio-card:hover .portfolio-link {
    transform: scale(1);
}

.portfolio-link:hover {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
}

.portfolio-category {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.portfolio-category .badge {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
}

.portfolio-title {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: 600;
    color: #1e293b;
}

.portfolio-desc {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 15px;
}

/* Blog Section */
.blog-section {
    position: relative;
    background-color: #fff;
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background-color: #fff;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
    z-index: 1;
}

.blog-date .day {
    font-size: 1.5rem;
    line-height: 1;
}

.blog-date .month {
    font-size: 0.8rem;
    opacity: 0.9;
}

.blog-category {
    margin-bottom: 10px;
}

.blog-category .badge {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-meta {
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.blog-author {
    display: flex;
    align-items: center;
}

.blog-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 70px 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .experience-badge {
        bottom: -15px;
        right: 20px;
        padding: 8px 15px;
    }
    
    .experience-badge .years {
        font-size: 1.6rem;
    }
    
    .counter-item h2 {
        font-size: 1.8rem;
    }
    
    .product-tabs .nav-pills {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .product-tabs .nav-link {
        margin-bottom: 8px;
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    
    .product-content {
        margin-bottom: 25px;
    }
    
    .gradient-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
        font-size: 0.9rem;
        padding: 0.5rem 1.5rem;
    }
    
    .counter-item h2 {
        font-size: 1.6rem;
    }
    
    .counter-text {
        font-size: 0.75rem;
    }
    
    .service-card {
        padding: 18px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .product-tabs .nav-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .section-title .subtitle {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .gradient-text {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .lead {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
    }
    
    .cta-section .btn-light {
        font-size: 0.9rem;
        padding: 10px 25px;
    }
}

/* Testimonial Carousel Styling */
.testimonial-indicators {
position: relative;
margin-top: 20px;
margin-bottom: 0;
}

.testimonial-indicators [data-bs-target] {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: rgba(37, 117, 252, 0.3);
border: none;
}

.testimonial-indicators .active {
background-color: #2575fc;
}

/* Stats Section Styling */
.parallax-section {
position: relative;
background: url('../assets/images/parallax-bg.jpg') no-repeat center center;
background-attachment: fixed;
background-size: cover;
color: #fff;
}

.parallax-overlay {
background: linear-gradient(90deg, rgba(106, 17, 203, 0.85), rgba(37, 117, 252, 0.85));
padding: 80px 0;
}

.stat-item {
padding: 20px;
text-align: center;
}

.stat-icon {
font-size: 2.5rem;
margin-bottom: 15px;
color: rgba(255, 255, 255, 0.9);
}

.stat-number {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 5px;
}

.stat-text {
font-size: 1rem;
opacity: 0.9;
}

/* FAQ Section Styling */
.accordion-item {
border: none;
margin-bottom: 15px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
font-weight: 600;
padding: 20px 25px;
background-color: #fff;
color: #1e293b;
}

.accordion-button:not(.collapsed) {
color: #2575fc;
background-color: #fff;
box-shadow: none;
}

.accordion-button:focus {
box-shadow: none;
border-color: rgba(37, 117, 252, 0.1);
}

.accordion-button::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232575fc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
padding: 20px 25px;
background-color: #fff;
}

/* Contact Section Styling */
.glass-card {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
border-radius: 15px;
box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-icon {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(90deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
border-radius: 50%;
font-size: 1.2rem;
color: #2575fc;
}

.contact-text h5 {
font-size: 1rem;
font-weight: 600;
}

.contact-text p {
font-size: 0.9rem;
color: #64748b;
}

.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(90deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
color: #2575fc;
transition: all 0.3s ease;
}

.social-links a:hover {
background: linear-gradient(90deg, #6a11cb, #2575fc);
color: #fff;
transform: translateY(-3px);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
color: #2575fc;
}

.form-floating > .form-control:focus {
border-color: rgba(37, 117, 252, 0.5);
box-shadow: 0 0 0 0.25rem rgba(37, 117, 252, 0.1);
}

/* Enhanced CTA Button */
.btn-hover-content {
display: inline-block;
transition: all 0.3s ease;
}

.btn-light:hover .btn-hover-content {
transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 767.98px) {
.parallax-overlay {
padding: 50px 0;
}

.stat-icon {
font-size: 2rem;
}

.stat-number {
font-size: 2rem;
}

.stat-text {
font-size: 0.9rem;
}

.accordion-button {
padding: 15px 20px;
}

.accordion-body {
padding: 15px 20px;
}

.contact-icon {
width: 40px;
height: 40px;
font-size: 1rem;
}
}


    /* Gallery Section Styles */
    .gallery-section {
        background: var(--light-color);
    }

    /* Filter Styles */
    .gallery-filter {
        margin-bottom: 2rem;
        padding: 1rem;
        border-radius: 50px;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        display: inline-flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .gallery-filter .btn {
        margin: 0 5px;
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .gallery-filter .btn.active {
        background: var(--primary-color);
        color: white;
        transform: scale(1.05);
    }

    /* Gallery Card Styles */
    .gallery-card {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        background: white;
        transition: all 0.3s ease;
    }

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

    .gallery-image {
        position: relative;
        overflow: hidden;
        aspect-ratio: 4/3;
    }

    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-card:hover .gallery-image img {
        transform: scale(1.1);
    }

    /* Overlay Styles */
    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(43, 76, 126, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
        padding: 2rem;
    }

    .gallery-card:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-info {
        text-align: center;
        color: white;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .gallery-card:hover .gallery-info {
        transform: translateY(0);
    }

    .gallery-info h5 {
        margin-bottom: 10px;
        font-size: 1.25rem;
        font-weight: 600;
    }

    .project-category {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 1rem;
    }

    /* Gallery Actions */
    .gallery-actions {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    .gallery-actions a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .gallery-actions a:hover {
        background: white;
        color: var(--primary-color);
        transform: scale(1.1);
    }

    /* Caption Styles */
    .gallery-caption {
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #666;
    }

    .gallery-caption span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Load More Button */
    .load-more {
        padding: 12px 30px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .load-more:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Responsive Styles */
    @media (max-width: 991px) {
        .gallery-filter {
            padding: 0.5rem;
        }

        .gallery-filter .btn {
            padding: 6px 15px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 768px) {
        .gallery-filter {
            flex-direction: column;
            gap: 5px;
            background: transparent;
            box-shadow: none;
        }

        .gallery-filter .btn {
            width: 100%;
            margin: 0;
        }

        .gallery-caption {
            flex-direction: column;
            gap: 5px;
            align-items: flex-start;
        }
    }

    /* Animation Classes */
    .fade-in {
        animation: fadeIn 0.5s ease-in;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Team Section Styles */
    .team-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        margin-bottom: 20px;
    }

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

    .team-image {
        position: relative;
        overflow: hidden;
        aspect-ratio: 1/1;
    }

    .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-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(43, 76, 126, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .team-card:hover .team-overlay {
        opacity: 1;
    }

    .team-social {
        display: flex;
        gap: 15px;
    }

    .team-social a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        transition: all 0.3s ease;
        transform: translateY(20px);
        opacity: 0;
    }

    .team-card:hover .team-social a {
        transform: translateY(0);
        opacity: 1;
    }

    .team-card:hover .team-social a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .team-card:hover .team-social a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .team-card:hover .team-social a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .team-social a:hover {
        background: white;
        color: var(--primary-color);
        transform: scale(1.1);
    }

    .team-info {
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .team-info h5 {
        margin-bottom: 5px;
        font-weight: 600;
    }

    .team-position {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    /* Features Section Styles */
    .feature-card {
        background: white;
        border-radius: 20px;
        padding: 2.5rem 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        overflow: hidden;
        height: 100%;
        z-index: 1;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #6a11cb, #2575fc);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: rgba(37, 117, 252, 0.1);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.8rem;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .feature-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #6a11cb, #2575fc);
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .feature-icon i {
        font-size: 2rem;
        color: #2575fc;
        transition: all 0.4s ease;
    }

    .feature-card:hover .feature-icon {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(10deg);
    }

    .feature-card:hover .feature-icon::after {
        opacity: 1;
    }

    .feature-card:hover .feature-icon i {
        color: white;
        transform: scale(1.2);
    }

    .feature-card h4 {
        margin-bottom: 1.2rem;
        font-weight: 700;
        font-size: 1.4rem;
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
    }

    .feature-card h4::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 0;
        height: 3px;
        background: white;
        transition: width 0.4s ease;
    }

    .feature-card:hover h4::after {
        width: 100%;
    }

    .feature-card p {
        color: #64748b;
        margin-bottom: 1.8rem;
        transition: all 0.3s ease;
        font-size: 1rem;
        line-height: 1.6;
    }

    .feature-card:hover h4,
    .feature-card:hover p {
        color: white;
    }

    .feature-hover {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .feature-card:hover .feature-hover {
        opacity: 1;
        transform: translateY(0);
    }
    
    .feature-hover .btn {
        border: 2px solid white;
        transition: all 0.3s ease;
    }
    
    .feature-hover .btn:hover {
        background: white;
        color: #2575fc;
        transform: translateY(-3px);
    }

    /* Technologies Section Styles */
    .tech-slider {
        overflow: hidden;
        padding: 2rem 0;
    }

    .tech-track {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .tech-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .tech-icon {
        width: 120px;
        height: 120px;
        perspective: 1000px;
    }

    .tech-icon-inner {
        width: 100%;
        height: 100%;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.6s;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        padding: 1rem;
    }

    .tech-icon:hover .tech-icon-inner {
        transform: rotateY(180deg);
    }

    .tech-icon i {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    .tech-icon span {
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Call-to-Action Section Styles */
    .parallax-cta {
        background: url('assets/images/cta-bg.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        position: relative;
    }

    .parallax-cta .parallax-overlay {
        background: rgba(43, 76, 126, 0.9);
        padding: 5rem 0;
    }

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

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

    /* Badge Styles */
    .badge {
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 0.7rem;
    }

    /* Responsive Styles */
    @media (max-width: 991px) {
        .tech-icon {
            width: 100px;
            height: 100px;
        }

        .tech-icon i {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .tech-row {
            gap: 1rem;
        }

        .tech-icon {
            width: 80px;
            height: 80px;
        }

        .tech-icon i {
            font-size: 1.5rem;
            margin-bottom: 0.3rem;
        }

        .tech-icon span {
            font-size: 0.7rem;
        }

        .feature-card {
            padding: 1.5rem;
        }
    }

    @media (max-width: 576px) {
        .team-card {
            max-width: 280px;
            margin-left: auto;
            margin-right: auto;
        }
    }

/* Partner Section Styles */
.partner-card {
    border-radius: 20px;
    transition: all 0.4s ease;
    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);
}

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

.glass-effect {
    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);
}

.partner-logo-placeholder {
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-card:hover .partner-logo-placeholder {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--bs-primary);
}

.partner-description {
    font-size: 1.05rem;
    line-height: 1.6;
}

.partner-shape-1,
.partner-shape-2 {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.partner-shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(var(--bs-primary-rgb), 0.3), rgba(var(--bs-primary-rgb), 0.1));
    top: -30px;
    left: -30px;
}

.partner-shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(var(--bs-primary-rgb), 0.2), rgba(var(--bs-primary-rgb), 0.05));
    bottom: -20px;
    right: -20px;
}

.partner-image-wrapper {
    padding: 20px;
}

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

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

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

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

.partner-stat-1 {
    top: 30px;
    right: 0;
}

.partner-stat-2 {
    bottom: 40px;
    left: 0;
}

.partner-badge {
    position: absolute;
    background: linear-gradient(45deg, var(--bs-primary), #4e73df);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    bottom: -15px;
    right: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    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);
    }
}

/* Responsive adjustments for partner section */
@media (max-width: 991px) {
    .partner-stat {
        width: 100px;
        padding: 10px;
    }
    
    .partner-stat-1 {
        top: 20px;
        right: 10px;
    }
    
    .partner-stat-2 {
        bottom: 30px;
        left: 10px;
    }
    
    .partner-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .partner-image-wrapper {
        margin-top: 30px;
    }
    
    .partner-stat {
        width: 90px;
        padding: 8px;
    }
    
    .partner-stat h5 {
        font-size: 0.9rem;
    }
    
    .partner-stat p {
        font-size: 0.8rem;
    }
}
/* Enhanced Features Section Background */
#features {
    background-image: radial-gradient(circle at top right, rgba(106, 17, 203, 0.05), transparent 70%),
                      radial-gradient(circle at bottom left, rgba(37, 117, 252, 0.05), transparent 70%);
}
/* Enhanced Features Section Animation */
@keyframes featureIconFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.feature-card:hover .feature-icon {
    animation: featureIconFloat 2s ease-in-out infinite;
}

.feature-card .feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 117, 252, 0.2);
    border-radius: 20px;
    transform: scale(0);
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon::before {
    transform: scale(1.4);
    opacity: 1;
}