/* Navbar Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    padding: 10px 0;
}

.navbar .nav-link {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: white !important;
}

.navbar .nav-link.active {
    color: white !important;
    font-weight: bold;
}

/* Gradient Colors and Animations */
:root {
    --primary-color: #004aad;
    --secondary-color: #cb6ce6;
}

.about-section {
    background-color: #fff;
    overflow: hidden;
    width: 100%;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: #212529;
    -webkit-background-clip: text;
    animation: titleFade 1s ease-in-out;
}

@keyframes titleFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    animation: textFade 1s ease-in-out 0.3s backwards;
}

@keyframes textFade {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: imageFade 1s ease-in-out 0.5s backwards;
    width: 100%;
}

@keyframes imageFade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    z-index: 1;
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 0;
}

/* Values Cards */
.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: cardFade 0.5s ease-in-out backwards;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,74,173,0.1);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: #B87DF0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}


.value-card .icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(0,74,173,0.1), rgba(203,108,230,0.1));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.value-card:hover .icon::after {
    color: #212529;
    width: 60px;
    height: 60px;
}

@keyframes cardFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for value cards */
.values-section .col-lg-4:nth-child(1) .value-card { animation-delay: 0.1s; }
.values-section .col-lg-4:nth-child(2) .value-card { animation-delay: 0.2s; }
.values-section .col-lg-4:nth-child(3) .value-card { animation-delay: 0.3s; }
.values-section .col-lg-4:nth-child(4) .value-card { animation-delay: 0.4s; }
.values-section .col-lg-4:nth-child(5) .value-card { animation-delay: 0.5s; }
.values-section .col-lg-4:nth-child(6) .value-card { animation-delay: 0.6s; }

/* About Us Card */
.about-us-card {
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.about-us-card:hover {
    transform: translateY(-5px);
}

.separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e53);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.about-hero-section {
    padding-top: 120px !important; /* Accounts for fixed navbar */
    background: linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(0,0,0,0));
}

.about-hero-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    color: #666;
    border-radius: 2rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.about-hero-image img {
    transition: transform 0.3s ease;
}

.about-hero-image:hover img {
    transform: scale(1.02);
}

.about-hero-content {
    line-height: 1.8;
    color: #666;
}

.about-hero-content .lead {
    color: #333;
    font-size: 1.2rem;
}
.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scroll Animation Base Styles */
.scroll-animation {
    opacity: 0;
    transition: all 2s;
}

/* Slide from left */
.slide-left {
    transform: translateX(0);
    opacity: 0;
    transition: all 0.6s ease;
}

.slide-left.animate {
    transform: translateX(0);
    opacity: 1;
}

/* Slide from right */
.slide-right {
    transform: translateX(0);
    opacity: 0;
    transition: all 0.6s ease;
}

.slide-right.animate {
    transform: translateX(0);
    opacity: 1;
}

/* Fade up */
.fade-up {
    transform: translateY(50px);
}

/* Animation active state */
.scroll-animation.animate {
    opacity: 1;
    transform: translate(0);
}

/* Delay animations for value cards */
.values-section .scroll-animation {
    transition-delay: var(--delay, 0s);
}

