#smooth-wrapper {
  height: 100%;
  overflow: hidden;
}

#smooth-content {
  will-change: transform;
  
}

button,
.btn {
  transition: transform 0.3s ease-in-out;
}

button:hover,
.btn:hover {
  transform: scale(1.05); /* slightly enlarge on hover */
}

#smooth-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
}
body {
    font-family: 'Geist', 'Raleway', 'Jost', sans-serif;
}

/* Ensure headings and other elements inherit the fonts */
h1, h2, h3, h4, h5, h6, p, a, button, input, textarea {
    font-family: inherit;
}

.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    display: flex
;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.footer {
    background-color: #2E5B3F; /* Green Background */
    color: white;
    padding: 40px 0;
}
/* Add spacing to all list items */
.footer ul li {
    margin-bottom: 10px;
    text-align: left; /* Adjust as needed */
}
/* NEW: naya layout CSS */
.footer-row{
    display:flex;
    flex-wrap:wrap;      /* nowrap nahi */
    align-items:flex-start;
}
.footer-bottom{
    width:100%;
    flex-basis:100%;
    text-align:center;
    margin-top:20px;
    border-top:1px solid #fff;
    padding-top:10px;
    clear:both;
}

.logo-column {
    margin-left: 0; /* logo ko left shift kiya */
    /* margin-left:10px; */
    flex: 0 0 140px;
}

.company-column {
    margin-left: -40px; /* logo aur company list ke beech space */
    flex: 0 0 auto;
}

.company-list {
    padding-left: 0;
}

.contact-column {
   flex:0 0 420px;
    margin-left:20px;
    margin-top:0;
    align-self:flex-start; 
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 16px; /* icons chhote kiye */
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.15);
}

@media (max-width:768px){

    .footer-row{
        display:flex;
        flex-wrap:wrap;
        flex-direction:row;
        align-items:flex-start;
        margin-left:10px;
    }

    .logo-column{
        flex:0 0 70px;
        width:70px;
        margin:0 15px 20px 0 !important;
        padding:0 !important;
    }

    .footer-logo{
        height:40px;
        margin-left:0;
    }

    .company-column{
        flex:1;
        width:auto;
        margin:0 !important;
        padding:0 !important;
    }

    .company-list{
        display:grid;
        grid-template-rows: repeat(4, auto);
        grid-auto-flow: column;
        column-gap: 5px;
        /* row-gap: 10px; */
    }

    .contact-column{
        flex:0 0 100%;
        width:100%;
        margin-top:0;
        margin-left:0 !important;
    }

}

/* Add spacing to all paragraphs (for contact and address) */
.footer p {
    margin-bottom: 10px; /* Adjust as needed */
}

/* Optional: Ensure the last item in each section does not have extra margin */
.footer ul li:last-child,
.footer p:last-child {
    margin-bottom: 0;
}


.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer h5 {
    font-weight: bold;
}

/* Logo Styling */
.footer-logo {
    display: block;
    margin-bottom: 15px;
    height: 50px;
    margin-left: 0;

}

@media (max-width:768px){

    /* Logo + Company ek row me */
    .footer-row{
        display:flex;
        flex-wrap:wrap;
        flex-direction:row;
        align-items:flex-start;
        margin-left:10px;
    }
    .footer-bottom{
        margin-left:-10px;
        width:calc(100% + 10px);
    }

    .logo-column{
        flex:0 0 70px;
        width:70px;
        margin:0 15px 20px 0 !important;
        padding:0 !important;
    }

    .footer-logo{
        height:40px;
        margin-left:0;
    }

    .company-column{
        flex:1;
        width:auto;
        margin:0 !important;
        padding:0 !important;
    }

    /* Contact neeche */
    .contact-column{
        flex:0 0 100%;
        width:100%;
        margin-top:10px !important;
        margin-left:0 !important;
        padding-left:0 !important;
    }

    .contact-column p{
        margin-bottom:6px;
    }

    .footer h5{
        margin-top:0;
    }

    .social-icons{
        justify-content:flex-start;
        padding-left:0;
        margin-top:8px;
    }

    .footer-bottom{
        width:100%;
        text-align:center;
        margin-top:8px;
        padding-top:8px;
    }
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    /* margin-top: 20px; */
    border-top: 1px solid white;
    padding-top: 10px;
    font-size: 14px;
     display:block;
}

.footer-bottom a {
    font-weight: bold;
}

.industries-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.industries-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.industry-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.industry-body {
    flex-grow: 1;
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}
.industry-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}



.industry-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #111;
}

.industry-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #e0e0e0;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}
.industry-body p {
    margin: 6px 0;
    font-size: 0.95rem;
    color: #444;
}

.industry-body ul {
    padding-left: 20px;
    margin: 6px 0;
}

