css/* ==========================================================================
   1. GLOBAL RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: #f8fafc;
    color: #1e293b;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Common Interactive Button Setup */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* ==========================================================================
   2. FIXED HEADER NAVIGATION BAR
   ========================================================================== */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #1e3a8a;
    text-decoration: none;
}

.logo span {
    color: #25d366;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav a:hover, nav a.active {
    color: #1e3a8a;
}

nav .whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
}

nav .whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

/* ==========================================================================
   3. HERO BANNER DISPLAY PANEL
   ========================================================================== */
.hero {
    margin-top: 75px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #ffffff;
    padding: 80px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.hero-text .whatsapp-btn {
    background-color: #25d366;
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.hero-text .whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
}

.hero-image-box {
    text-align: center;
}

.side-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   4. SERVICES & PORTFOLIO LAYOUT SECTIONS
   ========================================================================== */
.services-section, .portfolio-section, .pricing-section, .about-details {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 50px;
    font-size: 16px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-box {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.card p {
    color: #475569;
    font-size: 15px;
}

/* Portfolio Work Showcase Cards Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.portfolio-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h4 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 8px;
}

/* ==========================================================================
   5. PRICING SECTIONS & PLAN PANELS
   ========================================================================== */
.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 40px 30px;
}

.pricing-card.featured {
    border: 2px solid #1e3a8a;
    box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.1);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}

.pricing-card h3 {
    font-size: 22px;
    color: #0f172a;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #1e3a8a;
    margin: 15px 0 25px 0;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.pricing-card ul li {
    padding: 8px 0;
    color: #475569;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li::before {
    content: "✓";
    color: #25d366;
    font-weight: bold;
}

.plan-btn {
    background-color: #1e3a8a;
    color: #ffffff;
    width: 100%;
}

.plan-btn:hover {
    background-color: #1d4ed8;
}

.pricing-card.featured .plan-btn {
    background-color: #25d366;
}

.pricing-card.featured .plan-btn:hover {
    background-color: #128c7e;
}

/* ==========================================================================
   6. INNER PAGES (ABOUT PAGE STYLES)
   ========================================================================== */
.about-hero {
    margin-top: 75px;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('images/mystore(6).jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.about-hero-content max-width {
    max-width: 800px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text-box h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-text-box p {
    margin-bottom: 15px;
    color: #475569;
}

.about-perks {
    list-style: none;
    margin-top: 20px;
}

.about-perks li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e293b;
    font-weight: 500;
}

.about-perks li i {
    color: #25d366;
}

.about-side-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.about-cta {
    background-color: #f1f5f9;
    text-align: center;
    padding: 60px 20px;
}

.about-cta h2 {
    margin-bottom: 10px;
}

.about-cta p {
    color: #475569;
    margin-bottom: 25px;
}

.cta-btn {
    background-color: #25d366;
    color: white;
}

.cta-btn:hover {
    background-color: #128c7e;
}

/* ==========================================================================
   7. PRODUCTION COMPLIANT FOOTER
   ========================================================================== */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 20px;
}

/* ==========================================================================
   8. MOBILE VIEWPORTS MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container, .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text-box h2 {
        text-align: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    nav {
        display: none; /* Recommended task: set up a mobile navigation burger toggle next */
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
}
/* Floating WhatsApp Widget Styling */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover Zoom Effect */
.whatsapp-floating-widget:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Tooltip Popup Box */
.whatsapp-floating-widget .widget-tooltip {
    position: absolute;
    right: 75px;
    background-color: #333333;
    color: #ffffff;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
}

/* Little triangle pointer for the tooltip box */
.whatsapp-floating-widget .widget-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333333;
}

/* Show Tooltip on Hover */
.whatsapp-floating-widget:hover .widget-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobile Layout Responsive Viewport Fix */
@media (max-width: 768px) {
    .whatsapp-floating-widget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    /* Hide the tooltip on smartphones to prevent screen clutter */
    .whatsapp-floating-widget .widget-tooltip {
        display: none;
    }
}
css/* ==========================================================================
   GOOGLE MAPS RESPONSIVE GRID BOX
   ========================================================================== */
.map-responsive {
    overflow: hidden;
    padding-bottom: 450px; /* Controls desktop map height display aspect */
    position: relative;
    height: 0;
}

@media (max-width: 768px) {
    .map-responsive {
        padding-bottom: 300px; /* Shrinks map depth on mobile layouts to save vertical scrolling space */
    }
}
