     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        :root {
            --primary-blue: #0066FF;
            --dark-navy: #1a1f3a;
            --light-gray: #f8f9fa;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
        }
       .logo-box {
          display: flex;
         align-items: center;
         gap: 10px;
      }

     .logo-box img {
         height: 35px;
      }


        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            height: 100%;
            margin: 0;
            padding: 0;
            overflow-y: auto; 
            scroll-behavior: smooth;

        }

        /* Top Contact Bar */
        .top-bar {
            background: var(--dark-navy);
            color: white;
            padding: 12px 0;
            font-size: 14px;
        }
  .top-bar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info span {
            margin-right: 30px;
        }

         .social-icons a {
            color: white;
            margin-left: 15px;
            font-size: 22px;
             text-decoration:none;
            transition: color 0.3s;
        }

        .social-links a:hover {
             color: var(--primary-blue);
        }
        /* Navigation */
        .navbar {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 28px;
            font-weight: bold;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .logo-text span:first-child {
            color: var(--text-dark);
        }

        .logo-text span:last-child {
            color: var(--primary-blue);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 35px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary-blue);
        }

        .cta-button {
            background: var(--primary-blue);
            color: white !important;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .cta-button:hover {
            background: #0052cc;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section Slider */
        .hero {
            position: relative;
            overflow: hidden;
            height: 600px;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            color: white;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-background {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .slide-1 .slide-background {
            background-image:  url("slider1.png");


                      
        }
        .slide-2 .slide-background {
            background-image:url("slider2.png");
                       
        }

        .slide-3 .slide-background {
            background-image: url("slider3.png");
                      
        }

        .slide::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
            border-radius: 50%;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 20px;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .hero-content {
            max-width: 650px;
        }

        .hero-subtitle {
            font-size: 16px;
            letter-spacing: 2px;
            margin-bottom: 20px;
            opacity: 0.9;
            text-transform: uppercase;
        }

        .slide h1 {
            font-size: 70px;
            line-height: 1.3;
            margin-bottom: 30px;
            font-weight: 700;
            animation: slideInLeft 0.8s ease-out;
        }

        .hero-description {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.6;
            animation: slideInLeft 1s ease-out;
        }

        .hero-button {
            display: inline-block;
            background: var(--primary-blue);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            animation: slideInLeft 1.2s ease-out;
        }

        .hero-button:hover {
            background: #0052cc;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 12px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: 2px solid white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.3);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            font-size: 20px;
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.prev {
            left: 30px;
        }

        .slider-arrow.next {
            right: 30px;
        }
           /* About Company Section */
        .about-company {
            padding: 100px 20px;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .about-company .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-content {
            padding-right: 40px;
        }

        .about-title {
            font-size: 16px;
            color: var(--primary-blue);
            letter-spacing: 3px;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .about-description {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 40px;
            text-align: justify;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 24px;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
        }

        .feature-text h3 {
            font-size: 22px;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .feature-text p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* About Images Collage */
        .about-images {
            position: relative;
            height: 600px;
        }

        .image-collage {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .collage-item {
            position: absolute;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
       .collage-item:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.08);
      }

     
       .image-collage:hover .collage-item {
        filter: blur(3px);
       opacity: 0.6;
       transition: all 0.4s ease;
      }

    .image-collage .collage-item:hover {
    filter: blur(0);
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    z-index: 20;
    }


        .collage-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
             transition: transform 0.5s ease;
           }
          .collage-item:hover img {
            transform: scale(1.1);
            }
     

        .collage-item.item-1 {
            width: 250px;
            height: 250px;
            top: 0;
            left: 0;
            z-index: 3;
        }

        .collage-item.item-2 {
            width: 240px;
            height: 400px;
            top: 50px;
            left: 200px;
            z-index: 5;
        }

        .collage-item.item-3 {
            width: 200px;
            height: 200px;
            top: 0;
            right: 20px;
            z-index: 2;
        }

        .collage-item.item-4 {
            width: 250px;
            height: 250px;
            bottom: 80px;
            left: 0;
            z-index: 4;
        }

        .collage-item.item-5 {
            width: 250px;
            height: 250px;
            bottom: 0;
            right: 30px;
            z-index: 3;
        }

        /* Floating Circles Animation */
        .floating-circles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(0, 102, 255, 0.1);
            animation: floatCircle 20s ease-in-out infinite;
        }

        .circle-1 {
            width: 60px;
            height: 60px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 40px;
            height: 40px;
            top: 30%;
            right: 20%;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 5%;
            animation-delay: 4s;
        }

        .circle-4 {
            width: 50px;
            height: 50px;
            top: 60%;
            right: 10%;
            animation-delay: 6s;
        }

        .circle-5 {
            width: 70px;
            height: 70px;
            top: 5%;
            right: 5%;
            animation-delay: 8s;
        }

        .circle-6 {
            width: 45px;
            height: 45px;
            bottom: 10%;
            right: 40%;
            animation-delay: 10s;
        }

        @keyframes floatCircle {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-30px) translateX(20px);
                opacity: 0.5;
            }
            50% {
                transform: translateY(-15px) translateX(-20px);
                opacity: 0.7;
            }
            75% {
                transform: translateY(20px) translateX(10px);
                opacity: 0.4;
            }
        }

        /* Statistics Section */
        .statistics {
            padding: 0;
            background: var(--dark-navy);
            position: relative;
        }

        .statistics .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
        }

        .stat-card {
            position: relative;
            min-height: 400px;
            background-size: cover;
            background-position: center;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 60px;
        }

        .stat-card:nth-child(1) {
            background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"%3E%3Crect fill="%23505866" width="800" height="400"/%3E%3Ctext x="50%25" y="50%25" font-size="24" fill="%23fff" opacity="0.3" text-anchor="middle" dy=".3em"%3ETeam Collaboration%3C/text%3E%3C/svg%3E');
        }

        .stat-card:nth-child(2) {
            background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"%3E%3Crect fill="%232c3441" width="800" height="400"/%3E%3Ctext x="50%25" y="50%25" font-size="24" fill="%23fff" opacity="0.3" text-anchor="middle" dy=".3em"%3EHappy Clients%3C/text%3E%3C/svg%3E');
        }

        .stat-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 31, 58, 0.85), rgba(0, 102, 255, 0.7));
            transition: all 0.4s;
        }

        .stat-card:hover .stat-overlay {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.9), rgba(26, 31, 58, 0.85));
        }

        .stat-content {
            position: relative;
            z-index: 2;
            color: white;
        }

        .stat-number {
            font-size: 72px;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1;
            animation: countUp 2s ease-out;
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .stat-description {
            font-size: 16px;
            line-height: 1.8;
            opacity: 0.95;
            max-width: 450px;
        }

        /* Who We Are Section */
        .who-we-are {
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(26, 31, 58, 0.97), rgba(0, 102, 255, 0.9)),
                        url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"%3E%3Crect fill="%231a1f3a" width="1200" height="400"/%3E%3Cg opacity="0.05"%3E%3Ccircle cx="200" cy="200" r="100" fill="%23fff"/%3E%3Ccircle cx="800" cy="250" r="150" fill="%23fff"/%3E%3Cpath d="M0,300 Q300,200 600,300 T1200,300" stroke="%23fff" stroke-width="3" fill="none"/%3E%3C/g%3E%3C/svg%3E');
            background-size: cover;
            background-position: center;
            position: relative;
            text-align: center;
            color: white;
        }

        .who-we-are::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"%3E%3Cg opacity="0.03"%3E%3Cline x1="0" y1="0" x2="1200" y2="400" stroke="%23fff" stroke-width="1"/%3E%3Cline x1="200" y1="0" x2="1400" y2="400" stroke="%23fff" stroke-width="1"/%3E%3Cline x1="400" y1="0" x2="1600" y2="400" stroke="%23fff" stroke-width="1"/%3E%3Cline x1="-200" y1="0" x2="1000" y2="400" stroke="%23fff" stroke-width="1"/%3E%3C/g%3E%3C/svg%3E');
            pointer-events: none;
        }

        .who-we-are .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .who-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .who-subtitle {
            font-size: 14px;
            letter-spacing: 4px;
            margin-bottom: 25px;
            opacity: 0.9;
            font-weight: 600;
        }

        .who-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0 0 50px 0;
        }

        /* Who Services Grid */
        .who-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
            position: relative;
            z-index: 3;
        }

        .who-service-card {
            background: white;
            padding: 25px 18px;
            border-radius: 0;
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .who-service-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--primary-blue);
            transition: height 0.4s;
            z-index: 1;
        }

        .who-service-card:hover::before {
            height: 100%;
        }

        .who-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
        }

        .who-service-card > * {
            position: relative;
            z-index: 2;
            transition: all 0.4s;
        }

        .who-service-icon {
            width: 65px;
            height: 65px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--text-dark);
            transition: all 0.4s;
        }

        .who-service-card:hover .who-service-icon {
            color: white;
            transform: scale(1.1);
        }

        .who-service-title {
            font-size: 20px;
            color: var(--primary-blue);
            margin-bottom: 12px;
            font-weight: 600;
            transition: all 0.4s;
        }

        .who-service-card:hover .who-service-title {
            color: white;
        }

        .who-service-desc {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
            transition: all 0.4s;
        }

        .who-service-card:hover .who-service-desc {
            color: rgba(255, 255, 255, 0.9);
        }

        .who-service-link {
            width: 45px;
            height: 45px;
            background: var(--primary-blue);
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .who-service-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: white;
            transition: left 0.4s;
        }

        .who-service-link i {
            position: relative;
            z-index: 2;
            transition: all 0.4s;
        }

        .who-service-card:hover .who-service-link {
            background: white;
        }

        .who-service-card:hover .who-service-link::before {
            left: 0;
        }

        .who-service-card:hover .who-service-link i {
            color: var(--primary-blue);
        }

        /* Blue Services Showcase Section */
        .blue-services-showcase {
            padding: 100px 20px;
            background: linear-gradient(135deg, #0066FF 0%, #0052E0 100%);
            position: relative;
            overflow: hidden;
        }

        .blue-services-showcase::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            border: 60px solid rgba(255, 255, 255, 0.05);
            pointer-events: none;
        }

        .blue-services-showcase::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            border: 80px solid rgba(255, 255, 255, 0.05);
            pointer-events: none;
        }

        .blue-services-showcase .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .blue-services-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .blue-services-subtitle {
            font-size: 14px;
            letter-spacing: 4px;
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
            opacity: 0.95;
        }

        .blue-services-title {
            font-size: 48px;
            font-weight: 700;
            color: white;
            line-height: 1.3;
            max-width: 900px;
            margin: 0 auto;
        }

        .blue-services-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .all-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .blue-service-item {
            background: white;
            padding: 50px 40px;
            border-radius: 15px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .blue-service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--dark-navy), var(--primary-blue));
            transition: height 0.4s ease;
            z-index: 1;
        }

        .blue-service-item:hover::before {
            height: 100%;
        }

        .blue-service-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .blue-service-item > * {
            position: relative;
            z-index: 2;
        }

        .blue-service-icon-wrapper {
            width: 80px;
            height: 80px;
            background: transparent;
            border: 3px solid var(--primary-blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            transition: all 0.4s;
        }

        .blue-service-icon-wrapper i {
            font-size: 40px;
            color: var(--primary-blue);
            transition: all 0.4s;
        }

        .blue-service-item:hover .blue-service-icon-wrapper {
            background: white;
            border-color: white;
            transform: scale(1.1);
        }

        .blue-service-item:hover .blue-service-icon-wrapper i {
            color: var(--primary-blue);
        }

        .blue-service-heading {
            font-size: 26px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
            transition: all 0.4s;
        }

        .blue-service-item:hover .blue-service-heading {
            color: white;
        }

        .blue-service-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-light);
            margin: 0;
            transition: all 0.4s;
        }

        .blue-service-item:hover .blue-service-text {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Light Services Cards Section */
        .light-services {
            padding: 80px 20px;
            background: linear-gradient(135deg, #0066FF 0%, #0052E0 100%);
            position: relative;
            overflow: hidden;
        }

        .light-services::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            border: 60px solid rgba(255, 255, 255, 0.05);
            pointer-events: none;
        }

        .light-services::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            border: 80px solid rgba(255, 255, 255, 0.05);
            pointer-events: none;
        }

        .light-services .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .light-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .light-service-card {
            background: #f8f9fa;
            padding: 40px 30px;
            border-radius: 0;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .light-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-blue), #0052cc);
            transition: width 0.4s ease;
            z-index: 1;
        }

        .light-service-card:hover::before {
            width: 100%;
        }

        .light-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
        }

        .light-service-card > * {
            position: relative;
            z-index: 2;
            transition: all 0.4s;
        }

        .light-service-icon {
            width: 70px;
            height: 70px;
            background: transparent;
            border: 3px solid var(--primary-blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s;
        }

        .light-service-icon i {
            font-size: 36px;
            color: var(--primary-blue);
            transition: all 0.4s;
        }

        .light-service-card:hover .light-service-icon {
            background: white;
            border-color: white;
            transform: scale(1.1);
        }

        .light-service-card:hover .light-service-icon i {
            color: var(--primary-blue);
        }

        .light-service-title {
            font-size: 22px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
            transition: all 0.4s;
        }

        .light-service-card:hover .light-service-title {
            color: white;
        }

        .light-service-description {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-light);
            margin: 0;
            transition: all 0.4s;
        }

        .light-service-card:hover .light-service-description {
            color: rgba(255, 255, 255, 0.9);
        }

        /* CTA Banner Section */
       .cta-banner {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg, #0f4cdd, #1e6bff);
    overflow: hidden;
}


        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 50%;
            background-image: 
                repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px),
                repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px);
            pointer-events: none;
        }

      .cta-banner::after {
              content: '';
             position: absolute;
             width: 700px;
             height: 700px;
             background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
             top: -200px;
              right: -200px;
            border-radius: 50%;
           animation: floatGlow 6s ease-in-out infinite alternate;
           }

        @keyframes floatGlow {
          from {
        transform: translateY(0px);
    }
         to {
        transform: translateY(40px);
    }
}

        .cta-banner .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

       .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-title {
    font-size: 44px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    max-width: 700px;
}  
    .cta-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
}

.cta-btn:hover {
    background: white;
    color: #0f4cdd;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}



        /* Our Projects Banner */
        .our-projects-banner {
            padding: 80px 20px;
            background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
            position: relative;
            overflow: hidden;
        }

        .our-projects-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .our-projects-banner::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 300"%3E%3Cg opacity="0.4"%3E%3Cpath d="M0,150 Q480,50 960,150 T1920,150" stroke="%230066FF" stroke-width="2" fill="none"/%3E%3Cpath d="M0,180 Q480,80 960,180 T1920,180" stroke="%2300d4ff" stroke-width="1.5" fill="none"/%3E%3Ccircle cx="200" cy="100" r="4" fill="%2300d4ff"/%3E%3Ccircle cx="600" cy="120" r="3" fill="%230066FF"/%3E%3Ccircle cx="1000" cy="90" r="5" fill="%2300d4ff"/%3E%3Ccircle cx="1400" cy="110" r="3" fill="%230066FF"/%3E%3Ccircle cx="1700" cy="95" r="4" fill="%2300d4ff"/%3E%3Ccircle cx="400" cy="200" r="2" fill="%23fff" opacity="0.5"/%3E%3Ccircle cx="800" cy="210" r="2" fill="%23fff" opacity="0.5"/%3E%3Ccircle cx="1200" cy="190" r="2" fill="%23fff" opacity="0.5"/%3E%3Ccircle cx="1600" cy="205" r="2" fill="%23fff" opacity="0.5"/%3E%3Ccircle cx="100" cy="150" r="2" fill="%23fff" opacity="0.3"/%3E%3Ccircle cx="500" cy="160" r="2" fill="%23fff" opacity="0.3"/%3E%3Ccircle cx="900" cy="140" r="2" fill="%23fff" opacity="0.3"/%3E%3Ccircle cx="1300" cy="155" r="2" fill="%23fff" opacity="0.3"/%3E%3Ccircle cx="1800" cy="145" r="2" fill="%23fff" opacity="0.3"/%3E%3Cline x1="200" y1="100" x2="600" y2="120" stroke="%230066FF" stroke-width="1" opacity="0.2"/%3E%3Cline x1="600" y1="120" x2="1000" y2="90" stroke="%2300d4ff" stroke-width="1" opacity="0.2"/%3E%3Cline x1="1000" y1="90" x2="1400" y2="110" stroke="%230066FF" stroke-width="1" opacity="0.2"/%3E%3Cline x1="1400" y1="110" x2="1700" y2="95" stroke="%2300d4ff" stroke-width="1" opacity="0.2"/%3E%3Ccircle cx="1850" cy="50" r="40" fill="none" stroke="%23fff" stroke-width="1" opacity="0.1"/%3E%3Ccircle cx="50" cy="250" r="30" fill="none" stroke="%23fff" stroke-width="1" opacity="0.1"/%3E%3C/g%3E%3C/svg%3E');
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
            pointer-events: none;
        }

        .our-projects-banner .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .projects-banner-title {
            font-size: 56px;
            font-weight: 700;
            color: white;
            text-align: center;
            margin: 0;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        /* Case Studies Section */
        .case-studies {
            padding: 100px 20px 50px;
            background: var(--light-gray);
        }

        .case-studies .container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .case-studies-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .case-studies-subtitle {
            font-size: 14px;
            letter-spacing: 3px;
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: uppercase;
        }
        .case-studies-title {
            font-size: 48px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.3;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-auto-rows: 200px;
            gap: 20px;
        }

        .portfolio-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.4s;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
         .portfolio-medium {
            grid-column: span 2;
            grid-row: span 2;
        }
        .portfolio-large{
           grid-column: span 3;
            grid-row: span 2;
       }
       

        .portfolio-image {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .portfolio-card:hover .portfolio-image img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
            padding: 20px;
            transform: translateY(0);
            transition: all 0.4s;
        }

        .portfolio-card:hover .portfolio-overlay {
            background: linear-gradient(to top, rgba(0, 102, 255, 0.95) 0%, rgba(0, 102, 255, 0.85) 100%);
        }

        .portfolio-content {
            color: white;
        }

        .portfolio-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .portfolio-category {
            font-size: 13px;
            opacity: 0.9;
            margin: 0;
        }

        /* Technology Index Section */
        .technology-index {
            padding: 100px 20px;
            background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
            position: relative;
            overflow: hidden;
        }

        .technology-index::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px),
                linear-gradient(0deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        .technology-index::after {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .technology-index .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .tech-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 80px;
            align-items: center;
        }

        .tech-text-content {
            color: white;
        }

        .tech-subtitle {
            font-size: 14px;
            letter-spacing: 3px;
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
            text-transform: uppercase;
            opacity: 0.9;
        }

        .tech-main-title {
            font-size: 48px;
            font-weight: 700;
            color: white;
            line-height: 1.3;
            margin: 0;
        }

        .tech-icons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .tech-icon-card {
            background: rgba(255, 255, 255, 0.03);
            border: 2px dashed rgba(0, 102, 255, 0.3);
            padding: 50px 30px;
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .tech-icon-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.2));
            transition: height 0.4s;
            z-index: 1;
        }

        .tech-icon-card:hover::before {
            height: 100%;
        }

        .tech-icon-card:hover {
            border-color: var(--primary-blue);
            border-style: solid;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
        }

        .tech-icon-card > * {
            position: relative;
            z-index: 2;
        }

        .tech-icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s;
        }

        .tech-icon-wrapper i {
            font-size: 50px;
            color: var(--primary-blue);
            transition: all 0.4s;
        }

        .tech-icon-card:hover .tech-icon-wrapper i {
            transform: scale(1.2);
            color: #00d4ff;
        }

        .tech-icon-label {
            font-size: 20px;
            font-weight: 600;
            color: white;
            margin: 0;
            letter-spacing: 2px;
        }

        /* Services Section */
        .services {
            padding: 100px 20px;
            background: white;
        }

        .services .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 42px;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 18px;
            color: var(--text-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-left: 4px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-left-color: var(--primary-blue);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 32px;
            color: white;
        }

        .service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Partners Section */
        .partners {
            padding: 80px 20px;
            background: var(--light-gray);
        }

        .partners .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .partners-slider {
            display: flex;
            align-items: center;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 40px;
        }

        .partner-logo {
            opacity: 0.5;
            transition: opacity 0.3s;
            filter: grayscale(100%);
            height: 60px;
        }

        .partner-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        /* Team Section */
        .team {
            padding: 100px 60px;
            background: white;
        }

        .team .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-header-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .team-header-left {
            max-width: 600px;
        }

        .team-subtitle {
            font-size: 14px;
            letter-spacing: 3px;
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .team-main-title {
            font-size: 48px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.3;
            margin: 0;
        }

        .team-header-right {
            display: flex;
            align-items: center;
        }

        .team-description {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-light);
            margin: 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .team-member {
            background: white;
            overflow: hidden;
            transition: all 0.4s;
            position: relative;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .team-image-wrapper {
            width: 100%;
            height: 400px;
            overflow: hidden;
            position: relative;
        }

        .team-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .team-member:hover .team-image-wrapper img {
            transform: scale(1.05);
        }

        .team-info {
            padding: 20px 15px;
            text-align: left;
            background: white;
            border-left: 4px solid var(--primary-blue);
        }

        .team-info h3 {
            font-size: 20px;
            margin-bottom: 6px;
            color: var(--text-dark);
            font-weight: 600;
        }

        .team-info p {
            color: var(--text-light);
            font-size: 14px;
            margin: 0;
        }

        /* Blog Section */
        .blog {
            padding: 100px 20px;
            background: var(--light-gray);
        }

        .blog .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .blog-subtitle {
            font-size: 14px;
            letter-spacing: 3px;
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .blog-main-title {
            font-size: 48px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.3;
            margin: 0;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            background: white;
            overflow: hidden;
            transition: all 0.4s;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 30px;
            position: relative;
        }

        .blog-date {
            position: absolute;
            top: -25px;
            left: 30px;
            background: white;
            padding: 10px 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            min-width: 70px;
        }

        .date-day {
            display: block;
            font-size: 26px;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
            margin-bottom: 3px;
        }

        .date-month {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            padding-top: 20px;
        }

        .blog-meta span {
            font-size: 14px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .blog-meta i {
            color: var(--primary-blue);
            font-size: 14px;
        }

        .blog-title {
            font-size: 22px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
            margin: 0 0 15px 0;
            transition: color 0.3s;
        }

        .blog-card:hover .blog-title {
            color: var(--primary-blue);
        }

        .blog-excerpt {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-light);
            margin: 0;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, rgba(26, 40, 64, 0.98) 0%, rgba(45, 62, 80, 0.98) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
        }

        .footer::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 800"%3E%3Cg opacity="0.05"%3E%3Cpath d="M0,400 Q200,300 400,400 T800,400" stroke="%23fff" stroke-width="100" fill="none"/%3E%3Cpath d="M1920,400 Q1720,300 1520,400 T1120,400" stroke="%23fff" stroke-width="100" fill="none"/%3E%3Ccircle cx="100" cy="200" r="150" fill="%23fff"/%3E%3Ccircle cx="1820" cy="200" r="150" fill="%23fff"/%3E%3C/g%3E%3C/svg%3E');
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
            pointer-events: none;
        }

        .footer-top {
            padding: 60px 20px 40px;
            position: relative;
            z-index: 2;
        }

        .footer-top .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 80px;
            align-items: start;
        }

        .footer-brand {
            padding-top: 10px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .footer-logo-text {
            font-size: 28px;
            font-weight: bold;
        }

        .footer-logo-text span:first-child {
            color: white;
        }

        .footer-logo-text span:last-child {
            color: var(--primary-blue);
        }

        .footer-contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer-contact-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .footer-contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .footer-contact-icon i {
            font-size: 24px;
            color: var(--primary-blue);
        }

        .footer-contact-item:hover .footer-contact-icon {
            background: rgba(0, 102, 255, 0.1);
            border-color: var(--primary-blue);
            transform: scale(1.1);
        }

        .footer-contact-content h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: white;
        }

        .footer-contact-content p {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin: 0 0 8px 0;
        }

        .footer-middle {
            padding: 60px 20px;
            position: relative;
            z-index: 2;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-middle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 40, 64, 1) 0%, rgba(45, 62, 80, 1) 100%);
            z-index: -1;
        }

        .footer-middle .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-about {
            max-width: 800px;
        }

        .footer-about h3 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-about p {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .footer-bottom {
            padding: 25px 20px;
            position: relative;
            z-index: 2;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 40, 64, 1) 0%, rgba(45, 62, 80, 1) 100%);
            z-index: -1;
        }

        .footer-bottom .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 1024px) {

            .who-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 280px);
            justify-content: center;
            gap: 25px;
           }

           .who-service-card {
         padding: 25px 20px;
            }


            .blue-services-cards {
             display: grid;
             grid-template-columns: repeat(3, 150px);
             justify-content: center;
             gap: 25px;
           }

            .blue-service-card {
             padding: 25px 20px;
             max-width: 150px;
             margin: 0 auto;
           }

            .all-services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .blue-services-title {
                font-size: 36px;
            }

            .light-services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .cta-title {
                font-size: 36px;
            }

            .case-studies-title {
                font-size: 36px;
            }

            /* Portfolio Grid Tablet */
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 220px;
            }

            .portfolio-large,
            .portfolio-medium {
                grid-column: span 2;
                grid-row: span 2;
            }

            .portfolio-small {
                grid-column: span 1;
                grid-row: span 1;
            }

            /* Technology Index Tablet */
            .tech-content-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .tech-main-title {
                font-size: 36px;
            }

            .tech-icons-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            /* Team Section Tablet */
            .team-header-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .team-main-title {
                font-size: 36px;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .team-image-wrapper {
                height: 300px;
            }

            /* Blog Section Tablet */
            .blog-main-title {
                font-size: 36px;
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            /* Footer Tablet */
            .footer-main {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .footer-contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            /* Our Projects Banner Tablet */
            .projects-banner-title {
                font-size: 42px;
                letter-spacing: 3px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .slide h1 {
                font-size: 36px;
            }

            .hero-description {
                font-size: 16px;
            }

            .section-title h2 {
                font-size: 32px;
            }

            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }

            .contact-info span {
                display: block;
                margin: 5px 0;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .slider-arrow.prev {
                left: 10px;
            }

            .slider-arrow.next {
                right: 10px;
            }

            .hero {
                height: auto;
                min-height: 500px;
            }

            .slide-content {
                padding: 80px 20px;
            }

            /* About Company Responsive */
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-content {
                padding-right: 0;
            }

            .about-images {
                height: 400px;
            }

            .collage-item.item-1 {
                width: 200px;
                height: 160px;
            }

            .collage-item.item-2 {
                width: 180px;
                height: 220px;
                left: 150px;
            }

            .collage-item.item-3 {
                width: 120px;
                height: 100px;
            }

            .collage-item.item-4 {
                width: 180px;
                height: 140px;
            }

            .collage-item.item-5 {
                width: 160px;
                height: 160px;
            }

            /* Statistics Responsive */
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-card {
                min-height: 350px;
                padding: 40px 30px;
            }

            .stat-number {
                font-size: 56px;
            }

            .stat-title {
                font-size: 24px;
            }

            .stat-description {
                font-size: 15px;
            }

            /* Who We Are Responsive */
            .who-we-are {
                padding: 60px 20px;
            }

            .who-title {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .who-subtitle {
                font-size: 12px;
            }

            /* Who Services Grid Responsive */
            .who-services-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .who-service-card {
                padding: 30px 20px;
            }

            /* Blue Services Showcase Responsive */
            .blue-services-title {
                font-size: 28px;
            }

            .blue-services-cards {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .blue-service-item {
                padding: 40px 30px;
            }

            .blue-services-showcase::before,
            .blue-services-showcase::after {
                display: none;
            }

            /* Light Services Responsive */
            .light-services {
                padding: 60px 20px;
            }

            .light-services::before,
            .light-services::after {
                display: none;
            }

            .light-services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .light-service-card {
                padding: 35px 25px;
            }

            /* CTA Banner Responsive */
            .cta-banner {
                padding: 80px 20px;
            }

            .cta-content {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .cta-title {
                font-size: 28px;
            }

            .cta-btn {
                padding: 15px 35px;
                font-size: 16px;
            }

            /* Case Studies Responsive */
            .case-studies {
                padding: 80px 20px 40px;
            }

            .case-studies-title {
                font-size: 28px;
            }

            .case-studies-subtitle {
                font-size: 12px;
            }

            /* Portfolio Grid Responsive */
            .portfolio-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 250px;
                gap: 15px;
            }

            .portfolio-large,
            .portfolio-medium,
            .portfolio-small {
                grid-column: span 1;
                grid-row: span 1;
            }

            /* Technology Index Responsive */
            .technology-index {
                padding: 80px 20px;
            }

            .tech-content-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .tech-main-title {
                font-size: 28px;
            }

            .tech-icons-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .tech-icon-card {
                padding: 40px 25px;
            }

            /* Team Section Responsive */
            .team-header-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 40px;
            }

            .team-main-title {
                font-size: 28px;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .team-image-wrapper {
                height: 350px;
            }

            /* Blog Section Responsive */
            .blog {
                padding: 80px 20px;
            }

            .blog-main-title {
                font-size: 28px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .blog-image {
                height: 250px;
            }

/* Footer Tablet */
            .footer-main {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .footer-contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            /* Our Projects Banner Responsive */
            .our-projects-banner {
                padding: 60px 20px;
            }

            .projects-banner-title {
                font-size: 32px;
                letter-spacing: 2px;
            }
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 999;
        }

        .scroll-top:hover {
            background: #0052cc;
            transform: translateY(-5px);
        }

        .scroll-top.show {
            display: flex;
        }

        /* Animation classes */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
   

.blue-services-cards,
.all-services-grid,
.light-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center;
    gap: 28px;
}

/* square cards */
.blue-services-cards > *,
.all-services-grid > *,
.light-services-grid > * {
    width: 300px;
    height: 300px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.who-service-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.who-service-desc {
    font-size: 13px;
    line-height: 1.4;
}




















#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0066FF;
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

#scrollTopBtn:hover {
    background-color: #004ccc;
    transform: scale(1.1);
}






















/* ================= FOOTER MAIN ================= */
.footer {
    position: relative;
    background: #1a1f3a;   /* dark navy */
    padding: 60px 8%;
    overflow: hidden;
    color: #ffffff;
}

/* ================= BIG BACKGROUND TEXT ================= */
.footer .big-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 250px;
    font-weight: 900;
    color: #000;
    opacity: 0.05;       /* very light */
    z-index: 0;          /* stay behind */
    pointer-events: none;
}

/* ================= ALL CONTENT ABOVE BACKGROUND ================= */
.footer > * {
    position: relative;
    z-index: 2;
}

/* ================= LOGO STYLE ================= */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 5;   /* extra safety */
}

.footer-logo-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.footer-logo-text span:first-child {
    color: #ffffff;   /* ZAMAR */
}

.footer-logo-text span:last-child {
    color: #0066FF;   /* TECH */
}

/* ================= CONTACT ITEMS ================= */
.footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer .contact-item i {
    font-size: 20px;
    color: #0066FF;
}




.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 300px;      /* adjust if needed */
    height: 45px;
    object-fit: contain;
}












.footer-middle {
    width: 100%;
    padding: 80px 8%;
    background: linear-gradient(to right, #1f2a44, #2c3e50);
}

.footer-about {
    max-width: 1000px;  /* optional for readable text */
}

.footer-about h3 {
    font-size: 25px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-about p {
    font-size: 16px;
    line-height: 1.8;
    color: #dcdcdc;
}

/* Make footer-middle full width */
.footer-middle {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 90px 8%;
}

.footer-bottom {
    width: 100%;
    padding: 25px 8%;
    background: #24344d;   /* slightly darker */
    text-align: center;
    color: #dcdcdc;
    font-size: 14px;
}
.footer-bottom {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 25px 8%;
    background: #24344d;
    text-align: center;
}

.footer-bottom .container {
    max-width: 100%;
}


#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;   /* VERY IMPORTANT */
}

