

body {
    -webkit-user-select: none;
    /* For Safari */
    -moz-user-select: none;
    /* For Firefox */
    -ms-user-select: none;
    /* For IE and Edge */
    user-select: none;
    /* Standard */
}



.social-links a {
    font-size: 1.2rem;
    /* Slightly reduce size for better balance */
}

/*search bar section*/
.search-container-search {
    position: relative;
    width: 600px;
    display: flex;
    margin-left: 400px;
    margin-bottom: 50px;
    margin-top: -70px;
    align-items: center;

    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

/* Search bar */
.search-bar-search {
    border-color: orange;
    width: 80%;
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
    background-color: white(255, 225, 0, 0.182);
}

/* Button styling */
.search-button-search {
    border-color: orange;
    width: 20%;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    border-radius: 20px;
    background-color: orange;
}

/* Hidden list by default */
.search-list-search {
    display: none;
    position: absolute;
    top: 45px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    border: 1px solid #1d0606;
    max-height: 100px;
    overflow-y: auto;
}

/* List items */
.search-item-search {
    padding: 10px;
    cursor: pointer;
}

.search-item-search a {
    text-decoration: none;
    list-style-type: none;
    color: black;
}

.search-item-search:hover {
    background-color: #ffffff;
}

/* Show list when input is focused or hovered */
.search-bar-search:focus+.search-list-search,
.search-list-search:hover {
    display: block;
}

/* Links styling */

@media (max-width: 768px) {
    .search-container-search {
        margin-left: 12%;
        width: 300px;
    }
}

@media (max-width: 540px) {
    .search-container-search {
        margin-left: 12%;
        width: 300px;
    }
}

/*paragraph section*/
.paragraph-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.paragraph-content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.paragraph-content.paragraph-expanded {
    max-height: 200px;
    /* Adjust this value based on content length */
}

.paragraph-content.paragraph-collapsed {
    max-height: 60px;
    /* Adjust this value based on initial content height */
}

.paragraph-button {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 10px;
    background-color: orange;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.paragraph-button:hover {
    background-color: orange;

}

.paragraph-button.paragraph-show {
    display: block;
}

.paragraph-button.paragraph-hide {
    display: none;
}

/*Theme*/

.theme-flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.theme-flex-item {
    text-align: center;
}

.theme-flex-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}



/*card section*/
.card-img-top {
    height: 180px;
    object-fit: cover;
}

.card {
    margin-bottom: 1rem;

}

.card1 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card1 img {
    width: 100%;

    border-radius: 10px;
}

.card2 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card3 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card4 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card5 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card6 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card7 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card8 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card9 {
    width: auto;
    display: flex;
    justify-content: space-around;
}



/* bymonth circle section*/
.unique-circle-anchor {
    text-decoration: none;
}

.unique-circle-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Increased gap for better spacing */
}

.unique-circle-anchor {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.unique-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgb(255, 140, 0) 50%, rgb(255, 165, 0) 50%); /* Gradient Orange */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0px 5px 20px rgba(255, 140, 0, 0.6); /* Orange Glow Shadow */
    z-index: 1;
}

.unique-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, rgb(255, 200, 0), rgb(255, 105, 180), rgb(255, 140, 0)); /* Yellow, Pink, Orange */
    filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
    z-index: 0;
}

.unique-circle:hover::before {
    opacity: 0.9;
    transform: translateY(0);
    filter: blur(0); /* Removes blur on hover */
}

.unique-circle:hover {
    background: linear-gradient(to right, rgb(255, 200, 0) 50%, rgb(255, 165, 0) 50%); /* Yellow to Orange Gradient */
    transform: scale(1.15); /* Slightly stronger scaling effect */
    box-shadow: 0px 15px 40px rgba(255, 165, 0, 0.8); /* Stronger Orange Glow Shadow */
}

.unique-circle-text {
    color: white;
    font-size: 16px;
    text-align: center;
    z-index: 1;
    transition: color 0.4s ease;
}



/* Responsive design */
@media (max-width: 768px) {
    .unique-circle {
        width: 80px;
        height: 80px;
    }

    .unique-circle-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .unique-circle {
        width: 60px;
        height: 60px;
    }

    .unique-circle-text {
        font-size: 10px;
    }
}



/* circle */

.cir {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    margin-left: 0;
    font-family: "Josefin Sans", sans-serif;
    font-style: normal;
    size: 90%;
}

@media (max-width: 600px) {
    .cir .circle {
        width: 150px;
        height: 150px;
    }

    .cir a {
        font-size: 10px;
    }
}

.cir a {
    list-style-type: none;
    text-decoration: none;
}

.circle {
    font-size: 1rem;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s ease;
    width: 200px;
    height: 200px;
    background-color: #3498db;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-align: center;
    border: 8px solid transparent;
    background-image: linear-gradient(white, white), conic-gradient(red, yellow, green, cyan, blue, magenta, red);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.circle .text {
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
}

.circle:hover {
    transform: scale(1.1) rotateX(15deg) rotateY(15deg);
    background-image: linear-gradient(white, white), conic-gradient(orange, yellow, limegreen, cyan, purple, magenta, orange);
}

.circle:hover .text {
    opacity: 0;
    transform: translateY(-20px);
}

.circle::before {
    content: attr(data-hover-text);
    position: absolute;
    color: #000000;
    font-size: 20px;
    font-family: Arial, sans-serif;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

.circle:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
    top: 50%;
    left: 50%;
}

@keyframes rotateGradient {
    0% {
        background-image: linear-gradient(white, white), conic-gradient(red, yellow, green, cyan, blue, magenta, red);
    }
    100% {
        background-image: linear-gradient(white, white), conic-gradient(orange, yellow, limegreen, cyan, purple, magenta, orange);
    }
}

.circle:hover {
    animation: rotateGradient 1s ease infinite;
}
.testing{
    margin-top: 40px;
}
/*text image profile*/
.backgroundprofile-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

@media(max-width:700px) {
    .blurred-backgroundprofile {
        width: auto;
    }

    .imgprofile {
        width: 50px;
    }

    .profileh5 {
        font-size: 10px;

    }

}

.blurred-backgroundprofile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/rajnath.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(0px);
    z-index: 1;
    /* Background layer */
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Ensure full coverage */
    height: 100%;
    /* Ensure full coverage */
    background-color: rgba(24, 21, 21, 0.8);
    /* Adjust opacity */
    z-index: 10;
    /* Ensure it's on top of the blurred background */
}

.contentprofile {
    position: relative;
    z-index: 11;
    /* Ensure it's on top of the overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.image-text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
}

.image-text-row1,
.image-text-row2 {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.image-text-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.imgprofile {
    max-width: 70px;
    margin-bottom: 10px;
}

.txtprofile {
    color: rgb(255, 255, 255);
    /* Ensure text is readable */
    font-size: 16px;
}

.profileh5 {
    color: #000000;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

/* YOUTUBE Styling */
.youtube {
    display: flex;
    justify-content: space-around;
    margin-left: 3%;
}

@media (max-width :700px) {
    .youtube {
        display: block;
        margin-top: 10%;
    }

    .youtube-container-youtube {
        width: auto;
    }
}

.youtube-carousel {
    position: relative;
    width: 800px;
    max-width: 800px;

    border: 2px solid #ddd;
    overflow: hidden;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-height: 500px;
    height: fit-content;
}

@media(max-width:500px) {
    .youtube-carousel {
        width: auto;
        height: auto;
    }

    .youtube-container-youtube {
        display: none;
    }
}

.youtube-carousel-slide {
    display: none;
    text-align: center;
    padding: 20px;
}

.youtube-carousel-slide img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.youtube-carousel-slide p {
    font-size: 18px;
    color: #333;
}

.youtube-active {
    display: block;
}

.youtube-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.youtube-prev {
    left: 10px;
}

.youtube-next {
    right: 10px;
}



.youtube-container-youtube {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
}

.youtube-carousel-youtube {
    display: flex;
    align-items: center;
    width: 100%;
}

.youtube-track-youtube {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.youtube-item-youtube {
    min-width: 100%;
    text-align: center;
}

.youtube-item-youtube iframe {
    width: 80%;
    height: 450px;
}

.youtube-item-youtube p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #333;
}

.youtube-prev-youtube,
.youtube-next-youtube {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 1;
}

.youtube-prev-youtube {
    left: 10px;
}

.youtube-next-youtube {
    right: 10px;
}

.youtube-prev-youtube:hover,
.youtube-next-youtube:hover {
    background-color: rgba(0, 0, 0, 0.8);
}





/*upper footer styling*/
.ul a:hover {
    text-decoration: none;
    color: #ffa703;
}

.h {
    width: 100%;
    border-width: 0.4rem;
}

.ul {
    padding: 0;
    margin: 0;
}

.ul ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next line on small screens */
    justify-content: center;
    /* Center items horizontally */
}

.ul li {
    margin: 10px;
    /* Add margin for spacing */
    list-style-type: none;

}

.ul li a {
    margin: 10px;
    /* Add margin for spacing */
    list-style-type: none;
    text-decoration: none;
    color: #000000;
    font-weight: bold;

}

@media (max-width: 768px) {
    .ul ul {
        flex-direction: column;
        /* Stack items vertically */
        align-items: center;
        /* Center items horizontally */
    }

    .ul li {
        width: 100%;
        /* Full width for each item */
        text-align: center;
        /* Center text */
        margin: 5px 0;
        /* Vertical margin for spacing */
    }

    .ul img {
        width: 30px;
        /* Adjust image size for smaller screens */
    }
}


/* Footer Styling */
footer {
    background-color: darkorange;

    color: white;

    width: 100%;
    /* or any other appropriate value */




}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
}

.footer-col {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style-type: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: darkorange;
}

.social-links a {
    margin-right: 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: darkorange;
}

.footer-bottom {
    background-color: darkorange;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
}