/* Ensure elements are visible if JavaScript is disabled */
.no-js .scroll-animation {
    opacity: 1;
    transform: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-content {
        margin-top: 2rem;
    }
    
    .about-us-content {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .value-card {
        margin-bottom: 1rem;
    }
    .slide-left, .slide-right {
        transform: translateX(0) translateY(30px);
    }
}


@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");




/* Style for the container-fluid div */
.container1-fluid {
  height: 94vh;
  background-image: url('../img/services/1.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Style for the h1 inside the col-12 */
.col-12 h1 {
  display: flex;
  justify-content: center;
  text-align: center;
  background: 50% 100% / 50% 50% no-repeat
              radial-gradient(ellipse at bottom, #fff, transparent, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 10vw;
  font-family: "Source Sans Pro", sans-serif;
  animation: reveal 3000ms ease-in-out forwards 200ms,
             glow 2500ms linear infinite 2000ms;
}

/* Keyframes for the animations */
@keyframes reveal {
  80% {
    letter-spacing: 8px;
  }
  100% {
    background-size: 300% 300%;
  }
}

@keyframes glow {
  40% {
    text-shadow: 0 0 8px #fff;
  }
}



.feature-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin: 10px 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card .icon-wrapper i {
    font-size: 28px;
    color: #fff;
}

.feature-card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-title-decoration {
    position: relative;
    padding-bottom: 15px;
}

.service-title-decoration:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #004aad, #cb6ce6);
}

/* Modern Text-Based Service Cards */
.service-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* .service-header {
    margin-bottom: 15px;
} */

.service-header h4 {
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.service-header h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    border-radius: 2px;
}

.service-content p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 15px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    opacity: 0.95;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.service-list li {
    color: #ffffff;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    font-weight: 500;
    opacity: 0.9;
}

.bullet {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Card Hover Effects */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Adjustments for different card sizes */
.col-lg-6 .service-card {
    min-height: 400px;
}

.col-md-6 .service-card {
    min-height: 250px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.service-card:hover {
    animation: float 6s ease-in-out infinite;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #787CD2, #B17AED);
    border-radius: 5px;
}

/* Choose Section */
.choose-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title h2 {
    /* color: #333; */
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #004aad, #cb6ce6);
    margin: 0 auto;
}

.choose-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-inner {
    text-align: center;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #004aad, #cb6ce6);
    position: relative;
    overflow: hidden;
}

.icon-wrapper i {
    color: white;
    position: relative;
    z-index: 2;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.choose-card h5 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .choose-card {
        padding: 20px;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .choose-card h5 {
        font-size: 1.1rem;
    }
}

/* Add subtle hover effect to icons */
.choose-card:hover .icon-wrapper {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Add gradient border effect */
.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #004aad, #cb6ce6);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.choose-card:hover::before {
    opacity: 1;
}


.choose-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    /* color: #212529; */
    margin-bottom: 20px;
}

.title-line {
    width: 50px;
    height: 3px;
    background: #3498db;
    margin: 0 auto;
}

.service-card {
    perspective: 1000px;
    height: 300px; /* Equal height for right cards */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    background: #2980b9;
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card .icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Common Section Styles */
.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: #004aad;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: #2c3e50;
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




/* Responsive adjustments */
@media (max-width: 991.98px) {
    .col-lg-6:first-child .service-card {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        height: 280px;
    }
}

/* Team Section Styles */
.team-section {
  background: #ffffff;
  color: #333;
}

.founder-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #f8f9fa;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.founder-img {
  border-radius: 15px;
  transition: transform 0.5s;
}

.founder-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
  border-radius: 15px;
}

.founder-content {
  padding: 2rem;
}

.founder-content h3 {
  color: #333;
  margin-bottom: 1rem;
}

.founder-content h4 {
  color: #666;
  margin-bottom: 1rem;
}

.team-card {
  height: 100%;
  perspective: 1000px;
  background: transparent;
  margin-bottom: 30px;
}

.team-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}

.team-info {
  padding: 1.5rem;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info h4 {
  color: #333;
  margin-bottom: 0.5rem;
}

.team-info h5 {
  color: #666;
  margin-bottom: 1rem;
}

.team-info p {
  font-size: 0.9rem;
  color: #777;
}

.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 1rem;
}

.section-header h2 {
  color: #333;
  font-weight: bold;
}

/* Adjust the slide animations */
.slide-left, .slide-right {
    transform: translateX(0);
    opacity: 0;
    transition: all 0.6s ease;
}

.slide-left.animate {
    transform: translateX(0);
    opacity: 1;
}

.slide-right.animate {
    transform: translateX(0);
    opacity: 1;
}

/* Ensure content stays within bounds */
.about-content {
    width: 100%;
    overflow: hidden;
}

.about-image {
    width: 100%;
    overflow: hidden;
}

/* Adjust row spacing */
.row.align-items-center {
    margin: 0;
    width: 100%;
}

/* Reset basic elements */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Container adjustments */
.container,
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Fix row margins */
.row {
    margin-left: 0;
    margin-right: 0;
}

/* Section fixes */
section {
    width: 100%;
    overflow: hidden;
}

/* Fix mission/vision section */
.about-section .row {
    margin: 0;
}

.about-section .col-lg-6 {
    padding: 15px;
}

/* Services section fix */
.services-section .row {
    margin: 0;
}

.service-card {
    width: 100%;
}

/* Values section fix */
.values-section .row {
    margin: 0;
}

/* Choose section fix */
.choose-section .row {
    margin: 0;
}

/* Hero section fix */
.about-hero-section {
    width: 100%;
    overflow: hidden;
}

.about-hero-section .container-fluid {
    padding: 0 15px;
}

/* Clean and Simple Why Choose Us Section */
section.why-choose-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}



section.why-choose-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Clean feature cards */
section.why-choose-section .feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

/* Subtle hover effect */
section.why-choose-section .feature-card:hover {
    transform: translateY(-5px);
    border-color: #B077F0;
    box-shadow: 0 10px 20px rgba(176, 119, 240, 0.1);
}

/* Simple icon styling */
section.why-choose-section .feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: rgba(176, 119, 240, 0.1);
    transition: all 0.3s ease;
}

section.why-choose-section .feature-icon {
    font-size: 1.5rem;
    color: #3B82F6;
}

/* Clean typography */
section.why-choose-section .feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

section.why-choose-section .feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Simple hover states */
section.why-choose-section .feature-card:hover .feature-icon-wrapper {
    background-color: #3B82F6;
}

section.why-choose-section .feature-card:hover .feature-icon {
    color: #ffffff;
}

section.why-choose-section .feature-card:hover h3 {
    color: #3B82F6;
}

/* Basic animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section.why-choose-section .feature-card {
    animation: fadeIn 0.5s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

/* Clean responsive design */
@media (max-width: 991px) {
    section.why-choose-section {
        padding: 80px 0;
    }

    section.why-choose-section .section-title {
        font-size: 2.2rem;
    }

    section.why-choose-section .feature-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    section.why-choose-section {
        padding: 60px 0;
    }

    section.why-choose-section .section-title {
        font-size: 2rem;
    }

    section.why-choose-section .feature-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.hover-scale {
    transition: transform 0.6s ease-in-out;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 2s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 2s ease forwards;
}

.animate-text {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.animate-text-delay {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 0.6s;
}

/* Keyframes */
@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Intersection Observer Animations */
.scroll-animation {
    opacity: 0;
    transition: all 2s;
}

.scroll-animation.active {
    opacity: 1;
    transform: translateX(0);
}

