        :root {
            --primary-color: #4CAFDE;
            --secondary-color: #FF9F40;
            --accent-color: #FFD166;
            --text-color: #333;
            --light-bg: #F8F9FA;
            --white: #FFFFFF;
            --border-radius: 20px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

        .content-wrapper {
            max-width: 480px;
            margin: 0 auto;
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }

        .main-wrapper {
            position: relative;
        }

        /* Header Section */
        .firstpagetop {
            background: linear-gradient(135deg, #D92725);
            padding: 25px 20px 20px;
            text-align: center;
            color: white;
            position: relative;
            border-bottom-left-radius: 50% 20%;
            border-bottom-right-radius: 50% 20%;
        }

        .companylogo {
            width: 100px;
            height: 100px;
            margin: 0 auto 15px;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            border: 4px solid var(--accent-color);
        }

        .companylogo img {
            max-width: 80%;
            max-height: 80%;
        }

        .profilepic {
            width: 120px;
            height: 120px;
            margin: 0 auto 15px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--accent-color);
            box-shadow: var(--shadow);
        }

        .profilepic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .name {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 5px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }

        .name span {
            font-size: 16px;
            font-weight: normal;
            display: block;
            margin-top: 5px;
        }

        .companyname {
            font-weight: bold;
            color: #76E914;
            font-size: 18px;
        }

        .actionbtn {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .iconbtn {
            width: 45px;
            height: 45px;
            padding:14px;
            background-color: #76E914;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            text-decoration: none;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            line-height: 1;
        }

        .iconbtn i {
            margin: 0;
            line-height: 1;
        }

        .iconbtn:hover {
            transform: scale(1.1);
        }

        /* Contact Section */
        .firstpagebottom {
            padding: 20px;
            background-color: var(--white);
        }

        .shadow-btn, .share-whatsapp {
            background-color: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 15px;
            margin-bottom: 20px;
            text-align: center;
            box-shadow: var(--shadow);
        }

        .addphonebook {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: #D92725;
            font-weight: bold;
            text-decoration: none;
            font-size: 16px;
        }

        .shadow-button-icon {
            color: #76E914;
            font-size: 20px;
        }

        .input-wrapper {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            background-color: white;
            border-radius: 50px;
            padding: 8px 15px;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        }

        .input-wrapper label {
            color: #76E914;
            font-weight: bold;
            margin-right: 5px;
        }

        .input {
            border: none;
            outline: none;
            flex-grow: 1;
            font-size: 16px;
            padding: 5px;
        }

        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background-color: #25D366;
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }

        .whatsapp-btn:hover {
            transform: scale(1.05);
        }

        .contact-table {
            width: 100%;
            margin-bottom: 20px;
        }

        .contact-table td {
            padding: 10px 5px;
            vertical-align: middle;
        }

        .contact-table tr:first-child td {
            border-top: 1px solid #eee;
        }

        .contact-table tr td:first-child {
            width: 40px;
        }

        .contact-icon {
            width: 35px;
            height: 35px;
            padding:10px;
            background-color: #76E914;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            line-height: 1;
        }

        .contact-icon i {
            margin: 0;
            line-height: 1;
        }

        .contact-text {
            color: var(--text-color);
            text-decoration: none;
            font-size: 14px;
        }

        .share-btn {
            display: flex;
            justify-content: center;
            gap: 10px;
            list-style: none;
            margin-top: 20px;
        }

        .share-btn li a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            text-decoration: none;
            box-shadow: var(--shadow);
            line-height: 1;
        }

        .share-btn li a i {
            margin: 0;
            line-height: 1;
        }

        .share-btn-facebook { background-color: #3b5998;padding:10px; }
        .share-btn-instagram { background-color: #e1306c;padding:10px; }
        .share-btn-youtube { background-color: #ff0000;padding:10px; }

        /* Content Sections */
        .page-container {
            padding: 25px 20px;
            border-bottom: 1px solid #eee;
            max-width: 480px;
            margin: 0 auto;
            background-color: var(--white);
        }

        .section-heading {
            font-size: 22px;
            color: #D92725;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            padding-bottom: 10px;
        }

        .section-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #76E914;
            border-radius: 3px;
        }

        .about-tbl {
            width: 100%;
            margin-bottom: 20px;
        }

        .about-tbl td {
            padding: 8px 5px;
        }

        .td-label h3 {
            color: #D92725;
            font-size: 16px;
        }

        .about-txt {
            margin-bottom: 15px;
            text-align: justify;
        }

        .unorderedList {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .unorderedList li {
            margin-bottom: 8px;
            position: relative;
        }

        .unorderedList li::before {
            content: '★';
            color: #76E914;
            position: absolute;
            left: -20px;
        }

        .other-links-wrapper {
            background-color: var(--light-bg);
            padding: 15px;
            border-radius: var(--border-radius);
            margin-bottom: 20px;
        }

        .other-links-header {
            color: #D92725;
            margin-bottom: 10px;
        }

        .other-links-link {
            display: block;
            color: var(--text-color);
            text-decoration: none;
            margin-bottom: 8px;
            padding: 8px;
            border-radius: 8px;
            transition: background-color 0.3s;
        }

        .other-links-link:hover {
            background-color: rgba(255, 159, 64, 0.1);
        }

        .other-links-link i {
            color: #76E914;
            margin-right: 8px;
        }

        .download {
            display: flex;
            align-items: center;
            background-color: var(--light-bg);
            padding: 15px;
            border-radius: var(--border-radius);
            text-decoration: none;
            color: var(--text-color);
            margin-bottom: 15px;
            box-shadow: var(--shadow);
        }

        .pdf-icon {
            color: #e74c3c;
            font-size: 24px;
            margin-right: 15px;
        }

        .pdf-number {
            flex-grow: 1;
        }

        .download-icon {
            color: #D92725;
            font-size: 20px;
        }

        /* Services Section */
        .card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            border-top: 5px solid #76E914;
        }

        .card-title {
            color: #D92725;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .product-description {
            margin-bottom: 15px;
        }

        .product-enquiry-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .product-price {
            color: #76E914;
            font-weight: bold;
        }

        .product-enquiry-btn {
            background-color: #D92725;
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .product-enquiry-btn:hover {
            background-color: #2C8FB5;
        }

        /* Gallery */
        .images-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 10px;
            max-height: 400px;
            overflow-y: auto;
            padding: 10px 0;
        }

        .image-wrapper {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .image-wrapper img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .image-wrapper img:hover {
            transform: scale(1.05);
        }

        /* Payment Section */
        .qr-image {
            width: 100%;
            max-width: 200px;
            display: block;
            margin: 10px auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        /* Feedback Section */
        .feedback-list {
            margin-bottom: 25px;
        }

        .feedback-wrapper {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #ddd;
        }

        .feedback-name-wrapper {
            display: block;
            margin-bottom: 5px;
        }

        .feedback-name {
            font-weight: bold;
            color: #D92725;
        }

        .feedback-form {
            background-color: var(--light-bg);
            padding: 20px;
            border-radius: var(--border-radius);
        }

        .feedback-form-heading {
            color: #D92725;
            font-size: 18px;
            margin-bottom: 15px;
            text-align: center;
        }

        .star-rating, input, textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
        }

        input:focus, textarea:focus {
            border-color: #D92725;
        }

        textarea {
            min-height: 100px;
            resize: vertical;
        }

        input[type="submit"] {
            background-color: #D92725;
            color: white;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        input[type="submit"]:hover {
            background-color: #2C8FB5;
        }

        /* Enquiry Form */
        .enquiry-form {
            background-color: var(--light-bg);
            padding: 20px;
            border-radius: var(--border-radius);
        }

        .flex {
            display: flex;
            gap: 15px;
        }

        .enquiry-phoneNumber, .enquiry-email {
            flex: 1;
        }

        /* Footer */
        .copyright {
            text-align: center;
            padding: 15px;
            color: var(--text-color);
            font-size: 14px;
            max-width: 480px;
            margin: 0 auto;
        }

        .copyright a {
            color: #D92725;
            text-decoration: none;
        }

        .footer {
            position: sticky;
            bottom: 0;
            background-color: var(--white);
            border-top: 1px solid #eee;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            max-width: 480px;
            margin: 0 auto;
        }

        .footer-menu {
            display: flex;
            list-style: none;
            overflow-x: auto;
            padding: 10px 5px;
        }

        .footer-menu li {
            flex: 1;
            min-width: 60px;
        }

        .footer-menu-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-color);
            font-size: 12px;
            padding: 5px;
            transition: color 0.3s;
        }

        .footer-menu-link:hover {
            color: #D92725;
        }

        .footer-menu-icon {
            font-size: 20px;
            margin-bottom: 5px;
            line-height: 1;
        }

        .footer-menu-text {
            text-align: center;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
        }

        .modal-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 80%;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
        }

        /* Decorative Elements */
        .decoration {
            position: absolute;
            z-index: -1;
        }

        .circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--accent-color);
            opacity: 0.3;
        }

        .star {
            font-size: 24px;
            color: var(--accent-color);
            position: absolute;
            animation: float 3s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Responsive Adjustments */
        @media (max-width: 480px) {
            .firstpagetop {
                padding: 20px 15px 15px;
            }
            
            .profilepic {
                width: 100px;
                height: 100px;
            }
            
            .name {
                font-size: 20px;
            }
            
            .actionbtn {
                gap: 10px;
            }
            
            .iconbtn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .page-container {
                padding: 20px 15px;
            }
            
            .images-container {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            
            .image-wrapper img {
                height: 100px;
            }
        }