﻿@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700");

/* === GLOBAL RESET === */
html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: Montserrat, sans-serif;
    background: repeating-linear-gradient(45deg, #000, #2c2c2c 100px);
    background-size: 110px 110px;
    background-attachment: fixed;
    background-position: center;
}

a {
    text-decoration: none;
    color: unset;
}

div, h1, h2, h3, h4, p, i, a {
    position: relative;
    transition: 0.3s ease;
}

form, input, textarea, select {
    font-family: Montserrat, sans-serif;
}

/* === ROOT COLORS === */
:root {
    --color: #848484;
    --color2: #64af35;
    --theme-primary: #2e2c41;
    --theme-light: #fff;
    --theme-dark: #000;
    --text-dark: #222;
    --text-light: #fff;
}

/* === VIEW COUNTER === */
.view_counter {
    width: fit-content;
    text-align: center;
    font-size: 10px;
    padding: 3px 12px;
    background: #000;
    color: #fff;
    border-radius: 3px;
    margin: 0 auto;
}

/* === CARD WRAPPER === */
.card-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: 80px;
}

/* === PROFILE CARD === */
.card {
    width: 100%;
    background: url("card_images/bg3.png");
    background-size: cover;
    background-position: center;
    color: #fff;
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    padding-bottom: 27px;
    text-align: center;
}

.card_content img {
    height: 100px;
    width: auto;
    border-radius: 12px;
    border: 3px solid #fff;
    background: #fff;
    margin-top: 30px;
}

.card_content2 h2 {
    font-weight: 600;
    text-transform: uppercase;
    margin: 5px 0;
    text-shadow: 0 0 11px #000;
}

.card_content2 p {
    font-weight: 500;
    font-size: 13px;
    color: #f0f0f0;
}

/* === CONTACT DETAILS === */
.contact_details {
    padding: 15px 25px;
}

.contact_d {
    display: flex;
    align-items: center;
    color: #fff;
    margin: 6px 0;
}

    .contact_d i {
        margin-right: 10px;
        font-size: 14px;
        padding: 8px;
        border: 1px solid #fff;
        border-radius: 50%;
        min-width: 30px;
        text-align: center;
    }

/* === SHARE SECTION === */
.share-section {
    text-align: center;
    margin: 15px 0;
}

.share-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 5px 8px;
    background: #fff;
}

    .input-wrapper label {
        font-weight: 600;
        color: #2e2c41;
    }

    .input-wrapper input {
        border: none;
        outline: none;
        padding: 6px;
        width: 110px;
        font-size: 13px;
    }

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

    .whatsapp-btn:hover {
        background: #1ebe57;
    }

.shadow-btn {
    margin-top: 8px;
}

.addphonebook {
    display: inline-block;
    background: #ff5722;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
}

    .addphonebook:hover {
        background: #e64a19;
    }

.share-toggle {
    margin-top: 8px;
}

.share-main-btn {
    background: #0077c8;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

    .share-main-btn:hover {
        background: #005fa3;
    }

.share-btn {
    display: none;
    list-style: none;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

    .share-btn li a {
        color: #fff;
        font-size: 18px;
    }

    .share-btn i {
        background: #2e2c41;
        padding: 10px;
        border-radius: 50%;
    }

/* === QR SECTION === */
.qr-section {
    text-align: center;
    margin: 20px auto;
}

.qr-header {
    background: #2e2c41;
    color: #fff !important;
    font-weight: 600;
    padding: 10px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    font-size: 16px;
}

.qr-body {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-top: none;
    color: #222;
}

.qr-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    display: block;
    margin: 10px auto;
}

.qr-download-btn {
    display: inline-block;
    background: var(--theme-primary);
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

    .qr-download-btn:hover {
        background: #1e1c31;
    }

/* === WHITE CARD === */
.card2 {
    background: #fff;
    width: 100%;
    margin: 15px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
}

    .card2 h3 {
        background: var(--theme-primary);
        color: #fff;
        font-size: 18px;
        text-align: center;
        padding: 10px;
        font-weight: 600;
        margin: 0 0 15px;
    }

/* === PRODUCT CARD === */
.product_s {
    text-align: center;
    background: #f9f9f9;
    padding: 10px;
    margin: 10px auto;
    border-radius: 8px;
    border: 1px solid #eee;
    width: 90%;
}

    .product_s img {
        width: 100%;
        border-radius: 6px;
        margin-bottom: 10px;
    }

/* === GALLERY === */
.gallery_row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 10px;
}

.gallery_img {
    width: 48%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .gallery_img:hover {
        transform: scale(1.05);
    }

/* === GALLERY MODAL === */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    text-align: center;
}

.gallery-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.gallery-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.gallery-caption {
    color: #ccc;
    font-size: 16px;
    margin-top: 10px;
}

/* === ACHIEVEMENTS === */
#achievements {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin: 20px auto;
    max-width: 400px;
}

    #achievements h3 {
        background: var(--theme-primary);
        color: #fff;
        font-size: 18px;
        text-align: center;
        padding: 10px;
        font-weight: 600;
    }

.achievement-item {
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

/* === FEEDBACK + ENQUIRY === */
#feedback, #enquiry {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin: 20px auto;
    max-width: 400px;
}

    #feedback h3, #enquiry h3 {
        background: var(--theme-primary);
        color: #fff;
        font-size: 18px;
        text-align: center;
        padding: 10px;
        font-weight: 600;
        margin: 0;
    }

    .feedback_form, #enquiry form {
        padding: 15px;
    }

        .feedback_form input,
        .feedback_form select,
        .feedback_form textarea,
        #enquiry input,
        #enquiry textarea {
            width: 100%;
            padding: 8px;
            margin-bottom: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 13px;
        }

        .feedback_form textarea,
        #enquiry textarea {
            min-height: 80px;
        }

