
        /* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f8f8f8;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }

        .loader-container {
            width: 80%;
            max-width: 500px;
            position: relative;
        }

        /* Loader bar */
        .loader {
            width: 80%;
            height: 16px;
            background: #ddd;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 40px;
        }

        .progress {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, #ff4d4d, #b30000);
            border-radius: 10px;
            transition: width 1s linear; 
        }

        /* Robot */
        .robot {
            position: absolute;
            bottom: 100%;
            left: 0;
            width: 80px;
            height: 140px;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: runAcross 4s linear forwards;
            transform-origin: center;
        }

        /* Head */
        .head {
            width: 70px;
            height: 60px;
            background: linear-gradient(135deg, #ff4d4d, #b30000);
            border-radius: 50% 50% 40% 40%;
            position: relative;
            box-shadow: inset -4px -4px 10px rgba(255,255,255,0.6),
                        inset 4px 4px 10px rgba(0,0,0,0.1);
        }

        /* Antenna */
        .antenna {
            width: 4px;
            height: 18px;
            background: #b30000;
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .antenna::after {
            content: '';
            width: 8px;
            height: 8px;
            background: #ff4d4d;
            border-radius: 50%;
            position: absolute;
            top: -6px;
            left: -2px;
            box-shadow: 0 0 5px rgba(255,77,77,0.8);
        }

        /* Face */
        .face {
            position: absolute;
            top: 18px;
            left: 50%;
            transform: translateX(-50%);
            width: 45px;
            height: 20px;
            background: #111827;
            border-radius: 10px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 0 4px;
        }
        
        .eye {
            width: 10px;
            height: 10px;
            background: #000;
            border-radius: 50%;
            position: relative;
            animation: blink 3s infinite;
        }
        
        .eye::after {
            content: '';
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 2px;
            left: 3px;
        }

        /* Body */
        .body {
            width: 60px;
            height: 55px;
            background: linear-gradient(135deg, #ff4d4d, #b30000);
            border-radius: 20px;
            margin-top: 5px;
            position: relative;
            box-shadow: inset -4px -4px 10px rgba(255,255,255,0.6),
                        inset 4px 4px 10px rgba(0,0,0,0.1);
        }
        
        /* Arms */
        .arm {
            width: 15px;
            height: 35px;
            background: linear-gradient(135deg, #ff4d4d, #b30000);
            border-radius: 8px;
            position: absolute;
            top: 5px;
            transform-origin: top center;
            animation: armRun 0.6s infinite alternate;
        }
        
        .arm.left { 
            left: -15px; 
        }
        
        .arm.right { 
            right: -15px; 
            animation-delay: 0.3s;
        }

        /* Legs */
        .legs {
            display: flex;
            justify-content: space-between;
            width: 50px;
            margin-top: 5px;
        }

        .leg {
            width: 12px;
            height: 30px;
            background: linear-gradient(135deg, #ff4d4d, #b30000);
            border-radius: 6px;
            transform-origin: top center;
            animation: legRun 0.6s infinite alternate;
        }
        .legs .leg:nth-child(2) {
            animation-delay: 0.3s;
        }

        /* Keyframes */
        @keyframes runAcross {
            0% { left: 0; }
            100% { left: calc(80% - 80px); }
        }

        @keyframes armRun {
            0% { transform: rotate(15deg); }
            100% { transform: rotate(-15deg); }
        }

        @keyframes legRun {
            0% { transform: rotate(20deg); }
            100% { transform: rotate(-20deg); }
        }

        @keyframes blink {
            0%, 96%, 100% { transform: scaleY(1); }
            98% { transform: scaleY(0.1); }
        }

        /* Hide main content initially */
        #main-content {
            opacity: 0;
            transition: opacity 0.5s ease-in;
        }

        :root {
            --primary: #e63946;
            --primary-dark: #c1121f;
            --secondary: #1d3557;
            --accent: #a8dadc;
            --light: #f1faee;
            --dark: #2b2d42;
            --gray: #f8f9fa;
            --text: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 32px;
            margin: 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            padding: 5px 0;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .nav-btns {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white !important;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }
        
        .btn-outline:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
        }
        
        /* Mobile menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            cursor: pointer;
        }
        
        .menu-toggle span {
            width: 100%;
            height: 3px;
            background-color: var(--dark);
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.05);
            transition: all 1.5s ease-in-out;
        }
        
        .slide.active {
            opacity: 1;
            transform: scale(1);
        }
        
        .text-overlay {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            color: #fff;
            max-width: 600px;
        }
        
        .text-overlay h1 {
            font-size: 4rem;
            margin-bottom: 0.5rem;
            animation: slideIn 1.5s forwards;
            color: white;
        }
        
        .text-overlay p {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            animation: fadeIn 2s forwards;
        }
        
        .text-overlay .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            animation: fadeIn 2.5s forwards;
            margin: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255,59,59,0.4);
        }
        
        .text-overlay .btn:hover {
            background: var(--primary-dark);
        }
        
        .text-overlay .btn-outline {
            background: transparent;
            border: 2px solid white;
        }
        
        .text-overlay .btn-outline:hover {
            background: white;
            color: var(--primary);
        }
        
        /* Animations */
        @keyframes slideIn { 
            from {opacity:0; transform:translateX(-50px);} 
            to {opacity:1; transform:translateX(0);} 
        }
        
        @keyframes fadeIn { 
            from {opacity:0;} 
            to {opacity:1;} 
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--gray);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 2px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            opacity: 0;
            transition: height 0.5s, opacity 0.5s;
            z-index: -1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card:hover::before {
            height: 100%;
            opacity: 1;
        }
        
        .service-card:hover .service-icon,
        .service-card:hover h3,
        .service-card:hover p {
            color: white;
        }
        
        .service-icon {
            background-color: var(--light);
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: var(--primary);
            transition: all 0.3s;
        }
        
        .service-content {
            padding: 25px;
            transition: all 0.3s;
        }
        
        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            transition: color 0.3s;
        }
        
        .service-content p {
            margin-bottom: 20px;
            transition: color 0.3s;
        }
        
        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .service-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }
        
        .service-card:hover .service-link {
            color: white;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: white;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .about-stats {
            display: flex;
            gap: 30px;
            margin: 30px 0;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .stat-text {
            font-size: 14px;
            color: var(--text);
        }
        
        .about-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s;
        }
        
        .about-image:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* ====== Why Choose Us ====== */
        .why { 
            background: #f9f9f9; 
            padding: 100px 60px; 
        }
        
        .why h2 { 
            text-align: center; 
            font-size: 2.2rem; 
            color: var(--primary); 
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .why h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .why-list { 
            display: flex; 
            flex-wrap: wrap; 
            gap: 30px; 
            justify-content: center; 
        }
        
        .why-item { 
            background: #fff; 
            flex: 1 1 250px; 
            padding: 25px; 
            border-radius: 10px; 
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: 0.3s;
        }
        
        .why-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        
        .why-item h4 { 
            margin-bottom: 10px; 
            color: var(--primary); 
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Portfolio Section */
        .portfolio {
            padding: 100px 0;
            background: linear-gradient(to bottom, #f9f9f9, #fff);
        }
        
        .portfolio-filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            padding: 8px 20px;
            background: white;
            border: 1px solid #eee;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border-color: transparent;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .portfolio-item:hover img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.9) 0%, rgba(168, 218, 220, 0.9) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
            padding: 20px;
            text-align: center;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-overlay h3 {
            color: white;
            font-size: 22px;
            margin-bottom: 10px;
        }
        
        .portfolio-overlay p {
            color: white;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: var(--secondary);
            color: white;
            position: relative;
        }
        
        .testimonials .section-title h2 {
            color: white;
        }
        
        .testimonial-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial-slide {
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 4px solid var(--primary);
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 18px;
            color: white;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
        }
        
        /* Team Section */
        .team {
            padding: 100px 0;
            background-color: var(--gray);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-card {
            background: white;
            border-radius: 15px;
            text-align: center;
            padding: 30px 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .team-photo {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--primary);
        }
        
        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-card h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--secondary);
        }
        
        .team-card .position {
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }
        
        .team-social a {
            color: var(--dark);
            background: var(--light);
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .team-social a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* ====== Clients Section ====== */
        .clients {
            padding: 100px 60px;
            text-align: center;
            background: #fff;
        }
        
        .clients h2 { 
            font-size: 2.5rem; 
            margin-bottom: 20px; 
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .clients h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .clients p {
            max-width: 700px;
            margin: 10px auto 50px;
            font-size: 1.1rem;
            color: #555;
        }
        
        .clients-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            align-items: center;
            justify-items: center;
        }
        
        .client {
            padding: 10px;
            background: #bebebe;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .client:hover {
            transform: translateY(-5px);
            background:var(--primary);

        }
        
        .client img {
            max-width: 100%;
            height: auto;
            filter: grayscale(1%);
            transition: filter 0.3s ease;
        }
        
        .client:hover img {
            filter: grayscale(0%);
        }
        
        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
        }
        
        .cta .btn {
            background: white;
            color: var(--primary);
            font-weight: 600;
        }
        
        .cta .btn:hover {
            background: var(--secondary);
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            color: white;
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-col p {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
            opacity: 0.8;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            opacity: 1;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social a {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .footer-social a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center !important;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .text-overlay h1 {
                font-size: 3rem;
            }
            
            .why {
                padding: 80px 40px;
            }
            
            .clients {
                padding: 80px 40px;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .text-overlay h1 {
                font-size: 2.5rem;
            }
            
            .text-overlay p {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .why {
                padding: 60px 20px;
            }
            
            .clients {
                padding: 60px 20px;
            }
            
            .why-item, .client {
                flex: 1 1 100%;
            }
        }
    

        /* Portfolio Page Specific Styles */
.page-hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #0d6efd;
    background: transparent;
    color: #0d6efd;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0d6efd;
    color: white;
    transform: translateY(-2px);
}

/* Portfolio Cards */
.portfolio-card {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-links {
    display: flex;
    gap: 10px;
}

.portfolio-tech {
    margin-top: 15px;
}

.portfolio-tech .badge {
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 0.7rem;
    padding: 5px 10px;
}

/* Testimonials */
.testimonial-item {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Portfolio Items Animation */
.portfolio-item {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        margin-bottom: 10px;
    }
    
    .portfolio-img {
        height: 200px;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .portfolio-img {
        height: 180px;
    }
    
    .portfolio-links {
        flex-direction: column;
    }
}


/* contact us page */
/* Contact Page Styles */
.page-hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-info-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background:#d11931!important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-control {
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-feature-icon {
    width: 50px;
    height: 50px;
    background: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-feature-content h5 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-feature-content p {
    margin: 0;
    color: #6c757d;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-item h5 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

   /* About Page Sections */

   /* .about-banner {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the full image is visible */
    object-position: center;
    display: block;
} */

