        /* Modern 3D Animations and Keyframes */
        
        /* Page Title 3D Animation */
        .page-title {
            perspective: 1000px;
            overflow: hidden;
        }
        
        .page-title .content-box {
            animation: slideIn3D 1.5s ease-out;
            transform-style: preserve-3d;
        }
        
        .page-title h1 {
            animation: titleFloat 3s ease-in-out infinite;
            text-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        @keyframes slideIn3D {
            0% {
                transform: rotateY(-90deg) translateZ(-100px);
                opacity: 0;
            }
            50% {
                transform: rotateY(-45deg) translateZ(-50px);
            }
            100% {
                transform: rotateY(0deg) translateZ(0);
                opacity: 1;
            }
        }
        
        @keyframes titleFloat {
            0%, 100% {
                transform: translateY(0px) rotateX(0deg);
            }
            50% {
                transform: translateY(-10px) rotateX(2deg);
            }
        }
        
        /* Section Animations */
        .about-style-five, .chooseus-section, .team-section {
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }
        
        .about-style-five {
            animation-delay: 0.3s;
        }
        
        .chooseus-section {
            animation-delay: 0.6s;
        }
        
        .team-section {
            animation-delay: 0.9s;
        }
        
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(50px) rotateX(-10deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) rotateX(0deg);
            }
        }
        
        /* 3D Card Effects */
        .text-box, .content-box, .chooseus-block-one, .team-block-one {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }
        
        .text-box:hover, .content-box:hover {
            transform: translateY(-10px) rotateY(5deg) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .chooseus-block-one:hover {
            transform: translateZ(20px) rotateX(5deg) scale(1.05);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        
        .team-block-one:hover {
            transform: translateY(-15px) rotateY(10deg) scale(1.08);
            box-shadow: 0 25px 50px rgba(0,0,0,0.25);
        }
        
        /* Icon Animations */
        .icon-box {
            transition: all 0.3s ease;
            animation: iconPulse 2s ease-in-out infinite;
        }
        
        .chooseus-block-one:hover .icon-box {
            animation: iconSpin 0.6s ease-in-out;
            transform: scale(1.2) rotateY(360deg);
        }
        
        @keyframes iconPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        @keyframes iconSpin {
            0% {
                transform: scale(1) rotateY(0deg);
            }
            50% {
                transform: scale(1.3) rotateY(180deg);
            }
            100% {
                transform: scale(1.2) rotateY(360deg);
            }
        }
        
        /* Button 3D Effects */
        .theme-btn {
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            position: relative;
        }
        
        .theme-btn:hover {
            transform: translateY(-3px) rotateX(-5deg);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .theme-btn:active {
            transform: translateY(0) rotateX(0deg);
        }
        
        /* Background Layer Animation */
        .bg-layer {
            animation: bgZoom 20s ease-in-out infinite;
        }
        
        @keyframes bgZoom {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }
        
        /* Text Animation */
        /*.sec-title h2 {
            animation: textGlow 3s ease-in-out infinite;
        }
        
        @keyframes textGlow {
            0%, 100% {
                text-shadow: 0 0 10px rgba(255,255,255,0.5);
            }
            50% {
                text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.5);
            }
        }*/
        
        /* Social Links Animation */
        .social-links li {
            animation: socialBounce 0.5s ease-out;
            animation-fill-mode: both;
        }
        
        .social-links li:nth-child(1) { animation-delay: 0.1s; }
        .social-links li:nth-child(2) { animation-delay: 0.2s; }
        .social-links li:nth-child(3) { animation-delay: 0.3s; }
        .social-links li:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes socialBounce {
            0% {
                transform: scale(0) rotateZ(-180deg);
                opacity: 0;
            }
            50% {
                transform: scale(1.2) rotateZ(-90deg);
            }
            100% {
                transform: scale(1) rotateZ(0deg);
                opacity: 1;
            }
        }
        
        .social-links a:hover i {
            animation: socialRotate 0.3s ease-in-out;
        }
        
        @keyframes socialRotate {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }
        
        /* Enhanced Image Carousel with Multiple Transition Effects */
        .image-carousel {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 40px 100px rgba(0,0,0,.5);
        }
        
        .carousel-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: none;
            z-index: 1;
        }
        
        .carousel-image.active {
            opacity: 1;
            z-index: 2;
        }
        
        .carousel-image.prev {
            opacity: 0;
            z-index: 1;
        }
        
        /* Effect 1: Fade */
        .carousel-image.effect-fade.active {
            animation: eff-fade-in 1.5s ease forwards;
        }
        .carousel-image.effect-fade.prev {
            animation: eff-fade-out 1.5s ease forwards;
        }
        @keyframes eff-fade-in { from{opacity:0} to{opacity:1} }
        @keyframes eff-fade-out { from{opacity:1} to{opacity:0} }
        
        /* Effect 2: Zoom-fade */
        .carousel-image.effect-zoom.active {
            animation: eff-zoom-in 1.5s ease forwards;
        }
        .carousel-image.effect-zoom.prev {
            animation: eff-zoom-out 1.5s ease forwards;
        }
        @keyframes eff-zoom-in { from{opacity:0;transform:scale(1.12)} to{opacity:1;transform:scale(1)} }
        @keyframes eff-zoom-out { from{opacity:1;transform:scale(1)} to{opacity:0;transform:scale(.92)} }
        
        /* Effect 3: Slide from right */
        .carousel-image.effect-slide-right.active {
            animation: eff-slr-in 1.4s cubic-bezier(.16,1,.3,1) forwards;
        }
        .carousel-image.effect-slide-right.prev {
            animation: eff-slr-out 1.4s cubic-bezier(.16,1,.3,1) forwards;
        }
        @keyframes eff-slr-in { from{opacity:0;transform:translateX(80px)} to{opacity:1;transform:none} }
        @keyframes eff-slr-out { from{opacity:1;transform:none} to{opacity:0;transform:translateX(-60px)} }
        
        /* Effect 4: Flip-ish (rotateY) */
        .carousel-image.effect-flip.active {
            animation: eff-flip-in 1.4s ease forwards;
        }
        .carousel-image.effect-flip.prev {
            animation: eff-flip-out 1.4s ease forwards;
        }
        @keyframes eff-flip-in { from{opacity:0;transform:perspective(800px) rotateY(-25deg) scale(.95)} to{opacity:1;transform:perspective(800px) rotateY(0) scale(1)} }
        @keyframes eff-flip-out { from{opacity:1;transform:perspective(800px) rotateY(0) scale(1)} to{opacity:0;transform:perspective(800px) rotateY(20deg) scale(.95)} }
        
        /* Effect 5: Blur reveal */
        .carousel-image.effect-blur.active {
            animation: eff-blur-in 1.6s ease forwards;
        }
        .carousel-image.effect-blur.prev {
            animation: eff-blur-out 1.6s ease forwards;
        }
        @keyframes eff-blur-in { from{opacity:0;filter:blur(18px) scale(1.05)} to{opacity:1;filter:blur(0) scale(1)} }
        @keyframes eff-blur-out { from{opacity:1;filter:blur(0)} to{opacity:0;filter:blur(14px)} }
        
        /* Overlay Gradient on Image */
        .image-carousel::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15,52,96,.45) 0%, transparent 60%);
            z-index: 3;
            pointer-events: none;
            border-radius: 10px;
        }
        
        /* Enhanced Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        
        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 100px;
            background: rgba(255, 255, 255, 0.35);
            cursor: pointer;
            transition: all .3s ease;
            border: none;
            padding: 0;
        }
        
        .indicator.active {
            background: #e84c1e;
            width: 24px;
        }
        
        .indicator:hover {
            background: rgba(255, 255, 255, 0.8);
        }
        
        /* Modern Team Section Styles - White Theme */
        .team-inner {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .title-col { position: relative; padding-top: 1rem; }
        
        .title-col h2 {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -.02em;
            color: #0d0c0a;
            margin-bottom: 1.8rem;
        }
        .title-col h2 em {
            font-style: italic;
            color: #e84c1e;
        }
        
        .title-col p {
            font-size: .95rem;
            line-height: 1.85;
            color: #7a756c;
            margin-bottom: 2.5rem;
        }
        
        .v-rule {
            position: absolute;
            top: 0; right: -3rem;
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.1) 70%, transparent);
        }
        
        .member-count {
            display: inline-flex;
            align-items: center;
            gap: .8rem;
            padding: .75rem 1.4rem;
            background: #0d0c0a;
            color: #fff;
            border-radius: 100px;
            font-size: .8rem;
            font-weight: 500;
            letter-spacing: .04em;
            border: 1px solid rgba(0,0,0,0.2);
        }
        .count-num {
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1;
            color: #e84c1e;
        }
        
        .cards-col { position: relative; }
        
        .carousel-track {
            display: flex;
            gap: 1.5rem;
            transition: transform .7s cubic-bezier(.16,1,.3,1);
        }
        
        .carousel-wrap { overflow: hidden; }
        
        /* Team Block One - Smaller Cards with 3D Effects */
        .team-block-one {
            position: relative;
            margin-bottom: 25px;
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 12px;
            overflow: hidden;
            transition: all .4s cubic-bezier(.16,1,.3,1);
            transform-style: preserve-3d;
            perspective: 1000px;
            flex: 0 0 calc(50% - .75rem);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .team-block-one:hover {
            background: #f7f4ef;
            border-color: rgba(232,76,30,0.2);
            transform: translateY(-8px) rotateX(5deg) rotateY(-5deg);
            box-shadow: 0 25px 50px rgba(232,76,30,0.15);
        }
        
        .team-block-one .inner-box {
            position: relative;
            transform-style: preserve-3d;
        }
        
        .team-block-one .image-box {
            position: relative;
            overflow: hidden;
            border-radius: 12px 12px 0 0;
            aspect-ratio: 3/4;
            background: #f7f4ef;
        }
        
        .team-block-one .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .6s cubic-bezier(.16,1,.3,1);
        }
        .team-block-one:hover .image-box img {
            transform: scale(1.05) translateZ(20px);
        }
        
        .team-block-one .image-box::before {
            content: '';
            position: absolute;
            top: 12px; right: 12px;
            width: 24px; height: 24px;
            border-top: 2px solid #e84c1e;
            border-right: 2px solid #e84c1e;
            z-index: 3;
            opacity: 0;
            transform: translate(3px, -3px);
            transition: all .4s cubic-bezier(.16,1,.3,1);
            border-radius: 0 4px 0 0;
        }
        .team-block-one .image-box::after {
            content: '';
            position: absolute;
            bottom: 12px; left: 12px;
            width: 24px; height: 24px;
            border-bottom: 2px solid #e84c1e;
            border-left: 2px solid #e84c1e;
            z-index: 3;
            opacity: 0;
            transform: translate(-3px, 3px);
            transition: all .4s cubic-bezier(.16,1,.3,1);
            border-radius: 0 0 0 4px;
        }
        .team-block-one:hover .image-box::before,
        .team-block-one:hover .image-box::after {
            opacity: 1;
            transform: none;
        }
        
        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(232,76,30,0.95) 0%, rgba(232,76,30,0.4) 45%, transparent 75%);
            z-index: 2;
            opacity: 0;
            transition: opacity .5s;
        }
        .team-block-one:hover .card-overlay { opacity: 1; }
        
        .card-socials {
            position: absolute;
            bottom: 1.2rem;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            display: flex;
            gap: .5rem;
            z-index: 4;
            opacity: 0;
            transition: all .4s cubic-bezier(.16,1,.3,1) .1s;
        }
        .team-block-one:hover .card-socials {
            opacity: 1;
            transform: translateX(-50%) translateY(0) translateZ(10px);
        }
        .social-btn {
            width: 32px; height: 32px;
            border-radius: 50%;
            border: 1.5px solid rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(8px);
            color: #0d0c0a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .65rem;
            font-weight: 700;
            text-decoration: none;
            transition: all .3s;
            letter-spacing: .04em;
        }
        .social-btn:hover {
            background: #e84c1e;
            border-color: #e84c1e;
            color: #fff;
            transform: translateY(-2px);
        }
        
        .team-block-one .lower-content {
            background: #fff;
            border-radius: 0 0 12px 12px;
            padding: 1.2rem 1.4rem 1.4rem;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(0,0,0,0.05);
        }
        .team-block-one .lower-content::before {
            content: '';
            position: absolute;
            top: 0; left: 1.4rem; right: 1.4rem;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e84c1e, transparent);
        }
        .team-block-one .lower-content::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(232,76,30,0.03) 100%);
            opacity: 0;
            transition: opacity .4s;
        }
        .team-block-one:hover .lower-content::after { opacity: 1; }
        
        .team-block-one .lower-content h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #0d0c0a;
            letter-spacing: -0.02em;
            margin-bottom: .4rem;
            transition: color .3s;
            line-height: 1.3;
        }
        .team-block-one:hover .lower-content h3 { color: #e84c1e; }
        .team-block-one .lower-content h3 a { color: inherit; text-decoration: none; }
        
        .team-block-one .designation {
            font-size: .75rem;
            font-weight: 500;
            color: #e84c1e;
            letter-spacing: .1em;
            text-transform: uppercase;
            display: block;
            margin-bottom: .8rem;
            line-height: 1.4;
        }
        
        .card-skills {
            display: flex;
            flex-wrap: wrap;
            gap: .4rem;
            margin-top: .8rem;
        }
        .skill-tag {
            font-size: .65rem;
            font-weight: 400;
            letter-spacing: .05em;
            text-transform: uppercase;
            color: #7a756c;
            background: rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 4px;
            padding: .3rem .6rem;
            transition: all .3s;
            line-height: 1.3;
        }
        .team-block-one:hover .skill-tag {
            color: #0d0c0a;
            border-color: rgba(232,76,30,0.3);
            background: rgba(232,76,30,0.08);
        }
        
        .carousel-nav {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .nav-btn {
            width: 40px; height: 40px;
            border-radius: 50%;
            border: 1.5px solid rgba(0,0,0,0.15);
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .3s;
            font-size: .9rem;
            color: #0d0c0a;
        }
        .nav-btn:hover {
            background: #e84c1e;
            border-color: #e84c1e;
            color: #fff;
            transform: scale(1.08);
        }
        .nav-btn:disabled {
            opacity: .25;
            cursor: default;
            transform: none;
        }
        
        .progress-track {
            flex: 1;
            height: 1px;
            background: rgba(0,0,0,0.1);
            border-radius: 100px;
            position: relative;
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #e84c1e, #ffc857);
            border-radius: 100px;
            transition: width .5s cubic-bezier(.16,1,.3,1);
        }
        
        .slide-counter {
            font-size: 1rem;
            font-weight: 600;
            color: #7a756c;
            letter-spacing: .05em;
            white-space: nowrap;
        }
        .slide-counter span { color: #0d0c0a; }
        
        .deco-circle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            border: 1px solid rgba(232,76,30,0.1);
        }
        .deco-1 {
            width: 150px; height: 150px;
            top: -30px; right: -40px;
            animation: spin-slow 25s linear infinite;
        }
        .deco-2 {
            width: 80px; height: 80px;
            bottom: 40px; left: 15px;
            border: 1px solid rgba(232,76,30,0.08);
            animation: spin-slow 18s linear infinite reverse;
        }
        @keyframes spin-slow { to { transform: rotate(360deg); } }
        
        @media (max-width: 960px) {
            .team-inner { grid-template-columns: 1fr; gap: 2rem; }
            .v-rule { display: none; }
        }
        @media (max-width: 560px) {
            .team-block-one { flex: 0 0 90%; }
        }
        
        /* List Item Animation */
        .list-style-one li {
            opacity: 0;
            animation: listSlide 0.5s ease-out forwards;
        }
        
        .list-style-one li:nth-child(1) { animation-delay: 0.2s; }
        .list-style-one li:nth-child(2) { animation-delay: 0.4s; }
        
        @keyframes listSlide {
            0% {
                opacity: 0;
                transform: translateX(-20px) rotateZ(-5deg);
            }
            100% {
                opacity: 1;
                transform: translateX(0) rotateZ(0deg);
            }
        }
        
        /* Bread Crumb Animation */
        .bread-crumb li {
            animation: breadcrumbFade 0.8s ease-out;
            animation-fill-mode: both;
        }
        
        .bread-crumb li:nth-child(1) { animation-delay: 0.5s; }
        .bread-crumb li:nth-child(2) { animation-delay: 0.7s; }
        
        @keyframes breadcrumbFade {
            0% {
                opacity: 0;
                transform: translateY(-10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Sub Title Gradient Animation */
        .sub-title {
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
            background-size: 300% 300%;
            animation: gradientShift 4s ease infinite;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Floating Animation for Elements */
        .chooseus-block-one:nth-child(odd) {
            animation: floatLeft 4s ease-in-out infinite;
        }
        
        .chooseus-block-one:nth-child(even) {
            animation: floatRight 4s ease-in-out infinite;
        }
        
        @keyframes floatLeft {
            0%, 100% {
                transform: translateX(0px);
            }
            50% {
                transform: translateX(-5px);
            }
        }
        
        @keyframes floatRight {
            0%, 100% {
                transform: translateX(0px);
            }
            50% {
                transform: translateX(5px);
            }
        }
        
        /* Responsive 3D Effects */
        @media (max-width: 768px) {
            .text-box:hover, .content-box:hover {
                transform: translateY(-5px) scale(1.01);
            }
            
            .chooseus-block-one:hover {
                transform: translateZ(10px) scale(1.02);
            }
            
            .team-block-one:hover {
                transform: translateY(-8px) scale(1.04);
            }
        }



/* Header Styles */
