   
        * {
            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;
        }

        
        /* Header Styles */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }
        
        /* Navbar Base */
        .navbar {
            padding: 15px 0;
            transition: var(--transition);
            /* background: rgba(44, 62, 80, 0.95) !important; */
            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;
        }

        /* Hamburger bars */
        .menu-btn-burger {
            width: 25px;
            height: 2px;
            background: #fff;   /* White */
            position: relative;
        }

        .menu-btn-burger::before,
        .menu-btn-burger::after {
            content: "";
            position: absolute;
            width: 25px;
            height: 2px;
            background: #fff;   /* White */
            left: 0;
        }

        .menu-btn-burger::before {
            top: -7px;
        }

        .menu-btn-burger::after {
            top: 7px;
        }




        .navbar.scrolled {
            padding: 8px 0;
            /* background: rgba(26, 42, 58, 0.98) !important; */
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
        }
        
        /* Logo */
        .navbar-brand img {
            height: 40px;
            transition: var(--transition);
        }
        
        .navbar.scrolled .navbar-brand img {
            height: 35px;
        }
        
        /* Nav Links */
        .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%;
        }
        
        /* Mobile Toggle */
        .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 */
        .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%;
            }
        }
        
        /* Additional Effects */
        .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 */
        .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(44, 62, 80, 0.98);
                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  */

      
        
        body {
            background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
            color: var(--text-light);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        /* Home Section */
        .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;
        }
        
        /* Animated Background Elements */
        .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: #00fff6;
        }
        
        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 80%;
            animation-delay: -5s;
            background: #4ecdc4;
        }
        
        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: -10s;
            background: #00fff6;
        }
        
        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 30%;
            left: 70%;
            animation-delay: -7s;
            background: #00fff6;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }
        
        /* Home Intro */
        .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;
        }
        
        /* Animations */
        @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);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .home-intro h2 {
                font-size: 2.5rem;
            }
            
            .hs-exp {
                flex-direction: column;
                gap: 1rem;
            }
            
            .home-image::before {
                display: none;
            }
        }


        /* about ================ */

        .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 Cards */
        .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 */
        .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);
        }

        /* Animations */
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Staggered Animations */
        .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;
            }
        }


        /* left  */

        /* Original classes unchanged - Only adding animations */
        .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);
        }

        /* Add floating animation to image */
        .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 Animation */
        .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);
        }

        /* Individual social icon colors on hover */
        .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; }

        /* Add pulse animation to image */
        @keyframes imagePulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        .about-img {
            animation: imagePulse 4s ease-in-out infinite;
        }

        /* Animations */
        @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);
            }
        }

        /* Add floating elements around image */
        .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: rgba(78, 205, 196, 0.1);
            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);
            }
        }

        /* 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);
            }
        }

        /* service section  */



        /* Modern Services Section */
        .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, 145, 134, 0.15) 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 */
        .section-heading {
            margin-bottom: 5rem;
            position: relative;
            z-index: 2;
        }

        .section-heading h6 {
            color: #009186;
            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, 145, 134, 0.3);
        }

        .section-heading h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            /* background: linear-gradient(135deg, #fff 0%, #b8b8b8 100%); */
            -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 Cards */
        .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, 145, 134, 0.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 */
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #009186, #00b3a4);
            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, #00fff6, #00fff6);
        }

        .service-icon::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, #009186, #00fff6);
            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 Content */
        .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: #009186;
        }

        .service-card p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        /* Service Features */
        .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 .service-features span {
            background: rgba(0, 145, 134, 0.1);
            border-color: rgba(0, 145, 134, 0.3);
            color: #009186;
        }

        /* Different hover colors for each card */
        .service-card:nth-child(1):hover h4,
        .service-card:nth-child(1):hover .service-features span {
            color: #009186;
        }

        .service-card:nth-child(2):hover h4,
        .service-card:nth-child(2):hover .service-features span {
            color: #00fff6;
        }

        .service-card:nth-child(3):hover h4,
        .service-card:nth-child(3):hover .service-features span {
            color: #009186;
        }

        .service-card:nth-child(4):hover h4,
        .service-card:nth-child(4):hover .service-features span {
            color: #00fff6;
        }

        .service-card:nth-child(5):hover h4,
        .service-card:nth-child(5):hover .service-features span {
            color: #00fff6;
        }

        .service-card:nth-child(6):hover h4,
        .service-card:nth-child(6):hover .service-features span {
            color: #009186;
        }

        /* Different icon colors on hover */
        .service-card:nth-child(1):hover .service-icon {
            background: linear-gradient(135deg, #009186, #00fff6);
        }

        .service-card:nth-child(2):hover .service-icon {
            background: linear-gradient(135deg, #00fff6, #00fff6);
        }

        .service-card:nth-child(3):hover .service-icon {
            background: linear-gradient(135deg, #00fff6, #009186);
        }

        .service-card:nth-child(4):hover .service-icon {
            background: linear-gradient(135deg, #00fff6, #00d4c4);
        }

        .service-card:nth-child(5):hover .service-icon {
            background: linear-gradient(135deg, #00fff6, #00fff6);
        }

        .service-card:nth-child(6):hover .service-icon {
            background: linear-gradient(135deg, #009186, #00fff6);
        }

        /* Staggered Animations */
        .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);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .services-section {
                padding: 80px 0;
            }
            
            .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;
            }
        }

        @media (max-width: 576px) {
            .section-heading h3 {
                font-size: 1.8rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }
        }

        /* hadding  */
        .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, #00fff6, #009186);
        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, 145, 134, 0.1), rgba(74, 144, 226, 0.05));
            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 */
        .section-heading {
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .section-heading h6 {
            color: #009186;
            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, 145, 134, 0.3);
        }

        .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, #009186, #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 */
        .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: #009186;
            border-color: #009186;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 145, 134, 0.3);
        }

        /* Portfolio Grid */
        .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;
        }

        /* Staggered Animations for 9 projects */
        .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, 145, 134, 0.3);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        /* Work Image */
        .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, 145, 134, 0.9), 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: #009186 !important;
            transform: scale(1.1);
            
        }

        .work-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 6px 12px;
            background: rgba(0, 145, 134, 0.9);
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        /* Work Info */
        .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 */
        .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: #009186;
            font-size: 1rem;
        }

        /* Load More Button */
        .btn-load-more {
            padding: 1rem 2.5rem;
            background-color: #00d4c4 ;
            background: linear-gradient(135deg, #009186, #00b3a4);
            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, 145, 134, 0.4);
        }

        .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; }

        /* Animations */
        @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);
            }
        }

        /* 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;
            }
        }


        /* extra css work  */
        .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, #009186, #00b3a4);
        box-shadow: 0 8px 20px rgba(0,145,134,0.5);
        transform: translateY(-2px);
        }

        .portfolio-filter .filter-btn:hover {
        background: linear-gradient(135deg, #00b3a4, #009186);
        }


        /* core section  */

        .core-section {
            position: relative;
            padding: 120px 0;
            /* background: linear-gradient(135deg, #0c0f1c 0%, #1a1f35 100%); */
            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 */
        .section-heading {
            margin-bottom: 5rem;
            position: relative;
            z-index: 2;
        }

        .section-heading h6 {
            color: #009186;
            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, 145, 134, 0.3);
        }

        .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, #009186, );
            border-radius: 2px;
        }

        .section-heading p {
            color: #b0b0b0;
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Value Cards */
        .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, 145, 134, 0.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, 145, 134, 0.3), 
                rgba(50, 90, 150, 0.3), 
                );
            border-radius: 22px;
            z-index: -2;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .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 */
        .value-icon-wrapper {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
        }


        .value-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #009186, #00b3a4);
            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) ;
            /* background: linear-gradient(135deg, #4a90e2, #6ba8eb); */
        }

        .value-icon::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            /* background: linear-gradient(135deg, #009186, #4a90e2); */
            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 #009186;
            border-radius: 50%;
            animation: pulse 2s ease-out infinite;
            opacity: 0;
        }

        .value-card:hover .value-pulse {
            border-color: #4a90e2;
        }

        /* Value Content */
        .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: #009186;
        }

        .value-card p {
            color: #b0b0b0;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        /* Value Progress */
        .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, #009186, #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 */
        .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, 145, 134, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .summary-number {
            font-size: 3rem;
            font-weight: 700;
            color: #009186;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #009186, #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;
        }

        /* Animations */
        @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;
            }
        }

        /* 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;
            }
        }

                /* gallary section  */


        /* Advanced Gallery Section */
        .gallery-section {
            position: relative;
            padding: 120px 0;
            /* background: linear-gradient(135deg, #0c0f1c 0%, #1a1f35 100%); */
            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 */
        .section-heading {
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .section-heading h6 {
            color: #009186;
            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, 145, 134, 0.3);
        }

        .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, #009186, #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 */
        .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, 145, 134, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .gallery-filter-btn:hover::before {
            left: 100%;
        }

        .gallery-filter-btn:hover,
        .gallery-filter-btn.active {
            background: #009186;
            border-color: #009186;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 145, 134, 0.3);
        }

        /* Gallery Grid */
        .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;
            transform: scale(0.8);
            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, 145, 134, 0.9), 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);
        }

        /* Load More Button */
        .btn-load-more-gallery {
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #009186, #00b3a4);
            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, 145, 134, 0.4);
        }

        .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; }

        /* Lightbox */
        .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: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            max-width: 900px;
            width: 100%;
            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: #009186;
            transform: scale(1.1);
        }

        .lightbox-image {
            width: 100%;
            height: 400px;
            overflow: hidden;
        }

        .lightbox-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .lightbox-info {
            padding: 2rem;
            color: white;
        }

        .lightbox-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .lightbox-description {
            color: #b0b0b0;
            margin-bottom: 1rem;
        }

        .lightbox-category {
            display: inline-block;
            padding: 6px 12px;
            background: #009186;
            color: white;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Animations */
        @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: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @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);
            }
        }

        /* 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;
            }
        }

    /* tastomonil   */
        /* Testimonial Section - Matching Gallery Style */
        .testimonial-section {
            position: relative;
            padding: 120px 0;
            /* background: linear-gradient(135deg, #0c0f1c 0%, #1a1f35 100%); */
            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(0, 145, 134, 0.08), rgba(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 */
        .section-heading {
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .section-heading h6 {
            color: #009186;
            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, 145, 134, 0.3);
        }

        .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, #009186, #4a90e2);
            border-radius: 2px;
        }

        .section-heading p {
            color: #b0b0b0;
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Testimonial Grid - 3 Cards */
        .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: #009186;
            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 #009186;
            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: #009186;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Animations */
        @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);
            }
        }

        /* 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;
            }
        }

        /* contact  */

        .contactus-section {
            position: relative;
            padding: 120px 0;
            /* background: linear-gradient(135deg, #0c0f1c 0%, #1a1f35 100%); */
            overflow: hidden;
        }

        .contactus-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .contact-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 145, 134, 0.08), rgba(74, 144, 226, 0.05));
            animation: contactFloat 8s ease-in-out infinite;
        }

        .contact-shape-1 {
            width: 150px;
            height: 150px;
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .contact-shape-2 {
            width: 100px;
            height: 100px;
            top: 65%;
            left: 85%;
            animation-delay: -2s;
        }

        .contact-shape-3 {
            width: 80px;
            height: 80px;
            top: 80%;
            left: 15%;
            animation-delay: -4s;
        }

        .contact-shape-4 {
            width: 120px;
            height: 120px;
            top: 25%;
            left: 75%;
            animation-delay: -1s;
        }

        /* Floating Particles Animation */
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: rgba(0, 145, 134, 0.3);
            border-radius: 50%;
            animation: particleFloat 15s infinite linear;
        }

        .particle:nth-child(1) {
            width: 6px;
            height: 6px;
            top: 20%;
            left: 20%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            width: 4px;
            height: 4px;
            top: 60%;
            left: 80%;
            animation-delay: -2s;
        }

        .particle:nth-child(3) {
            width: 8px;
            height: 8px;
            top: 80%;
            left: 40%;
            animation-delay: -4s;
        }

        .particle:nth-child(4) {
            width: 5px;
            height: 5px;
            top: 30%;
            left: 60%;
            animation-delay: -6s;
        }

        .particle:nth-child(5) {
            width: 7px;
            height: 7px;
            top: 70%;
            left: 10%;
            animation-delay: -8s;
        }

        .border-top-g {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Section Heading */
        .section-heading {
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .section-heading h6 {
            color: #009186;
            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, 145, 134, 0.3);
        }

        .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, #009186, #4a90e2);
            border-radius: 2px;
        }

        .section-heading p {
            color: #b0b0b0;
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Contact Form - Advanced Styling */
        .contact-form {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }

        .contact-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 145, 134, 0.2);
            border-color: rgba(0, 145, 134, 0.3);
        }

        .form-group {
            position: relative;
            margin-bottom: 30px;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-control:focus {
            outline: none;
            border-color: #009186;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 3px rgba(0, 145, 134, 0.2);
            transform: translateY(-2px);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Floating Label Effect */
        .form-group label {
            position: absolute;
            top: 15px;
            left: 20px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .form-control:focus + label,
        .form-control:not(:placeholder-shown) + label {
            top: -10px;
            left: 15px;
            font-size: 0.8rem;
            color: #009186;
            background: #0c0f1c;
            padding: 0 8px;
        }

        /* Send Button - Advanced Styling */
        .send {
            position: relative;
            text-align: center;
        }

        .link-effect {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 40px;
            background: linear-gradient(135deg, #009186, #00b3a4);
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .link-effect::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .link-effect:hover::before {
            left: 100%;
        }

        .link-effect:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 145, 134, 0.4);
            background: linear-gradient(135deg, #00b3a4, #009186);
        }

        .link-effect:active {
            transform: translateY(-1px);
        }

        /* Contact Info Cards */
        .contact-info {
            margin-top: 60px;
            position: relative;
            z-index: 2;
        }

        .contact-name {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            padding: 30px 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            height: 100%;
        }

        .contact-name:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 145, 134, 0.2);
            border-color: rgba(0, 145, 134, 0.3);
        }

        .contact-name .icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #009186, #4a90e2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: white;
            transition: all 0.4s ease;
        }

        .contact-name:hover .icon {
            transform: scale(1.1) rotate(10deg);
        }

        .contact-name h5 {
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .contact-name p {
            color: #b0b0b0;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Success/Error Messages */
        .text-success, .text-danger {
            display: block;
            margin-top: 15px;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 8px;
            text-align: center;
        }

        .text-success {
            background: rgba(40, 167, 69, 0.1);
            border: 1px solid rgba(40, 167, 69, 0.3);
        }

        .text-danger {
            background: rgba(220, 53, 69, 0.1);
            border: 1px solid rgba(220, 53, 69, 0.3);
        }

        /* Advanced Animations */
        @keyframes contactFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-20px) rotate(120deg);
            }
            66% {
                transform: translateY(10px) rotate(240deg);
            }
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) translateX(50px);
                opacity: 0;
            }
        }

        @keyframes formAppear {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Form Element Animations */
        .form-group {
            opacity: 0;
            transform: translateX(-30px);
            animation: formAppear 0.6s ease forwards;
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }

        .contact-name {
            opacity: 0;
            transform: translateY(30px);
            animation: formAppear 0.6s ease forwards;
        }

        .contact-name:nth-child(1) { animation-delay: 0.5s; }
        .contact-name:nth-child(2) { animation-delay: 0.6s; }
        .contact-name:nth-child(3) { animation-delay: 0.7s; }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contactus-section {
                padding: 80px 0;
            }
            
            .section-heading h3 {
                font-size: 2.2rem;
            }
            
            .contact-form {
                padding: 30px 25px;
            }
            
            .contact-name {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 576px) {
            .section-heading h3 {
                font-size: 1.8rem;
            }
            
            .contact-form {
                padding: 25px 20px;
            }
            
            .link-effect {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }
    /* footer      */
        /* Advanced Dark Professional Footer */
        .footer-professional {
            position: relative;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 80px 0 40px;
            border-top: 1px solid rgba(0, 145, 134, 0.3);
            overflow: hidden;
        }

        /* Animated Background */
        .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, rgba(0, 145, 134, 0.08), rgba(74, 144, 226, 0.05));
            animation: footerFloat 10s ease-in-out infinite;
        }

        .footer-shape-1 {
            width: 120px;
            height: 120px;
            top: 20%;
            left: 5%;
            animation-delay: 0s;
        }

        .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;
        }

        /* Floating Particles */
        .footer-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .footer-particle {
            position: absolute;
            background: rgba(0, 145, 134, 0.15);
            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;
        }

        /* Professional Layout */
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand h4 {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #009186, #4a90e2);
            -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, #009186, #4a90e2);
            border-radius: 2px;
        }

        .footer-brand p {
            color: #b0b0b0;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .footer-links-group h5 {
            color: white;
            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: #009186;
            border-radius: 1px;
        }

        .footer-links-vertical {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-link-vertical {
            color: #888;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.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: #009186;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-link-vertical:hover {
            color: #009186;
            transform: translateX(10px);
        }

        .footer-link-vertical:hover::before {
            opacity: 1;
        }

        /* Advanced Professional Social Links */
        .social-professional {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-professional-link {
            position: relative;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
            overflow: hidden;
        }

        .social-professional-link::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.6s ease;
        }

        .social-professional-link:hover::before {
            left: 100%;
        }

        .social-professional-link:hover {
            background: rgba(0, 145, 134, 0.2);
            border-color: #009186;
            color: white;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 145, 134, 0.3);
        }

        /* Advanced Bottom Bar */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.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, #009186, transparent);
        }

        .copyright-professional {
            color: #666;
            font-size: 0.9rem;
        }

        .legal-links {
            display: flex;
            gap: 25px;
        }

        .legal-link {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .legal-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #009186;
            transition: width 0.3s ease;
        }

        .legal-link:hover {
            color: #009186;
        }

        .legal-link:hover::after {
            width: 100%;
        }

        /* Advanced Back to Top */
        .back-to-top-professional {
            position: absolute;
            right: 40px;
            bottom: 40px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #009186, #00b3a4);
            border: none;
            border-radius: 12px;
            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 rgba(0, 145, 134, 0.4);
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .back-to-top-professional {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none;           /* Default hidden */
            background: #009186;
            color: #fff;
            border: none;
            padding: 10px 15px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 9999;
            font-size: 18px;
        }
        .back-to-top-professional:hover {
            background: #006d63;
        }
        .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, 0.2), transparent);
            transition: left 0.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 rgba(0, 145, 134, 0.6);
        }

        /* Advanced Animations */
        @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);
            }
        }

        /* Staggered Animations */
        .footer-grid > * {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .footer-brand { 
            animation: fadeInLeft 0.8s ease forwards;
            animation-delay: 0.1s;
        }
        .footer-links-group:nth-child(2) { animation-delay: 0.3s; }
        .footer-links-group:nth-child(3) { animation-delay: 0.5s; }

        .social-professional-link {
            opacity: 0;
            transform: scale(0.8);
            animation: fadeInUp 0.6s ease forwards;
        }

        .social-professional-link:nth-child(1) { animation-delay: 0.7s; }
        .social-professional-link:nth-child(2) { animation-delay: 0.8s; }
        .social-professional-link:nth-child(3) { animation-delay: 0.9s; }
        .social-professional-link:nth-child(4) { animation-delay: 1.0s; }

        .footer-bottom > * {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .copyright-professional { animation-delay: 1.1s; }
        .legal-links { animation-delay: 1.2s; }

        /* Hover Effects for Grid Items */
        .footer-grid > * {
            transition: transform 0.3s ease;
        }

        .footer-grid > *:hover {
            transform: translateY(-5px);
        }

        /* 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;
            }
        }

