 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            /*background: linear-gradient(135deg, #0a2342 0%, #1e5a8e 50%, #0a2342 100%);*/
            min-height: 100vh;
            line-height: 1.6;
        }
        
/* ============================
   CUBE LOADER WRAPPER
============================ */
#cube-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#cube-loader.hide {
    opacity: 0;
    visibility: hidden;
}

/* ============================
   CENTER CONTENT
============================ */
.cube-loader-wrap {
    text-align: center;
}

/* ============================
   CUBE STRUCTURE
============================ */
.cube-loader {
    width: 120px;
    height: 120px;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeSpin 2.5s linear infinite;
    margin: 0 auto 22px;
}

/* ============================
   CUBE FACES (GLASS STYLE)
============================ */
.cube-loader .face {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.45);
    backdrop-filter: blur(6px);
    box-shadow:
        inset 0 0 10px rgba(59,130,246,0.3),
        0 0 16px rgba(59,130,246,0.35);
}

/* Face Positions */
.cube-loader .front  { transform: translateZ(35px); }
.cube-loader .back   { transform: rotateY(180deg) translateZ(35px); }
.cube-loader .right  { transform: rotateY(90deg) translateZ(35px); }
.cube-loader .left   { transform: rotateY(-90deg) translateZ(35px); }
.cube-loader .top    { transform: rotateX(90deg) translateZ(35px); }
.cube-loader .bottom { transform: rotateX(-90deg) translateZ(35px); }

/* ============================
   ANIMATIONS
============================ */
@keyframes cubeSpin {
    0%   { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* ============================
   TEXT
============================ */
.loader-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #1e40af;
    text-transform: uppercase;
}

/* ============================
   MOBILE OPTIMIZATION
============================ */
@media (max-width: 600px) {
    .cube-loader {
        width: 80px;
        height: 80px;
    }

    .cube-loader .face {
        width: 48px;
        height: 48px;
    }

    .cube-loader .front  { transform: translateZ(24px); }
    .cube-loader .back   { transform: rotateY(180deg) translateZ(24px); }
    .cube-loader .right  { transform: rotateY(90deg) translateZ(24px); }
    .cube-loader .left   { transform: rotateY(-90deg) translateZ(24px); }
    .cube-loader .top    { transform: rotateX(90deg) translateZ(24px); }
    .cube-loader .bottom { transform: rotateX(-90deg) translateZ(24px); }
}


        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: rgba(30, 90, 142, 0.48);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(99, 179, 237, 0.2);
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: -30px;
            right: 20%;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #2596be, #63b3ed);
            border-radius: 50%;
            opacity: 0.1;
            animation: headerFloat 8s ease-in-out infinite;
        }

        @keyframes headerFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(10px); }
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

       .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo img {
            width: 180px;
            height: auto;
            filter: drop-shadow(0 4px 8px rgba(79, 172, 254, 0.4));
            transition: all 0.3s ease;
        }

        .logo img:hover {
            filter: drop-shadow(0 6px 12px rgba(79, 172, 254, 0.6));
            transform: translateY(-2px);
        }


        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 10px 20px;
            border-radius: 25px;
        }

        .nav-links a:hover {
            background: linear-gradient(90deg, #3b82f6, #1e40af);
            transform: translateY(-2px);
        }


.hero { 
    padding: 140px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;

    /* Responsive Background Banner */
    background-image: url("../images/banner1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    animation: bgMove 10s linear infinite alternate,
               heroFloat 10s ease-in-out infinite;
}

/* ============================
   BACKGROUND PARALLAX
============================ */
@keyframes bgMove {
    0% { background-position: center; }
    100% { background-position: center -40px; }
}

/* Entire Section Soft Float Motion */
@keyframes heroFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}


/* ============================
   DARK OVERLAY
============================ */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(1px);
    z-index: 1;
}

/* Mobile screens */
@media (max-width: 600px) {
    .hero-overlay {
        
    background: rgba(0, 0, 0, 0);
    }
}

