.animated-icon {
                    position: absolute;
                    z-index: 2;
                    max-width: 20vw;
                    height: auto;
                    animation: leftRight 2s linear infinite;
                }

                /* Positioning (adjust as per your layout) */
                .icon-cat {
                    top: 2vh;
                    left: 2vw;
                }

                .icon-abc {
                    bottom: 0px;
                    right: 2vw;
                }

                /* Responsive Animation */
                @keyframes leftRight {
                    0% {
                        transform: translateX(0);
                    }

                    50% {
                        transform: translateX(10px);
                    }

                    100% {
                        transform: translateX(0);
                    }
                }

                /* Optional: Responsive fallback for very small screens */
                @media (max-width: 576px) {
                    .animated-icon {
                        max-width: 10vw;
                    }
                }


                 .main-grid-container {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 35px;
            }

            .column-1,
            .column-2,
            .column-3 {
                display: flex;
                flex-direction: column;
                gap: 20px;
                flex-grow: 1;
            }

            .interactive-card {
                border-radius: 12px;
                padding: 15px;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                display: flex;
                flex-direction: column;
                overflow: hidden;
                cursor: pointer;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                height: 100px;
                align-items: start;
                justify-items: center;
                flex-grow: 0;
                flex-shrink: 0;
                will-change: height;
                position: relative;
            }

            .interactive-card.expanded {
                height: 490px;
                cursor: default;
                box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            }

            .interactive-card.expanded .card-header {
                color: #000;
            }

            .interactive-card.expanded .card-content {
                opacity: 1;
                max-height: 400px;
                visibility: visible;
                pointer-events: auto;
                border-radius: 10px;
            }

            .interactive-card .card-header {
                font-weight: bold;
                display: flex;
                justify-content: center;
                align-items: center;
                color: #000000;
                flex-shrink: 0;
                transition: color 0.3s ease;
            }

            .interactive-card:hover .card-header {
                color: #000;
            }

            .interactive-card .card-content {
                opacity: 0;
                max-height: 0;
                transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                visibility: hidden;
                pointer-events: none;
                padding-top: 0;
                flex-grow: 1;
                overflow: hidden;
            }

            .interactive-card:hover .card-content {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .interactive-card .card-content img {
                max-width: 100%;
                height: full;
                border-radius: 10px;
                transition: transform 0.4s ease;
            }

            .interactive-card.expanded .card-content img,
            .interactive-card:hover .card-content img {
                transform: scale(1.02);
            }

            .interactive-card .card-content p {
                margin: 0;
                color: #555;
                line-height: 1.5;
            }

            /* Colors */
            .blue-card {
                background-color: #81BAD9;
                border: 1px solid #81BAD9;
            }

            .blue-card:hover,
            .blue-card.expanded {
                background-color: #81BAD9;
            }
            .red-card {
                background-color: #81BAD9;
                border: 1px solid #81BAD9;
            }

            .red-card:hover,
            .red-card.expanded {
                background-color: #81BAD9;
            }
            .black-card {
                background-color: #81BAD9;
                border: 1px solid #81BAD9;
            }

            .black-card:hover,
            .black-card.expanded {
                background-color: #81BAD9;
            }

            .green-card {
                background-color: #75DB9B;
                border: 1px solid #75DB9B;
            }

            .green-card:hover,
            .green-card.expanded {
                background-color: #75DB9B;
            }

            .orange-card {
                background-color: #EBAC8F;
                border: 1px solid #EBAC8F;
            }

            .purple-card {
                background-color: #DCA9CA;
                border: 1px solid #DCA9CA;
            }

            .purple-card:hover,
            .purple-card.expanded {
                background-color: #DCA9CA;
            }

            .yellow-card {
                background-color: #F3DD89;
                border: 1px solid #F3DD89;
            }

            .yellow-card:hover,
            .yellow-card.expanded {
                background-color: #F3DD89;
            }

            .static-card {
                border-radius: 12px;
                padding: 20px;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                text-align: left;
                flex-shrink: 0;
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                height: 610px
            }

            .static-card p {
                font-weight: bold;
                color: #000000;
                margin: 0;
                padding-bottom: 10px;
            }

            .static-card img {
                max-width: 100%;
                height: auto;
                border-radius: 10px;
                display: block;
                margin: 0;
                transition: transform 0.6s ease;
            }

            .static-card:hover img {
                transform: scale(1.01);
            }

            @media (max-width: 992px) {
                .main-grid-container {
                    grid-template-columns: 1fr 1fr;
                }
            }

            @media (max-width: 768px) {
                .main-grid-container {
                    grid-template-columns: 1fr;
                }
            }

            /* Smooth transitions for touch devices */
            @media (hover: none) {
                .interactive-card {
                    transition: all 0.4s ease;
                }
            }

            @media (max-width: 480px) {
                .interactive-card.expanded {
                    height: auto;
                    padding: 15px;
                    gap: 20px;
                }

                .static-card {
                    height: auto
                }
            }
               .service-tabs-section {
                background: #fff7e8;
                padding: 0px 0;
                /* padding: 80px 0; */
            }

            /* Tabs */
            .tabs-header {
                /* display: flex; */
                gap: 11px;
                flex-wrap: wrap;
            }

            .tab-btn {
                background: none;
                border: none;
                font-size: 18px;
                font-weight: 600;
                color: #b27c00;
                /* color: #666; */
                /* color: #ffffff; */
                padding-bottom: 10px;
                cursor: pointer;
                position: relative;
            }

            .tab-btn.active {
                color: #ff7a00;
            }

            /* Border under tabs */
            .tab-border {
                width: 100%;
                height: 1px;
                background: #ddd;
                margin: 5px 0 25px;
            }

            /* Content */
            .tab-contents {
                display: none;
                animation: fadeUp 0.4s ease;
            }

            .tab-contents.active {
                display: block;
            }

            .tab-contents h3 {
                font-size: 26px;
                color: #004aad;
                margin-bottom: 10px;
            }

            .tab-contents p {
                font-size: 16px;
                color: #555;
                line-height: 1.7;
            }

            /* Deer Image */
            .deer-box img {
                max-width: 100%;
                position: sticky;
                top: 120px;
                animation: float 4s ease-in-out infinite;
            }

            /* Animations */
            @keyframes fadeUp {
                from {
                    opacity: 0;
                    transform: translateY(10px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            @keyframes float {
                0% {
                    transform: translateY(0);
                }

                50% {
                    transform: translateY(-10px);
                }

                100% {
                    transform: translateY(0);
                }
            }

            /* Responsive */
            @media (max-width: 768px) {
                .tabs-header {
                    gap: 15px;
                }

                .tab-btn {
                    font-size: 16px;
                }

                .deer-box img {
                    position: static;
                    margin-top: 30px;
                }
                .facilities-img img{
                    display: none;
                }
            }


             .features-section {
                padding: 0px 0;
                /* background: #00000063; */
                background: #ffffff;
            }

            /* Heading */
            .section-heading {
                font-size: 40px;
                font-weight: 800;
                color: #004aad;
            }

            .section-subheading {
                font-size: 16px;
                color: #666;
                max-width: 600px;
                margin: 10px auto 0;
            }

            /* Card */
            .feature-card {
                border-radius: 30px;
                padding: 30px;
                height: 100%;
                transition: all 0.4s ease;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            }

            .feature-card img {
                /* width: 60px; */
                width: 100%;
                border-radius: 20px;
                margin-bottom: 20px;
            }

            .feature-card h4 {
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 10px;
            }

            .feature-card p {
                font-size: 15px;
                line-height: 1.6;
            }

            /* Background Colors */
            .bg-peach {
                background: #f7b59d;
            }

            .bg-green {
                background: #7be0a3;
            }

            .bg-blue {
                background: #8cc9e8;
            }

            .bg-yellow {
                background: #ffe082;
            }

            /* Hover Effect */
            .feature-card:hover {
                transform: translateY(-12px);
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            }

            /* Responsive */
            @media (max-width: 768px) {
                .section-heading {
                    font-size: 30px;
                }
            }



            .team-card .info h5 {
                    color: white;
                }

                .team-card {
                    border-radius: 18px;
                    overflow: hidden;
                    position: relative;
                    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
                }

                .team-card img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .info {
                    position: absolute;
                    bottom: 0;
                    width: 100%;
                    padding: 15px;
                    text-align: center;
                    background: linear-gradient(transparent, #383838);
                    color: #fff;
                }

                .info span {
                    display: block;
                    opacity: 0;
                    transform: translateY(10px);
                    transition: 0.4s;
                    font-size: 14px;
                }

                .team-card:hover .info span {
                    opacity: 1;
                    transform: translateY(0);
                }