*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
     /*border: 1px solid red; */
}

body{
    font-family: Arial, sans-serif;
    background-color:#f6efe7;
    width: 100%;
    overflow-x: hidden;
}

 /* Header Styling */
 header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color:  #ff4d4d;
    color: white;
    padding: 15px 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    /* border-radius: 9px; */
}

/* Left Side: Logo */
.header-left {
    display: flex;
    align-items: center;
}

.header-left img {
    width: 90px;
    height: 80px;
    margin-right: 15px;
}

/* Center: Temple Name */
.header-center {
    flex: 1;
    text-align: center;
}

.header-center h1 {
    font-size: 22px;
    margin: 0;
}

/* Right Side: Language Icon */
.header-right {
    position: relative;
}

.language-icon {
    cursor: pointer;
    font-size: 28px;
    padding: 8px;
    color: white;
    position: relative;
}

/* Tooltip Style */
.language-icon::after {
    font-family: Arial, sans-serif;
    content: "Google\ATranslate"; /* Tooltip text */
    position: absolute;
    background-color: yellow;
    color: red;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: pre-line;
    top: -30px; /* Position above the icon */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Show Tooltip on Hover */
.language-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Google Translate Dropdown */
#google_translate_element {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.calendar-container {
            /* max-width: 800px; */
            margin: 20px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .calendar-header {
            font-size: 24px;
            font-weight: bold;
            color: #d9534f;
        }

        .calendar-info {
            font-size: 18px;
            margin-top: 10px;
        }

        .calendar-section {
            padding: 15px;
            margin: 10px;
            border-radius: 8px;
            background: #f3b36f;
            text-align: center;
            width: 100%;
        }

        .detailsContainer {
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
        }

        .calendar-section h4 {
            color: #8b0000;
        }

        .emoji {
            font-size: 20px;
        }

        .calendar-container ul {
            list-style-type: none;
            padding: 0;
        }

        .calendar-container li {
            font-size: 16px;
            padding: 5px;
        }

        .weather-icon {
            background-color: transparent;
            width: 3.6rem;
            height: 3rem;
        }

  /* Hamburger Menu */
  .hamburger {
    font-size: 26px;
    cursor: pointer;
    margin-left: 15px;
    display: none; /* Hidden on desktop */
}

/* Close Menu Button */
.close-menu {
    font-size: 26px;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 15px;
    right: 20px;
    display: none;
}

/* Navigation Styling (Below Header) */
nav {
    text-align: center;
    padding: 10px;
    /* background: #333; */
}

nav a {
    text-decoration: none;
    color: white;
    margin: 0 12px;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffcc00;
}

.nav-container li {
    list-style-type: none;
    display: inline;
    margin: 0;
    padding: 0;
}

.nav-container ul {
    padding: 0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        align-items: center;
        text-align: center;
    }

    .header-center {
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        text-align: center;
    }

    nav a {
        margin: 5px 10px;
        display: inline-block;
    }

    .hamburger {
        display: block;
    }

    .close-menu {
        display: block;
    }
}


.flex-container {
    display: flex;
    align-items: center; /* Aligns text and image vertically */
    justify-content: space-between; /* Ensures spacing between text and image */
    gap: 20px; /* Space between text and image */
    padding: 20px;
}

.text-content {
    flex: 1; /* Allows text content to take up available space */
    text-align: left;
}

.image-container img {
    max-width: 400px; /* Adjust size */
    height: auto;
}


p{
	/* border-radius: 15px;
	background-color:#fff2e6; */
	/* border: outset black; */
	padding: 9px 0;
	text-align: justify;
	
}

img {
  border-radius: 9px;
  object-fit: contain;
  background-color: #86716c;
  /* border: 2px solid #1a0d00; */
  /* Padding: 10px; */
}