/* ============================
   FLOATING SHAPES
============================ */
.hero::before {
    content: '';
    position: absolute;
    top: 12%;
    right: 15%;
    width: 240px;
    height: 240px;
    background: linear-gradient(60deg, #3b82f6, #1e40af);
    border-radius: 50%;
    opacity: 0.13;
    animation: shapeFloat1 10s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 12%;
    left: 15%;
    width: 180px;
    height: 180px;
    background: linear-gradient(60deg, #60a5fa, #2563eb);
    border-radius: 40% 60% 70% 30%;
    opacity: 0.13;
    animation: shapeFloat2 12s ease-in-out infinite alternate;
    z-index: 0;
}

/* Floating Shapes Motion */
@keyframes shapeFloat1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, -25px) rotate(10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes shapeFloat2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -15px) rotate(-8deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* ============================
   TEXT ANIMATION
============================ */
@keyframes textUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glow Animation */
@keyframes textGlow {
    0% {
        text-shadow:
            0 2px 6px rgba(0,0,0,0.6),
            0 0 14px rgba(59,130,246,0.35);
    }
    50% {
        text-shadow:
            0 2px 6px rgba(0,0,0,0.6),
            0 0 28px rgba(59,130,246,0.6);
    }
    100% {
        text-shadow:
            0 2px 6px rgba(0,0,0,0.6),
            0 0 14px rgba(59,130,246,0.35);
    }
}

/* ============================
   TEXT LAYER
============================ */
.hero .container {
    position: relative;
    z-index: 2;
}

/* ============================
   TYPOGRAPHY + GLOW
============================ */
.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;

    animation:
        textUp 1.3s ease-in-out forwards,
        textGlow 5s ease-in-out infinite;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;

    text-shadow:
        0 1px 4px rgba(0,0,0,0.5),
        0 0 10px rgba(96,165,250,0.35);

    animation: textUp 1.5s ease-in-out forwards;
}

/* ============================
   CTA BUTTON + GLOW
============================ */
.cta-button {
    padding: 14px 36px;
    display: inline-block;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;

    box-shadow:
        0 6px 18px rgba(59,130,246,0.5),
        0 0 22px rgba(59,130,246,0.45);

    animation: textUp 1.7s ease-in-out forwards;
    transition: 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 30px rgba(59,130,246,0.65),
        0 0 40px rgba(59,130,246,0.6);
}


.cube-wrap {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 200px;
    height: 200px;
    perspective: 600px;
    z-index: 1;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeSpin 14s linear infinite;
}
.cube .face {
    position: absolute;
    width: 80px;
    height: 80px;

    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.55);

    backdrop-filter: blur(6px);
    box-shadow: inset 0 0 12px rgba(59,130,246,0.4);
}
.cube .front  { transform: translateZ(40px); }
.cube .back   { transform: rotateY(180deg) translateZ(40px); }
.cube .right  { transform: rotateY(90deg) translateZ(40px); }
.cube .left   { transform: rotateY(-90deg) translateZ(40px); }
.cube .top    { transform: rotateX(90deg) translateZ(40px); }
.cube .bottom { transform: rotateX(-90deg) translateZ(40px); }
@keyframes cubeSpin {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: rotateX(180deg) rotateY(180deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}
@keyframes cubeGlow {
    0%, 100% {
        box-shadow:
            inset 0 0 12px rgba(59,130,246,0.3),
            0 0 18px rgba(59,130,246,0.4);
    }
    50% {
        box-shadow:
            inset 0 0 18px rgba(59,130,246,0.5),
            0 0 30px rgba(59,130,246,0.7);
    }
}

.cube .face {
    animation: cubeGlow 4s ease-in-out infinite;
}
@media (max-width: 600px) {
    .cube-wrap {
        width: 70px;
        height: 70px;
        right: 40px;
        bottom: 40px;
    }

    .cube .face {
        width: 55px;
        height: 55px;
    }

    .cube .front  { transform: translateZ(27.5px); }
    .cube .back   { transform: rotateY(180deg) translateZ(27.5px); }
    .cube .right  { transform: rotateY(90deg) translateZ(27.5px); }
    .cube .left   { transform: rotateY(-90deg) translateZ(27.5px); }
    .cube .top    { transform: rotateX(90deg) translateZ(27.5px); }
    .cube .bottom { transform: rotateX(-90deg) translateZ(27.5px); }
}

/* ============================
   RESPONSIVE DESIGN
============================ */

/* Tablets */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
        background-position: center top;
    }
    .hero h1 {
        font-size: 2.6rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero {
        padding: 100px 20px;
        min-height: 420px;
        background-position: center;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .cta-button {
        padding: 12px 28px;
        font-size: 1rem;
    }
    .hero::before,
    .hero::after {
        display: none;
    }
}




        /* ERP Solutions Grid */
        .erp-solutions {
            padding: 80px 0;
            background: rgba(59, 130, 246, 0.1);
            backdrop-filter: blur(10px);
            margin: 40px 0;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .erp-solutions::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #3b82f6, #1e40af);
            border-radius: 50%;
            opacity: 0.08;
            animation: pulse 4s ease-in-out infinite;
        }

        .erp-solutions::after {
            content: '';
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #60a5fa, #2563eb);
            border-radius: 20px;
            opacity: 0.08;
            animation: pulse 6s ease-in-out infinite reverse;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e40af;
            margin-bottom: 60px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .solution-card {
            background: rgba(59, 130, 246, 0.15);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 30px;
            border: 2px solid #1e40af;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .solution-card .card-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #3b82f6, #1e40af);
            border-radius: 50%;
            opacity: 0.2;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(45deg, #3b82f6, #1e40af);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .solution-card:hover::before {
            opacity: 1;
        }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
            background: rgba(59, 130, 246, 0.25);
        }

        .solution-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1e40af;
            margin-bottom: 15px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .demo-button {
            background: linear-gradient(45deg, #3b82f6, #1e40af);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            margin-top: 10px;
        }

        .demo-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 5%;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #3b82f6, #1e40af);
            border-radius: 50%;
            opacity: 0.05;
            animation: drift 10s ease-in-out infinite;
        }

        .features::after {
            content: '';
            position: absolute;
            bottom: 20%;
            right: 5%;
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #60a5fa, #2563eb);
            border-radius: 20px;
            opacity: 0.05;
            animation: drift 12s ease-in-out infinite reverse;
        }

        @keyframes drift {
            0%, 100% { transform: translateX(0px) translateY(0px); }
            25% { transform: translateX(20px) translateY(-10px); }
            50% { transform: translateX(0px) translateY(-20px); }
            75% { transform: translateX(-20px) translateY(-10px); }
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-item {
            /*background: rgba(59, 130, 246, 0.15);*/
            background: linear-gradient(90deg, #3b82f6, #1e40af);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid rgba(99, 179, 237, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #3b82f6, #1e40af);
            border-radius: 50%;
            opacity: 0.1;
            animation: spin 20s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .feature-item:hover {
            transform: translateY(-5px);
            background: rgba(59, 130, 246, 0.25);
            color:#1e40af;
            border: 2px solid #1e40af;
            color:#1e40af ;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .feature-item h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }
        .feature-item h3:hover{
            color:#1e40af ;
        }


        .feature-item p {
            color: rgba(255, 255, 255, 0.9);
        }
        .feature-item p:hover{
            color:#1e40af ;
        }

                /* Logo Slider Section */
        .logo-slider-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(0, 102, 179, 0.3) 0%, rgba(30, 90, 142, 0.3) 100%);
            backdrop-filter: blur(10px);
            margin: 60px 0;
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid rgba(79, 172, 254, 0.2);
        }

        .slider-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e40af;
            margin-bottom: 50px;
            letter-spacing: -0.5px;
        }

        .logo-slider {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .logo-track {
            display: flex;
            animation: scroll 40s linear infinite;
            width: fit-content;
        }
          .logo-slide {
            flex: 0 0 auto;
            padding: 0 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* --- Uniform Logo Size --- */
/*.logo-slide-content {
  background: rgba(79, 172, 254, 0.1);
  backdrop-filter: blur(10px);
  padding: 25px 30px;
  border-radius: 20px;
  border: 1px solid rgba(79, 172, 254, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  width: 220px; 
  height: 180px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo-slide-content img {
  width: 120px; 
  height: 80px;
  object-fit: contain; 
  filter: drop-shadow(0 4px 6px rgba(79, 172, 254, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-slide-content:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 10px rgba(79, 172, 254, 0.4));
}*/
.logo-slide-content {
  /*background: rgba(255, 255, 255, 0.05);*/
  background: #fff;
  border-radius: 20px;
  padding: 25px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
  width: 220px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo-title {
  color: #e0e7ff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.logo-slide-content img {
  width: 180px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 102, 179, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-slide-content:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 10px rgba(0, 102, 179, 0.5));
}


.logo-slide {
  flex: 0 0 auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-title{
    color: white;
}



        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .logo-slider:hover .logo-track {
            animation-play-state: paused;
        }

        /* Stats Section */
        .stats {
            padding: 60px 0;
            /*background: rgba(30, 58, 138, 0.3);*/
            background: linear-gradient(135deg, rgba(0, 102, 179, 0.3) 0%, rgba(30, 90, 142, 0.3) 100%);
            margin: 40px 0;
            border-radius: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            font-weight: 900;
            /*color: #60a5fa;*/
            color: #1e40af;
            margin-bottom: 10px;
        }

        .stat-item p {
            /*color: rgba(255, 255, 255, 0.9);*/
            color: #1e40af;
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Footer */
        footer {
            background: rgba(30, 90, 142, 0.5);
            padding: 60px 0 30px;
            text-align: center;
            color: white;
            border-radius: 30px 30px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1e40af;
        }
         .footer-logo img {
            width: 200px;
            margin-bottom: 15px;
            filter: drop-shadow(0 4px 8px rgba(79, 172, 254, 0.3));
        }

        .footer-section p,
        .footer-section a {
            /*color: rgba(255, 255, 255, 0.8);*/
            color: #1e40af;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(99, 179, 237, 0.2);
            padding-top: 20px;
            /*color: rgba(255, 255, 255, 0.6);*/
            color: #fff;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .solutions-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .logo-slide img {
                height: 60px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .solution-card {
            animation: fadeInUp 0.6s ease-out;
        }

        .solution-card:nth-child(even) {
            animation-delay: 0.1s;
        }

        .solution-card:nth-child(odd) {
            animation-delay: 0.2s;
        }