  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 80px;
            
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, #256b3b 0%, #3390c6 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 30px;
            margin: 0px;
            height: 75px;
            z-index: 1000;
            transition: all 0.3s ease;

        }

        .navbar.scrolled {
            height: 70px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            animation: fadeInLeft 1s ease;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .logo-text {
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 0.3px;
        }

        .logo-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
            font-weight: 400;
            margin-top: -5px;
        }

        .nav-items {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-item {
            position: relative;
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 25px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .nav-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .nav-item i {
            font-size: 1rem;
        }

        .sos-btn {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
            animation: pulse 2s infinite;
            box-shadow: 0 4px 15px rgba(255, 82, 82, 0.4);
        }

        .sos-btn:hover {
            background: linear-gradient(135deg, #ff5252 0%, #ff3838 100%);
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 82, 82, 0.6);
        }

        .notification-badge {
            position: relative;
            top: -5px;
            right: -5px;
            background: #ff9800;
            color: white;
            font-size: 15px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: bounce 2s infinite;
        }

         .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .content {
            max-width: 800px;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: 30px;
            text-align: center;
        }

        .content h1 {
            color: #2c7744;
            margin-bottom: 20px;
        }

        .content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-5px);
            }
            60% {
                transform: translateY(-3px);
            }
        }

        @media (max-width: 900px) {
            .navbar {
                padding: 0 20px;
            }
            
            .nav-items {
                gap: 15px;
            }
            
            .nav-item span {
                display: none;
            }
            
           
        }

        @media (max-width: 600px) {
 
            .nav-items {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: #2c7744;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            
            
            .nav-items.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-item {
                width: 100%;
                justify-content: center;
                padding: 15px;
                border-radius: 0;
            }
            
            .nav-item span {
                display: inline;
            }
            .hamburger{
                display: flex;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

        }
        /* login */
    
        .login-signup-btn {
            background: transparent;
            color: rgb(232, 232, 232);
            border: 2px solid rgb(216, 215, 215);
            padding: 4px 6px;
            font-size: 15px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .login-signup-btn:hover {
            border-color: rgb(76, 158, 212);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

       
        .content h1 {
            color: #2c7744;
            margin-bottom: 20px;
        }

        .content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-5px);
            }
            60% {
                transform: translateY(-3px);
            }
        }

        /*hero section*/
         .hero-section {
        background-color: white;
        text-align: center;
        width: 100%;
        padding: 3rem 2rem;
        position: relative;
         background: linear-gradient(90deg, #439e60 0%, #60a6cf 100%);
        min-height: 5vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin-bottom: 6rem;
    }

    .main-title {
        font-size: 7rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 0.5rem;
        position: relative;
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .swasth, .sarthi {
        display: block;
        position: relative;
    }

    .swasth {
        color: #ffffff;
        animation: fadeInUp 1.2s ease-out forwards;
        opacity: 0;
        transform: translateY(50px);
    }

    .sarthi {
        color: #e8f5e9;
        animation: fadeInUp 1.2s ease-out 0.5s forwards;
        opacity: 0;
        transform: translateY(50px);
    }

    .swasth::after, .sarthi::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent, #ffffff, transparent);
        border-radius: 2px;
        animation: expandLine 1s ease-out 1.5s forwards;
    }

    .moving-text-container {
        position: relative;
        height: 60px;
        overflow: hidden;
        margin: 1rem auto;
        width: 80%;
        max-width: 900px;
    }

    .moving-text {
        position: absolute;
        white-space: nowrap;
        font-size: 1.2rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        animation: moveText 35s linear infinite;
        padding: 0 2rem;
    }

    .tagline {
        font-size: 1.5rem;
        opacity: 0;
        animation: fadeIn 1s ease-out 2s forwards;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 300;
        letter-spacing: 1px;
    }

    .health-icons {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
        opacity: 0;
        animation: fadeIn 1s ease-out 2.5s forwards;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.1rem;
        color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        cursor: pointer;
    }

    .icon-circle:hover {
        transform: translateY(-10px) scale(1.1);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .floating-element {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 15s infinite linear;
    }

    .floating-element:nth-child(1) {
        width: 80px;
        height: 80px;
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
        width: 120px;
        height: 120px;
        top: 70%;
        left: 80%;
        animation-delay: -5s;
    }

    .floating-element:nth-child(3) {
        width: 60px;
        height: 60px;
        top: 40%;
        left: 85%;
        animation-delay: -10s;
    }

    .floating-element:nth-child(4) {
        width: 100px;
        height: 100px;
        top: 80%;
        left: 15%;
        animation-delay: -2s;
    }

    .floating-element:nth-child(5) {
        width: 70px;
        height: 70px;
        top: 20%;
        left: 75%;
        animation-delay: -7s;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes expandLine {
        to {
            width: 80%;
        }
    }

    @keyframes moveText {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        25% {
            transform: translateY(-20px) rotate(5deg);
        }
        50% {
            transform: translateY(0) rotate(0deg);
        }
        75% {
            transform: translateY(20px) rotate(-5deg);
        }
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .main-title {
            font-size: 6rem;
        }
    }

    @media (max-width: 768px) {
        .main-title {
            font-size: 4rem;
        }
        
        .moving-text {
            font-size: 1.4rem;
        }
        
        .tagline {
            font-size: 1.2rem;
        }
        
        .health-icons {
            gap: 1.5rem;
        }
        
        .icon-circle {
            width: 60px;
            height: 60px;
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .main-title {
            font-size: 3rem;
        }
        
        .moving-text {
            font-size: 1.1rem;
        }
        
        .tagline {
            font-size: 1rem;
        }
        
        .health-icons {
            gap: 1rem;
        }
        
        .icon-circle {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }
    }

    /* Features */

     .features-section {
    width: 100%;
    margin-top: 9rem;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-items: center;
  }

  .feature-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.15);
  }

  .feature-image {
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .feature-content {
    padding: 20px;
    text-align: center;
  }

  .feature-content h3 {
    font-size: 1.15rem;
    color: #111;
    margin-bottom: 5px;
  }

  .feature-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Optional tinted backgrounds behind images */
  .blue-bg { background-color: #e7f3ff; }
  .green-bg { background-color: #e6f8ec; }
  .purple-bg { background-color: #f1eaff; }
  .gray-bg { background-color: #f6f6f6; }

  /* RESPONSIVE BREAKPOINTS */
  @media (max-width: 1024px) {
    .features-section {
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 25px;
    }
  }

  @media (max-width: 768px) {
    .features-section {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }

  @media (max-width: 600px) {
    .features-section {
      grid-template-columns: 1fr;
      gap: 20px;
      margin: 50px auto;
    }
    .feature-card {
      
      text-align: center;
    }
    .feature-content {
      padding: 15px;
    }
  }

   /* Premium */
   .premium-plans {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            margin: 8rem;
        }
        
        .section-header {
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #222;
        }
        
        .section-header p {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            color: #666;
        }
        
        .plans-container {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .plan-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 40px 30px;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .plan-name {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
        }
        
        .plan-price {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .price-period {
            font-size: 16px;
            color: #7f8c8d;
            margin-bottom: 30px;
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 40px;
            text-align: left;
            flex-grow: 1;
        }
        
        .plan-features li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            color: #555;
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .plan-button {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 14px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: background-color 0.3s ease;
            width: 100%;
            text-align: center;
            margin-top: auto;
        }
        
        .plan-button:hover {
            background-color: #2980b9;
        }
        
        /* Specific plan styling */
        .standard .plan-button {
            background-color: #3498db;
        }
        
        .standard .plan-button:hover {
            background-color: #2980b9;
        }
        
        .business .plan-button {
            background-color: #2ecc71;
        }
        
        .business .plan-button:hover {
            background-color: #27ae60;
        }
        
        .professional .plan-button {
            background-color: #9b59b6;
        }
        
        .professional .plan-button:hover {
            background-color: #8e44ad;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .plans-container {
                flex-direction: column;
                align-items: center;
            }
            
            .plan-card {
                width: 100%;
                max-width: 400px;
            }
        }
  /* About */
  .hero {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    align-items: center;
    justify-content: space-between;
    max-width: 85%;
    width: 100%;
    gap: 40px;
  }

  .hero-text {
    flex: 1 1 480px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .hero-text span {
    background: linear-gradient(90deg, #3b82f6, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-text p {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
  }

  .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s ease;
  }

  .btn-primary {
    background: linear-gradient(90deg, #22c55e, #3b82f6);
    color: #fff;
  }

  .btn-primary:hover {
    opacity: 0.9;
  }

  .btn-outline {
    border: 2px solid #cbd5e1;
    color: #1e293b;
    background: transparent;
  }

  .btn-outline:hover {
    background: #f1f5f9;
  }

  .trust {
    color: #94a3b8;
    font-size: 0.9rem;
  }

  .snapshot-card {
    flex: 1 1 360px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    padding: 24px 28px;
  }

  .snapshot-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #111827;
  }

  .snapshot-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .metric {
    text-align: center;
  }

  .metric .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
  }

  .metric .label {
    color: #64748b;
    font-size: 0.9rem;
  }

  .snapshot-tip {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }

    .hero-text h1 {
      font-size: 2rem;
    }

    .snapshot-card {
      width: 100%;
    }

    .buttons {
      justify-content: center;
    }
  }
  /* footer */
    footer {
      width: 100%;
            background: linear-gradient(135deg, #2c8563, #2a3a7c);
            color: #fff;
            padding: 50px;
            padding-bottom: 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #4CAF50;
        }
        
        .footer-column p {
            margin-bottom: 15px;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-column ul li a:hover {
            color: #4CAF50;
            padding-left: 5px;
        }
        
        .footer-column ul li a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: #4CAF50;
            transform: translateY(-3px);
        }
        
        /* Subscription Form */
        .subscription-form {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin-top: 10px;
        }
        
        .subscription-form h4 {
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }
        
        .form-group input:focus {
            outline: 2px solid #4CAF50;
        }
        
        .subscribe-btn {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .subscribe-btn:hover {
            background-color: #3d8b40;
            transform: translateY(-2px);
        }
        /* ai */
        
        /* ---------- POSITIONING ---------- */
  #ss-chat-toggle {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1ba46d, #1e839e);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,.25);
    z-index: 9998;
  }

  #ss-chat-wrapper {
    position: fixed;
    right: 24px;
    bottom: 94px;
    width: 360px;
    max-height: 70vh;
    background: #1b2b3f;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0,0,0,.35);
    display: none;
    flex-direction: column;
    z-index: 9999;
  }

  @media (max-width: 480px) {
    #ss-chat-wrapper {
      right: 8px;
      left: 8px;
      width: auto;
      max-height: 70vh;
    }
  }

  /* ---------- HEADER ---------- */
  #ss-chat-header {
    background: linear-gradient(135deg, #1ba46d, #1e839e);
    padding: 15px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
  }

  .ss-title {
    font-size: 0.95rem;
    font-weight: 600;
  }

  .ss-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
  }

  #ss-refresh-btn {
    border-radius: 999px;
    border: none;
    padding: 4px 10px;
    font-size: 0.75rem;
    cursor: pointer;
    background: rgba(0,0,0,0.18);
    color: #fff;
  }

  /* ---------- MESSAGES ---------- */
  #ss-chat-messages {
    flex: 1;
    background: #3b4f68;
    padding: 12px;
    overflow-y: auto;
  }

  .ss-message {
    max-width: 90%;
    margin-bottom: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: pre-wrap;
  }

  .ss-message.ss-bot {
    background: rgba(255,255,255,0.12);
    color: #f7faff;
    align-self: flex-start;
  }

  .ss-message.ss-user {
    background: #1f9c70;
    color: #fff;
    align-self: flex-end;
    margin-left: auto;
  }

  .ss-message strong {
    font-weight: 600;
  }

  /* ---------- FOOTER ---------- */
  #ss-chat-footer {
    background: #101b29;
    padding: 8px 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .ss-footer-top {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #a6b1c0;
  }

  #ss-attach-btn {
    border-radius: 50%;
    border: none;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    background: #223348;
    color: #e1e7f2;
  }

  #ss-file-info {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 240px;
  }

  .ss-footer-bottom {
    display: flex;
    gap: 8px;
    align-items: flex-end;
  }

  #ss-user-input {
    flex: 1;
    border-radius: 12px;
    border: none;
    resize: none;
    padding: 6px 8px;
    font-size: 0.85rem;
    max-height: 80px;
    background: #223348;
    color: #e0e7f5;
    outline: none;
  }

  #ss-user-input::placeholder {
    color: #7f8ca2;
  }

  #ss-send-btn {
    border-radius: 12px;
    border: none;
    padding: 7px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #0096ff;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.35);
  }

  #ss-send-btn:disabled {
    opacity: 0.6;
    cursor: default;
    box-shadow: none;
  }
        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-bottom p {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-links a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: #4CAF50;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }