/* --- Hero Section --- */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 550px;
            background-color: #020e15;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        #tsparticles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #ffffff;
        }

        .hero h1 {
            font-size: 4rem;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 800;
          	color: #ffffff;
        }

        .hero h1 span {
            color: #e04524;
            text-shadow: 0 0 10px rgba(243, 128, 32, 0.5);
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            font-weight: 300;
        }
  
        .btn-custom {
            background-color: #e04524;
            color: #ffffff;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid #e04524;
            box-shadow: 0 4px 15px rgba(243, 128, 32, 0.3);
            transition: all 0.3s ease;
        }

        .btn-custom:hover {
            background-color: transparent;
            color: #e04524;
           
            transform: translateY(-2px);
            border: 2px solid white;
        }

        .btn-outline-custom {
            background-color: transparent;
            color: #ffffff;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid #ffffff;
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background-color: #ffffff;
            color: #000000 !important;
            transform: translateY(-2px);
        }


        /* --- Sections General --- */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
   			color: #0d2534;
    		margin-bottom: 15px;
    		font-weight: 800;
        }

        .section-title p {
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        .bg-white-section { background-color: #ffffff; }
        .bg-light-section { background-color: #f8fafc; }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .hero-cf-logo {
            filter: drop-shadow(0 15px 25px rgba(243, 128, 32, 0.3));
            animation: float 6s ease-in-out infinite;
        }
       

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(243, 128, 32, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin: 0 auto 25px auto;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--primary-color);
            color: var(--white);
        }

        .service-card h4 {
            font-size: 1.25rem;
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* --- Why Choose Us --- */
        .feature-item {
            display: flex;
            margin-bottom: 30px;
        }

        #features .feature-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: #e37f6c;
            color: var(--white);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgb(214 93 70 / 66%);
        }

        .feature-text h5 { margin-bottom: 8px; font-size: 1.1rem; }
        .feature-text p { color: var(--text-muted); font-size: 0.95rem; }

        .why-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        .why-image-wrapper img {
            width: 100%;
            display: block;
        }

        .why-image-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(45deg, rgba(243, 128, 32, 0.4), rgba(15, 23, 42, 0.6));
        }

       /* --- REDESIGNED SLA SECTION --- */
        .sla-card-modern {
            position: relative;
            background: #ffffff;
            border-radius: 24px;
            padding: 45px 30px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(139, 92, 246, 0.1);
            height: 100%;
            overflow: hidden;
            z-index: 1;
            text-align: center; /* Aligns all content center */
        }

        .sla-card-modern:hover {
            transform: translateY(-15px);
            box-shadow: 0 10px 30px #b0c6e4;
            border-color: #b6d1e0;
        }

        .sla-bg-icon {
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 120px;
            color: #188dd1;
            opacity: 0.03;
            transform: rotate(-15deg);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .sla-card-modern:hover .sla-bg-icon {
            opacity: 0.08;
            transform: rotate(0deg) scale(1.1);
        }

        .sla-icon-box {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #e37f6c);
            color: var(--white);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 30px auto; /* Centered margin */
            box-shadow: 0 10px 20px rgb(188 208 219);
            animation: float 4s ease-in-out infinite;
        }

        .sla-metric-title {
            background: #020e15;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 10px;
            display: block;
        }

        .sla-card-modern h5 {
            color: var(--dark-bg);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .sla-card-modern p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .sla-badge {
            display: inline-block;
            padding: 4px 12px;
            background: #ddeaf2;
    		color: #020e15;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            margin: 0 auto 15px auto; /* Centered badge */
        }

        /* --- Tech Stack --- */
        .tech-card {
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            height: 100%;
        }
        .tech-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(243, 128, 32, 0.15);
            border-color: rgba(243, 128, 32, 0.3);
        }
        .tech-icon {
            font-size: 40px;
            color: #e04524;
            margin-bottom: 15px;
        }
        .tech-card h6 { margin: 0; font-weight: 600; color: var(--dark-bg); }

        /* --- Security Section --- */
        .security-section {
            background-color: #020e15;
            color: var(--white);
        }
        .security-list { list-style: none; padding: 0; }
        .security-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        .security-list li i {
            color: #e37f6c;
            font-size: 24px;
            margin-right: 15px;
            margin-top: 3px;
        }
        .security-list h5 { color: var(--white); margin-bottom: 5px; font-size: 1.1rem; }
        .security-list p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 0; }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .hero h1 { font-size: 3rem; }
            .navbar-collapse { background: rgba(15, 23, 42, 0.98); padding: 20px; border-radius: 10px; margin-top: 15px;}
        }

/* --- Process Section --- */
        .process-row { position: relative; }
        .process-row::before {
            content: '';
            position: absolute;
            top: 45px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #e2e8f0;
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 90px;
            height: 90px;
            background: #f8fafc;
            border: 4px solid #e04524;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            color: #e04524;
            margin: 0 auto 20px auto;
            box-shadow: 0 0 0 10px var(--white);
            transition: all 0.3s ease;
        }

        .process-step:hover .step-number {
            background: #e04524;
            color: var(--white);
        }

        .process-step h5 { 
          margin-bottom: 10px;
          margin-top: 80px;
          font-weight: 700;
          color: #020e15; 
        }
  
        .process-step p { 
          color: #212325;
    	  font-size: 16px;
        }

        @media (max-width: 768px) {
            .process-row::before { display: none; }
            .process-step { margin-bottom: 40px; }
        }