.industry-body li {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

body {
    
    margin: 0;
    padding: 0;
    background: #f0f0f0;
}

.testimonial-section {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    gap: 40px;
}

/* Left Side - Large Card */
.testimonial-left {
    flex: 1;
}

.testimonial-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-card {
    width: 100%;
    height: 400px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f8f8f8; /* optional neutral background */
}

.testimonial-photo-box {
    width: 100%;
    height: 100%;
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
}

.testimonial-slider {
    transition: transform 0.5s ease-in-out;
}
.arrow-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.arrow-btn button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.arrow-btn button:hover {
    background: #007bff;
    border: 2px solid #007bff;
}

/* Right Side - Testimonials */
.testimonial-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.testimonial-box:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-box p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd; /* fallback background */
}

.user-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-details .name {
    font-weight: bold;
    color: #333;
}

.user-details .position {
    color: #777;
    font-size: 0.9rem;
}

.carousel-container {
    width: 100px; /* set as per your need */
    height: 100px;
    overflow: hidden;
    position: relative;
    margin: auto;
}

.carousel-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex: 0 0 100px; /* height of one item */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}


@media (max-width: 768px) {
    .testimonial-section {
        flex-direction: column;
        padding: 20px;
    }

    .testimonial-card {
        height: 350px;
    }

    .arrow-btn {
        bottom: 10px;
        right: 10px;
    }

    .arrow-btn button {
        width: 40px;
        height: 40px;
    }
}
/* 1. Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-box {
    animation: fadeIn 0.8s ease-in-out;
}

/* 2. Slide-In Effect */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-right {
    animation: slideIn 0.8s ease-out;
}


.consultation-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 60px 40px;
    background: linear-gradient(180deg, #444, #888);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.consultation-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.consultation-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.consultation-btn:hover {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 40px 20px;
    }

    .consultation-section h2 {
        font-size: 1.5rem;
    }

    .consultation-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


.service-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background: #266041;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-image {
    width: 40%;
    height: 300px;
    background: #888;
    border-radius: 15px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.service-content {
    width: 55%;
}

.service-content h4 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ccc;
}

.service-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    color: #fff;
    background: #D3AF37;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.service-btn:hover {
    background: gold;
}

@media (max-width: 768px) {
    .service-section {
        flex-direction: column;
        padding: 30px;
    }

    .service-image, .service-content {
        width: 100%;
    }

    .service-image {
        height: 200px;
        margin-bottom: 20px;
    }
}



.services-section {
    text-align: center;
    padding: 60px 20px;
    /*background: #f0f0f0;*/
}

.services-section h3 {
    color: #0A1F44;
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.services-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;  /* Semi-bold */
    margin-bottom: 40px;
    color: #2C3E50;
}


.swiper-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.swiper-slide {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}



.swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 20px;
    /*background: rgba(0, 0, 0, 0.6);*/
    transition: 0.3s;
}

.slide-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.learn-more {
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    background: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}


/* Swiper pagination and navigation */
.swiper-pagination-bullet {
    background: #007bff;
}

.swiper-button-next, .swiper-button-prev {
    color: #007bff;
}

@media (max-width: 768px) {
    .swiper-slide img {
        height: 300px;
    }
}

.why-us {
    /* text-align: center; */
    padding: 60px 20px;
    /*background: #f5f5f5;*/
}


   .why-us h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #2C3E50;
}


.why-us-container {
    /*display: grid;*/
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #0F0F0F;
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}



.card h4 {
    font-size: 1.5rem;
    margin-top: 75px;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-us-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-container {
        grid-template-columns: 1fr;
    }
}
body {
    background-color: #f5f8ff;
}
.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
}

.navbar-nav .nav-item {
    margin-right: 30px;
}

/*.btn-custom {*/
/*    background-color: #f5f5f5;*/
/*    border-radius: 20px;*/
/*    padding: 5px 15px;*/
/*    display: inline-block;*/
/*    border: 0.77px solid #FFFFFF;*/
    
    
/*}*/

/* Desktop Style */
@media (min-width: 992px) {
    .navbar-nav {
        margin: auto;
        background: #f5f5f5;
        border-radius: 20px;
        padding: 5px 15px;
    }

    .contact-btn-desktop {
        display: inline-block;
    }
}

/* Mobile View */
@media (max-width: 991px) {
    .contact-btn-mobile {
        display: block;
        text-align: center;
        margin-top: 10px;
    }

    .contact-btn-desktop {
        display: none;
    }
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
}

.navbar-nav .nav-item {
    margin-right: 30px;
}

