
.features {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }
        .feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 16px;
            background: #f5f5f5;
            padding: 15px;
            border-radius: 8px;
            width: 18%;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .feature span {
            font-size: 24px;
            display: block;
            margin-bottom: 5px;
        }
		/* Responsive Design */
        @media screen and (max-width: 768px) {
            .features {
                flex-direction: column;
                align-items: center;
            }
            .feature {
                width: 80%;
            }
        }
		
		.connect-now {
            display: flex;
            flex-direction: column;
            align-items: center;
            
            text-align: center;
        }
        .box-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            width: 100%;
            max-width: 800px;
        }
        .box {
            background: #192324;
            color: #fff;
            padding: 20px;
            width: 50%;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
        }
        .btn {
            display: inline-block;
            background: #f8f8f8;
            color: #000;
            padding: 12px 25px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 20px;
            transition: 0.3s;
        }
        .btn:hover {
            background: #ffa500;
        }
        @media screen and (max-width: 768px) {
            .box-container {
                flex-direction: column;
                align-items: center;
            }
            .box {
                width: 90%;
            }
        }
		
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: #f4f4f4;
}

.expertise-section {
    padding: 60px 8%;
    text-align: center;
}

/* GRID LAYOUT */
.top-boxes,
.bottom-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* BOX STYLE */
.expertise-box {
    background: #ffffff;
    padding: 35px 20px;
    text-decoration: none;
    color: #1a1a1a;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.expertise-box i {
    font-size: 36px;
    margin-bottom: 15px;
    color: #0d2c54;
}

.expertise-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.expertise-box p {
    font-size: 14px;
    color: #555;
}

/* HOVER ANIMATION */
.expertise-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.expertise-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #caa85c;
    bottom: 0;
    left: -100%;
    transition: 0.4s ease;
}

.expertise-box:hover::after {
    left: 0;
}

/* TITLE SECTION */
.section-title span {
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
}

.section-title h2 {
    font-size: 32px;
    margin-top: 10px;
    margin-bottom: 40px;
    color: #0d2c54;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .top-boxes,
    .bottom-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .top-boxes,
    .bottom-boxes {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 22px;
    }
}
		