* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background-color: #f8f9fa;
            line-height: 1.6;
        }

        .banner {
            background: skyblue;
            color: white;
            text-align: center;
            padding: 12px 20px;
            font-size: 14px;
            position: relative;
        }

        .banner-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .register-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .register-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
        }

        header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo img {
            font-size: 24px;
        height: 28px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-item {
            color: #666;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-item:hover {
            color: #ff6b35;
        }

        .nav-item.dropdown::after {
            content: '▼';
            font-size: 10px;
            margin-left: 5px;
            color: #999;
        }

        .contact-btn {
            background: white;
            border: 2px solid #333;
            color: #333;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background: #333;
            color: white;
            transform: translateY(-2px);
        }

        .hero {
            max-width: 1200px;
            margin: 80px auto;
            text-align: center;
            padding: 0 20px;
        }

        .hero-subtitle {
            color: #ff6b35;
            font-size: 1.25rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 800;
            color: #333;
            margin-bottom: 30px;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .hero-description {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto 80px;
            line-height: 1.7;
        }

        .services {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            max-width: 900px;
            margin: 0 auto;
            padding: -1px 20px;
        }

        .service-card {
            text-align: left;
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 25px;
            opacity: 0.7;
        }

        .service-title {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .service-description {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .service-link {
            color: #666;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .service-link:hover {
            color: #ff6b35;
        }

        .service-link::after {
            content: '→';
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .service-link:hover::after {
            transform: translateX(3px);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 10px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #333;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 20px;
            z-index: 1000;
        }

        .mobile-menu.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-menu .nav-item {
            font-size: 16px;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-menu .contact-btn {
            margin-top: 15px;
            text-align: center;
            display: block;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .banner-content {
                flex-direction: column;
                gap: 10px;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            header {
                position: relative;
            }

            .hero-title {
                font-size:2.7rem;
            }

            .services {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .service-card {
                padding: 30px 25px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 32px;
            }

            .hero-description {
                font-size: 16px;
            }
        }

           .hero-section1 {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 50px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            width: 100%;
        }

        /* Left side - Animated Images */
        .image-section {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-container {
            position: absolute;
            width: 300px;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: scale(0.8) translateY(20px);
            transition: all 0.8s ease-in-out;
            background-color: #f0f0f0;
            border: 2px dashed #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
        }

        .image-container.active {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Right side - Content */
        .content-section {
            padding: 40px 0;
        }

        .brand-text {
            font-size: 14px;
            color: #666;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .main-heading {
            font-size: 48px;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.2;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .description {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 480px;
        }

        .cta-button {
            background-color: #2c3e50;
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 34px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 40px;
        }

        .cta-button:hover {
            background-color: #34495e;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
        }

        .logos-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* .logo {
            width: 80px;
            height: 40px;
            background-color: #e8f5e8;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            color: #27ae60;
        }

        .logo:nth-child(2) {
            background-color: #fff3cd;
            color: #f39c12;
        } */

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section1 {
                padding: 20px;
            }

            .container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .image-section {
                height: 300px;
                order: 2;
            }

            .image-container {
                width: 250px;
                height: 150px;
            }

            .main-heading {
                font-size: 36px;
            }

            .content-section {
                order: 1;
            }
        }

        /* Animation keyframes */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-section > * {
            animation: slideInUp 0.8s ease-out forwards;
        }

        .brand-text { animation-delay: 0.2s; }
        .main-heading { animation-delay: 0.4s; }
        .description { animation-delay: 0.6s; }
        .cta-button { animation-delay: 0.8s; }
       
         .features-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .abc{ background-color: #f8f9fa;
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 60px;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 20px;
            color: white;
        }

        .feature-icon.orange {
            background: linear-gradient(135deg, #ff7b54 0%, #ff6b35 100%);
        }

        .feature-icon.yellow {
            background: linear-gradient(135deg, #ffd93d 0%, #ff9800 100%);
        }

        .feature-icon.blue {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .feature-icon.purple {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            color: #666;
        }

        .feature-title {
            font-size: 16px;
            color: #2c3e50;
            line-height: 1.5;
            font-weight: 500;
            letter-spacing: -0.2px;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-title {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .feature-card {
                padding: 30px 25px;
            }

            .features-section {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 24px;
                line-height: 1.3;
            }
        }

        /* Hover animation for icons */
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            transition: transform 0.3s ease;
        }
        
        .whitefiber-main-container {
            max-width: 900px;
            width: 100%;
            text-align: center;
        }

        .whitefiber-brand-name {
            font-size: 13px;
            letter-spacing: 3px;
            color: #888;
            margin-bottom: 30px;
            font-weight: 500;
            text-transform: uppercase;
        }

        .whitefiber-hero-title {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 40px;
            letter-spacing: -1.5px;
            color: #1a1a1a;
        }

        .whitefiber-hero-description {
            font-size: 18px;
            line-height: 1.6;
            color: #666;
            max-width: 700px;
            margin: 0 auto 80px auto;
        }

        .whitefiber-features-wrapper {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .whitefiber-feature-card {
            display: flex;
            align-items: center;
            text-align: left;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            border: 1px solid #e9ecef;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .whitefiber-feature-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .whitefiber-feature-icon-circle {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            flex-shrink: 0;
        }

        .whitefiber-feature-icon-circle svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        .whitefiber-feature-content {
            flex: 1;
        }

        .whitefiber-feature-heading {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .whitefiber-hero-title {
                font-size: 42px;
            }
            
            .whitefiber-features-wrapper {
                padding: 40px 20px;
            }
            
            .whitefiber-feature-card {
                flex-direction: column;
                text-align: center;
                margin-bottom: 30px;
            }
            
            .whitefiber-feature-icon-circle {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        .ac1{
             font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: #f8f9fa;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            padding: 40px 20px;
        }

        @media (max-width: 480px) {
            .whitefiber-hero-title {
                font-size: 32px;
            }
        }

         .whitefiber-main-section {
      background: #1e2530;
      color: #fff;
      padding: 50px 40px;
      border-radius: 12px;
      max-width: 1200px;
      margin: 50px auto;
    }

    /* Top container (2 columns) */
    .whitefiber-header-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 60px;
      flex-wrap: wrap;
    }

    /* Left part */
    .whitefiber-title-section {
      flex: 1;
    }
    
    .whitefiber-title-section h4 {
      font-size: 14px;
      letter-spacing: 1.5px;
      font-weight: 600;
      color: #d1d5db;
      margin: 0 0 10px;
      text-transform: uppercase;
    }

    .whitefiber-title-section h1 {
      font-size: 32px;
      font-weight: 700;
      line-height: 1.2;
      margin: 0 0 15px;
    }

    .whitefiber-title-section h1 span {
      color: #ff6a3d;
    }

    /* Right paragraph */
    .whitefiber-description-section {
      flex: 1;
      display: flex;
      align-items: center;
    }
    
    .whitefiber-description-section p {
      font-size: 15px;
      line-height: 1.6;
      max-width: 500px;
      color: #cbd5e0;
    }

    /* Card Container */
    .whitefiber-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    /* Card Style */
    .whitefiber-feature-item {
      background: #273040;
      border-radius: 10px;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .whitefiber-feature-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .whitefiber-feature-image {
      width: 100%;
      height: 170px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      background: #1a1f2e;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .whitefiber-chip-visual {
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 170"><rect width="300" height="170" fill="%23000"/><rect x="30" y="30" width="240" height="110" fill="%23333" rx="8"/><rect x="50" y="50" width="200" height="70" fill="%23555" rx="5"/><rect x="60" y="60" width="180" height="50" fill="%23ffd700" rx="3"/><rect x="70" y="70" width="15" height="15" fill="%23000" rx="2"/><rect x="95" y="70" width="15" height="15" fill="%23000" rx="2"/><rect x="120" y="70" width="15" height="15" fill="%23000" rx="2"/><rect x="145" y="70" width="15" height="15" fill="%23000" rx="2"/><rect x="170" y="70" width="15" height="15" fill="%23000" rx="2"/><rect x="195" y="70" width="15" height="15" fill="%23000" rx="2"/><rect x="70" y="95" width="150" height="3" fill="%23000"/><rect x="70" y="102" width="150" height="3" fill="%23000"/></svg>');
    }

    .whitefiber-datacenter-visual {
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 170"><rect width="300" height="170" fill="%23f8fafc"/><rect x="20" y="30" width="260" height="110" fill="%23fff" stroke="%23e2e8f0" stroke-width="2"/><rect x="30" y="50" width="50" height="12" fill="%23ff6b35"/><rect x="90" y="50" width="50" height="12" fill="%23e2e8f0"/><rect x="150" y="50" width="50" height="12" fill="%23ff6b35"/><rect x="210" y="50" width="50" height="12" fill="%23e2e8f0"/><rect x="30" y="70" width="50" height="12" fill="%234299e1"/><rect x="90" y="70" width="50" height="12" fill="%23e2e8f0"/><rect x="150" y="70" width="50" height="12" fill="%234299e1"/><rect x="210" y="70" width="50" height="12" fill="%23e2e8f0"/><rect x="30" y="90" width="50" height="12" fill="%2310b981"/><rect x="90" y="90" width="50" height="12" fill="%23e2e8f0"/><rect x="150" y="90" width="50" height="12" fill="%2310b981"/><rect x="210" y="90" width="50" height="12" fill="%23e2e8f0"/><rect x="30" y="110" width="50" height="12" fill="%23f59e0b"/><rect x="90" y="110" width="50" height="12" fill="%23e2e8f0"/><rect x="150" y="110" width="50" height="12" fill="%23f59e0b"/><rect x="210" y="110" width="50" height="12" fill="%23e2e8f0"/></svg>');
    }

    .whitefiber-network-visual {
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 170"><rect width="300" height="170" fill="%23000"/><circle cx="150" cy="85" r="40" fill="none" stroke="%234299e1" stroke-width="3"/><circle cx="150" cy="85" r="25" fill="none" stroke="%234299e1" stroke-width="2" opacity="0.7"/><circle cx="150" cy="85" r="12" fill="none" stroke="%234299e1" stroke-width="1.5" opacity="0.5"/><circle cx="150" cy="85" r="4" fill="%234299e1"/><path d="M150 45 L180 65 M180 65 L180 105 M180 105 L150 125 M150 125 L120 105 M120 105 L120 65 M120 65 L150 45" stroke="%234299e1" stroke-width="2" fill="none" opacity="0.6"/><circle cx="120" cy="65" r="3" fill="%234299e1" opacity="0.8"/><circle cx="180" cy="65" r="3" fill="%234299e1" opacity="0.8"/><circle cx="180" cy="105" r="3" fill="%234299e1" opacity="0.8"/><circle cx="120" cy="105" r="3" fill="%234299e1" opacity="0.8"/></svg>');
    }

    .whitefiber-feature-item p {
      font-size: 14px;
      color: #d1d5db;
      line-height: 1.5;
      margin-bottom: 15px;
    }

    .whitefiber-feature-link {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      background: #374151;
      padding: 10px 14px;
      border-radius: 6px;
      display: inline-block;
      transition: background 0.3s ease;
    }

    .whitefiber-feature-link:hover {
      background: #4b5563;
    }

    @media (max-width: 768px) {
      .whitefiber-header-container {
        flex-direction: column;
      }
      .whitefiber-title-section h1 {
        font-size: 24px;
      }
      .whitefiber-features-grid {
        grid-template-columns: 1fr;
      }
    }
        
   b{
    background: #f1f5f9;
    margin:0;
   }

   .wf-integrated-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.wf-integrated-text {
  flex: 1;
}

.wf-integrated-title {
  letter-spacing: 0.1rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.13;
}

.wf-integrated-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 550px;
}

.wf-integrated-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wf-integrated-feature {
  font-size: 20px;
  color: #111;
  padding: 15px;
  border-left: 2px solid #000;
}

.wf-integrated-feature.wf-highlight {
  background-color: #f2f6f9;
  font-weight: 600;
}

.wf-integrated-image {
  flex: 1;
}

.wf-integrated-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .wf-integrated-section {
    flex-direction: column;
    text-align: center;
  }

  .wf-integrated-text {
    order: 1;
  }

  .wf-integrated-image {
    order: 2;
  }

  .wf-integrated-features {
    align-items: center;
  }

  .wf-integrated-feature {
    width: 100%;
    text-align: center;
    border-left: none;
    border-top: 2px solid #000;
  }
}
 /* footer */
    footer {
      background-color: #000000;
      color: #fff;
      padding: 60px;
      /* margin-top: 20px; */
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .footer-left {
      flex: 1;
      min-width: 260px;
    }

    .footer-left img {
      height: 40px;
      margin-bottom: 20px;
      filter: invert();
    }

    .footer-left p {
      font-size: 15px;
      line-height: 1.6;
      color: #cfcfcf;
    }

    .footer-left a {
      color: #0088cc;
      text-decoration: none;
      display: block;
      margin-top: 10px;
    }

    .footer-columns {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
      flex: 2;
      justify-content: space-between;
    }

    .footer-column h4 {
      font-weight: 600;
      margin-bottom: 15px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #cfcfcf;
      font-size: 15px;
    }

    .footer-column ul li a:hover {
      color: #58a6ff;
    }

    .footer-bottom {
      border-top: 1px solid #333;
      margin-top: 40px;
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: 14px;
      color: #aaa;
    }

    .footer-bottom p a {
      color: #58a6ff;
      text-decoration: underline;
    }

    /* .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 10px;
    }

    .social-icons a {
      background-color: #24262d;
      color: #fff;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      text-decoration: none;
      font-size: 16px;
    }
     */
 .social-icons{display:flex;gap:12px;margin-top:10px}
    .social-icons a{background:#24262d;color:#fff;width:38px;height:38px;display:flex;align-items:center;justify-content:center;border-radius:4px;text-decoration:none;font-size:16px;transition:all 0.3s ease}
    .social-icons a:hover{background:#00d4ff;color:#000}
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
      }

      .footer-columns {
        flex-direction: column;
        gap: 30px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
    }