.btn-custom {
    background: rgba(194, 194, 194, 0.2); /* Semi-transparent */
    border-radius: 20px;
    padding: 11px 15px;
    display: inline-block;
    border: 0.77px solid #FFFFFF;
    text-decoration: none !important;
    color: black !important;
    backdrop-filter: blur(10px); /* Adds blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Desktop Style */
@media (min-width: 992px) {
    .navbar-nav {
      
         margin: auto;
    background: rgba(194, 194, 194, 0.2); /* Semi-transparent */
    border-radius: 20px;
    padding: 5px 15px;
    border: 0.77px solid #FFFFFF;
    backdrop-filter: blur(10px); /* Adds the blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    }

    .contact-btn-desktop {
        display: inline-block;
        
    }
}

/* Mobile View */
@media (max-width: 991px) {
    .contact-btn-mobile {
        display: block;
        text-align: center;
        margin-top: 10px;
    }

    .contact-btn-desktop {
        display: none;
    }
}

.carousel-item {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: white;
}

.carousel-caption h5 {
    font-size: 2rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.2rem;
}

.carousel-caption .btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
}

.carousel-caption .btn:hover {
    background: white;
    color: black;
}

.carousel-caption h5 {
    font-size: 2rem;
    font-weight: bold;
    color: black;
}

.carousel-caption p {
    font-size: 1.2rem;
    color: black;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 32%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #0b0a0a;
}

.carousel-caption .btn {
    background: transparent;
    border: 1px solid #0f0e0e;
    color: #171515;
    padding: 8px 16px;
    border-radius: 5px;
}

.info-section {
display: flex
;
align-items: center;
justify-content: space-between;
padding: 50px 0;
border: 2px solid #ddd;
border-radius: 10px;
padding: 20px;
background-color: white;
}

.info-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
}
.info-text p {
    font-size: 1.1rem;
    color: #666;   
}
.info-image {
    /*width: 40%;*/
    height: 300px;
    background-image:url(https://media.istockphoto.com/id/1434371456/vector/graphic-design-studio-pen-tool-draws-nice-curve-with-anchor-points-and-guides.jpg?s=612x612&w=0&k=20&c=BRKAk8KN5vdKNRekqnF5gIC-tVIA7MXVTIbafqknY34=);
    background-size:cover;
    border-radius: 10px;
}
.contact-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background: #266041; 
    color: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 117px 138.2px 0px #26604140; /* Custom shadow */
}

.contact-content {
    max-width: 60%;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fffbff;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff7b00;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
    background: #555;
    color: #fff;
}

/* Contact Icon */
.contact-icon img {
    width: 100px; /* Adjust size as needed */
    height: auto;
    opacity: 0.8;
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.3)); /* Soft shadow effect */
}


@media (max-width: 1024px) {
    .contact-section {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.faq-section {
    padding: 40px;
    /*background-color: #f8f9fa;*/
    border-radius: 8px;
}

.faq-title {
    color: #0A1F44;
    font-weight: bold;
}

.faq-subtitle {
    font-size: 24px;
    color: #0A1F44;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-item {
    border-top: 1px solid #ccc;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}

.faq-toggle {
    font-size: 20px;
    font-weight: bold;
    float: right;
}

.faq-answer {
    display: none;
    padding-top: 10px;
    color: #666;
    max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.active {
    display: block;
    max-height: 300px;
}

.blog-section {
    padding: 40px;
    /*background-color: #f8f9fa;*/
    border-radius: 8px;
}

.blog-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.blog-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.blog-card {
    width: 250px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.blog-image {
    width: 100%;
    height: 150px;
    background: #d3d3d3;
    border-radius: 8px;
    margin-bottom: 10px;
}

.blog-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-description {
    font-size: 14px;
    color: #666;
}
.container {
   max-width: 1100px;
}



/* ================= Hero Section Animations ================= */
.hero-section {
    animation: fadeIn 1.5s ease-in-out;
}

h1 span {
    display: inline-block;
    transform: translateY(20px);
    opacity: 0;
    animation: slideIn 1s ease-in-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-section .btn-success {
    transition: transform 0.3s ease-in-out;
}

.hero-section .btn-success:hover {
    transform: scale(1.05);
}

/* ================= Expertise Section Animations ================= */
/*.circle {*/
/*    animation: rotateText 10s linear infinite;*/
/*}*/

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

.expertise-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s, transform 0.8s;
}

.expertise-section.visible .expertise-text {
    opacity: 1;
    transform: translateX(0);
}

/* ================= Mission & Vision Section Animations ================= */
.mission-container, .vision-container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.mission-container.visible, .vision-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.mission-image, .vision-image {
    transform: scale(0.9);
    transition: transform 0.8s ease-in-out;
}

.mission-container.visible .mission-image,
.vision-container.visible .vision-image {
    transform: scale(1);
}

