﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* Remove default margin and padding from body and html */
html, body {
    font-family: 'Roboto', sans-serif, Arial;
    margin: 0;
    padding: 0;
    background-image: url('Images/body.jpg');
    background-repeat: repeat;
      
}

/* Specific h1 CSS */
.title-head {
    font-family: 'Roboto', Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
   min-height: 10vh;
}

    .title-head h2 {
        font-family: 'Roboto', Courier, monospace;
        text-transform: uppercase;
        color: transparent;
        position: relative;
        letter-spacing: 0.1em;
        -webkit-text-stroke: 0.1vw green;

    }

        .title-head h2::before {
            content: attr(data-text);
            position: absolute;
            width: 350px;
            overflow: hidden;
            color: darkgreen;
            white-space: nowrap;
            border-right: 1px solid darkgreen;
          
            animation: animate 6s linear infinite;
        }

@keyframes animate {
    0%,10%,100% {
        width: 0;
        
    }

    70%,90% {
        width: 100%;
        filter: drop-shadow(0 0 25px #2C52AC);
    }
    
}




/* Card Styles */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 500;
}

.card-text {
    font-size: 1rem;
    color: #6c757d;
}

.card-link {
    color: #007bff;
    text-decoration: none;
}

    .card-link:hover {
        text-decoration: underline;
    }

/* Banner CSS */
.banner {
    position: relative;
    height: 350px; /* Adjust height as needed */
    background: url('Images/banner.jpg') center/cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(44 82 172 / 55%);
    z-index: 1; /* Ensure overlay is above content */
}

.banner-content {
    position: relative;
    z-index: 2; /* Ensure content is above overlay */
    text-align: center;
}

.banner h2 {
    font-size: 3rem; /* Increased font size for impact */
    font-weight: 700;
    margin-bottom: 0;
    color: #d3e6ff; /* Light blue font color */
    text-transform: uppercase; /* Convert text to uppercase */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Text shadow for better contrast */
}

.flat-background {
    background-color: #d3e6ff;
}

/* Breadcrumbs styling */
.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0 0; /* Space above breadcrumbs */
    background: none;
    z-index: 2; /* Ensure breadcrumbs are above overlay */
    position: relative; /* Ensure breadcrumbs remain in flow */
}

.breadcrumb-item {
    color: #d3e6ff;
    font-size: 1rem; /* Adjust font size */
    text-transform: capitalize; /* Capitalize each word */
}

    .breadcrumb-item a {
        color: #d3e6ff;
        text-decoration: none;
    }

    .breadcrumb-item.active {
        color: #7cff97; /* Light color for active breadcrumb */
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: ">";
        color: #d3e6ff;
        padding: 0 10px;
    }

/* Footer CSS */
.footer {
    background-color: #011E0B;
    color: #FFFFFF;
    padding: 20px 0;
}

    .footer h3 {
        color: #FFFFFF;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        margin-bottom: 10px;
        position: relative;
    }

        .footer h3::after {
            content: '';
            display: block;
            width: 100%;
            height: 4px;
            background-color: #FF0000;
            position: absolute;
            bottom: -5px;
            left: 0;
        }

    .footer p {
        color: #FFFFFF;
    }

    .footer .section-about a,
    .footer .section-hot-links a,
    .footer .section-quick-links a,
    .footer .section-stay-connected a {
        text-decoration: none;
    }

    .footer .section-about a {
        color: #FFD700;
    }

    .footer .section-hot-links a {
        color: #00FF00;
    }

    .footer .section-quick-links a {
        color: #00FFFF;
    }

    .footer .section-stay-connected a {
        color: #FF00FF;
    }

        .footer .section-about a:hover,
        .footer .section-hot-links a:hover,
        .footer .section-quick-links a:hover,
        .footer .section-stay-connected a:hover {
            text-decoration: underline;
        }
.section-about {
    text-align: center;
    
}
.section-about p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
    text-align: justify;
}

.section-about img {
    max-width: 100px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 1;
}
    .section-about img::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120%;
        height: 120%;
        background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 70%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        animation: shine 2s infinite;
    }

@keyframes shine {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
}
   

@keyframes shine {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
}
.social-icons {
    list-style: none;
    padding: 0;
}

    .social-icons li {
        display: inline-block;
        margin-right: 10px;
    }

        .social-icons li a {
            color: #FFFFFF;
            font-size: 20px;
        }

            .social-icons li a:hover {
                color: #FFD700;
            }
