       
       /* Add this to your existing CSS */
html {
    scroll-behavior: smooth !important;
}

/* For Safari and older browsers */
body {
    -webkit-overflow-scrolling: touch !important;
}

/* Optional: Add custom scroll animation using JavaScript */
.smooth-scroll {
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
}
 .setup-fee {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.setup-fee .strike {
    text-decoration: line-through !important;
    text-decoration-color: #ff0000 !important;
    text-decoration-thickness: 2px !important;
    opacity: 0.7;
    color: #9ca3af;
}

.setup-fee .promo-free {
    color: #e1ff00;
    font-weight: 700;
    font-size: 1rem;
    background: rgba(225, 255, 0, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(225, 255, 0, 0.3);
}      

.description3{
   margin-bottom:30px;
            color:grey;
            text-align: center;
            margin-top:80px!important;

}
       
       
       /* Global Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background: linear-gradient(135deg, #000000 0%, #000000 50%, #0f0f0f 100%);
            color: rgb(255, 255, 255);
            overflow-x: hidden;
            margin: 0;
            min-height: 100vh;
            position: relative;
            width: 100%;
            z-index: 1;
        }

        @keyframes slidePattern {
            0% { transform: translate(-50px, -50px); }
            100% { transform: translate(50px, 50px); }
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #ffffff, #ffffff, #c7c7c7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            z-index: 1001;
        }

        /* Navigation Styles */
        .nav {
            display: flex;
            gap: 2rem;
            align-items: center;
            z-index: 1001;
        }

        .nav-items {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-items li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

        .nav-items li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #ffffff, #ffffff);
            transition: width 0.3s ease;
        }

        .nav-items li a:hover {
            color: white;
        }

        .nav-items li a:hover::after {
            width: 100%;
        }

        .cta-btn {
            padding: 24px 48px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-size: 0.9rem;
        }

        .cta-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

        .landingButtons{
            display: flex;
            gap:10px;
        }

        /* Burger Menu Styles */
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1002;
            padding: 5px;
            transition: all 0.3s ease;
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 50px 5%;
            z-index: 10;
        }

        .hero-content h1 {
                 margin-top:50px;
            font-size: clamp(2.5rem, 8vw, 6rem);
            font-weight: 200;
            margin-bottom: 1rem;
            line-height: 1.1;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero-content h1 .highlight {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background: linear-gradient(45deg, #ffffff, #ffffff, #ffffff, #d6d6d6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 300% 300%;
            animation: gradientShift 3s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.8s forwards;
        }

/* Highlighted text styles */
.highlight {
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    transition: background-color 0.5s ease, color 0.5s ease;
    display: inline-block;
}


.cta{
    color:yellow;
    margin-top:20px;
    font-size: 14px;
    text-align: center;
}

.carousel-item {
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}



/* Overlay styles */
.image-overlay {
    position: absolute;
    bottom: 10px; /* Position the overlay at the bottom of the image */
    left: 10px; /* Add some padding from the left */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    color: #fff; /* White text color */
    padding: 5px 10px; /* Add padding around the text */
    border-radius: 15px; /* Rounded corners for the overlay */
    font-size: 0.9rem; /* Adjust font size */
    font-weight: bold;
    z-index: 2; /* Ensure it appears above the image */
    pointer-events: none; /* Prevent interaction with the overlay */
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Start slightly below */
    animation: slideIn 0.5s ease forwards; /* Apply animation */
}

/* Animation keyframes */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add delay for each overlay */
.carousel-item:nth-child(1) .image-overlay {
    animation-delay: 0.2s;
}

.carousel-item:nth-child(2) .image-overlay {
    animation-delay: 0.4s;
}

.carousel-item:nth-child(3) .image-overlay {
    animation-delay: 0.6s;
}

.carousel-item:nth-child(4) .image-overlay {
    animation-delay: 0.8s;
}

.carousel-item:nth-child(5) .image-overlay {
    animation-delay: 1s;
}

.carousel-item:nth-child(6) .image-overlay {
    animation-delay: 1.2s;
}

        .explore-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(45deg, #d8d8d8, #fefdfd);
            border: none;
            border-radius: 50px;
            color: rgb(16, 16, 16);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 1.1s forwards;
            box-shadow: 0 10px 30px rgba(241, 205, 99, 0.3);
        }

        .explore-btn:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 20px 40px rgba(8, 8, 8, 0.4);
            background: linear-gradient(45deg, #121212, #191919);
        }

        .explore-btn::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        
        .explore-btn::after {
            content: '→';
            transition: transform 0.3s ease;
        }

    .btn-primary {
    position: relative;
    padding-right: 40px; /* Add space for the arrow */
}

.btn-primary::after {
    content: '→';
    position: absolute;
    right: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(5px);
}
      .explore-btn::after{
          content: '→';
            transition: transform 0.3s ease;
      }



        .explore-btn:hover::after {
            transform: translateX(5px);
        }
        

        .Book-btn{
           display: inline-flex;
           border: visible !important;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(45deg, #fffbfb, #ffffff);
            border-color: 2px solid #ffffff!important;
            border-radius: 50px;
            color: rgb(19, 19, 19);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 1.1s forwards;
     

        }

        .Book-btn:hover {
            transform: translateY(-3px);
            color: rgb(255, 255, 255);
            box-shadow: 0 20px 40px rgba(8, 8, 8, 0.4);
            background: linear-gradient(45deg, #080808, #ffffff);
        }

        /* Updated 3D Slider Styles */
        .slider-3d {
            position: relative;
            width: 100%;
            height: 500px;
            perspective: 1200px;
            overflow: hidden;
            padding: 20px 0;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-container {
       
            position: relative;
            width: 280px;
            height: 330px;
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .carousel-item {
            position: absolute;
            width: 260px;
            height: 340px;
            left: 50%;
            top: 50%;
            transform-origin: center center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.6s ease;
            cursor: pointer;
            background-size: cover;
            background-position: center;
            backface-visibility: visible;
            opacity: 1!important;
            transform: translate(-50%, -50%) rotateY(var(--rotation)) translateZ(400px) scale(0.8);
        }

        .carousel-item.active {
            opacity: 1!important;
            transform: translate(-50%, -50%) rotateY(var(--rotation)) translateZ(450px) scale(1);
            z-index: 10;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            display: block;
        }

        /* Individual positioning for 6 items */
        .carousel-item:nth-child(1) { --rotation: 0deg; }
        .carousel-item:nth-child(2) { --rotation: 60deg; }
        .carousel-item:nth-child(3) { --rotation: 120deg; }
        .carousel-item:nth-child(4) { --rotation: 180deg; }
        .carousel-item:nth-child(5) { --rotation: 240deg; }
        .carousel-item:nth-child(6) { --rotation: 300deg; }

       /* .carousel-item:hover {
            transform: translate(-50%, -50%) rotateY(var(--rotation)) translateZ(100px) scale(0.80);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
            opacity: 1;
            z-index: 15;
        }  */

        /* Navigation buttons */
        .nav-buttons {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 10;
            pointer-events: none;
        }

        .nav-btn {
            background: rgba(0, 0, 0, 0.7);
            border: none;
            color: white;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: auto;
        }

        .nav-btn:hover:not(:disabled) {
            background: rgba(0, 0, 0, 0.9);
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        .nav-btn:disabled {
            background: rgba(0, 0, 0, 0.3);
            cursor: not-allowed;
            opacity: 0.5;
        }

        /* Indicators */
        .indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.7);
        }

        /* About Section */
        .about-section {
           background: #101010;
            padding: 60px 20px;
            color: rgb(255, 255, 255);
            text-align: center;
            min-height: 20vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .about-section h2 {
            font-size: 2.5rem;
            font-weight: 200;
            margin-bottom: 1.5rem;
        }

        .about-section p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .about-tags {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .about-tags span {
            padding: 10px 16px;
            border: 1px solid #ddd;
            border-radius: 20px;
            background-color: #141414;
            font-size: 0.9rem;
            color: #ffffff;
            white-space: nowrap;
        }

        /* Mobile responsive updates for About Section */
        @media (max-width: 768px) {
            .about-section {
                padding: 40px 20px;
            }

            .about-section h2 {
                font-size: 2rem;
            }

            .about-section p {
                font-size: 1rem;
                max-width: 90%;
            }
        }

        @media (max-width: 480px) {
            .about-section h2 {
                font-size: 1.8rem;
            }

            .about-section p {
                font-size: 0.9rem;
            }

            .about-tags span {
                padding: 8px 12px;
                font-size: 0.8rem;
            }
        }

        /* Main Content Sections */
        .main-content {
            background: #f4f4f4;
            padding: 50px 0;
        }

        .Project {
            font-size: 2rem;
            font-weight: normal;
            text-align: center;
            margin-bottom: 10px;
            color: #333;
            padding: 0 20px;
        }
     
        .description2{
            margin-bottom:30px;
            color:grey;
            text-align: center;
            margin-top:-12px!important;
        }

        /* Search and Filter */
        .search-filter-container {
            max-width: 1200px;
            margin: 0 auto 20px auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            justify-content: space-between;
        }

        .filter-image-container {
            width: 100%;
            max-width: 1200px;
            height: 200px;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .filter-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }



        .filter-image:hover {
            transform: scale(1.05);
        }

        .search-bar {
            flex: 0 0 300px;
            min-width: 250px;
        }

        .search-bar input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .search-bar input:focus {
            border-color: #666;
        }

        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: flex-end;
            flex: 1;
        }

        .filter-tags button {
            padding: 10px 16px;
            border: 1px solid #ddd;
            border-radius: 20px;
            background-color: #ffffff;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .filter-tags button.active {
            background-color: #333;
            color: white;
            border-color: #333;
        }

        .filter-tags button:hover {
            background-color: #f0f0f0;
            border-color: #999;
        }

        /* Portfolio Cards */
        .portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .portfolio-card {
            background-color: rgb(255, 255, 255);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .portfolio-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .portfolio-content {
            padding: 30px;
            flex: 1;
        }

        .portfolio-content h3 {
            font-size: 1.9rem;
            font-weight: 400;
            margin-bottom: 15px;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            color: #121212;
        }

        .portfolio-content p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .portfolio-buttons {
            display: flex;
            gap: 12px;
        }

        .portfolio-buttons a {
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 15px;
            font-size: 1rem;
            font-weight: 300;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: #000000;
            color: white;
        }

        .btn-primary:hover {
            background-color: #555;
        }

        .btn-secondary {
            background-color: #f0f0f0;
            color: #333;
        }

        .btn-secondary:hover {
            background-color: #e0e0e0;
        }

        .portfolio-media {
            width: 500px;
            height: 300px;
            overflow: hidden;
            padding: 20px;
            flex-shrink: 0;
        }

        .portfolio-media video,
        .portfolio-media img {
            width: 100%;
            height: 100%;
            background-color: rgb(10, 10, 10);
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .portfolio-media:hover video,
        .portfolio-media:hover img {
            transform: scale(1.05);
        }

        /* Pagination */
        .pagination {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .pagination button {
            padding: 10px 16px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background-color: #fff;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .pagination button.active {
            background-color: #333;
            color: white;
            border-color: #333;
        }

        .pagination button:hover {
            background-color: #f0f0f0;
            border-color: #999;
        }

        /* Testimonial Section */
        .testimonial-section {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .testimonial-section h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            color: #333;
        }

        .testimonial-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 400px;
            margin: 0 auto;
            perspective: 1000px;
        }

        .testimonial-card {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            text-align: center;
            backface-visibility: hidden;
            transition: transform 0.8s ease;
        }

        .testimonial-card.hidden {
            transform: rotateY(90deg);
            opacity: 0;
        }

        .testimonial-card.visible {
            transform: rotateY(0deg);
            opacity: 1;
        }

        .testimonial-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .testimonial-card p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-card .author {
            font-size: 0.9rem;
            font-style: italic;
            color: #999;
            font-weight: 500;
        }

        /* Arrow Buttons */
        .arrow-buttons {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
            pointer-events: none;
        }

        .arrow-btn {
            background-color: rgba(0, 0, 0, 0.7);
            border: none;
            color: white;
            font-size: 1.5rem;
            padding: 12px;
            cursor: pointer;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            pointer-events: auto;
        }

        .arrow-btn:hover {
            background-color: rgba(0, 0, 0, 0.9);
            transform: scale(1.1);
        }

        .arrow-btn:disabled {
            background-color: rgba(0, 0, 0, 0.3);
            cursor: not-allowed;
            transform: none;
        }

        /* Profile Section */
        .profile-section {
            position: fixed;
            bottom: 20px;
            left: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 12px 18px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 999;
        }

        .profile-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .profile-name {
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

        /* Particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: floatParticle 10s ease-in-out infinite;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) translateX(-50%);
                opacity: 0;
            }
            20% {
                opacity: 0.8;
            }
            80% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-100px) translateX(50%);
                opacity: 0;
            }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hidden class for filtering */
        .hidden {
            display: none !important;
        }

        .portfolio-media img {
            width: 100% !important;
            height: auto !important;
            border-radius: 10px !important;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .portfolio-media img:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .burger-menu {
                display: flex !important;
            }

            .nav {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 280px;
                background: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(20px);
                border-left: 1px solid rgba(255, 255, 255, 0.2);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.3s ease;
                padding: 20px;
                z-index: 1001;
            }

            .nav.active {
                transform: translateX(0);
            }

            .nav-items {
                flex-direction: column;
                align-items: center;
                gap: 30px;
                margin-bottom: 30px;
            }

            .nav-items a {
                color: #fff !important;
                font-size: 18px !important;
                text-align: center;
            }

            .nav-items a:hover {
                color: #ffffff !important;
            }

            .cta-btn {
                background: #161616;
                color: #fff;
                padding: 15px 30px;
                border-radius: 50px;
                font-size: 16px;
            }

            .cta-btn:hover {
                background: #f7f7f7;
                color: white;
                transform: translateY(-2px);
            }

            .hero-content {
                padding: 80px 20px 40px;
            }

            .hero-content h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .hero-content p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .slider-3d {
                height: 400px;
                perspective: 1000px;
            }

            .carousel-container {
                width: 250px;
                height: 300px;
            }

            .carousel-item {
                width: 230px;
                height: 280px;
                transform: translate(-50%, -50%) rotateY(var(--rotation)) translateZ(300px) scale(0.7);
                opacity: 0.4;
            }

            .carousel-item.active {
                transform: translate(-50%, -50%) rotateY(var(--rotation)) translateZ(350px) scale(1);
                opacity: 1;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .search-filter-container {
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
            }

            .filter-image-container {
                height: 150px;
            }

            .search-bar {
                flex: none;
            }

            .filter-tags {
                justify-content: flex-start;
                flex-wrap: wrap;
            }

            .portfolio-card {
                flex-direction: column;
                text-align: center;
            }

            .portfolio-media {
                width: 100%;
                height: 350px;
                order: 1;
            }

            .portfolio-content {
                width: 100%;
                order: 2;
                padding: 20px;
            }

            .portfolio-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }

            .testimonial-container {
                height: 300px;
                max-width: 90%;
            }

            .testimonial-card {
                padding: 25px;
            }

            .arrow-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .slider-3d {
                height: 300px;
                perspective: 800px;
            }

            .carousel-container {
                width: 200px;
                height: 250px;
            }

            .carousel-item img {
                margin-left: -10px;
                margin-right: -10px;
            }
            .carousel-item {
                width: 200px;
                height: 240px;
                transform: translate(-50%, -50%) rotateY(var(--rotation)) translateZ(200px) scale(0.6);
                opacity: 0.3;
            }

            .carousel-item.active {
                transform: translate(-50%, -50%) rotateY(var(--rotation)) translateZ(250px) scale(1);
                opacity: 1;
            }

            .nav-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .portfolio-content {
                padding: 15px;
            }

            .portfolio-content h3 {
                font-size: 1.4rem;
            }

            .profile-section {
                bottom: 15px;
                left: 15px;
                padding: 10px 15px;
            }

            .portfolio-media {
                width: 330px;
                height: 200px;
                overflow: hidden;
                padding: 10px;
                flex-shrink: 0;
            }

            .portfolio-media video,
            .portfolio-media img {
                width: 100%;
                height: 100%;
                background-color: rgb(0, 0, 0);
                object-fit: cover;
                border-radius: 10px;
                transition: transform 0.3s ease;
            }

            .filter-image-container {
                height: 100px;
            }
        }

        .webdev-container {
            min-height: 100vh;
            padding: 40px 20px;
            font-family: 'Arial', sans-serif;
        }

        .webdev-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .webdev-logo {
            font-size: 32px;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .webdev-nav {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
        }

        .webdev-nav-item {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .webdev-nav-item:hover {
            opacity: 1;
        }

        .webdev-contact-btn {
            background: #000000;
            color: #ffffff;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .webdev-contact-btn:hover {
            background: #333333;
        }

        .webdev-main-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .webdev-hero-section {
            background: rgb(0, 0, 0);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            margin-bottom: 40px;
            
            text-align: center;
        }

        .webdev-hero-text {
            max-width: 900px;
            margin: 0 auto;
        }

        .webdev-hero-title {
            font-size: 48px;
            font-weight: 100 !important;
            color: #ffffff;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .webdev-hero-description {
            color: #cccccc;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .webdev-hero-btn {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0 auto;
        }

        .webdev-hero-btn:hover {
            background: #ffffff;
            color: #1a1a2e;
        }

        .webdev-video-section {
            background: linear-gradient(45deg, #171717 0%, #1b1b1b 100%);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            min-height: 300px;
        }

        .webdev-video-container {
            width: 100%;
            max-width: 800px;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .webdev-video {
            width: 100%;
            height: auto;
            min-height: 250px;
            object-fit: cover;
            border-radius: 15px;
        }

     
        .webdev-services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: stretch;
        }

        .webdev-service-card {
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .webdev-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .webdev-service-dark {
            width: 600px;
            background: #0c0c0c;
            color: #ffffff;
        }








        /* Center the services grid and make cards responsive */
.webdev-services-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto; /* centers the whole section */
  padding: 24px 16px;
  box-sizing: border-box;
}

.webdev-service-card {
  flex: 1 1 320px;     /* allow cards to shrink/grow, 320px base */
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center; /* center content inside each card */
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Small visual tweaks */
.webdev-service-title { margin-bottom: 8px; }
.webdev-service-description { margin-bottom: 16px; }

/* Keep buttons consistent */
.webdev-service-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  text-decoration: none;
  cursor: pointer;
}

/* Ensure good stacking on very small screens */
@media (max-width: 420px) {
         .webdev-service-light {
            width: 600px;
            background: rgba(2, 2, 2, 0.915);
            color: #242424;
            backdrop-filter: blur(10px);
        }

        .webdev-service-accent {
            width: 575px;
            border: 3px solid rgb(62, 62, 62) !important;
            background: linear-gradient(135deg, #e5e5e5, #fbfbfb);
            color: #363636!important;
        }
  .webdev-service-card { flex: 1 1 100%; max-width: 100%; }
  .webdev-services-grid { padding-left: 12px; padding-right: 12px; gap: 12px; }
}
        .webdev-service-light {
            width: 600px;
            background: rgba(2, 2, 2, 0.915);
            color: #242424;
            backdrop-filter: blur(10px);
        }

        .webdev-service-accent {
            width: 575px;
            border: 3px solid rgb(62, 62, 62) !important;
            background: linear-gradient(135deg, #e5e5e5, #fbfbfb);
            color: #363636!important;
        }

        .webdev-service-title {
            font-size: 28px;
            font-weight: 100 !important;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .webdev-service-description {
            font-size: 14px;
            line-height: 1.6;
            opacity: 0.8;
            margin-bottom: 30px;
        }

        .webdev-service-btn {
            background: transparent;
            color: inherit;
            width: 300px;
            height: auto;
            align-self: center;
            border: 2px solid currentColor;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .webdev-service-btn:hover {
            background: white;
            color: #000000;
        }

        .webdev-service-accent .webdev-service-btn:hover {
            background: #ffffff;
        }

        .service-tags-container {
            position: absolute;
            top: 80%;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            justify-content: center;
            z-index: 3;
        }

        .service-tag {
            width: 100px;
            text-align: center;
            height:60px;
         
            background-color: rgb(255, 255, 255) !important;
            color: black !important;
            border: 1px solid rgb(77, 77, 77) !important;
            border-radius: 40px !important;
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .webdev-container {
                padding: 20px 15px;
            }

            .webdev-logo {
                font-size: 24px;
            }

            .webdev-nav {
                flex-wrap: wrap;
                gap: 20px;
            }

            .webdev-nav-item {
                font-size: 14px;
            }

            .webdev-hero-section {
                padding: 30px 20px;
            }

            .webdev-video-section {
                padding: 30px 20px;
                min-height: 250px;
            }

            .webdev-service-btn {
                width: 200px;
                height: auto;
            }

            .webdev-service-dark {
                margin-left: 20px !important;
                width: 400px;
                background: #0c0c0c;
                color: #ffffff;
            }



            

            .webdev-service-light {
                width: 400px;
                background: rgba(2, 2, 2, 0.915);
                color: #ffffff;
                backdrop-filter: blur(10px);
            }

            .webdev-service-accent {
                width: 400px;
             margin-left: 20px !important;
                background: linear-gradient(135deg, #ffffff, #ffffff);
                color: #171717;
            }

            .webdev-play-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .webdev-volume-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .webdev-hero-title {
                font-size: 32px;
            }

            .webdev-services-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                margin-left:-10px!important;
            }

            .service-tags-container {
                flex-wrap: wrap;
                gap: 10px;
                top: 85%;
            }

            .service-tag {
                width: 90px;
                font-size: 0.8rem;
                padding: 6px 12px;
            }
        }

        @media (max-width: 600px) {
            .webdev-services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .webdev-hero-title {
                font-size: 28px;
            }

            .webdev-service-title {
                font-size: 24px;
            }

            .webdev-hero-section {
                padding: 20px 15px;
            }

            .webdev-video-section {
                padding: 20px 15px;
                min-height: 200px;
            }

            .webdev-service-dark {
                margin-left: 10px !important;
                width: 330px;
                background: #0c0c0c;
                color: #ffffff;
            }

            .webdev-service-light {
                width: 330px;
                background: rgba(2, 2, 2, 0.915);
                color: #2c2c2c;
                backdrop-filter: blur(10px);
            }

            .webdev-service-accent {
                width: 330px;
                margin-left: 10px !important;
                background: linear-gradient(135deg, #ffffff, #ffffff);
                color: #2a2a2a;
            }

            .service-tags-container {
                top: 90%;
                gap: 8px;
            }

            .service-tag {
                width: 80px;
                font-size: 0.7rem;
                padding: 5px 10px;
            }
        }


        .Business-profiles{
            width:300px;
            height:300px;
        }

        .descriptionP {
            text-align: center;
            font-size: 1rem;
            color: #666;
            margin-bottom: 5px;
            line-height: 1.6;
        }

        .webdev-video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.webdev-video-section h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
}

.webdev-video-section p {
    font-size: 1rem;
    color: #171717;
    max-width: 600px;
    line-height: 1.6;
}

.service-tag {
    width: 100px;
    height: auto;
    min-height: 40px;
    background-color: rgb(255, 255, 255) !important;
    color: black !important;
    border: 1px solid rgb(77, 77, 77) !important;
    border-radius: 40px !important;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}


.Business-profiles {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

    /* Reset for section */
        .testimonials-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .testimonials-section {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
     background-color: #111111;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
        }

        .testimonials-container {
            background: white;
            border-radius: 20px;
            padding: 60px 80px;
            max-width: 1100px;
            width: 100%;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .testimonials-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ffdd00, #ffdd00, #dded00);
            animation: testimonial-shimmer 3s ease-in-out infinite;
       
        }

        @keyframes testimonial-shimmer {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        .testimonials-heading {
            font-size: 3rem;
            font-weight: 700;
            color: #1a1a1a;
            text-align: left;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: testimonial-fadeInUp 1s ease-out 0.3s forwards;
        }

        .testimonials-content {
            display: flex;
            align-items: center;
            gap: 80px;
            position: relative;
        }

        .testimonials-avatars-section {
            position: relative;
            width: 350px;
            height: 350px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonials-main-avatar {
            position: absolute;
            top: 10%;
            left: 20%;
            transform: translate(-50%, -50%);
            width: 320px;
            height: 320px;
            border-radius: 50%;
            overflow: hidden;
            border: 6px solid white;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            z-index: 3;
            opacity: 0;
            animation: testimonial-fadeInScale 1s ease-out 0.6s forwards;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .testimonials-main-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .testimonials-avatar {
            position: absolute;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid white;
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: scale(0.8);
        }

        .testimonials-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonials-avatar.active {
            z-index: 2;
            transform: scale(1.15);
            box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
            border-color: #6366f1;
        }

        .testimonials-avatar:not(.active) {
            opacity: 0.7;
            transform: scale(0.95);
        }

        .testimonials-avatar:hover:not(.active) {
            transform: scale(1.05);
            opacity: 0.9;
        }

        .testimonials-avatar-1 {
            top: 30px;
            left: 30px;
            animation: testimonial-fadeInScale 0.8s ease-out 0.8s forwards;
        }

        .testimonials-avatar-2 {
            bottom: 50px;
            right: 20px;
            animation: testimonial-fadeInScale 0.8s ease-out 1s forwards;
        }

        .testimonials-avatar-3 {
            top: 80px;
            right: 10px;
            animation: testimonial-fadeInScale 0.8s ease-out 1.2s forwards;
            display: none;
        }

        .testimonials-stats-badge {
            position: absolute;
            bottom: -15px;
            left: 30%;
            transform: translateX(-50%);
            background: white;
            border-radius: 20px;
            padding: 15px 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            text-align: center;
            z-index: 4;
            opacity: 0;
            animation: testimonial-fadeInUp 0.8s ease-out 1.4s forwards;
        }

        .testimonials-stats-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .testimonials-stats-text {
            font-size: 0.85rem;
            color: #666;
            font-weight: 500;
        }

        .testimonials-text {
            flex: 1;
        }

        .testimonials-header {
            font-size: 1.8rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 25px;
            opacity: 0;
            transform: translateX(30px);
            animation: testimonial-fadeInLeft 0.8s ease-out 1.6s forwards;
            transition: all 0.5s ease;
        }

        .testimonials-quote {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 25px;
            opacity: 0;
            transform: translateX(30px);
            animation: testimonial-fadeInLeft 0.8s ease-out 1.8s forwards;
            transition: all 0.5s ease;
        }

        .testimonials-star-rating {
            display: flex;
            gap: 5px;
            margin-bottom: 25px;
            opacity: 0;
            transform: translateX(30px);
            animation: testimonial-fadeInLeft 0.8s ease-out 2s forwards;
            transition: all 0.5s ease;
        }

        .testimonials-star {
            font-size: 18px;
            color: #ffd700;
            animation: testimonial-starTwinkle 2s ease-in-out infinite;
        }

        .testimonials-star:nth-child(2) { animation-delay: 0.2s; }
        .testimonials-star:nth-child(3) { animation-delay: 0.4s; }
        .testimonials-star:nth-child(4) { animation-delay: 0.6s; }
        .testimonials-star:nth-child(5) { animation-delay: 0.8s; }

        @keyframes testimonial-starTwinkle {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }

        .testimonials-author {
            opacity: 0;
            transform: translateX(30px);
            animation: testimonial-fadeInLeft 0.8s ease-out 2.2s forwards;
            transition: all 0.5s ease;
        }

        .testimonials-author-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .testimonials-author-title {
            font-size: 1rem;
            color: #666;
        }

        .testimonials-navigation {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 40px;
            opacity: 0;
            animation: testimonial-fadeIn 0.8s ease-out 2.4s forwards;
        }

        .testimonials-nav-counter {
            font-weight: 600;
            color: #666;
            font-size: 1rem;
        }

        .testimonials-nav-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f8f9fa;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            color: #666;
        }

        .testimonials-nav-button:hover {
            background: #e9ecef;
            transform: scale(1.1);
        }

        .testimonials-nav-button:active {
            transform: scale(0.95);
        }

        .testimonials-nav-button.next {
            background: #1a1a1a;
            color: white;
        }

        .testimonials-nav-button.next:hover {
            background: #333;
        }

        @keyframes testimonial-fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes testimonial-fadeInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes testimonial-fadeInScale {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes testimonial-fadeIn {
            to {
                opacity: 1;
            }
        }

        .testimonials-content-changing {
            opacity: 0.6;
            transform: translateX(15px);
        }

        .testimonials-main-avatar-changing {
            transform: translate(-50%, -50%) scale(0.95);
            opacity: 0.85;
        }

        .testimonials-show-third-avatar .testimonials-avatar-3 {
            display: block;
        }




        @media (max-width:480px){

       

         .Book-btn.cta-button {
         
            margin-left: 20% !important;
         }
        }
        /* Responsive */
        @media (max-width: 768px) {
            .testimonials-container {
                padding: 40px 30px;
            }
            
            .testimonials-heading {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }
            
            .testimonials-content {
                flex-direction: column;
                gap: 40px;
            }
            
            .testimonials-avatars-section {
                width: 260px;
                height: 260px;
            }
            
            .testimonials-main-avatar {
                width: 170px;
                height: 170px;
            }
            
            .testimonials-avatar {
                width: 70px;
                height: 70px;
            }
            
            .testimonials-stats-badge {
                padding: 12px 20px;
            }
            
            .testimonials-stats-number {
                font-size: 1.4rem;
            }
        }



.webdev-service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: block;
}

.webdev-service-icon.smaller-icon {
    width: 35px; /* Smaller width */
    height: 35px; /* Smaller height */
}

     .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Process Section */
        .process {
           padding: 50px 0 0 0; /* Remove bottom padding */
            margin-bottom: -50px; /* Remove bottom margin */
            background: hsl(0, 0%, 6%);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 400!important;
            color: #ffffff;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin-bottom: 3rem;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: rgb(255, 255, 255);
            border: 1px solid rgba(102, 126, 234, 0.1);
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 1);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #000000 0%, #000000 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
            transition: transform 0.3s ease;
        }

        .process-step:hover .step-number {
            transform: scale(1.1);
        }

        .process-step h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 1rem;
        }

        .process-step p {
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .process-step {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .process-step {
                padding: 1rem;
            }

            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }


        .carousel-title{
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
                text-align: center;
                font-size: 2.5rem;
                margin-top:40px;
                margin-bottom: 20px;
        }


       .different-title{
           font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            text-align: center;
            font-size: 2.5rem;
            margin-top:40px;
            color:rgb(255, 255, 255);
            font-weight: 10!important;
            margin-bottom: 20px;


         }

         .tools{
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            text-align: center;
            font-size: 2rem;
            margin-top: 40px;
            margin-bottom:40px;
            color: rgb(255, 255, 255);
            font-weight: extra-thin;
         }


         .sliider{
          width:100%;
         height: auto;
         border: 1px solid rgb(30, 30, 30);
         height: var(--height);
      overflow:hidden;
            mask-image:linear-gradient(
                to right,
             transparent,
             black 10% 90%,
             transparent

            )




         }

.logo-section{
    background-color: rgb(16, 16, 16)!important;
}

/* Web-dev video section heading */
.webdev-video-heading {
    font-size: 2rem; /* Adjust font size */
    font-weight: bold; /* Make the text bold */
    text-align: center; /* Center-align the heading */
    margin-bottom: 20px; /* Add spacing below the heading */
    margin-top: 50px; /* Add spacing above the heading */
    color: white; /* Ensure the text color is white */
}

/* Add spacing above the entire block */
.webdev-video-section {
    margin-top: 100px !important; /* Ensure there is enough space above the section */
}


         .Sliider:hover .item{

            animation-play-state: paused!important;
            filter:grayscale(1);

         }

         .Sliider:hover .item{

   
            filter:grayscale(0);

         }



         .sliider  .list{
            display:flex;
            width:100%;
            min-width: calc(var(--width) * var(--quantity));
            position: relative;
      
         }


         .sliider .list .item{
            width : var(--width);
            height: var(--height);
            position:absolute;       
            left:100%;
            animation: autoRun 10s linear infinite;  
            animation-delay: calc((10s / var(--quantity)) * (var(--position)  - 1)  )!important;
            transition:filter  0.5s;



        
        }



        .sliider[reverse="true"]  .item{
            animation: reversePlay 10s linear infinite;
        }


        @keyframes reversePlay{
            from{
                left: calc(var(--width) * -1 );
            }   to{
                left:100%;
            }   

        }




            .sliider .list .item img{
                width:100%;
         
            }   


            @keyframes autoRun{
            from{
                    left:100%;
                }
                to{
                    left: calc(var(--width) * -1 );
                }
            }


@media (max-width: 768px) {
    .webdev-services-grid {
        grid-template-columns: 1fr; /* Switch to a single-column layout for smaller screens */
    }

    .webdev-video-heading {
        font-size: 1.5rem; /* Adjust heading size for smaller screens */
        text-align: center; /* Ensure the heading is centered */
        margin-top: 30px; /* Add spacing above the heading */
    }

        .webdev-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); /* Increase the minimum width to make cards wider */
    gap: 20px;
    margin-top: 50px;
    padding: 0 90px; /* Add padding for smaller screens */
}
}

@media (max-width: 480px) {
    .webdev-services-grid {
        grid-template-columns: 1fr; /* Ensure single-column layout for very small screens */
        padding: 0 10px; /* Add padding to prevent content from touching screen edges */
    }

    .webdev-video-heading {
        font-size: 1.2rem; /* Further reduce heading size for very small screens */
        margin-top: 20px; /* Adjust spacing above the heading */
    }




}


/* Make the webdev-video-heading responsive */
@media (max-width: 768px) {
    .webdev-video-heading {
        font-size: 1.5rem!important; /* Reduce font size for smaller screens */
        text-align: center!important; /* Ensure the heading is centered */
        margin-top: 20px!important; /* Add spacing above the heading */
        margin-bottom: 15px!important; /* Adjust spacing below the heading */
    }
}

@media (max-width: 480px) {
    .webdev-video-heading {
        font-size: 1.2rem!important; /* Further reduce font size for very small screens */
        margin-top: 15px!important; /* Adjust spacing above the heading */
        margin-bottom: 10px!important; /* Adjust spacing below the heading */
    }
}


   /* Mobile responsive updates for About Section */
        @media (max-width: 768px) {

.bubble-1 {
visibility: collapse;
}

.bubble-2 {
visibility: collapse;
}

.bubble-3 {
visibility: collapse;
}

.bubble-4 {
visibility: collapse;
}

.bubble-5 {
visibility: collapse;
}

.bubble-6 {
visibility: collapse;
}

.bubble-7 {
visibility: collapse;
}

.bubble-8 {
visibility: collapse;
}
















        }

        @media (max-width: 480px) {
      






        }


        .Starting-from{
            padding:2px;
            width:100%!important;
           margin-bottom:20px;
            background-color: rgb(0, 0, 0)!important;
            color: rgb(56, 177, 56)!important;
            text-align: center;
        }

        .Starting-from h3{
            margin-top:15px;
        }


      .Starting-from p{
      
         position:relative;
            left: 55px !important;;
            text-align: center;

        }

@media (max-width: 768px) {
          .Starting-from p{
      
         position:relative;
            left: 25px !important;;
            text-align: center;

        }
    
}







        /* Why our clients choose us  section*/

        

  .webdev-hero-section p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .service-benefits {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .service-benefits li {
            padding: 8px 0;
            position: relative;
            padding-left: 0px;
            color: #333;
        }
        



            .service-benefits {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .service-benefits li {
            padding: 8px 0;
            position: relative;
            left:10px!important;
            color: #ffffff;
        }
        
        .service-benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #37ff00;
            font-weight: bold;
        }
        















        .bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: all;
    z-index: 0;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(2, 184, 184, 0.1), rgba(69, 160, 157, 0.2));
    animation: float 20s infinite ease-in-out;
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgb(255, 255, 255);
}

.bubble:hover {
    transform: scale(1.2) !important;
    opacity: 0.6 !important;
    background: linear-gradient(135deg, rgba(76, 147, 175, 0.3), rgba(69, 128, 160, 0.4));
    border-color: rgb(255, 255, 255);
    animation-play-state: paused;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.bubble.popping {
    animation: pop 0.6s ease-out forwards;
}

@keyframes pop {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.6), rgba(69, 160, 73, 0.8));
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.8);
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.bubble-1 {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.bubble-2 {
    width: 120px;
    height: 120px;
    left: 20%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.bubble-3 {
    width: 60px;
    height: 60px;
    left: 35%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.bubble-4 {
    width: 100px;
    height: 100px;
    left: 50%;
    animation-delay: -15s;
    animation-duration: 28s;
}

.bubble-5 {
    width: 70px;
    height: 70px;
    left: 65%;
    animation-delay: -20s;
    animation-duration: 26s;
}

.bubble-6 {
    width: 90px;
    height: 90px;
    left: 75%;
    animation-delay: -8s;
    animation-duration: 24s;
}

.bubble-7 {
    width: 50px;
    height: 50px;
    left: 85%;
    animation-delay: -12s;
    animation-duration: 20s;
}

.bubble-8 {
    width: 110px;
    height: 110px;
    left: 5%;
    animation-delay: -18s;
    animation-duration: 32s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
        transform: translateY(90vh) scale(1) rotate(0deg);
    }
    90% {
        opacity: 0.3;
        transform: translateY(-10vh) scale(1) rotate(360deg);
    }
}

.why-choose-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: rgb(0, 0, 0);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   /* This is a single-line comment background: url('lesbian-couple-celebrating-their-wedding-day-with-guests-friends.jpg') no-repeat center center/cover; */
    pointer-events: none;
    background-color: rgb(13, 13, 13);
}

.why-choose-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 400!important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: rgba(18, 18, 18, 0.873);
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.checklist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.5);
}

.check-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    overflow: hidden;
}

.check-icon svg {
    color: white;
    z-index: 2;
}

.check-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.checklist-item span {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: #ffffff;
}

.new-badge {
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-section {
    text-align: center;
    padding: 40px;
    background: #050505;
    border-radius: 20px;

}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 500;
}





@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checklist-item {
        padding: 20px;
    }
    
    .checklist-item span {
        font-size: 15px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {


    .webdev-video-text {
        font-size:10px!important;
  
    }

    .second-portfolio-heading{  
    font-size: 22px!important;
    text-align: center;
    font-weight: 700;
    margin-bottom:30px;
    color:black;
    line-height: 1.2;

} 
}

@media (max-width: 480px) {

    .webdev-video-text {
        font-size:10px!important;
      
    }

    .second-portfolio-heading{  
    font-size: 12px;
    text-align: center;
    font-weight: 700;
    margin-bottom:30px;
    color:black;
    line-height: 1.2;

} 
}

.second-portfolio-heading{  
    font-size: 32px;
    text-align: center;
    font-weight: 700;
    margin-bottom:30px;
    color:black;
    line-height: 1.2;

} 

    .portfolio-section {
    padding: 40px 20px;
    background: #f5f5f5;
}

.portfolio-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 280px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #333;
}

/* Row 1 - Different heights */
.portfolio-item:nth-child(1) {
    grid-row: span 2;
}

.portfolio-item:nth-child(2) {
    grid-row: span 1;
}

.portfolio-item:nth-child(3) {
    grid-row: span 1;
}

/* Row 2 - Different heights */
.portfolio-item:nth-child(4) {
    grid-row: span 1;
}

.portfolio-item:nth-child(5) {
    grid-row: span 2;
}

.portfolio-item:nth-child(6) {
    grid-row: span 1;
}

.portfolio-item img,
.portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img,
.portfolio-item:hover video {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 30px 25px;
    color: white;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.9;
}

.project-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.hover-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.portfolio-item:hover .hover-controls {
    opacity: 1;
}


        .hover-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 30;
            pointer-events: auto;
        }

        .portfolio-item:hover .hover-controls,
        .portfolio-item.touched .hover-controls {
            opacity: 1;
            transform: translateY(0);
        }

        .control-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
        }

        .control-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
        }

        .control-btn svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
            z-index: 20;
            pointer-events: none;
        }

        .category {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .project-title {
            font-size: 1.8rem;
            font-weight: 600;
        }

        .video-controls {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 25;
            pointer-events: auto;
        }

        .portfolio-item:hover .video-controls,
        .portfolio-item.touched .video-controls {
            opacity: 1;
            transform: translateY(0);
        }

        .play-btn,
        .volume-btn {
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);

        }

        .play-btn:hover,
        .volume-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
        }

 

        .time-display {
            font-size: 0.9rem;
            color: white;
            font-weight: 500;
            margin-left: auto;
            padding: 8px 15px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }


.video-controls {
    position: absolute;
    bottom: 80px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.portfolio-item:hover .video-controls {
    opacity: 1;
}

.play-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.play-btn svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
}

.volume-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-btn svg {
    width: 18px;
    height: 18px;
}

.time-display {
    color: white;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
    
    /* Mobile - Row 1 */
    .portfolio-item:nth-child(1) {
        grid-row: span 1;
    }
    
    .portfolio-item:nth-child(2) {
        grid-row: span 2;
    }
    
    /* Mobile - Row 2 */
    .portfolio-item:nth-child(3) {
        grid-row: span 2;
    }
    
    .portfolio-item:nth-child(4) {
        grid-row: span 1;
    }
    
    /* Mobile - Row 3 */
    .portfolio-item:nth-child(5) {
        grid-row: span 1;
    }
    
    .portfolio-item:nth-child(6) {
        grid-row: span 2;
    }
    
    .project-title {
        font-size: 26px;
    }
    
    /* Ensure controls are hidden by default on mobile */
    .hover-controls {
        opacity: 0;
    }
    
    .video-controls {
        opacity: 0;
    }
    
    /* Show on active/touch */
    .portfolio-item:active .hover-controls,
    .portfolio-item.touched .hover-controls {
        opacity: 1;
    }
    
    .portfolio-item:active .video-controls,
    .portfolio-item.touched .video-controls {
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .category {
        font-size: 9px;
    }
    
    .portfolio-overlay {
        padding: 20px 15px;
    }
    
    .control-btn {
        width: 36px;
        height: 36px;
    }
    
    .control-btn svg {
        width: 16px;
        height: 16px;
    }
}


.webdev-service-card[style*="background-color:green"] {
    position: relative;
        left: 15%;
 margin-left:20%;
    
    transform: translateY(50px);
    animation: slideUpFade 0.8s ease forwards;
    animation-delay: 0.5s;

}

        .explore-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 22px;
            background: linear-gradient(45deg, #d8d8d8, #fefdfd);
            border: none;
            border-radius: 50px;
            color: rgb(16, 16, 16);
            font-size:  0.9rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 1.1s forwards;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .explore-btn:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 20px 40px rgba(8, 8, 8, 0.4);
            background: linear-gradient(45deg, #121212, #191919);
        }

        .explore-btn::after {
            content: '↗';
            transition: transform 0.3s ease;
        }

        /* Responsive adjustments */
@media screen and (max-width: 768px) {

             .hero-content h1 {
            font-size: 40px!important;
            font-weight: 200;}



    .webdev-service-card[style*="background-color:green"] {
        left: 0px;
        margin-left: 0px!important;
        width: 100%; /* Full width on smaller screens */


 

    }
}


           .hero-content h1 {
            font-size: 60px;
            font-weight: 200;
            color:rgb(255, 255, 255);
            margin-bottom: 1rem;
            line-height: 1.1;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease 0.5s forwards;
        }
    
    /* Ensure parent container has proper positioning */
    .hero-section {
        position: relative;
    }

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


    /* Add this to your existing styles */
.webdev-service-btn.no-arrow {
    padding: 10px 20px;
        animation: slideUpFade 0.8s ease forwards;
    background-color: None;
    color: #fff;
    border: none;
    border: 2px solid #ffffff;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.webdev-service-btn.no-arrow:hover {
    background-color: #ffffff;
    color:black;
}








/* Footer Section -------  Styles */


      .cfs-wrapper-8472,
        .cfs-wrapper-8472 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .cfs-wrapper-8472 {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            max-width: 1200px;
            margin: 0 auto;
               margin-top:100px;
            background: #1a1a1a;
            border-radius: 8px;
            overflow: hidden;
            font-size: 16px;
            line-height: 1.5;
        }

        .cfs-wrapper-8472 .cfs-header-9283 {
         
            background: #ffffff;
            padding: 60px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .cfs-wrapper-8472 .cfs-header-text-1947 {
            flex: 1;
        }

        .cfs-wrapper-8472 .cfs-heard-label-5736 {
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .cfs-wrapper-8472 .cfs-title-6284 {
            font-size: 48px;
            font-weight: 400;
            color: #000;
            position: relative;
            display: inline-block;
        }

        .cfs-wrapper-8472 .cfs-title-6284::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            right: 0;
            height: 12px;
            background: #d4ff00;
            z-index: -1;
        }

        .cfs-wrapper-8472 .cfs-arrow-btn-3851 {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #d4ff00;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: transform 0.3s ease;
            color: #000;
        }

        .cfs-wrapper-8472 .cfs-arrow-btn-3851:hover {
            transform: scale(1.1);
        }

        .cfs-wrapper-8472 .cfs-content-4729 {
            background: #1a1a1a;
            padding: 50px 40px;
            color: #ffffff;
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 60px;
        }

        .cfs-wrapper-8472 .cfs-brand-2946 {
            display: flex;
            flex-direction: column;
        }

        .cfs-wrapper-8472 .cfs-brand-title-7153 {
            font-size: 24px;
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .cfs-wrapper-8472 .cfs-brand-subtitle-8264 {
            font-size: 12px;
            color: #888;
            letter-spacing: 1px;
        }

        .cfs-wrapper-8472 .cfs-location-5917 h3 {
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .cfs-wrapper-8472 .cfs-location-info-3682 {
            margin-bottom: 30px;
        }

        .cfs-wrapper-8472 .cfs-location-email-9146 {
            color: #fff;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .cfs-wrapper-8472 .cfs-location-email-9146:hover {
            color: #d4ff00;
        }

        .cfs-wrapper-8472 .cfs-location-phone-2837 {
            color: #888;
            font-size: 14px;
            display: block;
            margin-bottom: 12px;
        }

        .cfs-wrapper-8472 .cfs-location-address-4951 {
            color: #888;
            font-size: 13px;
            line-height: 1.6;
        }

        .cfs-wrapper-8472 .cfs-map-link-7394 {
            color: #fff;
            text-decoration: none;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-top: 15px;
            transition: color 0.3s ease;
        }

        .cfs-wrapper-8472 .cfs-map-link-7394:hover {
            color: #d4ff00;
        }

        .cfs-wrapper-8472 .cfs-newsletter-6283 h3 {
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .cfs-wrapper-8472 .cfs-newsletter-text-1745 {
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .cfs-wrapper-8472 .cfs-newsletter-link-8529 {
            color: #fff;
            text-decoration: none;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            transition: color 0.3s ease;
            border-bottom: 1px solid #fff;
            padding-bottom: 2px;
        }

        .cfs-wrapper-8472 .cfs-newsletter-link-8529:hover {
            color: #d4ff00;
            border-color: #d4ff00;
        }

        .cfs-wrapper-8472 .cfs-social-section-3746 {
            margin-top: 35px;
        }

        .cfs-wrapper-8472 .cfs-social-title-9261 {
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .cfs-wrapper-8472 .cfs-social-links-4827 {
            display: flex;
            gap: 20px;
        }

        .cfs-wrapper-8472 .cfs-social-link-6143 {
            color: #fff;
            text-decoration: none;
            font-size: 20px;
            transition: color 0.3s ease;
        }

        .cfs-wrapper-8472 .cfs-social-link-6143:hover {
            color: #d4ff00;
        }

        .cfs-wrapper-8472 .cfs-margin-top-8473 {
            margin-top: 40px;
        }

        @media (max-width: 968px) {
            .cfs-wrapper-8472 .cfs-content-4729 {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cfs-wrapper-8472 .cfs-header-9283 {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .cfs-wrapper-8472 .cfs-title-6284 {
                font-size: 36px;
            }
        }

        @media (max-width: 640px) {
            .cfs-wrapper-8472 .cfs-header-9283 {
                padding: 40px 20px;
            }

            .cfs-wrapper-8472 .cfs-content-4729 {
                padding: 40px 20px;
            }

            .cfs-wrapper-8472 .cfs-title-6284 {
                font-size: 32px;
            }
        }


        .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.video-play-btn:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}
.video-thumbnail {
    display: block;
    width: 100%;
    height: 300px;           /* adjust to taste */
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
.video-container {
    position: relative;
    width: 100%;
    height: 300px;           /* match thumbnail height */
    overflow: hidden;
}
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.video-play-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    width: 24px;
    height: 24px;
}

 @media (max-width: 480px) {
    .video-play-btn {
    position: absolute;
    top: 40%!important;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
}



@media (max-width: 480px) {
    .portfolio-media video {
width: 100% !important;
height:230px !important;
        transform: scale(0.9) !important;
    }
}






/*          */


