   .services {
            background-color: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .service-icon {
            height: 80px;
            width: 80px;
            background-color: #1a5276;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        .service-content {
            padding: 30px;
            text-align: center;
        }

        .service-content h3 {
            color: #1a5276;
            margin-bottom: 15px;
        }

        .service-content p {
            color: #6c757d;
            margin-bottom: 20px;
        }

 
        /* Security Services Hero */
        .security-hero {
            background: linear-gradient(rgba(26, 82, 118, 0.85), rgba(19, 64, 92, 0.1)), url('https://images.unsplash.com/photo-1581579438747-1dc8d17bbce4');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            margin-bottom: 50px;
        }

        .security-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .security-hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .security-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Security Services Overview */
        .security-overview {
            background-color: #f8f9fa;
        }

        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .overview-text h2 {
            color: #1a5276;
            margin-bottom: 20px;
        }

        .overview-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .overview-item {
            display: flex;
            align-items: flex-start;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .overview-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .overview-icon {
            background-color: #1a5276;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            flex-shrink: 0;
        }

        .overview-img {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .overview-img:before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            border: 3px solid #f39c12;
            border-radius: 8px;
            z-index: -1;
        }

        /* Security Services Grid */
        .security-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .security-service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .security-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .security-service-img {
            height: 200px;
            overflow: hidden;
        }

        .security-service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .security-service-card:hover .security-service-img img {
            transform: scale(1.1);
        }

        .security-service-content {
            padding: 30px;
        }

        .security-service-icon {
            height: 60px;
            width: 60px;
            background-color: #1a5276;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.5rem;
        }

        .security-service-content h3 {
            color: #1a5276;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .security-service-content p {
            color: #6c757d;
            margin-bottom: 20px;
        }

        .security-features {
            margin-top: 20px;
        }

        .security-features li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #6c757d;
        }

        .security-features li i {
            color: #f39c12;
            margin-right: 10px;
            font-size: 0.9rem;
        }

        /* Industries We Serve */
        .industries-section {
            background-color: #f8f9fa;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .industry-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .industry-icon {
            height: 80px;
            width: 80px;
            background-color: #1a5276;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        .industry-card h3 {
            color: #1a5276;
            margin-bottom: 15px;
        }

        .industry-card p {
            color: #6c757d;
            margin-bottom: 0;
        }

        /* Security Process */
        .security-process {
            background-color: white;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .process-step {
            text-align: center;
            padding: 30px 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #1a5276;
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }