/*heading*/

.heritage-heading {
    font-family: 'Georgia', serif; 
    font-size: 36px; 
    font-weight: bold; 
    color: #a88713; 
    text-align: center; 
    
    
    
    margin: 30px 0; 
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); 
    border-bottom: 4px solid #d4af37; 
    padding-bottom: 10px; 
    
}

/*heading completed*/

/*paragraph*/
.heritage-paragraph {
    font-family: 'Times New Roman', serif; 
    line-height: 1.7;
    font-size: 18px;
    color: #150202; 
    background-color: #f4f4f4; 
    padding: 20px;
    margin: 20px;
    border-radius: 15px; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); 
    text-align: justify; 
    letter-spacing: 0.6px;
    border: 2px solid #d4af37; 
}

.heritage-paragraph:hover {
    background-color: #d2d2d2; 
    transition: background-color 0.3s ease; 
}
/*paragraph completed*/



/* Heritage Images Hover Effects */
.heritage-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px;
}

.heritage-item {
    position: relative;
    width: 250px; 
    height: 300px; 
    overflow: hidden; 
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, border 0.3s ease;
}

.heritage-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.3s ease; 
    border-radius: 10px; 
}



.heritage-description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(248, 238, 203, 0.9); 
    color: white;
    padding: 10px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.heritage-item:hover .heritage-description {
    opacity: 1;
    transform: translateY(0);
}

.heritage-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #fcf0c3; 
}

/* Heritage Images Hover Effects completed */

/* cultural temples */


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.temple-container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
    border: 2px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.temple-image {
    flex: 1.5;
    position: relative;
    overflow: hidden;
}

.temple-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.temple-image img:hover {
    transform: scale(1.05);
}

.temple-text {
    flex: 1;
    padding: 20px;
    background-color: #f9f4e8;
    z-index: 2;
}

h2 {
    background-color: #e5d8b8;
    padding: 10px;
    margin: 0 0 10px 0;
    font-size: 24px;
    text-align: center;
    z-index: 2;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    z-index: 2;
}


.temple-image .hover-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
    text-align: center;
}
/*cultural temples completed*/


/* Explore Button */
.explore-button {
    display: inline-flex;
    margin-top: 10px;
    padding: 10px 25px;
    background-color: #d6bd6b;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    border: 2px solid #d6c71c2b;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.explore-button:hover {
    background-color: #d0ae3c;
    border-color: #b18a39;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}



/*video-heading*/

.attractive-heading {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    background: linear-gradient(90deg, #a88713, #e5d8b8);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}


.attractive-heading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-30deg);
    transition: all 0.7s ease;
}


.attractive-heading:hover {
    color: #fff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.attractive-heading:hover::after {
    left: 100%;
}


.attractive-heading span {
    display: inline-block;
    animation: glow 1.5s infinite alternate;
}@keyframes glow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #a88713, 0 0 15px #e5d8b8;
    }
    to {
        text-shadow: 0 0 10px #fff, 0 0 20px #a88713, 0 0 30px #e5d8b8;
    }
}
/* video heading completed */

/*video*/
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    max-width: 90%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.styled-video {
    width: 100%;
    border-radius: 10px;
    border: 2px solid rgba(168, 135, 19, 0.5);
    transition: border-color 0.2s ease;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

video::-webkit-media-controls-play-button {
    background-color: rgba(168, 135, 19, 0.6);
    border-radius: 50%;
    border: 2px solid white;
    padding: 6px;
    transition: background-color 0.2s ease;
}

video::-webkit-media-controls-play-button:hover {
    background-color: rgba(229, 216, 184, 0.8);
}

video::-webkit-media-controls-pause-button {
    background-color: rgba(168, 135, 19, 0.6);
    border-radius: 50%;
    border: 2px solid white;
    padding: 6px;
    transition: background-color 0.2s ease;
}

video::-webkit-media-controls-pause-button:hover {
    background-color: rgba(229, 216, 184, 0.8);
}
/*video completed*/

/*philosophy and literature*/
.container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
    border: 2px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 8px;
}

.text-section {
    flex: 1;
    padding: 20px;
    background-color: #f9f4e8;
    position: relative;
}

h2 {
    background-color: #e5d8b8;
    padding: 10px;
    margin: 0 0 10px 0;
    font-size: 24px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.image-section {
    flex: 1.5;
    overflow: hidden;
    position: relative;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-section img:hover {
    transform: scale(1.05);
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}
/*philosophy and literature completed*/

/*iframe tag*/

/*iframe tag*/








