/* service page css start */

     
        .security-hero {
            background: linear-gradient(135deg, #0a0f1e 0%, #0a2a3a 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .security-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/background/security-banner.png') center/cover no-repeat;
            opacity: 0.15;
            pointer-events: none;
        }

        .security-hero h1 {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .security-hero p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
        }

        .security-service-section{
            text-align: center;
        }

        .service-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
            transition: all 0.35s ease;
            height: 100%;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.2);
        }

        .service-card-header {
            padding: 30px 30px 20px;
            background: linear-gradient(135deg, #0a192f 0%, #0f2b3d 100%);
            color: white;
            position: relative;
        }

        .service-card-header .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 107, 53, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 107, 53, 0.3);
        }

        .service-card-header .service-icon i {
            font-size: 36px;
            color: #ff6b35;
        }

        .service-card-header h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: white;
        }

        .service-card-header p {
            font-size: 14px;
            opacity: 0.8;
            margin: 0;
        }

        .service-card-body {
            padding: 25px 30px 30px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 15px;
            color: #334155;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li i {
            width: 22px;
            color: #ff6b35;
            font-size: 14px;
        }

        .service-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: #ff6b35;
            font-weight: 600;
            text-decoration: none;
            margin-top: 20px;
            font-size: 14px;
            letter-spacing: 0.5px;
            transition: gap 0.3s;
        }

        .service-btn i {
            font-size: 12px;
            transition: transform 0.3s;
        }

        .service-btn:hover {
            gap: 15px;
            color: #e85d2c;
        }

        .service-btn:hover i {
            transform: translateX(4px);
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: white;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #0a192f;
            margin-bottom: 15px;
        }

        .why-us-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
        }

        .why-us-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
        }

        .why-us-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #fff5ef, #ffe8de);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .why-us-icon i {
            font-size: 32px;
            color: #ff6b35;
        }

        .why-us-card h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #0f172a;
        }

        .why-us-card p {
            color: #64748b;
            font-size: 14px;
            line-height: 1.6;
        }

        .cta-section {
            background: linear-gradient(135deg, #0a192f 0%, #0f2b3d 100%);
            border-radius: 10px;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent);
            border-radius: 50%;
        }

        .cta-btn {
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: white;
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
            color: white;
            gap: 16px;
        }

        @media (max-width: 768px) {
            .security-hero{
              padding: 40px 0;
            }
            
            .security-hero h1 {
                font-size: 36px;
            }
            .section-title {
                font-size: 28px;
            }
            .cta-section {
                padding: 40px 25px;
            }
            .service-card-header {
                padding: 20px;
            }
            .service-card-body {
                padding: 20px;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }

    /* services pagr css end */