   
        * {
            margin: 0 ;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
         body {
            color: #fff;
            min-height: 100vh;
            overflow-x: hidden;
        }

        
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }
        
        /* Navbar Start */
        .navbar {
            padding: 15px 0;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .menu-btn {
            width: 35px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .menu-btn-burger {
            width: 25px;
            height: 2px;
            background: #fff;   
            position: relative;
        }

        .menu-btn-burger::before,
        .menu-btn-burger::after {
            content: "";
            position: absolute;
            width: 25px;
            height: 2px;
            background: #fff;   
            left: 0;
        }

        .menu-btn-burger::before {
            top: -7px;
        }

        .menu-btn-burger::after {
            top: 7px;
        }

        .navbar.scrolled {
            padding: 8px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-brand img {
            height: 40px;
            transition: var(--transition);
        }
        
        .navbar.scrolled .navbar-brand img {
            height: 35px;
        }
        
        .navbar-nav {
            align-items: center;
        }
        
        .nav-link {
            position: relative;
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 15px !important;
            transition: var(--transition);
            border-radius: 4px;
        }
        
        .nav-link:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        
        .nav-link:hover:before {
            width: 80%;
        }
        
        .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .nav-link.active {
            color: var(--secondary-color) !important;
        }
        
        .nav-link.active:before {
            width: 80%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0;
            width: 30px;
            height: 30px;
            position: relative;
            background: transparent !important;
        }
        
        .navbar-toggler span {
            display: block;
            height: 2px;
            width: 100%;
            background: var(--text-light);
            margin: 6px 0;
            transition: var(--transition);
            transform-origin: center;
        }
        
        .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }
        
        .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        .top-animation-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
            background-size: 200% 100%;
            animation: gradientMove 3s ease infinite;
            z-index: 1001;
        }
        
        @keyframes gradientMove {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        .nav-link span {
            position: relative;
            z-index: 1;
        }
        
        .nav-highlight {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary-color), transparent);
            border-radius: 4px;
            opacity: 0;
            transition: var(--transition);
            z-index: 0;
        }
        
        .nav-link:hover .nav-highlight {
            opacity: 0.1;
        }
        
        .demo-content {
            margin-top: 100px;
            padding: 50px 20px;
            text-align: center;
        }
        
        .demo-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .demo-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(0, 155, 212, 1);
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }
            
            .nav-link {
                margin: 5px 0;
                text-align: center;
            }
        }
         /*========= navbar end ============== */

        /* ==============banner start=============  */

        .home-section .col-lg-7 {
            transform: scale(0.9);
            transform-origin: left center;
        }

        .home-intro {
            padding-top: 0 !important;
            padding-bottom: 0 !important;
        }

        .home-intro p {
            font-size: 0.95rem !important;
            line-height: 1.5 !important;
        }
        .home-intro h2 {
            font-size: 1.5rem !important;
            line-height: 1.3 !important;
        }
        .home-image img {
            max-width: 430px !important;
            height: auto !important;
        }

        .hs-exp {
            margin-bottom: 0.5rem !important;
        }
        .home-section .col-lg-7 {
            margin-top: -35px !important;
        }

        .home-intro {
            padding-top: 0 !important;
            padding-bottom: 0 !important;
        }
        .home-image {
            display: flex;
            justify-content: flex-end;
        }

        .home-image img {
            max-width: 320px; 
            height: auto;
        }
        .col-lg-5 {
            padding-right: 0 !important;
        }
        .home-image {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 40px !important;
        }

        .home-image img {
            margin-bottom: 40px !important; 
        }
        .btn-bar {
            margin-top: -18px !important; 
        }

        /* banner Responsive  */
        @media (max-width: 991px) {
            .home-section .col-lg-7 {
                transform: none;
                margin-top: 0 !important;
                text-align: center;
            }
            
            .home-intro h2 {
                font-size: 2rem !important;
            }
            
            .home-intro p {
                font-size: 1rem !important;
            }
            
            .home-image {
                justify-content: center;
                margin-top: 30px;
            }
            
            .home-image img {
                max-width: 280px !important;
            }
            
            .hs-exp {
                justify-content: center;
            }
            
            .exp-box h5 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .home-intro h2 {
                font-size: 1.8rem !important;
            }
            
            .home-image img {
                max-width: 250px !important;
            }
            
            .hs-exp {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .exp-box {
                width: 100%;
                max-width: 200px;
            }
        }

        @media (max-width: 576px) {
            .home-intro h2 {
                font-size: 1.6rem !important;
            }
            
            .home-image img {
                max-width: 220px !important;
            }
            
            .home-intro p {
                font-size: 0.9rem !important;
            }
        }

        body {
            color: var(--text-light);
            min-height: 100vh;
            overflow-x: hidden;
        }

        .home-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .home-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 144, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(123, 104, 238, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .home-image img {
            border: none !important;
            box-shadow: none !important;
        }
        .home-image::before {
            display: none !important;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            border-radius: 50%;
            background: var(--theme-color);
            animation: float 15s infinite linear;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
            background: #009bd4 !important;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 80%;
            animation-delay: -5s;
            background: #009bd4 !important;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: -10s;
            background: #009bd4 !important;
        }

        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 30%;
            left: 70%;
            animation-delay: -7s;
            background: #009bd4 !important;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        .home-intro {
            position: relative;
            z-index: 2;
        }

        .home-intro h6 {
            color: var(--theme-color);
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .home-intro h2 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        .text-theme {
            color: var(--theme-color);
            position: relative;
            display: inline-block;
        }

        .text-theme::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            z-index: -1;
            border-radius: 4px;
        }

        .home-intro p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.6s forwards;
        }

        .hs-exp {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.8s forwards;
        }

        .exp-box {
            text-align: center;
            padding: 1.5rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .exp-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .exp-box:hover::before {
            left: 100%;
        }

        .exp-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 107, 107, 0.3);
        }

        .exp-box h5 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--theme-color);
            margin-bottom: 0.5rem;
        }

        .exp-box span {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.4;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Button */
        .btn-bar {
            opacity: 0;
            animation: fadeInUp 0.8s ease 1s forwards;
        }

        .link-effect {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 30px;
            background: var(--theme-color);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .link-effect::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: left 0.5s ease;
        }

        .link-effect:hover::before {
            left: 100%;
        }

        .link-effect:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
        }

        /* Home Image */
        .home-image {
            position: relative;
            opacity: 0;
            animation: fadeInRight 1s ease 0.5s forwards;
        }

        .home-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            position: relative;
            z-index: 2;
        }

        .home-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--theme-color);
            border-radius: 20px;
            z-index: 1;
            opacity: 0;
            animation: borderReveal 1s ease 1s forwards;
        }

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

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes borderReveal {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 0.5;
                transform: scale(1);
            }
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: var(--theme-color);
            border-radius: 50%;
            opacity: 0.3;
            animation: particleFloat 20s infinite linear;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
            }
        }
        @media (max-width: 768px) {
        .home-image {
            margin-bottom: 0 !important;  
        }
        .home-image img {
            margin-bottom: 0 !important;  
        }
        }

        /* ===============banner end================ */
        
        /* ===============about start ================ */

        .about-text {
            opacity: 0;
            transform: translateX(30px);
            animation: slideInRight 0.8s ease 0.3s forwards;
        }

        .about-row {
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .about-row::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .about-row:hover::before {
            left: 100%;
        }

        .about-row:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 107, 107, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .about-row h3 {
            color: var(--theme-color);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .about-row h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--theme-color);
            border-radius: 2px;
        }

        .about-row p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .info-card {
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .info-card:hover::before {
            left: 100%;
        }

        .info-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 107, 107, 0.3);
        }

        .info-card h5 {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .info-card:hover h5 {
            color: var(--theme-color);
        }

        .info-card p {
            color: var(--text-gray);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .info-card small {
            color: var(--theme-color);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .skills-list {
            list-style: none;
            padding: 0;
        }

        .skills-list li {
            color: var(--text-gray);
            padding: 8px 0;
            position: relative;
            padding-left: 20px;
            transition: all 0.3s ease;
        }

        .skills-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--theme-color);
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .skills-list li:hover {
            color: var(--text-light);
            transform: translateX(5px);
        }

        .skills-list li:hover::before {
            transform: scale(1.3);
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .about-row:nth-child(1) { animation-delay: 0.4s; }
        .about-row:nth-child(2) { animation-delay: 0.6s; }
        .about-row:nth-child(3) { animation-delay: 0.8s; }
        .about-row:nth-child(4) { animation-delay: 1s; }

        /* Responsive */
        @media (max-width: 768px) {
            .about-row {
                padding: 1.5rem;
            }
            
            .info-card {
                padding: 1rem;
            }
        }
        .sticky-md-top {
            position: sticky;
            top: 100px;
            animation: fadeInLeft 1s ease 0.2s forwards;
            opacity: 0;
            transform: translateX(-30px);
        }

        .about-img-box {
            position: relative;
        }

        .about-img {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .about-img:hover {
            transform: perspective(1000px) rotateY(0deg) translateY(-10px);
            box-shadow: 0 20px 30px rgba(150, 70, 70, 0.2);
        }

        .about-img img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            transition: all 0.5s ease;
            filter: grayscale(0.2);
        }

        .about-img:hover img {
            filter: grayscale(0);
            transform: scale(1.05);
        }

        .about-img::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            border: 2px solid var(--theme-color);
            border-radius: 25px;
            opacity: 0;
            animation: borderReveal 2s ease 1s forwards;
            z-index: -1;
        }

        .social-icons {
            margin-top: 2rem;
            animation: fadeInUp 0.8s ease 0.8s forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin: 0 8px;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .social-icons a:hover::before {
            left: 100%;
        }

        .social-icons a:hover {
            transform: translateY(-5px);
            background: var(--theme-color);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }

        .social-icons a.facebook:hover { background: #1877f2; }
        .social-icons a.twitter:hover { background: #1da1f2; }
        .social-icons a.instagram:hover { background: #e4405f; }
        .social-icons a.linkedin:hover { background: #0a66c2; }
        .social-icons a.pinterest:hover { background: #bd081c; }

        @keyframes imagePulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        .about-img {
            animation: imagePulse 4s ease-in-out infinite;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        @keyframes borderReveal {
            0% {
                opacity: 0;
                transform: scale(0.95);
            }
            50% {
                opacity: 0.3;
                transform: scale(1);
            }
            100% {
                opacity: 0.1;
                transform: scale(1);
            }
        }

        .about-img-box::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 107, 107, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            z-index: -1;
        }

        .about-img-box::after {
            content: '';
            position: absolute;
            bottom: -15px;
            right: -15px;
            width: 30px;
            height: 30px;
            background: rgb(2, 22, 29);
            border-radius: 50%;
            animation: float 4s ease-in-out infinite reverse;
            z-index: -1;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-10px) rotate(120deg);
            }
            66% {
                transform: translateY(5px) rotate(240deg);
            }
        }

        /*About Responsive */
        @media (max-width: 768px) {
            .sticky-md-top {
                position: relative;
                top: 0;
                margin-bottom: 2rem;
            }
            
            .about-img {
                transform: none;
            }
            
            .about-img:hover {
                transform: translateY(-5px);
            }
        }
        /* ==============about section end============== */

        /* ==============services section start============== */

        .services-section {
            position: relative;
            padding: 120px 0;
            overflow: hidden;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                /* radial-gradient(circle at 10% 20%, rgba(0, 155, 212, 1) 0%, transparent 50%), */
                radial-gradient(circle at 90% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(156, 39, 176, 0.08) 0%, transparent 70%);
            z-index: 1;
        }

        .border-top-g {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .section-heading {
            margin-bottom: 5rem;
            position: relative;
            z-index: 2;
        }

        .section-heading h6 {
            color: #009bd4;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: inline-block;
            padding: 8px 20px;
            background: rgba(0, 155, 212, 1);
            border-radius: 25px;
            border: 1px solid rgba(0, 155, 212, 1);
        }

        .section-heading h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-heading p {
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto;
        }

        .service-card {
            padding: 3rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(0, 155, 212, 1), 
                transparent);
            transition: left 0.6s ease;
            z-index: -1;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 22px;
            z-index: -2;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #009bd4, #009bd4);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) ;
            background: linear-gradient(135deg, #009bd4, #009bd4);
        }

        .service-icon::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, #009bd4, #009bd4);
            border-radius: 25px;
            opacity: 0.3;
            z-index: -1;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon::before {
            opacity: 0.6;
            transform: scale(1.1);
        }

        .service-icon i {
            color: white;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .service-card h4 {
            color: var(--text-light);
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .service-card:hover h4 {
            color: #009bd4;
        }

        .service-card p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .service-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }

        .service-features span {
            padding: 6px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            color: var(--text-gray);
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            color: #009bd4;
        }

        .service-card:nth-child(1):hover h4,
        .service-card:nth-child(1):hover .service-features span {
            color: #009bd4;
        }

        .service-card:nth-child(2):hover h4,
        .service-card:nth-child(2):hover .service-features span {
            color: #009bd4;
        }

        .service-card:nth-child(3):hover h4,
        .service-card:nth-child(3):hover .service-features span {
            color: #009bd4;
        }

        .service-card:nth-child(4):hover h4,
        .service-card:nth-child(4):hover .service-features span {
            color: #009bd4;
        }

        .service-card:nth-child(5):hover h4,
        .service-card:nth-child(5):hover .service-features span {
            color: #009bd4;
        }

        .service-card:nth-child(6):hover h4,
        .service-card:nth-child(6):hover .service-features span {
            color: #009bd4;
        }

        .service-card:nth-child(1):hover .service-icon {
            background: linear-gradient(135deg, #009bd4, #009bd4);
        }

        .service-card:nth-child(2):hover .service-icon {
            background: linear-gradient(135deg, #009bd4, #009bd4);
        }

        .service-card:nth-child(3):hover .service-icon {
            background: linear-gradient(135deg, #009bd4, #009bd4);
        }

        .service-card:nth-child(4):hover .service-icon {
            background: linear-gradient(135deg, #009bd4, #009bd4);
        }

        .service-card:nth-child(5):hover .service-icon {
            background: linear-gradient(135deg, #009bd4, #009bd4);
        }

        .service-card:nth-child(6):hover .service-icon {
            background: linear-gradient(135deg, #009bd4, #009bd4);
        }

        .service-card {
            opacity: 0;
            transform: translateY(50px);
            animation: serviceSlideUp 0.8s ease forwards;
        }

        .col-sm-6.col-lg-4:nth-child(1) .service-card { animation-delay: 0.1s; }
        .col-sm-6.col-lg-4:nth-child(2) .service-card { animation-delay: 0.2s; }
        .col-sm-6.col-lg-4:nth-child(3) .service-card { animation-delay: 0.3s; }
        .col-sm-6.col-lg-4:nth-child(4) .service-card { animation-delay: 0.4s; }
        .col-sm-6.col-lg-4:nth-child(5) .service-card { animation-delay: 0.5s; }
        .col-sm-6.col-lg-4:nth-child(6) .service-card { animation-delay: 0.6s; }

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

        /*Service Responsive */
        @media (max-width: 768px) {
            .services-section {
                padding: 80px 0;
                padding-top: 10px;
            }
            
            .section-heading h3 {
                font-size: 2.2rem;
            }
            
            .service-card {
                padding: 2rem 1.5rem;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 1.5rem;
            }
            
            .service-icon i {
                font-size: 1.7rem;
            }
            .son-col{
                margin-top: 10px;
            }
            .soncond-col{
                margin-top: 10px;
            }
          
        }

        @media (max-width: 576px) {
            .section-heading h3 {
                font-size: 1.8rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }
        }
    /* ============service  section end========== */

        /*=============achievement start============== */
        
        .section-title {
            font-size: 2rem;          
            font-weight: 700;         
            text-transform: uppercase;
            letter-spacing: 2px;      
            position: relative;
            display: inline-block;
            padding-bottom: 8px;
            }

            .section-title::after {
            content: "";
            position: absolute;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, #009bd4, #009bd4);
            left: 0;
            bottom: 0;
            border-radius: 2px;
            }

            .work-section {
                position: relative;
                padding: 120px 0;
                overflow: hidden;
            }

            .portfolio-background {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
            }

            .bg-shape {
                position: absolute;
                border-radius: 50%;
                background: linear-gradient(135deg, rgba(0, 155, 212, 1), rgba(0, 155, 212, 1));
                animation: float 6s ease-in-out infinite;
            }

            .shape-1 {
                width: 200px;
                height: 200px;
                top: 10%;
                left: 5%;
                animation-delay: 0s;
            }

            .shape-2 {
                width: 150px;
                height: 150px;
                top: 60%;
                left: 80%;
                animation-delay: -2s;
            }

            .shape-3 {
                width: 100px;
                height: 100px;
                top: 80%;
                left: 15%;
                animation-delay: -4s;
            }

            .shape-4 {
                width: 120px;
                height: 120px;
                top: 20%;
                left: 75%;
                animation-delay: -1s;
            }

            .border-top-g {
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .section-heading {
                margin-bottom: 4rem;
                position: relative;
                z-index: 2;
            }

            .section-heading h6 {
                color: #009bd4;
                font-size: 0.9rem;
                font-weight: 600;
                letter-spacing: 3px;
                text-transform: uppercase;
                margin-bottom: 1rem;
                display: inline-block;
                padding: 8px 20px;
                background: rgba(0, 155, 212, 1);
                border-radius: 25px;
                border: 1px solid rgba(0, 155, 212, 1);
            }

            .section-heading h3 {
                font-size: 3rem;
                font-weight: 700;
                margin-bottom: 1.5rem;
                color: #ffffff;
                position: relative;
            }

            .section-heading h3::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 3px;
                background: linear-gradient(90deg, #009bd4, #4a90e2);
                border-radius: 2px;
            }

            .section-heading p {
                color: #b0b0b0;
                font-size: 1.1rem;
                line-height: 1.7;
                max-width: 500px;
                margin: 0 auto;
            }

            .portfolio-filter {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 1rem;
                margin-bottom: 3rem;
                position: relative;
                z-index: 2;
            }

            .filter-btn {
                padding: 12px 24px;
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 25px;
                color: #b0b0b0;
                font-size: 0.9rem;
                font-weight: 500;
                cursor: pointer;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
            }

            .filter-btn:hover,
            .filter-btn.active {
                background: #009bd4;
                border-color: #009bd4;
                color: white;
                transform: translateY(-2px);
                box-shadow: 0 10px 20px rgba(0, 155, 212, 1);
            }

            .portfolio-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2rem;
                position: relative;
                z-index: 2;
            }

            .work-box {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 20px;
                overflow: hidden;
                backdrop-filter: blur(20px);
                border: 1px solid rgba(255, 255, 255, 0.1);
                transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                position: relative;
                opacity: 0;
                transform: translateY(50px);
                animation: workSlideUp 0.8s ease forwards;
            }

            .work-box:nth-child(1) { animation-delay: 0.1s; }
            .work-box:nth-child(2) { animation-delay: 0.2s; }
            .work-box:nth-child(3) { animation-delay: 0.3s; }
            .work-box:nth-child(4) { animation-delay: 0.4s; }
            .work-box:nth-child(5) { animation-delay: 0.5s; }
            .work-box:nth-child(6) { animation-delay: 0.6s; }
            .work-box:nth-child(7) { animation-delay: 0.7s; }
            .work-box:nth-child(8) { animation-delay: 0.8s; }
            .work-box:nth-child(9) { animation-delay: 0.9s; }

            .work-box:hover {
                transform: translateY(-10px);
                border-color: rgba(0, 155, 212, 1);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            }

            .work-img {
                position: relative;
                overflow: hidden;
            }

            .work-img img {
                width: 100%;
                height: 250px;
                object-fit: cover;
                transition: all 0.4s ease;
            }

            .work-box:hover .work-img img {
                transform: scale(1.05);
            }

            .work-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, rgba(0, 155, 212, 1), rgba(74, 144, 226, 0.8));
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: all 0.4s ease;
            }

            .work-box:hover .work-overlay {
                opacity: 1;
            }

            .work-actions {
                display: flex;
                gap: 1rem;
            }
            

            .work-btn {
                width: 50px;
                height: 50px;
                background: rgba(255, 255, 255, 0.2);
                border: 1px solid rgba(255, 255, 255, 0.3);
                border-radius: 50%;
                color: white;
                font-size: 1.2rem;
                cursor: pointer;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
            }

            .work-btn:hover {
                background: white;
                color: #009bd4 !important;
                transform: scale(1.1);
                
            }

            .work-badge {
                position: absolute;
                top: 1rem;
                right: 1rem;
                padding: 6px 12px;
                background: rgba(0, 155, 212, 1);
                color: white;
                font-size: 0.8rem;
                font-weight: 600;
                border-radius: 15px;
                backdrop-filter: blur(10px);
            }

            .work-info {
                padding: 2rem;
            }

            .meta {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 1rem;
            }

            .meta span {
                font-size: 0.9rem;
                font-weight: 500;
            }

            .work-date {
                color: #b0b0b0;
            }

            .work-info h5 {
                color: #ffffff;
                font-size: 1.3rem;
                font-weight: 600;
                margin-bottom: 1rem;
                line-height: 1.4;
            }

            .work-info p {
                color: #b0b0b0;
                line-height: 1.6;
                margin-bottom: 1.5rem;
            }

            .work-stats {
                display: flex;
                gap: 1.5rem;
                margin-bottom: 1.5rem;
                padding: 1rem;
                background: rgba(255, 255, 255, 0.03);
                border-radius: 10px;
                border: 1px solid rgba(255, 255, 255, 0.05);
            }

            .stat {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                color: #b0b0b0;
                font-size: 0.85rem;
            }

            .stat i {
                color: #009bd4;
                font-size: 1rem;
            }

            .btn-load-more {
                padding: 1rem 2.5rem;
                background-color: #009bd4;
                background: linear-gradient(135deg, #009bd4, #009bd4);
                border: none;
                border-radius: 25px;
                color: white;
                font-size: 1rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                display: inline-flex;
                align-items: center;
                gap: 1rem;
                position: relative;
                overflow: hidden;
            }

            .btn-load-more::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                transition: left 0.6s ease;
            }

            .btn-load-more:hover::before {
                left: 100%;
            }

            .btn-load-more:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 30px rgba(0, 155, 212, 1);
            }

            .loading-dots {
                display: flex;
                gap: 4px;
            }

            .loading-dots span {
                width: 6px;
                height: 6px;
                background: currentColor;
                border-radius: 50%;
                animation: loading 1.4s ease-in-out infinite both;
            }

            .loading-dots span:nth-child(1) { animation-delay: -0.32s; }
            .loading-dots span:nth-child(2) { animation-delay: -0.16s; }

            @keyframes float {
                0%, 100% {
                    transform: translateY(0) rotate(0deg);
                }
                33% {
                    transform: translateY(-20px) rotate(120deg);
                }
                66% {
                    transform: translateY(10px) rotate(240deg);
                }
            }

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

            @keyframes loading {
                0%, 80%, 100% {
                    transform: scale(0);
                }
                40% {
                    transform: scale(1);
                }
            }

            /* acheivement Responsive */
            @media (max-width: 768px) {
                .work-section {
                    padding: 80px 0;
                }
                
                .section-heading h3 {
                    font-size: 2.2rem;
                }
                
                .portfolio-grid {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }
                
                .portfolio-filter {
                    gap: 0.5rem;
                }
                
                .filter-btn {
                    padding: 10px 16px;
                    font-size: 0.8rem;
                }
                
                .work-info {
                    padding: 1.5rem;
                }
            }

            @media (max-width: 576px) {
                .section-heading h3 {
                    font-size: 1.8rem;
                }
                
                .work-stats {
                    flex-direction: column;
                    gap: 0.8rem;
                }
            }


            .portfolio-filter .filter-btn {
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 30px;
            border: none;
            color: #fff;
            background: linear-gradient(135deg, #444, #222);
            cursor: pointer;
            transition: all 0.3s ease;
            }

            .portfolio-filter .filter-btn.active {
            background: linear-gradient(135deg, #009bd4, #009bd4);
            box-shadow: 0 8px 20px rgba(0, 155, 212, 1);
            transform: translateY(-2px);
            }

            .portfolio-filter .filter-btn:hover {
            background: linear-gradient(135deg, #009bd4, #009bd4);
            }

            :root {
                --dark-bg: #0a0a0a;
                --darker-bg: #050505;
                --theme-color: #009bd4;
                --text-light: #ffffff;
                --text-gray: #b0b0b0;
            }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
                color: var(--text-light);
                min-height: 100vh;
                overflow-x: hidden;
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            }

           .work-section {
            position: relative;
            padding: 100px 0;
            overflow: hidden;
            }

            .border-top-g {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .portfolio-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            }

            .bg-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
            animation: float 20s infinite linear;
            }

            .shape-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            background: var(--theme-color);
            animation-delay: 0s;
            }

            .shape-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            left: 80%;
            background: #009bd4;
            animation-delay: -5s;
            }

            .shape-3 {
            width: 100px;
            height: 100px;
            top: 80%;
            left: 15%;
            background: var(--theme-color);
            animation-delay: -10s;
            }

            .shape-4 {
            width: 180px;
            height: 180px;
            top: 20%;
            left: 70%;
            background: var(--theme-color);
            animation-delay: -7s;
            }

            @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
            }

            .section-heading {
            margin-bottom: 60px;
            }

            .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            }

            .text-theme {
            color: var(--theme-color);
            }

            .portfolio-filter {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            }

            .filter-btn {
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            }

            .filter-btn.active,
            .filter-btn:hover {
            background: var(--theme-color);
            color: var(--dark-bg);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 155, 212, 1);
            }

            .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            }

            .work-box {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            /* Removed zoom-in on appear */
            transform: translateY(20px);
            animation: workItemAppear 0.6s ease forwards;
            }

            .work-box:nth-child(1) { animation-delay: 0.1s; }
            .work-box:nth-child(2) { animation-delay: 0.2s; }
            .work-box:nth-child(3) { animation-delay: 0.3s; }
            .work-box:nth-child(4) { animation-delay: 0.4s; }
            .work-box:nth-child(5) { animation-delay: 0.5s; }
            .work-box:nth-child(6) { animation-delay: 0.6s; }
            .work-box:nth-child(7) { animation-delay: 0.7s; }
            .work-box:nth-child(8) { animation-delay: 0.8s; }
            .work-box:nth-child(9) { animation-delay: 0.9s; }
            .work-box:nth-child(10) { animation-delay: 1s; }
            .work-box:nth-child(11) { animation-delay: 1.1s; }
            .work-box:nth-child(12) { animation-delay: 1.2s; }
            .work-box:nth-child(13) { animation-delay: 1.3s; }
            .work-box:nth-child(14) { animation-delay: 1.4s; }
            .work-box:nth-child(15) { animation-delay: 1.5s; }
            .work-box:nth-child(16) { animation-delay: 1.6s; }
            .work-box:nth-child(17) { animation-delay: 1.7s; }

            .work-box:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(0, 155, 212, 1);
            }

            .work-img {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
            border-radius: 15px;
            }

            .work-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
            border-radius: 15px;
            }

            .work-box:hover .work-img img {
            transform: scale(1.1);
            }

            .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 155, 212, 1), rgba(74, 144, 226, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
            border-radius: 15px;
            }

            .work-box:hover .work-overlay {
            opacity: 1;
            }

            .work-content {
            text-align: center;
            color: white;
            padding: 2rem;
            transform: translateY(20px);
            transition: transform 0.4s ease;
            }

            .work-box:hover .work-content {
            transform: translateY(0);
            }

            .work-content h5 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            }

            .work-content p {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
            }

            .work-actions {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            }

            .work-action-btn {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            }

            .work-action-btn:hover {
            background: white;
            color: #009bd4;
            transform: scale(1.1);
            }

            .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.98);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            }

            .image-modal.active {
            display: flex;
            opacity: 1;
            }

            .modal-image {
            max-width: 95vw;
            max-height: 95vh;
            width: auto;
            height: auto;
            display: block;
            object-fit: contain;
            animation: imageAppear 0.4s ease-out;
            }

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

            @keyframes imageAppear {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
            }

            /*acheiement Responsive */
            @media (max-width: 768px) {
            .portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }

            .section-title {
                font-size: 2.2rem;
            }

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

            .modal-image {
                max-width: 98vw;
                max-height: 98vh;
            }

            .work-img {
                height: 250px;
            }
            }

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

            .work-content {
                padding: 1.5rem;
            }
            }
            .work-box {
            transition: opacity 220ms ease, transform 220ms ease, visibility 220ms linear;
            will-change: opacity, transform;
            }
            .work-box.hiding {
            opacity: 0;
            transform: scale(.98);
            visibility: hidden;
            pointer-events: none;
            }

            .work-box.showing {
            opacity: 1;
            transform: scale(1);
            visibility: visible;
            pointer-events: auto;
            }

            .work-img { content-visibility: auto; contain-intrinsic-size: 300px 250px; }

            @media (prefers-reduced-motion: reduce) {
            .work-box { transition: none !important; }
            }
        /* work section  */

        .core-section {
            position: relative;
            padding: 120px 0;
            overflow: hidden;
        }

        .core-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .core-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 145, 134, 0.08), rgba(74, 144, 226, 0.05));
            animation: coreFloat 8s ease-in-out infinite;
        }

        .shape-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 8%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 80px;
            height: 80px;
            top: 70%;
            left: 85%;
            animation-delay: -2s;
        }

        .shape-3 {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 12%;
            animation-delay: -4s;
        }

        .shape-4 {
            width: 100px;
            height: 100px;
            top: 25%;
            left: 78%;
            animation-delay: -1s;
        }

        .shape-5 {
            width: 70px;
            height: 70px;
            top: 60%;
            left: 20%;
            animation-delay: -3s;
        }

        .shape-6 {
            width: 90px;
            height: 90px;
            top: 15%;
            left: 65%;
            animation-delay: -5s;
        }

        .border-top-g {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .section-heading {
            margin-bottom: 5rem;
            position: relative;
            z-index: 2;
        }

        .section-heading h6 {
            color: #009bd4;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: inline-block;
            padding: 8px 20px;
            background: rgba(0, 145, 134, 0.1);
            border-radius: 25px;
            border: 1px solid rgba(0, 155, 212, 1);
        }

        .section-heading h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff !important;
            position: relative;
        }

        .section-heading h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #009bd4, );
            border-radius: 2px;
        }

        .section-heading p {
            color: #b0b0b0;
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto;
        }

        .value-card {
            padding: 3rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            z-index: 2;
            opacity: 0;
            transform: translateY(50px);
            animation: valueSlideUp 0.8s ease forwards;
        }

        .value-card:nth-child(1) { animation-delay: 0.1s; }
        .value-card:nth-child(2) { animation-delay: 0.2s; }
        .value-card:nth-child(3) { animation-delay: 0.3s; }
        .value-card:nth-child(4) { animation-delay: 0.4s; }
        .value-card:nth-child(5) { animation-delay: 0.5s; }
        .value-card:nth-child(6) { animation-delay: 0.6s; }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(0, 155, 212, 1), 
                transparent);
            transition: left 0.6s ease;
            z-index: -1;
        }

        .value-card:hover::before {
            left: 100%;
        }

        .value-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, 
                rgba(0, 155, 212, 1), 
                rgba(50, 90, 150, 0.3), 
                );
            border-radius: 22px;
            z-index: -2;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .value-progress{
        width: 100%;
        height: 6px;
        background: rgba(255,255,255,0.12);
        border-radius: 999px;
        overflow: hidden;
        margin-top: 12px;
        }

        .value-progress .progress-bar{
        width: 100% !important;    
        height: 100%;
        background: linear-gradient(90deg,#009bd4,#009bd4);
        border-radius: 999px;
        transition: transform .6s ease; 
        transform-origin: left;
        transform: scaleX(0);       
        }

        .core-section.inview .progress-bar{
        transform: scaleX(1);
        }

        .value-card:hover::after {
            opacity: 1;
        }

        .value-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        .value-icon-wrapper {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
        }

        .value-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #009bd4, #009bd4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
            color: white;
        }

        .value-card:hover .value-icon {
            transform: scale(1.00) ;
        }

        .value-icon::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            opacity: 0.3;
            z-index: -1;
            transition: all 0.4s ease;
        }

        .value-card:hover .value-icon::before {
            opacity: 0.6;
            transform: scale(1.1);
        }

        .value-icon i {
            color: white;
            font-size: 2.5rem;
            transition: all 0.3s ease;
        }

        .value-pulse {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid #009bd4;
            border-radius: 50%;
            animation: pulse 2s ease-out infinite;
            opacity: 0;
        }

        .value-card:hover .value-pulse {
            border-color: #009bd4;
        }

        .value-card h5 {
            color: #ffffff;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .value-card:hover h5 {
            color: #009bd4;
        }

        .value-card p {
            color: #b0b0b0;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .value-progress {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            position: relative;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #009bd4, #4a90e2);
            border-radius: 3px;
            width: 0;
            transition: width 1.5s ease-in-out;
            position: relative;
        }

        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 20px;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
            animation: progressShine 2s ease-in-out infinite;
        }

        .values-summary {
            margin-top: 5rem;
            padding: 3rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
        }

        .summary-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .summary-item:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 155, 212, 1);
            background: rgba(255, 255, 255, 0.08);
        }

        .summary-number {
            font-size: 3rem;
            font-weight: 700;
            color: #009bd4;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #009bd4, #4a90e2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .summary-label {
            color: #b0b0b0;
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes coreFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            33% {
                transform: translateY(-15px) rotate(120deg) scale(1.05);
            }
            66% {
                transform: translateY(8px) rotate(240deg) scale(0.95);
            }
        }

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

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        @keyframes progressShine {
            0%, 100% {
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
        }

        /*work Responsive */
        @media (max-width: 768px) {
            .core-section {
                padding: 80px 0;
            }
            
            .section-heading h3 {
                font-size: 2.2rem;
            }
            
            .value-card {
                padding: 2rem 1.5rem;
            }
            
            .value-icon-wrapper {
                width: 80px;
                height: 80px;
                margin-bottom: 1.5rem;
            }
            
            .value-icon {
                width: 80px;
                height: 80px;
            }
            
            .value-icon i {
                font-size: 2rem;
            }
            
            .values-summary {
                padding: 2rem;
                margin-top: 3rem;
            }
            
            .summary-item {
                padding: 1.5rem;
            }
            
            .summary-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            .section-heading h3 {
                font-size: 1.8rem;
            }
            
            .value-card {
                padding: 1.5rem;
            }
            
            .values-summary {
                padding: 1.5rem;
            }
        }
        /* ========wrok section end =============== */
        /*=========== gallary start=============== section  */
        .gallery-section {
            position: relative;
            padding: 120px 0;
            overflow: hidden;
        }

        .gallery-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .gallery-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 145, 134, 0.08), rgba(74, 144, 226, 0.05));
            animation: galleryFloat 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 150px;
            height: 150px;
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 100px;
            height: 100px;
            top: 65%;
            left: 85%;
            animation-delay: -2s;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            top: 80%;
            left: 15%;
            animation-delay: -4s;
        }

        .shape-4 {
            width: 120px;
            height: 120px;
            top: 25%;
            left: 75%;
            animation-delay: -1s;
        }

        .border-top-g {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .section-heading {
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .section-heading h6 {
            color: #009bd4;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: inline-block;
            padding: 8px 20px;
            background: rgba(0, 155, 212, 1);
            border-radius: 25px;
            border: 1px solid rgba(0, 155, 212, 1);
        }

        .section-heading h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
            position: relative;
        }

        .section-heading h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #009bd4, #4a90e2);
            border-radius: 2px;
        }

        .section-heading p {
            color: #b0b0b0;
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto;
        }

        .gallery-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        .gallery-filter-btn {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            color: #b0b0b0;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .gallery-filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 155, 212, 1), transparent);
            transition: left 0.6s ease;
        }

        .gallery-filter-btn:hover::before {
            left: 100%;
        }

        .gallery-filter-btn:hover,
        .gallery-filter-btn.active {
            background: #009bd4;
            border-color: #009bd4;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 155, 212, 1);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            opacity: 0;
            /* Removed zoom-in on appear */
            transform: translateY(20px);
            animation: galleryItemAppear 0.6s ease forwards;
        }

        .gallery-item:nth-child(1) { animation-delay: 0.1s; }
        .gallery-item:nth-child(2) { animation-delay: 0.2s; }
        .gallery-item:nth-child(3) { animation-delay: 0.3s; }
        .gallery-item:nth-child(4) { animation-delay: 0.4s; }
        .gallery-item:nth-child(5) { animation-delay: 0.5s; }
        .gallery-item:nth-child(6) { animation-delay: 0.6s; }
        .gallery-item:nth-child(7) { animation-delay: 0.7s; }
        .gallery-item:nth-child(8) { animation-delay: 0.8s; }

        .gallery-img {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .gallery-img img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: all 0.4s ease;
            border-radius: 15px;
        }

        .gallery-item:hover .gallery-img img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 155, 212, 1), rgba(74, 144, 226, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
            border-radius: 15px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-content {
            text-align: center;
            color: white;
            padding: 2rem;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-content {
            transform: translateY(0);
        }

        .gallery-content h5 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .gallery-content p {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .gallery-actions {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
        }

        .gallery-action-btn {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .gallery-action-btn:hover {
            background: white;
            color: #009186;
            transform: scale(1.1);
        }

        .btn-load-more-gallery {
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #009bd4, #009bd4);
            border: none;
            border-radius: 25px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-load-more-gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .btn-load-more-gallery:hover::before {
            left: 100%;
        }

        .btn-load-more-gallery:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 155, 212, 1);
        }

        .loading-dots {
            display: flex;
            gap: 4px;
        }

        .loading-dots span {
            width: 6px;
            height: 6px;
            background: currentColor;
            border-radius: 50%;
            animation: loading 1.4s ease-in-out infinite both;
        }

        .loading-dots span:nth-child(1) { animation-delay: -0.32s; }
        .loading-dots span:nth-child(2) { animation-delay: -0.16s; }

        .gallery-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .gallery-lightbox.active {
            display: flex;
        }

        .lightbox-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
        }

        .lightbox-content {
            position: relative;
            background: transparent;
            border-radius: 0;
            backdrop-filter: none;
            border: none;
            max-width: 90vw;
            max-height: 90vh;
            overflow: hidden;
            animation: lightboxAppear 0.3s ease;
        }

        .lightbox-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background: white;
            color: #009bd4;
            transform: scale(1.1);
        }

        .lightbox-image {
            width: 100%;
            height: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-image img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        @keyframes galleryFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-15px) rotate(120deg);
            }
            66% {
                transform: translateY(8px) rotate(240deg);
            }
        }

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

        @keyframes loading {
            0%, 80%, 100% {
                transform: scale(0);
            }
            40% {
                transform: scale(1);
            }
        }

        @keyframes lightboxAppear {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /*================gallary Responsive=========== */
        @media (max-width: 768px) {
            .gallery-section {
                padding: 80px 0;
            }
            
            .section-heading h3 {
                font-size: 2.2rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1rem;
            }
            
            .gallery-filter {
                gap: 0.5rem;
            }
            
            .gallery-filter-btn {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
            
            .lightbox-content {
                margin: 1rem;
            }
            
            .lightbox-image {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .section-heading h3 {
                font-size: 1.8rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-content {
                padding: 1.5rem;
            }
        }
        /* ======gallary end================= */

        /* ======testimonial start================= */

        .testimonial-section {
            position: relative;
            padding: 120px 0;
            overflow: hidden;
        }

        .testimonial-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .testimonial-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(20, 49, 47, 0.08)gba(74, 144, 226, 0.05));
            animation: testimonialFloat 8s ease-in-out infinite;
        }

        .testimonial-shape-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 8%;
            animation-delay: 0s;
        }

        .testimonial-shape-2 {
            width: 80px;
            height: 80px;
            top: 70%;
            left: 90%;
            animation-delay: -3s;
        }

        .testimonial-shape-3 {
            width: 60px;
            height: 60px;
            top: 85%;
            left: 12%;
            animation-delay: -5s;
        }

        .testimonial-shape-4 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 80%;
            animation-delay: -2s;
        }

        .border-top-g {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .section-heading {
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .section-heading h6 {
            color: #009bd4;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: inline-block;
            padding: 8px 20px;
            background: rgb(2, 84, 114);
            border-radius: 25px;
            border: 1px solid rgb(0, 92, 126);
        }

        .section-heading h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
            position: relative;
        }

        .section-heading h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #009bd4, #009bd4);
            border-radius: 2px;
        }

        .section-heading p {
            color: #b0b0b0;
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 35px 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: testimonialAppear 0.6s ease forwards;
        }

        .testimonial-item:nth-child(1) { animation-delay: 0.1s; }
        .testimonial-item:nth-child(2) { animation-delay: 0.2s; }
        .testimonial-item:nth-child(3) { animation-delay: 0.3s; }

        .testimonial-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 145, 134, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .testimonial-item:hover::before {
            left: 100%;
        }

        .testimonial-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 145, 134, 0.2);
            border-color: rgba(0, 145, 134, 0.3);
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .testimonial-icons {
            font-size: 1.8rem;
            color: #009bd4;
            margin-bottom: 20px;
            opacity: 0.7;
        }

        .testimonial-text {
            color: #b0b0b0;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 25px;
            font-style: italic;
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: auto;
        }

        .testimonial-img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid #009bd4;
            flex-shrink: 0;
        }

        .testimonial-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-info h6 {
            color: #ffffff;
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .testimonial-info span {
            color: #009bd4;
            font-size: 0.9rem;
            font-weight: 500;
        }

        @keyframes testimonialFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-20px) rotate(120deg);
            }
            66% {
                transform: translateY(10px) rotate(240deg);
            }
        }

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

        /* testimonial Responsive */
        @media (max-width: 1200px) {
            .testimonial-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
                padding: 0 20px;
            }
        }

        @media (max-width: 992px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .testimonial-section {
                padding: 80px 0;
            }
            
            .section-heading h3 {
                font-size: 2.2rem;
            }
            
            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                max-width: 500px;
            }
            
            .testimonial-item {
                padding: 30px 25px;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .section-heading h3 {
                font-size: 1.8rem;
            }
            
            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }
            
            .testimonial-img {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .testimonial-grid {
                padding: 0 15px;
            }
        }
        /* =============testimonail end=============== */
        /* =============footer start=============== */
        .footer-professional {
        position: relative;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        padding: 80px 0 40px;
        border-top: 1px solid rgb(13, 62, 80);
        overflow: hidden;
        }

        .footer-background {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
        }
        .footer-shape {
        position: absolute; border-radius: 50%;
        background: linear-gradient(135deg, rgb(13, 62, 80), rgba(74,144,226,.05));
        animation: footerFloat 10s ease-in-out infinite; overflow:hidden;
        }
        .footer-shape-1 { width:120px; height:120px; top:20%; left:5%; animation-delay:0s; animation: footerFloatNoRotate 10s ease-in-out infinite; }
        /* Logo inside animated circle */
        .footer-shape-1 .footer-shape-logo{
        position:absolute; top:50%; left:50%; transform: translate(-50%, -50%) rotate(0deg);
        width:70%; height:auto; border-radius:50%; object-fit:contain; opacity:.95;
        filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
        animation: none;
        }
        .footer-shape-2 { width:80px;  height:80px;  top:60%; left:90%; animation-delay:-3s; }
        .footer-shape-3 { width:60px;  height:60px;  top:80%; left:10%; animation-delay:-6s; }

        .footer-particles { position:absolute; top:0; left:0; width:100%; height:100%; z-index:1; }
        .footer-particle { position:absolute; background:rgb(13, 62, 80) ; border-radius:50%; animation: particleDrift 20s infinite linear; }
        .footer-particle:nth-child(1){ width:4px; height:4px; top:30%; left:20%; animation-delay:0s; }
        .footer-particle:nth-child(2){ width:6px; height:6px; top:70%; left:80%; animation-delay:-5s; }
        .footer-particle:nth-child(3){ width:3px; height:3px; top:50%; left:40%; animation-delay:-10s; }

        .footer-content-professional { position: relative; z-index:2; }

        .footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:50px; margin-bottom:50px; }
        /* Removed extra left padding on brand (reverted spacing) */

        .footer-brand h4{
        color:#fff; font-size:1.8rem; font-weight:700; margin-bottom:20px;
        background:linear-gradient(135deg,#009bd4,#009bd4);
        -webkit-background-clip:text; -webkit-text-fill-color:transparent; position:relative;
        }
        .footer-brand h4::after{
        content:''; position:absolute; bottom:-8px; left:0; width:50px; height:3px;
        background:linear-gradient(90deg,#009bd4,#009bd4); border-radius:2px;
        }
        .footer-brand p{ color:#b0b0b0; font-size:1rem; line-height:1.7; margin-bottom:25px; }

        .footer-links-group h5{
        color:#fff; font-size:1.2rem; font-weight:600; margin-bottom:25px; position:relative; padding-bottom:10px;
        }
        .footer-links-group h5::after{
        content:''; position:absolute; bottom:0; left:0; width:30px; height:2px; background:#009bd4; border-radius:1px;
        }

        .footer-links-vertical{ display:flex; flex-direction:column; gap:15px; }
        .footer-link-vertical{
        color:#888; text-decoration:none; font-size:.95rem; transition:all .3s ease; position:relative; padding-left:15px;
        }
        .footer-link-vertical::before{
        content:''; position:absolute; left:0; top:50%; transform:translateY(-50%);
        width:6px; height:6px; background:#009bd4; border-radius:50%; opacity:0; transition:all .3s ease;
        }
        .footer-link-vertical:hover{ color:#009bd4; transform:translateX(10px); }
        .footer-link-vertical:hover::before{ opacity:1; }

        .social-professional{ display:flex; gap:15px; margin-top:25px; }
        .social-professional-link{
        position:relative; width:45px; height:45px; background:rgba(255,255,255,.05);
        border:1px solid rgba(255,255,255,.1); border-radius:10px; display:flex; align-items:center; justify-content:center;
        color:#888; font-size:1.1rem; text-decoration:none; transition:all .4s cubic-bezier(.175,.885,.32,1.275);
        backdrop-filter:blur(10px); overflow:hidden; opacity:0; transform:scale(.8); animation:fadeInUp .6s ease forwards;
        }
        .social-professional-link::before{
        content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
        background:linear-gradient(90deg,transparent,rgba(255,255,255,.1),transparent); transition:left .6s ease;
        }
        .social-professional-link:hover::before{ left:100%; }
        .social-professional-link:hover{
        background:rgb(13, 62, 80); border-color:#009bd4; color:#fff; transform:translateY(-5px) scale(1.1);
        box-shadow:0 10px 25px rgb(13, 62, 80);
        }

        .footer-bottom{
        border-top:1px solid rgba(255,255,255,.1); padding-top:30px; display:flex; justify-content:space-between; align-items:center; position:relative;
        }
        .footer-bottom::before{
        content:''; position:absolute; top:-1px; left:0; width:100px; height:2px; background:linear-gradient(90deg,#009bd4,transparent);
        }
        .copyright-professional{ color:#666; font-size:.9rem; }
        .legal-links{ display:flex; gap:25px; }
        .legal-link{
        color:#666; text-decoration:none; font-size:.9rem; transition:all .3s ease; position:relative;
        }
        .legal-link::after{ content:''; position:absolute; bottom:-2px; left:0; width:0; height:1px; background:#009bd4; transition:width .3s ease; }
        .legal-link:hover{ color:#009bd4; }
        .legal-link:hover::after{ width:100%; }

        .back-to-top-professional{
        position:fixed; bottom:30px; right:30px; width:55px; height:55px;
        background:linear-gradient(135deg,#009bd4,#009bd4);
        border:none; border-radius:12px; color:#fff; font-size:1.2rem; cursor:pointer;
        transition:all .4s cubic-bezier(.175,.885,.32,1.275);
        box-shadow:0 8px 25px rgba(0,145,134,.4);
        z-index:9999; display:flex; align-items:center; justify-content:center; overflow:hidden;
        opacity:0; visibility:hidden; transform:translateY(20px);
        }
        .back-to-top-professional.active{ opacity:1; visibility:visible; transform:translateY(0); }
        .back-to-top-professional::before{
        content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
        background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent); transition:left .6s ease;
        }
        .back-to-top-professional:hover::before{ left:100%; }
        .back-to-top-professional:hover{
        transform:translateY(-5px) scale(1.05); box-shadow:0 15px 35px rgb(13, 62, 80);
        }

        @keyframes footerFloat{
        0%,100%{ transform:translateY(0) rotate(0deg); }
        33%{ transform:translateY(-20px) rotate(120deg); }
        66%{ transform:translateY(10px) rotate(240deg); }
        }
        @keyframes particleDrift{
        0%{ transform:translateY(0) translateX(0); opacity:0; }
        10%{ opacity:1; }
        90%{ opacity:1; }
        100%{ transform:translateY(-80px) translateX(30px); opacity:0; }
        }
        @keyframes fadeInUp{ from{opacity:0; transform:translateY(40px);} to{opacity:1; transform:translateY(0);} }
        @keyframes fadeInLeft{ from{opacity:0; transform:translateX(-40px);} to{opacity:1; transform:translateX(0);} }

        /* Float circle without rotating for shape-1 */
        @keyframes footerFloatNoRotate{
        0%,100%{ transform:translateY(0); }
        33%{ transform:translateY(-20px); }
        66%{ transform:translateY(10px); }
        }

        .footer-grid > *{ opacity:0; animation:fadeInUp .8s ease forwards; transition:transform .3s ease; }
        .footer-brand{ animation:fadeInLeft .8s ease forwards; animation-delay:.1s; }
        .footer-links-group:nth-child(2){ animation-delay:.3s; }
        .footer-links-group:nth-child(3){ animation-delay:.5s; }
        .social-professional-link:nth-child(1){ animation-delay:.7s; }
        .social-professional-link:nth-child(2){ animation-delay:.8s; }
        .social-professional-link:nth-child(3){ animation-delay:.9s; }
        .social-professional-link:nth-child(4){ animation-delay:1s; }
        .footer-bottom > *{ opacity:0; animation:fadeInUp .6s ease forwards; }
        .copyright-professional{ animation-delay:1.1s; }
        .legal-links{ animation-delay:1.2s; }
        .footer-grid > *:hover{ transform:translateY(-5px); }

        /*footer Responsive */
        @media (max-width: 992px){
        .footer-grid{ grid-template-columns:1fr 1fr; gap:40px; }
        }
        @media (max-width: 768px){
        .footer-grid{ grid-template-columns:1fr; gap:35px; }
        .footer-bottom{ flex-direction:column; gap:20px; text-align:center; }
        .back-to-top-professional{ right:25px; bottom:25px; width:50px; height:50px; }
        }
        @media (max-width: 576px){
        .footer-professional{ padding:60px 0 35px; }
        .legal-links{ flex-wrap:wrap; justify-content:center; gap:20px; }
        .back-to-top-professional{ right:20px; bottom:20px; width:48px; height:48px; }
        .social-professional{ justify-content:center; }
        }

            /* back to top    */
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #009bd4, #009bd4);
            border: none;
            border-radius: 25px;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 25px rgb(13, 62, 80);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .scroll-top-btn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .scroll-top-btn:hover::before {
            left: 100%;
        }

        .scroll-top-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgb(13, 62, 80);
        }    

        /* Scroll progress bar (top) */
        .scroll-progress{
          position: fixed; inset: 0 0 auto 0; height: 2px;
          transform-origin: 0 50%; transform: scaleX(0);
          background: linear-gradient(90deg, rgba(255,255,255,.85), rgba(255,255,255,.4));
          z-index: 99999; pointer-events: none; opacity: .85; mix-blend-mode: overlay;
        }

        /* (Removed custom scroll reveal animations per request) */

        /* Remove extra gap below home banner */
        .home-section .min-vh-100 {
            padding-bottom: 0 !important;
        }

        /* Disable background animations (floating shapes + particles) */
        .floating-shapes, .particles {
            display: none !important;
        }
        .shape, .particle {
            animation: none !important;
        }

        /* ================== YouTube Section ================== */
        .youtube-section .section-title { color: #fff; }
        .youtube-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        @media (max-width: 991px) { .youtube-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 575px) { .youtube-grid { grid-template-columns: 1fr; } }

        .yt-card {
            position: relative;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            overflow: hidden;
            background: rgba(0,0,0,0.25);
            cursor: pointer;
            padding: 0;
        }
        .yt-card:focus { outline: 2px solid #009bd4; outline-offset: 2px; }
        .yt-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
        .yt-play {
            position: absolute; inset: 0; display: grid; place-items: center;
            background: linear-gradient(0deg, rgba(0,0,0,0.45), rgba(0,0,0,0.2));
            color: #fff; font-size: 48px;
            transition: transform .2s ease, background .2s ease; 
        }
        .yt-card:hover .yt-play { transform: scale(1.05); background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25)); }
        .yt-iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
