@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --bg-color: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-grid: linear-gradient(#e5e5e5 1px, transparent 1px), linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
    --text-color: #111111;
    --text-muted: #555555;
    --accent-color: #111111;
    --accent-hover: #333333;
    --navbar-bg: rgba(255, 255, 255, 0.92);
    --navbar-text: #111111;
    --card-bg: rgba(0, 0, 0, 0.03);
    --card-border: rgba(0, 0, 0, 0.08);
    --btn-primary-bg: #111111;
    --btn-primary-text: #ffffff;
    --btn-secondary-bg: transparent;
    --btn-secondary-border: #111111;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    background-image: var(--bg-grid);
    background-size: 40px 40px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Background Alternation */
.section {
    padding: 100px 0;
}
.section:nth-of-type(odd) {
    background-color: #ffffff;
}
.section:nth-of-type(even) {
    background-color: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111111;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphism Cards */
.glass-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: #d0d0d0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Poppins', sans-serif;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border-radius: 50px;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: var(--btn-secondary-bg);
    color: var(--text-color);
    border: 1px solid var(--btn-secondary-border);
    border-radius: 50px;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* NAVBAR Styles */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    display: flex;
    justify-content: center;
    padding: 16px 24px 0 24px;
    pointer-events: none; /* Let clicks pass through empty spaces around navbar */
}

.navbar {
    pointer-events: auto; /* Re-enable pointer events for navbar */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    max-width: 95%;
    height: 60px;
    background-color: var(--navbar-bg);
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 0 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
    position: relative;
    gap: 58px;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #d0d0d0;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.nav-links-left, .nav-links-right {
    display: flex;
    align-items: center;
    gap: 58px;
    flex: 1;
}

.nav-links-left {
    justify-content: flex-end;
}

.nav-links-right {
    justify-content: flex-start;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navbar-text);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navbar-text);
    white-space: nowrap;
    margin: 0;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.nav-logo span {
    color: var(--accent-color);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--navbar-text);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9997;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu .nav-link {
    font-size: 1.8rem;
    color: #111111;
    font-family: 'Poppins', sans-serif;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-btn-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

/* WhatsApp Pulse Animation */
.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    animation: wa-pulse-ring 2s infinite;
}

@keyframes wa-pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    bottom: 68px;
    right: 0;
    background-color: #1c1c1e;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-btn-container:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border-width: 6px;
    border-style: solid;
    border-color: #1c1c1e transparent transparent transparent;
}

/* DUAL MARQUEE STRIPS */
.marquee-container {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.marquee-strip {
    display: flex;
    width: max-content;
    gap: 40px;
}

.marquee-content {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee-left 25s linear infinite;
}

.marquee-reverse .marquee-content {
    animation: marquee-right 25s linear infinite;
}

.marquee-item {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(17, 17, 17, 0.25);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 16px;
    text-transform: uppercase;
}

.marquee-item::after {
    content: '★';
    font-size: 1.5rem;
    color: var(--accent-color);
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* MOVING TEXT STRIP */
.text-strip {
    background: var(--accent-color);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    transform: rotate(-1deg);
    width: 105vw;
    margin-left: -2.5vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.text-strip-content {
    display: inline-flex;
    animation: marquee-left 20s linear infinite;
    gap: 20px;
}

.text-strip-item {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
}

/* FAQ Accordion */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111111;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: #fcfcfc;
    border-color: #d0d0d0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
    border-left: 1px solid var(--card-border);
    border-right: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    margin-top: -8px;
}

.faq-answer-inner {
    padding: 24px;
    color: var(--text-muted);
    font-size: 1rem;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: #111111;
    transition: var(--transition-smooth);
}

.faq-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.faq-item.active .faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.02);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-icon::before, .faq-item.active .faq-icon::after {
    background-color: var(--accent-color);
}

/* Footer styling */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 350px;
    margin-bottom: 24px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--card-border);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .navbar {
        height: 54px;
        padding: 0 20px;
        width: 90%;
        justify-content: space-between;
        gap: 16px;
    }

    .nav-links-left, .nav-links-right {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-logo {
        margin: 0;
        position: relative;
        left: 0;
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Background removal and blending for logo and hero images */
img[src*="websitewalaashishlogo2"] {
  background: transparent;
  mix-blend-mode: multiply;
}

.hero-image img, #hero-img {
  background: transparent;
  mix-blend-mode: multiply;
}

.portfolio-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  background: #f0f0f0;
}

/* CSS for Mock Browser */
.card-img-placeholder {
  width: 100%;
  height: 230px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  position: relative;
}
.mock-browser {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.browser-bar {
  background: #f0f0f0;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.browser-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ddd;
}
.browser-bar span:nth-child(1){background:#ff5f57}
.browser-bar span:nth-child(2){background:#febc2e}
.browser-bar span:nth-child(3){background:#28c840}
.browser-url {
  background: #fff;
  border-radius: 20px;
  padding: 2px 12px;
  font-size: 11px;
  color: #555;
  margin-left: 8px;
  flex: 1;
}
.mock-screen {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-logo {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.mock-tag {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
}
.mock-tag2 {
  color: rgba(255,255,255,0.8);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mock-products {
  display: flex;
  gap: 6px;
  margin-top: auto;
}
.mp {
  width: 60px;
  height: 50px;
  border-radius: 6px;
  opacity: 0.7;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e5e5;
}


