/* .bgimg Styling */
.bgimg {
    border-radius: 7px;
    margin-top: 65px;
    margin-left: 5px;
    margin-right: 5px;
    height: 40vh;
    max-height: 400px;
    color: rgb(0, 0, 0);
    z-index: -1;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease; /* Smooth transition for background image change */
    animation: none; /* Remove animation that affects background image */
}

/* Responsive Design for Small Screens */
@media only screen and (max-width: 550px) {
    .bgimg {
        margin-top: 29px;
        margin: 5px;
        height: 30vh;
    }
}

/* .circle-container Styling */
.circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

/* Circle Styling */
.circle {
    border: 1px solid white;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 10px;
    background-color: transparent; /* Default color */
}

.circle.white {
    background-color: #fff; /* White color */
}

/* Keyframes for Sliding Animation */
@keyframes slide-in-out {
    0%, 100% {
        transform: translateX(-100%); /* Slide in from the left */
    }
    25% {
        transform: translateX(0); /* Pause for 25% of the animation duration */
    }
    50% {
        transform: translateX(100%); /* Slide out to the right */
    }
}

/* Dark Blue Line Styling */
.dark-blue-line {
    border: none; /* Remove default border */
    height: 3px; /* Line thickness */
    background-color: #211387; /* Dark blue color */
    margin: 20px auto; /* Center the line horizontally and add vertical spacing */
    max-width: 90%; /* Limit the line width to 80% of its container */
    border-radius: 10px; /* Add rounded corners to make the ends smooth */
}

@media (max-width: 768px) {
    .dark-blue-line {
        max-width: 80%; /* Limit the line width to 80% of its container */
    }
}

/* .headinghome Styling */
.headinghome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #f7faff;
    border-radius: 15px;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Main Heading Styling */
.heading-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    color: #1e3a8a; /* Deep blue */
    letter-spacing: 1px;
    text-transform: capitalize;
    position: relative;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);

    /* Background Clipping for Text */
    background-clip: text; /* Standard property */
    -webkit-background-clip: text; /* Vendor prefix for WebKit browsers */

    /* Transparent Text Color */
    -webkit-text-fill-color: transparent; /* Required for gradient text */
    color: transparent; /* Fallback for unsupported browsers */
}

/* Supporting Text Styling */
.heading-content p {
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    color: #475569; /* Muted Gray */
    line-height: 1.8;
    margin-top: 15px;
    max-width: 750px;
}

/* Highlight Box Below the Heading */
.highlight-box {
    margin-top: 30px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 10px 25px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    animation: pulse 2s infinite;
    max-width:200px;
    max-height:100px;
}

/* Pulse Animation for Highlight Box */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Decorative Elements (for visual effects) */
.headinghome::before,
.headinghome::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    background: rgba(59, 130, 246, 0.15);
    filter: blur(50px);
}

.headinghome::before {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.headinghome::after {
    width: 200px;
    height: 200px;
    bottom: -30px;
    right: -30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .headinghome {
        padding: 50px 30px;
        margin: 20px auto;
    }

    .heading-content h1 {
        font-size: 2.5rem;
        letter-spacing: 0.8px;
    }

    .heading-content p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .highlight-box {
        font-size: 1rem;
        padding: 13px 20px;
    }
}

@media (max-width: 768px) {
    .headinghome {
        padding: 40px 20px;
    }

    .heading-content h1 {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }

    .heading-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .highlight-box {
        font-size: 0.95rem;
        padding: 11px 18px;
    }
}

@media (max-width: 480px) {
    .headinghome {
        padding: 30px 15px;
       
    }

    .heading-content h1 {
        font-size: 1.8rem;
        line-height: 1.4;
        letter-spacing: 0.3px;
    }

    .heading-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .highlight-box {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}

/* Feature List Styling */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
}

.feature {
    text-align: center;
    padding: 15px;
}

.feature img {
    width: 60px;
    height: auto;
    margin-bottom: 5px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature p {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature a {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 10px;
    text-decoration: none;
    border-radius: 5px;
}

.feature a:hover {
    background-color: #0056b3;
}
