  body {
            margin: 0;
            padding: 0;
            background: #e0f7fa; /* Light background color */
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            box-sizing: border-box;
        }

        .content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
            margin-bottom: 80px; /* Space for footer and visit counter */
        }

        .container {
            max-width: 400px;
            width: 100%;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

/* Base styling for .card-header */
.card-header {
    /*background: linear-gradient(135deg, #00bcd4, #00796b), url('https://img.freepik.com/free-vector/gradient-emerald-background_23-2150272593.jpg'); /* Gradient and background image */
    background:  url('https://img.freepik.com/free-vector/gradient-emerald-background_23-2150272593.jpg'); /* Gradient and background image */
    background-size: cover; /* Ensures the background image covers the entire div */
    background-position: center; /* Centers the background image */
    color: #ffffff;
    padding: 20px;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

/* Styling for profile image */
.card-header img {
    width: 120px; /* Larger width for the square image */
    height: 120px; /* Larger height to ensure the image is square */
    object-fit: cover; /* Ensures the image covers the box without distortion */
    border-radius: 10px; /* Slightly rounded corners for a softer look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for effects */
    margin-bottom: 10px; /* Space below the image */
}

/* Hover effect for the image */
.card-header img:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
}

/* Styling for headings */
.card-header h1, .card-header h2 {
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

/* Responsive font sizes */
.card-header h1 {
    font-size: 2em; /* Relative font size */
    margin: 10px 0; /* Margin above and below */
}

.card-header h2 {
    font-size: 1.2em; /* Relative font size */
    margin: 0; /* Remove margin to prevent extra space */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .card-header {
        padding: 15px; /* Reduce padding on smaller screens */
    }
    
    .card-header img {
        width: 90px; /* Smaller width for the image on smaller screens */
        height: 90px; /* Smaller height to maintain the square aspect ratio */
    }

    .card-header h1 {
        font-size: 1.5em; /* Smaller font size for h1 on smaller screens */
    }
    
    .card-header h2 {
        font-size: 1em; /* Smaller font size for h2 on smaller screens */
    }
}




        .card-body {
            padding: 20px;
        }

        .card-body p {
            margin: 10px 0;
            font-size: 16px;
        }

        .card-body .info {
            display: flex;
            align-items: center;
            margin: 5px 0;
        }

        .card-body .info i {
            color: #00796b;
            margin-right: 10px;
            font-size: 18px;
        }

        .shop-pics {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }

        .shop-pics img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 8px;
            object-fit: cover;
        }

        .card-footer {
            background-color: #f1f1f1;
            padding: 10px;
            text-align: center;
        }

        .card-footer a {
            color: #00796b;
            text-decoration: none;
            font-size: 16px;
            margin: 0 10px;
        }

        .card-footer a i {
    margin-right: 0px;
}
/* General styling for social media links */
/* General styling for social media links */
.social-links {
    display: flex; /* Align items horizontally */
    gap: 10px; /* Space between icons */
    justify-content: center; /* Center items horizontally */
    margin: 20px 0; /* Margin for spacing */
}

/* Styling for each social media icon */
.social-links a {
    display: flex; /* Flexbox for centering content */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    width: 60px; /* Default width */
    height: 60px; /* Default height */
    background-color: #00796b; /* Teal background color */
    color: #fff; /* White icon color */
    text-decoration: none; /* Remove underline */
    font-size: 30px; /* Default icon size */
    border-radius: 8px; /* Slightly rounded corners */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effects */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    overflow: hidden; /* Ensure content doesn't overflow */
    position: relative; /* Position relative for pseudo-elements */
}

/* Hover effect for social media icons */
.social-links a:hover {
    background-color: #004d40; /* Darker teal background color on hover */
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

/* Specific colors for each social media platform */
.social-links .facebook {
    background-color: #3b5998; /* Facebook blue */
}

.social-links .twitter {
    background-color: #1da1f2; /* Twitter blue */
}

.social-links .instagram {
    background-color: #e4405f; /* Instagram pink */
}

.social-links .youtube {
    background-color: #ff0000; /* YouTube red */
}

/* Ensure icons are centered properly */
.social-links i {
    margin: 0; /* Remove default margin */
    line-height: 1; /* Adjust line height to prevent vertical misalignment */
    vertical-align: middle; /* Ensure vertical alignment */
    position: absolute; /* Absolute positioning for centering */
}

/* Ensure icons are perfectly centered */
.social-links a {
    display: flex; /* Flexbox for centering content */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    position: relative; /* For absolute positioning of icons */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .social-links a {
        width: 50px; /* Smaller width for mobile */
        height: 50px; /* Smaller height for mobile */
        font-size: 25px; /* Smaller icon size for mobile */
    }
}

@media (max-width: 400px) {
    .social-links a {
        width: 40px; /* Even smaller width for very small screens */
        height: 40px; /* Even smaller height for very small screens */
        font-size: 20px; /* Even smaller icon size for very small screens */
    }
}






        .footer {
            background-color: #00796b;
            color: #ffffff;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
            box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            box-sizing: border-box;
        }

        .footer a {
            color: #ffffff;
            text-decoration: none;
            font-size: 18px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer i {
            font-size: 24px;
        }

        .footer span {
            font-size: 12px;
        }

        .visit-counter {
            background-color: #ffffff;
            color: #00796b;
            padding: 10px;
            text-align: center;
            font-size: 16px;
            border-top: 1px solid #00796b;
            position: fixed;
            bottom: 50px; /* Just above the footer */
            width: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            z-index: 999; /* Ensure it's above other content but below footer */
        }

        .map-container {
            margin-top: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 200px;
            border: 0;
        }

        .qr-code {
            text-align: center;
            margin-top: 20px;
        }

        .qr-code img {
            width: 150px; /* Adjust size as needed */
            height: auto;
            border-radius: 8px;
        }

        @media (max-width: 400px) {
            .card-header h1 {
                font-size: 22px;
            }

            .card-header h2 {
                font-size: 18px;
            }

            .card-body p {
                font-size: 14px;
            }

            .card-footer a {
                font-size: 14px;
            }

            .shop-pics img {
                width: 100%;
            }

            .footer i {
                font-size: 20px;
            }

            .footer span {
                font-size: 10px;
            }

            .visit-counter {
                font-size: 14px;
                padding: 8px;
                bottom: 40px; /* Adjusted for smaller screens */
            }
        }
  .whatsapp-form {
            display: flex;
            flex-direction: column; /* Stack elements vertically */
            align-items: center; /* Center align the elements */
            max-width: 300px; /* Adjust as needed */
            margin: 0 auto; /* Center the form horizontally */
        }

        .whatsapp-input-group {
            display: flex;
            flex-direction: column; /* Stack inputs vertically */
            align-items: stretch; /* Stretch inputs to full width */
            width: 100%; /* Full width of the form */
            margin-bottom: 10px; /* Space between input group and button */
        }

        .whatsapp-name-number-group {
            display: flex; /* Align name and number input side by side */
            align-items: center; /* Center items vertically */
            width: 100%; /* Full width of the form */
        }

        .whatsapp-prefix {
            display: flex;
            align-items: center; /* Align items vertically centered */
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 5px 0 0 5px; /* Rounded corners for prefix */
            padding: 10px;
            margin-right: -1px; /* Remove border space */
            width: auto; /* Adjust width as needed */
            box-sizing: border-box; /* Include padding and border in element’s total width and height */
        }

        .whatsapp-prefix img {
            width: 24px; /* Adjust as needed */
            height: 16px; /* Adjust as needed */
            margin-right: 5px; /* Space between flag and +91 */
        }

        .whatsapp-prefix span {
            font-size: 16px; /* Adjust as needed */
        }

        .whatsapp-form input[type="text"] {
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 5px;
            width: 100%; /* Full width within the input group */
            margin-top: 5px; /* Space above the input */
            box-sizing: border-box; /* Include padding and border in element’s total width and height */
        }

        .whatsapp-form input[name="number"] {
            border-radius: 0 5px 5px 0; /* Round only the right corners */
            margin-left: -1px; /* Remove border space */
        }

        .whatsapp-form button {
            padding: 10px 20px;
            font-size: 16px;
            color: #fff;
            background-color: #25d366;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px; /* Space above the button */
        }

        .whatsapp-form button i {
            margin-right: 5px;
        }

        .whatsapp-form button:hover {
            background-color: #1ebe52;
        }



/* Styling for photo gallery */
/* Styling for photo gallery */
.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

/* Styling for gallery items */
.gallery-item {
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
    max-width: calc(50% - 10px);
    text-align: center;
}

/* Styling for gallery images */
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

/* Hover effect for gallery images */
.gallery-item img:hover {
    transform: scale(1.05);
}

/* Styling for More Info button */
.more-info-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.more-info-btn:hover {
    background-color: #0056b3;
}

/* Styling for the popup */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 8px;
    max-width: 90%; /* Adjusted width for better visibility on mobile */
    max-height: 80vh; /* Allow scrolling if content overflows */
    overflow: auto; /* Enable scrolling if needed */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Styling for the popup content */
.popup-content {
    margin-bottom: 20px;
}

/* Styling for the popup close button */
.popup-close {
    padding: 8px 16px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup-close:hover {
    background-color: #c82333;
}

/* Overlay for popup */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Transparent black */
    z-index: 999; /* Ensure it is on top */
}

/* Responsive adjustments for mobile view */
@media (max-width: 600px) {
    .popup {
        max-width: 95%; /* Wider popup on mobile view */
        padding: 15px; /* Adjust padding for better fit */
        width: 95%; /* Ensure width is set on mobile view */
    }
    
    .popup-content {
        font-size: 14px; /* Adjust font size for better readability on smaller screens */
    }
}




/* Responsive adjustments */
@media (max-width: 600px) {
    .gallery-item {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .gallery-item img {
        height: 200px;
    }
}





 .contact-form {
            margin-top: 20px;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 12px;
            background-color: #ffffff;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .contact-form h3 {
            margin-bottom: 15px;
            font-size: 24px;
            color: #00796b;
            text-align: center;
        }

        .contact-form input, .contact-form textarea {
            width: calc(100% - 22px);
            padding: 12px;
            margin: 8px 0;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
        }

        .contact-form button {
            background-color: #00796b;
            color: #ffffff;
            border: none;
            padding: 12px;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: #ff6f61;
        }