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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #000;
            background-color: #fff;
            overflow-x: hidden;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-bottom: 1px solid rgba(0, 0, 0, 0);
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #000;
            text-decoration: none;
            letter-spacing: -0.02em;
            transition: opacity 0.2s ease;
        }

        .logo img{
            height: 40px;
            width: auto;
        }

        .logo:hover {
            opacity: 0.7;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 40px;
        }

        .nav-menu li a {
            text-decoration: none;
            color: #000;
            font-weight: 400;
            font-size: 16px;
            position: relative;
            transition: all 0.2s ease;
            padding: 8px 0;
        }

        .nav-menu li a:hover {
            opacity: 0.6;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #000;
            transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .nav-menu li:last-child a {
            color: #fff;
        }

        .nav-menu li:last-child a:hover {
            color: #000;
        }

        .nav-menu li:last-child a:hover::after{
            background: none;
            transition: none;
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: #000;
            color: #fff;
            padding: 12px 24px !important;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
            border: 2px solid #000;
        }

        .cta-button:hover {
            background: #fff;
            color: #000;
            transform: translateY(-1px);
        }

        /* Breadcrumb / Page Header Banner */
        .page-header {
            background-color: #000;
            color: #fff;
            text-align: center;
            margin-top: 70px;
            padding: 50px 20px;
        }

        .page-header .breadcrumbs {
            font-size: 14px;
            color: #fff;
            margin-bottom: 15px;
        }

        .page-header .breadcrumbs a {
            color: #fff;
            text-decoration: none;
        }

        .page-header .breadcrumbs a:hover {
            text-decoration: underline;
            color: rgba(255, 255, 255, 0.4);
        }

        .page-header h1 {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .page-header p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.8;
            color: #ddd;
        }


        /* Mobile Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: #000;
            margin: 3px 0;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 999;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-menu ul li a {
            text-decoration: none;
            color: #000;
            font-size: 18px;
            font-weight: 400;
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
        }

        .mobile-menu ul li a:hover {
            opacity: 0.6;
            transform: translateX(10px);
        }

        .mobile-cta {
            padding: 20px;
            padding-top: 0;
        }

        .mobile-cta .cta-button {
            display: inline-block;
            padding: 12px 24px;
            background: #000;
            color: #fff;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            font-size: 16px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0 50px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .hero-bg svg {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .typewriter {
            color: #666;
            border-right: 2px solid #000;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { border-color: #000; }
            51%, 100% { border-color: transparent; }
        }

        .hero-content p {
            font-size: 20px;
            color: #666;
            margin-bottom: 40px;
            max-width: 500px;
        }

        .hero-cta {
            background: #000;
            color: #fff;
            padding: 16px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid #000;
        }

        .hero-cta:hover {
            background: #fff;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-logo {
            width: 300px;
            height: 300px;
            background: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: #fff;
            font-weight: 700;
            position: relative;
            z-index: 2;
            animation: float 6s ease-in-out infinite;
        }

        .hero-logo img{
            width: 200px;
            height: auto;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .mt-40{
            margin-top: 40px;
        }

        /* Platforms Section */
        .platforms {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .platforms-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .platforms h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .platforms p {
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .platform-item {
            background: #fff;
            padding: 40px 20px;
            border-radius: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .platform-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .platform-icon {
            width: 80px;
            height: 80px;
            background: #000;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #fff;
            transition: all 0.3s ease;
        }

        .platform-item:hover .platform-icon {
            background: #666;
            transform: scale(1.1);
        }

        .platform-item h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .platform-item p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: #fff;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .services h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .services > p {
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .service-item {
            padding: 40px;
            text-align: left;
            transition: all 0.3s ease;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .service-item:hover {
            background: #f8f9fa;
            transform: translateY(-5px);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            margin-bottom: 20px;
        }

        .service-item h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .service-item p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .portfolio h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .portfolio > p {
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .portfolio-item {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .portfolio-image {
            height: 250px;
            background: linear-gradient(135deg, #000 0%, #333 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            font-weight: 600;
        }

        .portfolio-content {
            padding: 30px;
            text-align: left;
        }

        .portfolio-content h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .portfolio-content p {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
        }

        .portfolio-link {
            color: #000;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: opacity 0.2s ease;
        }

        .portfolio-link:hover {
            opacity: 0.6;
        }

        /* Clients Section */
        .clients {
            padding: 80px 0;
            background: #fff;
        }

        .clients-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .clients h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .clients > p {
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .clients-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 40px;
          align-items: stretch;
          margin-top: 40px;
        }

        .client-item {
          padding: 30px;
          background: #f8f9fa;
          border-radius: 15px;
          transition: all 0.3s ease;
          border: 1px solid rgba(0, 0, 0, 0.05);
          display: flex;
          flex-direction: column;
          justify-content: center;
          height: 100%;
        }


        .client-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .client-logo {
            font-size: 24px;
            font-weight: 700;
            color: #000;
            margin-bottom: 10px;
        }

        .client-description {
            font-size: 14px;
            color: #666;
        }

        /* Services Section */
        .services {
          background: #f8f9fa;
          padding: 80px 20px;
        }

        .services-container {
          max-width: 1100px;
          margin: 0 auto;
          text-align: center;
        }

        .services h2 {
          font-size: 32px;
          font-weight: 700;
          margin-bottom: 40px;
          color: #222;
        }

        .services-content {
          max-width: 800px;
          margin: 0 auto;
          text-align: left;
          background: #fff;
          padding: 50px;
          border-radius: 20px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .services-content p {
          font-size: 18px;
          line-height: 1.8;
          color: #444;
          margin-bottom: 25px;
        }

        .services-content strong {
          color: #111;
          font-weight: 600;
        }


        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .testimonials h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .testimonials > p {
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonial-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-item {
            min-width: 100%;
            padding: 40px;
            text-align: center;
        }


        .testimonial-content {
            font-size: 24px;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #333;
        }

        .testimonial-author {
            font-size: 18px;
            font-weight: 600;
            color: #000;
        }

        .testimonial-role {
            font-size: 16px;
            color: #666;
            margin-top: 5px;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: #000;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: #fff;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .contact h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .contact > p {
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-form {
            background: #fff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: left;
        }

        .contact-intro {
            margin-bottom: 40px;
            font-size: 18px;
            line-height: 1.8;
            color: #555;
        }


        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #000;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: #000;
            color: #fff;
            padding: 16px 40px;
            border: none;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background: #333;
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: #000;
            color: #fff;
            padding: 50px 0 30px;
            text-align: center;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-logo {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer p {
            color: #999;
            margin-bottom: 30px;
        }

        .footer-logo img{
            height: 50px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: opacity 0.2s ease;
        }

        .footer-links a:hover {
            opacity: 0.7;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            color: #666;
            font-size: 14px;
        }

        .whatsapp-float {
          position: fixed;
          width: 60px;
          height: 60px;
          bottom: 20px;
          right: 20px;
          background-color: #25d366;
          color: #fff;
          border-radius: 50%;
          text-align: center;
          font-size: 30px;
          box-shadow: 0 4px 10px rgba(0,0,0,0.3);
          z-index: 1000;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: transform 0.2s ease;
          animation: pulse 1.5s infinite;
        }

        .whatsapp-float img {
          width: 35px;
          height: 35px;
        }

        @keyframes pulse {
          0% { transform: scale(1); }
          50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(37, 211, 102, 0.6); }
          100% { transform: scale(1); }
        }

        /* Generic content section */
        .content-section {
            background: #fff;
            padding: 50px 20px;
        }

        .content-section .container {
            max-width: 900px;
            margin: 0 auto;
            color: #333;
            line-height: 1.8;
            font-size: 16px;
        }

        .content-section h2 {
            font-size: 24px;
            font-weight: 600;
            margin-top: 30px;
            margin-bottom: 10px;
        }

        .content-section p {
            margin-bottom: 20px;
        }

        .content-section a {
            color: rgba(0, 0, 0, 0.4);
            text-decoration: underline;
            transition: color 0.3s;
        }

        .content-section a:hover {
            color: rgba(0, 0, 0, 1);
        }


        /* Contact Page Layout */
        .contact-page {
            padding: 80px 20px;
            background: #fff;
        }

        .contact-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .contact-info h2 {
            font-size: 26px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .contact-info p {
            margin-bottom: 20px;
            line-height: 1.6;
            color: #333;
        }

        .contact-info ul {
            list-style: none;
            padding: 0;
        }

        .contact-info ul li {
            margin-bottom: 12px;
            font-size: 15px;
        }

        .contact-page-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-page-form .form-block {
            display: flex;
            flex-direction: column;
        }

        .contact-page-form label {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            color: #333;
        }

        .contact-page-form input,
        .contact-page-form textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 12px;
            font-size: 15px;
            transition: all 0.3s;
            background: #f9f9f9;
        }

        .contact-page-form input:focus,
        .contact-page-form textarea:focus {
            border-color: #000;
            outline: none;
            background: #fff;
        }

        .btn-contact {
            background: #000;
            color: #fff;
            padding: 14px 28px;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }

        .btn-contact:hover {
            background: #333;
        }

        /* Two-column layout for Our Story & Our Mission */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .about-tile {
            background: #f8f9fa; /* light grey */
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .about-tile:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        }

        .about-tile h2 {
            margin-bottom: 20px;
            font-size: 28px;
            color: #000;
        }

        .about-tile p {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
        }

        .portfolio-diff {
            padding-top: 40px;
            padding-bottom: 100px;
            padding-left: 30px;
            padding-right: 30px;
            background: #f2f2f2;
            text-align: center;
        }

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

        .portfolio-card {
            display: block;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            text-decoration: none;
            color: #000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .portfolio-image {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .project-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 28px;
            background: rgba(255,255,255,0.8);
            padding: 5px 8px;
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .portfolio-card:hover .project-icon {
            transform: scale(1.2);
        }

        .portfolio-card h3 {
            padding: 20px;
            font-size: 20px;
            font-weight: 600;
        }

        .project-card {
          position: relative;
          overflow: hidden;
          border-radius: 15px;
          cursor: pointer;
          transition: transform 0.3s;
        }

        .project-card img {
          width: 100%;
          display: block;
          border-radius: 15px;
          transition: transform 0.3s;
        }

        .project-card .overlay {
          position: absolute;
          bottom: 0;
          width: 100%;
          background: rgba(0,0,0,0.5);
          color: #fff;
          text-align: center;
          padding: 20px;
          transform: translateY(100%);
          transition: transform 0.3s;
        }

        .project-card:hover img {
          transform: scale(1.05);
        }

        .project-card:hover .overlay {
          transform: translateY(0);
        }

        .project-card h3 {
          margin: 0 0 10px 0;
          font-size: 20px;
        }

        .project-icon {
          font-size: 24px;
          display: inline-block;
        }




        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .why-tile {
            background: #f8f9fa; /* light grey, same style as client tiles */
            padding: 40px 20px;
            border-radius: 15px;
            font-size: 18px;
            font-weight: 500;
            color: #000;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .why-tile:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        }

        .contact-info a {
            color: rgba(0, 0, 0, 0.6);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-info a:hover {
            color: rgba(0, 0, 0, 1);
            text-decoration: underline;
        }


        @media (max-width: 900px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
        }




        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }

            .nav-menu {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 40px;
            }

            .hero-logo {
                width: 200px;
                height: 200px;
                font-size: 32px;
            }

            .platforms h2,
            .services h2,
            .portfolio h2,
            .testimonials h2,
            .contact h2 {
                font-size: 32px;
            }

            .platforms-grid,
            .services-grid,
            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                height: 60px;
            }

            .mobile-menu {
                top: 60px;
            }

            .logo {
                font-size: 24px;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .platforms h2,
            .services h2,
            .portfolio h2,
            .testimonials h2,
            .contact h2 {
                font-size: 28px;
            }
        }