
    body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    }

    /* Titles */
    .title {
    font-weight: 700;
    color: #222;
    }

    /* Title Styling */
    .section-title {
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border-left: 4px solid #ff6600;
    padding-left: 8px;
    }

    .subtitle {
    font-weight: 600;
    color: #ff6600;
    }

    /* Feature Box */
    .feature-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .feature-box h5 {
    font-weight: 600;
    color: #222;
    }
    .feature-box p {
    font-size: 14px;
    color: #666;
    }

    /* Hover Effect */
    .feature-box:hover {
    background: linear-gradient(135deg, #ff6600, #ff9900);
    color: #fff;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }
    .feature-box:hover h5,
    .feature-box:hover p {
    color: #fff;
    }
    .feature-box:hover .icon {
    color: #fff;
    transform: rotate(12deg) scale(1.2);
    }

    /* Image Hover Effect */
    .about-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    }
    .about-img img {
    transition: transform 0.6s ease;
    }
    .about-img:hover img {
    transform: scale(1.1);
    }
    .about-img .img-overlay {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(255,102,0,0.3);
    opacity:0;
    transition: opacity 0.5s ease;
    }
    .about-img:hover .img-overlay {
    opacity:1;
    }

