

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #f9a766 0%, transparent 40%),
                radial-gradient(circle at bottom right, #8e44ad 0%, transparent 40%),
                #ffffff;
    animation: gradientMove 4s ease-in-out infinite alternate;
}

/* Animated gradient movement */
@keyframes gradientMove {
    0% {
        background: radial-gradient(circle at top left, #f9a766 0%, transparent 40%),
                    radial-gradient(circle at bottom right, #9b59b6 0%, transparent 40%),
                    #ffffff;
    }
    50% {
        background: radial-gradient(circle at top left, #F47C20 0%, transparent 40%),
                    radial-gradient(circle at bottom right, #6A1B9A 0%, transparent 40%),
                    #ffffff;
    }
    100% {
        background: radial-gradient(circle at top left, #ffb380 0%, transparent 40%),
                    radial-gradient(circle at bottom right, #b36ae0 0%, transparent 40%),
                    #ffffff;
    }
}


.carousel .card {
    border: none;
    border-radius: 15px;
    background: #F47C20 ;
}

.carousel .card img {
    max-height: 180px;
    object-fit: contain;
}




.about-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    
    
}
.about-text h2{
    margin-bottom: 30px;
    font-size: 30px;
}

.about-text {
    flex: 1;
}

/* Animation setup */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 3s ease-out, transform 3s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}
#services {
    background: #f8f9fa;
}

.services-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background: transparent;
    perspective: 1000px;
    width: 300px;
    height: 250px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 2s ease, transform 2s ease;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: white;
}

.service-card-front i {
    font-size: 40px;
    color: #F47C20;
    margin-bottom: 15px;
}

.service-card-front h4 {
    margin: 0;
    font-weight: bold;
    color: #6A1B9A;
}

.service-card-back {
    transform: rotateY(180deg);
    background: #6A1B9A;
    color: white;
    text-align: center;
    font-size: 20px;
}

.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}
.software-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.software-text {
    flex: 1;
    text-align: left;
}

.software-text h2 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
}

.software-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.software-image {
    flex: 1;
    text-align: center;
}

.software-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .software-intro {
        flex-direction: column;
        text-align: center;
    }
    .software-text {
        text-align: center;
    }
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    padding: 80px 20px;
}


.btn-primary {
    display: inline-block;
    background: #fff;
    color: #8e44ad;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #8e44ad;
    color: #fff;
}

/* 2. Why Us Section */
.why-us {
    background: #F47C20;
    text-align: center;
}

.why-us h2 {
    margin-bottom: 40px;
    color: white;
}

.why-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.why-card i {
    font-size: 40px;
    color: #F47C20;
    margin-bottom: 15px;
}

/* 3. Portfolio Section */
.portfolio h2 {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-items {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolio-item {
    width: 300px;
    text-align: center;
}

.portfolio-item img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 10px;
}

/* 4. Testimonials Section */
.testimonials {
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #6A1B9A;
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    font-style: italic;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-card h5 {
    margin-top: 15px;
    font-style: normal;
    color: white;
}

/* 5. Call to Action Section */
.cta {
    background:#6A1B9A;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    font-size: 20px;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
}
.btn-primary{
    background-color: #F47C20;
    color: black;
}

/* Responsive */
@media (max-width: 768px) {
    .why-cards, .portfolio-items, .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
    .hero-content h1 {
        font-size: 28px;
    }
}

