.company-title {
    color: #ff000d; /* Custom color for the title */
    text-align: left; /* Center align the company name */
    margin-bottom: 15px; /* Adds spacing below the title */
}

.company-links ul {
    text-align: left; /* Aligns the subpoints to the left */
    list-style: none; /* Removes default bullet points */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

.company-links ul li {
    margin-bottom: 10px; /* Adds spacing between the subpoints */
    position: relative; /* For positioning the arrow */
}

.company-links ul li::before {
    content: ">>"; /* Adds arrows before the subpoints */
    position: absolute; /* Position the arrow relative to the list item */
    left: -20px; /* Adjusts the distance between the arrow and text */
    opacity: 0.5; /* Sets low opacity for the arrows */
    color: #b9aaaa; /* Sets arrow color */
    font-weight: bold; /* Makes the arrow bold for visibility */
}

.company-links ul li a {
    text-decoration: none; /* Removes underline from links */
    color: #ffffff; /* Sets link color */
    transition: color 0.3s ease; /* Adds a hover effect */
}

.company-links ul li a:hover {
    color: #ff000d; /* Changes link color on hover */
}

    /* General styling for the social icons */
.social-icons {
    list-style: none;
    padding-top: 7px;
    margin: 0;
    display: flex;
    /* justify-content: center;
    gap: 20px;  */
    /* space between icons */
}

.social-icons li {
    font-size: 13px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Add circular background and hover effect */
.social li span {
    display: inline-block;
    padding: 4px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Social button hover effects */
.social li:hover span {
    background-color: #0073e6; /* change background color for hover */
    color: white; /* change icon color on hover */
    transform: scale(1.2); /* slightly enlarge the icon */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* add a subtle shadow */
}
.social li.instagram:hover span{
    background-color: #d1354f !important;
    color: white; /* change icon color on hover */
    transform: scale(1.2); /* slightly enlarge the icon */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* add a subtle shadow */
}

/* Facebook color */
.social-icons li:nth-child(1) span {
    background-color: #3b5998;
    color: white;
}

.social-icons li:nth-child(1):hover span {
    background-color: #2d4373; /* Facebook hover color */
}

/* Twitter color */
.social-icons li:nth-child(2) span {
    background-color: #1da1f2;
    color: white;
}

.social-icons li:nth-child(2):hover span {
    background-color: #1a91da; /* Twitter hover color */
}

/* LinkedIn color */
.social-icons li:nth-child(3) span {
    background-color: #0077b5;
    color: white;
}

.social-icons li:nth-child(3):hover span {
    background-color: #005582; /* LinkedIn hover color */
}

/* Instagram color */
.social-icons li:nth-child(4) span {
    background-color: #e4405f;
    color: white;
}

.social-icons li:nth-child(4):hover span {
    background-color: #d1354f; /* Instagram hover color */
}


     h1 {
        
        margin: 20px 0;
        font-size: 2.5em;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    /* Container */
    .con {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 20px;
    }

    /* Box Styling */
    .box {
        background: linear-gradient(135deg, #ff512f, #dd2476);
        border-radius: 15px;
        padding: 20px;
        width: 280px;
        height: 150px;
        position: relative;
        color: #fff;
        text-align: center;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
        transition: all 0.3s ease-in-out;
        overflow: hidden;
    }

    .box::before {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        width: 100px;
        height: 100px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 0;
    }

    .box h2 {
        position: relative;
        margin: 10px 0;
        font-size: 1.5em;
        text-transform: uppercase;
        z-index: 1;
    }

    .box p {
        position: relative;
        font-size: 1em;
        z-index: 1;
        line-height: 1.5;
    }

    .box:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.6);
    }

    .box::after {
        content: '';
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 150px;
        height: 150px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        z-index: 0;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .box {
            width: 45%;
        }
    }

    @media (max-width: 600px) {
        .box {
            width: 90%;
        }
    }


.features-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        justify-content: center;
        padding: 20px;
        max-width: 1200px;
        margin: auto;
    }
    .feature-box::after{
        content: '';
        position: absolute;
        bottom: -20px;
        right: 10px;
        width: 50px;
        height: 50px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        z-index: 0;

    }

    .feature-box::before {

        content: '';
        position: absolute;
        top: -13px;
        left: -61px;
        width: 100px;
        height: 100px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 0;

    }
    .feature-box {
        background: linear-gradient(135deg, #ff512f, #dd2476);
        width:150px;
        height: 150px;
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        padding-top: 40px;
        text-align: center;
        transition: transform 0.2s ease-in-out;
        overflow: hidden;
        position: relative;
    }

    .feature-box:hover {
        transform: scale(1.05);
    }

    .feature-box img {
        width: 20px;
        margin-bottom: 10px;
        transition: filter 0.3s ease, opacity 0.3s ease;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    /* Icon Hover Effect */
    .feature-box:hover img {
        filter: brightness(0.5) saturate(1.5); /* Darkens and adds vibrancy */
        opacity: 0.8; /* Slightly fades the icon */
    }

    .feature-box p {
        font-size: 1.1em;
        color: white;
        font-weight: bold;
    }