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

/* Chatbot Toggle Button */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.chatbot-toggle i {
    color: white;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.chatbot-toggle.active i.fa-comment-dots {
    transform: rotate(90deg);
    opacity: 0;
}

.chatbot-toggle.active i.fa-times {
    transform: rotate(0deg);
    opacity: 1;
}

.chatbot-toggle i.fa-times {
    position: absolute;
    transform: rotate(-90deg);
    opacity: 0;
}

/* Chatbot Widget Container */
.chatbot-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 400px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    height: 600px;
    max-height: calc(100vh - 150px);
    z-index: 999;
    animation: slideUp 0.3s ease-out;
}

.chatbot-widget.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Chatbot Header */
.chatbot-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.chatbot-header-content p {
    margin: 3px 0 0 0;
    font-size: 12px;
    opacity: 0.9;
}

.chatbot-minimize {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.chatbot-minimize:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Messages Area */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    display: flex;
    margin-bottom: 10px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.user {
    justify-content: flex-end;
}

.message.bot {
    justify-content: flex-start;
}

.message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    line-height: 1.5;
    word-wrap: break-word;
    font-size: 14px;
}

.message.user .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message.bot .message-content {
    background: #e9ecef;
    color: #333;
    border-bottom-left-radius: 4px;
}

.message.bot .message-content a {
    color: #007bff;
    text-decoration: none;
}

.message.bot .message-content a:hover {
    text-decoration: underline;
}

.message.bot .message-content ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: #e9ecef;
    border-radius: 12px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        opacity: 0.5;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-8px);
    }
}

/* Input Area */
.chatbot-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
    border-radius: 0 0 16px 16px;
    align-items: center;
}

.chatbot-input-area input {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 24px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.chatbot-input-area input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chatbot-input-area button {
    flex-shrink: 0; /* Prevents button from shrinking */
    width: 44px;
    height: 44px;
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-input-area button i {
    font-size: 16px;
}

.chatbot-input-area button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.chatbot-input-area button:active {
    transform: translateY(0);
}

.chatbot-input-area button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Suggestions */
.suggestion-button {
    display: block;
    width: 100%;
    padding: 8px 12px;
    margin: 5px 0;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    font-size: 13px;
    transition: all 0.2s ease;
}

.suggestion-button:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Scrollbar styling */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    

    .chatbot-toggle {
        bottom: 160px;
        right: 15px;
        width: 56px;
        height: 56px;
    }
}

   
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
         body {
             min-height: 100vh;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        
        /* About Us Section */
        .about-section {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            margin-bottom: 20px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }
        
        .about-text {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .about-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        
        .about-image-wrapper:hover {
            transform: scale(1.05);
        }
        
        .about-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-image-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            animation: gradientShift 3s ease infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
            50% {
                background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            }
        }
        
        .about-stats {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            flex: 1;
            min-width: 150px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .stat-label {
            color: #666;
            font-size: 0.9rem;
            margin-top: 5px;
        }

  /* ---- Section Background ---- */
  .banner-V07 {
    background: #fafaf8;
    position: relative;
    overflow: hidden;
  }

  /* ---- Centered Header ---- */
  .values-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #b08850;
    background: #f5ede0;
    padding: 6px 18px;
    border-radius: 50px;
  }

  .values-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .values-title .brand-name {
    color: #b08850;
    font-style: italic;
  }

  /* ---- Feature Items ---- */
  .features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 14px;
    cursor: default;
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
  }

  .feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: #b08850;
    border-radius: 3px;
    transition: transform 0.3s ease;
  }

  .feature-item:hover {
    background: #fff;
    transform: translateX(6px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  }

  .feature-item:hover::before {
    transform: translateY(-50%) scaleY(1);
  }

  .feature-icon-wrap {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5ede0, #e8d5b7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #b08850;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .feature-item:hover .feature-icon-wrap {
    background: linear-gradient(135deg, #b08850, #d4a96a);
    color: #fff;
    transform: rotate(-5deg) scale(1.08);
  }

  .feature-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
    letter-spacing: 0.01em;
  }

  .feature-desc {
    font-size: 0.82rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
  }

  /* ---- Animated text shimmer on hover ---- */
  .feature-item:hover .feature-title {
    background: linear-gradient(90deg, #1a1a1a 0%, #b08850 50%, #1a1a1a 100%);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 1.2s ease forwards;
  }

  @keyframes shimmerText {
    0%   { background-position: 100% center; }
    100% { background-position: 0% center; }
  }

  /* ---- Image Showcase ---- */
  .image-showcase {
    position: relative;
  }

  .image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 784 / 1168;   /* your exact image dimensions */
    width: 100%;
    max-width: 420px;            /* caps width on large screens */
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  }

  .showcase-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;          /* fills frame without distortion */
    object-position: center top; /* keeps face/top of image visible */
    display: block;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

   .showcase-img.fade-out {
    opacity: 0;
    transform: scale(1.03);
  }

  /* ---- Remove old conflicting responsive overrides ---- */
  @media (max-width: 991px) {
    .image-frame {
      max-width: 360px;
      /* aspect-ratio stays 784/1168 — NO override here */
    }
  }

  @media (max-width: 576px) {
    .image-frame {
      max-width: 100%;           /* full width on small phones */
      border-radius: 14px;
    }
  }




      .filter-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeInOverlay 0.2s ease-out;
}
/* Custom spinner design */
.premium-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.premium-spinner::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid transparent;
    border-top: 3px solid #28a745;
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}