price {
  list-style-type: none;
  border: #ffe6cc;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

grey{
	font-size: 200px;
	
}

hr {
    border: none;
    height: 4px;
    background: linear-gradient(to right, #f770ab, #d43a17);
}

/* Full-width Card Container */
.card-container {
    width: 80%;
    max-width: 800px;
    margin: auto;
}

/* Individual Card */
.poojaCard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 12px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.poojaCard:hover {
    transform: scale(1.02);
}

/* Icon & Text Container */
.pooja-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.poojaCard p, i {
    margin-bottom: 0;
    margin-top: 0;
}

.poojaCard i {
    font-size: 25px;
    color: #d9534f; /* Red */
}

.pooja {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

/* Price Styling */
.price {
    font-size: 18px;
    font-weight: bold;
    color: #5cb85c; /* Green */
}

/* Responsive Design */
@media (max-width: 600px) {
    .card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .pooja-info {
        justify-content: center;
    }

    .price {
        margin-top: 10px;
    }
    
    .flex-container {
        flex-direction: column-reverse;
        align-items: center;
        padding: 10px;
    }
    
    img {
        margin: 0 auto;
        width: 100%;
    }

    header {
        display: none;
    }

    .detailsContainer {
        display: flex;
        flex-direction: column;
        /* justify-content: space-evenly; */
        /* margin: auto;
        padding: auto; */
    }

    .calendar-section {
        /* padding: 9px; */
        margin: 1px auto;
        border-radius: 8px;
        background: #f3b36f;
        text-align: center;
        width: 100%;
    }

    .poojaCard p {
        font-size: medium;
        text-align: left;
    }

    .card1 p {
        font-size: medium;
    }
}

table {
    width: 100%; /* Restrict width to 80% */
    margin: 20px auto; /* Center the table */
    margin-top: 0;
    border-collapse: collapse;
    font-size: 18px;
    background-color: white;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

th, td {
    /* border: 1px solid black; */
    padding: 12px;
    text-align: center;
}

th {
    background-color: #e38673; /* Gold background for header */
    color: white;
    text-align: center;
    border-bottom: 1px solid #461309;
}

tr:nth-child(even) {
    background-color: #f9f9f9; /* Light grey for alternating rows */
}

tr:hover {
    background-color: #ffcbba; /* Highlight row on hover */
    transition: 0.3s;
}

/* Add icons inside table */
.icon {
    /* color: #d4a017; */
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 600px) {
    table {
        width: 100%;
    }
    th, td {
        font-size: 16px;
        padding: 10px;
    }
}

/* Moving Note Container inside Bootstrap */
.moving-note-container {
    width: 100%;
    position: relative;
    white-space: nowrap;
    /* border-radius: 9px; */
}

/* Inner container restricted inside Bootstrap container */
.moving-note-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Moving text animation */
.moving-note {
    display: inline-block;
    padding-top: 18px;
    font-size: 18px;
    font-weight: bold;
    color: black;
    white-space: nowrap;
    animation: moveNote 30s linear infinite;
}

/* Keyframe animation for smooth scrolling */
@keyframes moveNote {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* Footer Styling */
    footer {
        background-color: #1c1c1c;
        color: white;
        padding: 20px;
    text-align: center;
    margin-top: 3rem;
     position: relative;
    bottom: 0;
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: auto;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-section h4 {
        margin-bottom: 9px;
        color: #ffcc00;
    }

    .footer-section p {
        font-size: 14px;
        margin-bottom: 1px;
    }

    .footer-section i {
        color: #ffcc00;
    }
    
    
    input {
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    button {
        background: #b22222;
        color: white;
        padding: 10px;
        width: 100%;
        border: none;
        cursor: pointer;
        font-size: 14px;
        border-radius: 5px;
    }

    button:hover {
        background: #a11a1a;
    }

    /* Google Maps */
    .google-map iframe {
        border-radius: 5px;
    }

    /* Footer Bottom */
    .footer-bottom {
        text-align: center;
        /* padding: 20px 0 0; */
        font-size: 14px;
        border-top: 1px solid #444;
         margin-top: 15px; 
    }
    
    .footer-bottom p {
        margin-bottom: 0px;
    }
    
     /* Responsive Design */
    @media (max-width: 900px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 600px) {
        .footer-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .form-group {
            flex-direction: column;
        }

        button {
            width: 100%;
        }
    }

    .custom-tooltip {
  --bs-tooltip-bg: rgb(199, 57, 57) !important;
  --bs-tooltip-color: white !important;
}
dialog {
            width: 300px;
            padding: 20px;
            border: none;
            border-radius: 5px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
            text-align: justify;
            background-color: #d4a017; /* Dark Yellow */
            color: #ffffff; /* White Text */
             /* Center the dialog box */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    /* Apply Transition */
    transition: background-color 0.5s ease-in-out, transform 0.3s ease-in-out;
        }

        /* .popup-buttons {
            margin-top: 15px;
        }

        .close-btn {
            background-color: #FF4B4B;
            color: white;
        } */

          /* Close Button */
          dialog .close-btn {
            position: absolute;
            top: 3px;
            right: 6px;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            /* Apply Transition */
            transition: background-color 0.2s ease-in-out, transform 0.3s ease-in-out;
        }

        .close-btn:hover {
            color: #6a0505;
            background-color: #8e7a48;
            border-radius: 3px;
        }


 .navbar {
            display: none;
        }

        .logo {
            font-size: 20px;
            font-weight: bold;
        }

        .logo a {
            text-decoration: none;
            color: #ffffff;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            padding: 0 15px;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-size: 16px;
        }

        .menu-icon {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Mobile Styles */
        @media screen and (max-width: 768px) {
            .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* background: #333; */
            background-color: #ff4d4d;;
            color: white;
            padding: 15px 20px;
            z-index: 1000;
            position: sticky;
            top: 0;
        }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 60px;
                left: 0;
                /* background: #333; */
                background-color: #ff4d4d;
                text-align: center;
                padding: 10px 0;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                padding: 15px 0;
            }

            .menu-icon {
                display: block;
            }
            
             .language-icon {
    cursor: pointer;
    font-size: 20px;
    padding: 8px;
    color: white;
    /*position: relative;*/
    }
        }
        
        
        
/* Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.chat-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.chat-button:hover {
  width: 160px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff5252, #d32f2f);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.chat-button:hover .chat-icon {
  margin-right: 80px;
}

.chat-button:hover .chat-text {
  opacity: 1;
  transform: translateX(0);
}

.chat-icon {
  transition: margin 0.3s ease;
}

.chat-text {
  position: absolute;
  right: 20px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
}

/* Chat Dialog */
.chat-dialog {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  z-index: 1001;
  border: 1px solid #e0e0e0;
}

.chat-dialog.active {
  display: flex;
}

.chat-header {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 15px 20px;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.close-chat {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.3s ease;
  width: 10%;
}

.close-chat:hover {
  background: rgba(255,255,255,0.2);
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8f9fa;
}

.message {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.message.user {
  justify-content: flex-end;
}

.message.bot {
  justify-content: flex-start;
}

.message-content {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.4;
}

.message.user .message-content {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  border-top-right-radius: 5px;
}

.message.bot .message-content {
  background: white;
  color: #333;
  border: 1px solid #e0e0e0;
  border-top-left-radius: 5px;
}

.chat-avatar {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bot-avatar {
  border: 2px solid #ff6b6b;
  background-color: white;
}

.user-avatar {
  border: 2px solid #c6c2c2;
}

.chat-input {
  padding: 15px 20px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 10px;
  background: white;
  border-radius: 0 0 15px 15px;
}

.chat-input input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  outline: none;
  font-size: 14px;
}

.chat-input input:focus {
  border-color: #ff6b6b;
}

.send-button {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.send-button:hover {
  transform: scale(1.1);
}

/* Welcome message animation */
.welcome-message {
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 480px) {
  .chat-dialog {
    width: calc(100vw - 40px);
    right: 20px;
    left: 20px;
  }
  
  .chat-button:hover {
    width: 70px;
  }
  
  .chat-button:hover .chat-icon {
    margin-right: 0;
  }
  
  .chat-button:hover .chat-text {
    display: none;
  }
} 