.btn-feedback {
    background: var(--theme-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

    .btn-feedback:hover {
        background: #1e1c31;
    }

/* === COPYRIGHT === */
.copyright {
    width: 100%;
    background: var(--theme-primary);
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 13px;
    border-radius: 0 0 10px 10px;
}

/* === MENU BOTTOM === */
.menu_bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--theme-primary);
    color: #fff;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.3);
}

.menu_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 6px 0;
}

.menu_item {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #fff;
}

    .menu_item i {
        display: block;
        font-size: 16px;
        margin-bottom: 3px;
    }

    .menu_item:hover {
        color: #ff9800;
    }

/* === RESPONSIVE === */
@media screen and (max-width:500px) {
    .card, .card2, #achievements, #videogallery, #feedback, #enquiry {
        width: 95%;
        margin: 10px auto;
    }

    .qr-img {
        width: 140px;
        height: 140px;
    }
}
.big_btns {
    display: inline-block;
    background: #25D366; /* WhatsApp green */
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    padding: 10px 18px;
    margin: 8px auto;
    font-weight: 600;
    border: none;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

    .big_btns i {
        margin-right: 6px;
    }

    .big_btns:hover {
        background: #1ebe57; /* darker on hover */
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        transform: translateY(-2px);
    }
/* === PAYMENT SECTION === */
.payment_block {
    background: #fafafa;
    border-radius: 10px;
    padding: 15px;
    margin: 15px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 90%;
}

/* Center QR Codes */
.payment_qr_section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.qr-box {
    text-align: center;
}

    .qr-box img {
        width: 120px;
        height: 120px;
        object-fit: contain;
        border: 2px solid #ddd;
        border-radius: 8px;
        background: #fff;
        padding: 5px;
    }

    .qr-box p {
        margin: 6px 0 0;
        font-size: 13px;
        color: #333;
        font-weight: 600;
    }

/* Account Details Table */
.account_details {
    overflow-x: auto;
}

.account_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

    .account_table th,
    .account_table td {
        padding: 8px 10px;
        border: 1px solid #ddd;
        text-align: left;
    }

    .account_table th {
        background: #2e2c41;
        color: #fff;
        font-weight: 600;
        width: 45%;
    }

    .account_table td {
        background: #fff;
        color: #333;
    }
/* === SHARE SECTION (Modern Design) === */
.share-section.modern-share {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin: 20px auto;
    max-width: 400px;
    padding: 20px 15px;
    text-align: center;
}

    .share-section.modern-share h3 {
        background: var(--theme-primary);
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        margin: -20px -15px 15px -15px;
        padding: 10px;
        border-radius: 10px 10px 0 0;
    }

    .share-section.modern-share .share-subtext {
        color: #555;
        font-size: 13px;
        margin-bottom: 15px;
    }

/* WhatsApp share box */
.whatsapp-share-box {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

    .whatsapp-share-box .input-group {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .whatsapp-share-box .prefix {
        background: #e0e0e0;
        color: #333;
        padding: 8px 10px;
        border-radius: 6px 0 0 6px;
        font-weight: 600;
        font-size: 13px;
    }

    .whatsapp-share-box input[type="text"] {
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 0 6px 6px 0;
        outline: none;
        font-size: 13px;
        width: 130px;
    }

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .btn-whatsapp:hover {
        background: #1ebe57;
        transform: translateY(-1px);
    }

/* Buttons Row */
.share-btn-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.btn-outline {
    border: 2px solid var(--theme-primary);
    color: var(--theme-primary);
    padding: 8px 14px;
    border-radius: 6px;
    background: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-outline i {
        margin-right: 6px;
    }

    .btn-outline:hover {
        background: var(--theme-primary);
        color: #fff;
        transform: translateY(-2px);
    }

/* Responsive */
@media screen and (max-width: 500px) {
    .share-section.modern-share {
        width: 95%;
        padding: 15px 10px;
    }

    .btn-outline,
    .btn-whatsapp {
        font-size: 12px;
        padding: 8px 12px;
    }

    .whatsapp-share-box input[type="text"] {
        width: 100px;
    }
}
/* === GALLERY SECTION (Modern) === */
#gallery {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin: 20px auto;
    max-width: 400px;
    overflow: hidden;
}

    #gallery h3 {
        background: var(--theme-primary);
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        text-align: center;
        padding: 10px;
        margin: 0 0 10px 0;
        border-radius: 10px 10px 0 0;
    }

/* Image grid container */
.img_gall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    padding: 10px 12px 15px;
}

    .img_gall img {
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

        .img_gall img:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(0,0,0,0.25);
        }

/* === GALLERY POPUP / MODAL === */
#galleryModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px;
}

#galleryModalImg {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

#galleryCaption {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    max-width: 80%;
    line-height: 1.4;
}

/* Close button */
#galleryModal::after {
    content: "✕";
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

    #galleryModal::after:hover {
        color: #ff9800;
    }

/* === RESPONSIVE === */
@media screen and (max-width: 500px) {
    .img_gall {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }

    #galleryModalImg {
        max-width: 95%;
        max-height: 75%;
    }
}
