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

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #f8fafc;
      color: #1e293b;
      line-height: 1.5;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #f1f5f9;
    }
    ::-webkit-scrollbar-thumb {
      background: #e67e22;
      border-radius: 10px;
    }

    :root {
      --primary: #e67e22;
      --primary-dark: #cf711f;
      --primary-light: #fef3e8;
      --primary-glow: rgba(230, 126, 34, 0.4);
      --secondary: #0f2f44;
      --secondary-dark: #0a1e2c;
      --accent: #6A0DAD;
      --success: #10b981;
      --warning: #f59e0b;
      --danger: #ef4444;
      --gray-50: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-300: #cbd5e1;
      --gray-400: #94a3b8;
      --gray-500: #64748b;
      --gray-600: #475569;
      --gray-700: #334155;
      --gray-800: #1e293b;
      --gray-900: #0f172a;
      --white: #ffffff;
      --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
      --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
      --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.25);
    }











    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }
    @keyframes float-reverse {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(20px); }
    }
    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
      50% { box-shadow: 0 0 0 20px rgba(230, 126, 34, 0); }
    }
    @keyframes shimmer {
      0% { background-position: -1000px 0; }
      100% { background-position: 1000px 0; }
    }
    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInUp {
      from { opacity: 0; transform: translateY(50px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes rotateIn {
      from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
      to { opacity: 1; transform: rotate(0) scale(1); }
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes ripple {
      0% { transform: scale(0); opacity: 1; }
      100% { transform: scale(4); opacity: 0; }
    }

    /* Animation Classes */
    .animate-float { animation: float 6s ease-in-out infinite; }
    .animate-float-reverse { animation: float-reverse 7s ease-in-out infinite; }
    .animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
    .animate-shimmer { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); background-size: 1000px 100%; animation: shimmer 2s infinite; }
    .animate-slide-left { animation: slideInLeft 0.8s ease forwards; }
    .animate-slide-right { animation: slideInRight 0.8s ease forwards; }
    .animate-slide-up { animation: slideInUp 0.8s ease forwards; }
    .animate-scale { animation: scaleIn 0.6s ease forwards; }
    .animate-rotate { animation: rotateIn 0.6s ease forwards; }
    .animate-gradient { background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary)); background-size: 200% 200%; animation: gradientShift 3s ease infinite; }





    /* ===== CONTINUOUS MOVING TOP BAR (RIGHT TO LEFT) ===== */
    .top-bar {
      background: linear-gradient(90deg, var(--secondary), var(--secondary-dark), var(--secondary));
      color: var(--white);
      overflow: hidden;
      position: relative;
      z-index: 1001;
      border-bottom: 2px solid var(--primary);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .ticker-container {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      padding: 12px 0;
      position: relative;
    }
    
    .ticker-content {
      display: inline-block;
      white-space: nowrap;
      animation: tickerScroll 25s linear infinite;
      font-size: 0.95rem;
      font-weight: 500;
    }
    
    .ticker-content span {
      display: inline-block;
      margin-right: 50px;
    }
    
    .ticker-content i {
      margin: 0 8px;
      color: var(--primary);
    }
    
    .ticker-content .highlight {
      color: var(--primary);
      font-weight: 800;
      margin: 0 5px;
    }
    
    .ticker-content .emergency {
      background: var(--danger);
      padding: 4px 12px;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 700;
      margin: 0 10px;
    }
    
    .ticker-content .offer {
      background: var(--success);
      padding: 4px 12px;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 700;
    }
    
    @keyframes tickerScroll {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    
    /* Pause animation on hover */
    .ticker-container:hover .ticker-content {
      animation-play-state: paused;
    }
    
    /* Add a gradient fade effect on edges */
    .top-bar::before,
    .top-bar::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 60px;
      z-index: 2;
      pointer-events: none;
    }
    
    .top-bar::before {
      left: 0;
      background: linear-gradient(90deg, var(--secondary), transparent);
    }
    
    .top-bar::after {
      right: 0;
      background: linear-gradient(270deg, var(--secondary), transparent);
    }




/* ============================================
       MODERN HEADER (WordPress Style)
       ============================================ */
    .site-header {
      background: var(--white);
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid var(--gray-200);
    }

    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 16px 0;
      gap: 20px;
    }


    /* Logo container */
.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo image */
.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* Text wrapper */
.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.2;
  margin: 0;
}

.logo-text p {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin: 2px 0 0 0;
}

    /* Logo Area 
    .logo-brand h1 {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.3px;
      background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      line-height: 1.2;
    }

    .logo-brand p {
      font-size: 0.7rem;
      font-weight: 500;
      color: var(--primary);
      letter-spacing: 0.5px;
      margin-top: 4px;
    }*/

    /* Navigation Menu */
    .main-nav {
      display: flex;
      align-items: center;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }

    .nav-menu li a {
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--gray-700);
      transition: 0.2s ease;
      position: relative;
      padding: 8px 0;
      cursor: pointer;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
      color: var(--primary);
    }

    .nav-menu li a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.25s ease;
      border-radius: 2px;
    }

    .nav-menu li a:hover::after,
    .nav-menu li a.active::after {
      width: 100%;
    }

    /* Header CTA */
    .header-cta {
      display: flex;
      align-items: center;
    }

    .whatsapp-float {
      /* background: var(--primary-light);*/
      padding: 10px 20px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 0.9rem;
       color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: 0.2s;
      text-decoration: none;
      background: #25D366;
     /* color: var(--white); */

      animation: pulse-glow 2s ease-in-out infinite;
    }

    .whatsapp-float:hover {
     /* background: var(--primary); */
      background: #20b85f;
      color: var(--white);
      transform: translateY(-2px);
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.6rem;
      color: var(--gray-700);
      cursor: pointer;
      padding: 8px;
      transition: 0.2s;
    }

    .mobile-menu-btn:hover {
      color: var(--primary);
    }

@media (min-width: 768px) {
  .logo-img {
    width: 55px;
    height: 55px;
  }
}


 /* ============================================
       FULL RESPONSIVE MEDIA QUERIES
       ============================================ */

    /* Mobile First - Small Phones (up to 480px) */
    @media (max-width: 480px) {
      .container {
        padding: 0 16px;
      }
      
      .logo-brand h1 {
        font-size: 1.2rem;
      }
      
      .logo-brand p {
        font-size: 0.6rem;
      }
      
      .phone-number span {
        display: none;
      }
      
      .phone-number {
        padding: 8px 12px;
      }
      
      .main-nav {
        position: relative;
      }
      
      .nav-menu {
        position: fixed;
        top: 110px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        box-shadow: var(--shadow-xl);
        padding: 32px 24px;
        gap: 1.5rem;
        transition: left 0.3s ease;
        z-index: 998;
        border-radius: 0 20px 20px 0;
      }
      
      .nav-menu.open {
        left: 0;
      }
      
      .mobile-menu-btn {
        display: block;
      }
    }


     /* ===== HERO SECTION WITH ANIMATIONS ===== */
    .hero {
      background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
      opacity: 0.3;
      animation: float 20s ease-in-out infinite;
    }
    .hero-grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 48px;
      position: relative;
      z-index: 1;
    }
    .hero-text {
      flex: 1.2;
    }
    .hero-badge {
      background: var(--primary-light);
      display: inline-block;
      padding: 8px 20px;
      border-radius: 40px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 1px;
      animation: pulse-glow 2s ease-in-out infinite;
    }
    .hero-text h2 {
      font-size: clamp(1.8rem, 5vw, 3.2rem);
      font-weight: 800;
      line-height: 1.2;
      color: var(--gray-800);
      margin-bottom: 20px;
    }
    .hero-text h2 span {
      color: var(--primary);
      position: relative;
      display: inline-block;
    }
    .hero-text h2 span::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 8px;
      background: var(--primary-light);
      z-index: -1;
    }
    .hero-text p {
      font-size: clamp(0.9rem, 3vw, 1.1rem);
      color: var(--gray-600);
      margin-bottom: 32px;
      max-width: 90%;
      animation: slideInLeft 0.8s ease;
    }
    .hero-image {
      flex: 1;
      background: linear-gradient(135deg, var(--primary-light), var(--white));
      border-radius: 32px;
      padding: 40px;
      text-align: center;
      box-shadow: var(--shadow-2xl);
      border: 1px solid var(--gray-200);
      animation: float 5s ease-in-out infinite;
    }
    .hero-image i {
      font-size: 6rem;
      color: var(--primary);
      animation: bounce 2s ease-in-out infinite;
    }


    
    /* ===== BUTTONS WITH RIPPLE EFFECT ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary);
      color: var(--white);
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 40px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 0.9rem;
      position: relative;
      overflow: hidden;
    }
    .btn::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }
    .btn:active::after {
      width: 300px;
      height: 300px;
    }
    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }
    .btn-outline:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }


     /* ===== RESPONSIVE MEDIA QUERIES ===== */
    @media (max-width: 768px) {
      .hero-grid { flex-direction: column; text-align: center; }
      .hero-text p { max-width: 100%; }
      .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
    }

    @media (max-width: 420px) {
      .hero-image {
        padding: 5px;
     
    }
    .hero-image img {
      height: 200px;
      width: 200px ;
    }
   
    }


/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin: 60px 0 16px;
  color: var(--gray-800);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 16px auto 0;
  border-radius: 3px;
}

.section-sub {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 48px;
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}



    /* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 40px 0;
}
.product-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 280px; /* control size */
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.35s ease;
  background: var(--secondary-dark);
}

/* FULL BACKGROUND IMAGE */
.product-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  inset: 0;
  object-fit: cover;
  transition: transform 0.6s ease;
}


/* DARK OVERLAY */
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* adjust darkness */
  z-index: 2;
}

/* TEXT CONTENT */
.product-card h3,
.product-card p,
.product-card .tag {
  position: relative;
  z-index: 3;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.tag {
  background: #fff;
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
}


/* OVERLAY (BRAND GRADIENT) */
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    to top,
    rgba(10, 30, 44, 0.95),   /* secondary-dark */
    rgba(15, 47, 68, 0.75),   /* secondary */
    rgba(106, 13, 173, 0.35)  /* accent hint */
  );
}

/* CONTENT */
.product-card .content {
  position: relative;
  z-index: 3;
  color: var(--white);
}

/* TITLE */
.product-card h3 {
  
  margin-bottom: 6px;
   

 font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.3px;
 /* background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);  */
 background: linear-gradient(
    135deg,
    #ffffff 0%,
    #e67e22 40%,
    #6A0DAD 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.2;
 

}

/* TEXT */
.product-card p {
  font-size: 0.75rem;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--primary);
}






/* HOVER MAGIC */
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* IMAGE ZOOM */
.product-card:hover img {
  transform: scale(1.12);
}

/* ACCENT GLOW BORDER */
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  z-index: 4;
  transition: all 0.3s ease;
}

.product-card:hover::after {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(106, 13, 173, 0.5);
}






/* TAG */
.tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .product-card {
    height: 240px;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .product-card p {
    font-size: 0.7rem;
  }
}









/* ===== RATE TABLE (Fully Responsive) ===== */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.rate-table th {
  background: var(--secondary);
  color: var(--white);
  padding: 14px 12px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.rate-table td {
  padding: 12px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.category-row td {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--primary);
}

.rate-table tr:hover {
  background-color: var(--gray-50);
}

.rate-table small {
  color: var(--gray-500);
  font-size: 0.7rem;
  display: block;
}

/* Mobile Table Improvements */
@media (max-width: 768px) {
  .rate-table th,
  .rate-table td {
    padding: 10px 8px;
    font-size: 0.75rem;
  }
  
  .category-row td {
    font-size: 0.8rem;
  }
}






/* ===== CALCULATOR SECTION ===== */
.calc-section {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  margin: 40px 0;
}

.calc-section h3 {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  margin-bottom: 24px;
}

.calc-box {
  background: var(--white);
  color: var(--gray-800);
  display: inline-block;
  padding: 32px;
  border-radius: 24px;
  width: 90%;
  max-width: 450px;
  box-shadow: var(--shadow-xl);
}

.calc-box label {
  font-weight: 600;
  display: block;
  text-align: left;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.calc-box select {
  width: 100%;
  padding: 12px 16px;
  margin: 8px 0 20px;
  border-radius: 12px;
  border: 1px solid var(--gray-300);
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--white);
  cursor: pointer;
}

.result {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  padding: 12px;
  background: var(--primary-light);
  border-radius: 12px;
}

.btn-calc {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  width: 100%;
}

.btn-calc:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}



 /* ===== CONTACT FORM WITH MATH CAPTCHA ===== */
    .contact-section {
      background: var(--white);
      border-radius: 32px;
      margin: 60px 0;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }
    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
    }
    .contact-details {
      flex: 1;
      background: var(--secondary);
      padding: 48px 40px;
      color: var(--white);
    }
    .contact-details h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
    }
    .info-line {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }
    .info-line i {
      width: 32px;
      font-size: 1.2rem;
      color: var(--primary);
    }
    .social-links {
      margin-top: 40px;
      display: flex;
      gap: 16px;
    }
    .social-links a {
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
      text-decoration: none;
    }
    .social-links a:hover {
      background: var(--primary);
      transform: scale(1.05);
    }
    .contact-form {
      flex: 1;
      padding: 48px 40px;
      background: var(--white);
    }
    .contact-form h4 {
      font-size: 1.5rem;
      margin-bottom: 24px;
      color: var(--gray-800);
    }
    .form-group {
      margin-bottom: 20px;
    }
    input, select, textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid var(--gray-300);
      border-radius: 16px;
      font-family: inherit;
      font-size: 0.9rem;
      transition: all 0.2s;
    }
    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
    }

    /* MATH CAPTCHA STYLES */
    .captcha-container {
      background: var(--gray-50);
      border-radius: 16px;
      padding: 16px;
      margin: 20px 0;
      border: 1px solid var(--gray-200);
    }
    .captcha-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 12px;
    }
    .captcha-math {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--secondary);
      background: var(--white);
      padding: 12px 20px;
      border-radius: 12px;
      font-family: monospace;
      font-size: 1.3rem;
    }
    .captcha-input {
      flex: 1;
      min-width: 120px;
      padding: 12px 16px;
      border: 2px solid var(--gray-300);
      border-radius: 12px;
      font-size: 1rem;
      text-align: center;
    }
    .captcha-input:focus {
      border-color: var(--primary);
    }
    .captcha-refresh {
      background: var(--gray-200);
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.2s;
      color: var(--gray-600);
    }
    .captcha-refresh:hover {
      background: var(--primary);
      color: var(--white);
      transform: rotate(180deg);
    }
    .captcha-message {
      font-size: 0.75rem;
      margin-top: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .captcha-message i {
      font-size: 0.7rem;
    }
    .captcha-message.error {
      color: var(--danger);
    }
    .captcha-message.success {
      color: var(--success);
    }
    .captcha-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: 20px;
      background: var(--gray-200);
    }
    .captcha-status.verified {
      background: var(--success);
      color: white;
    }
    button[type="submit"] {
      background: var(--primary);
      border: none;
      padding: 14px 28px;
      border-radius: 40px;
      font-weight: 700;
      color: var(--white);
      width: 100%;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.2s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    button[type="submit"]:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }
    button[type="submit"]:disabled {
      background: var(--gray-400);
      cursor: not-allowed;
      transform: none;
    }

    /* Toast Notification */
    .toast-notification {
      position: fixed;
      bottom: 100px;
      right: 30px;
      background: var(--secondary);
      color: white;
      padding: 16px 24px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 1000;
      transform: translateX(400px);
      transition: transform 0.3s ease;
      box-shadow: var(--shadow-xl);
    }
    .toast-notification.show {
      transform: translateX(0);
    }
    .toast-notification.success {
      background: var(--success);
    }
    .toast-notification.error {
      background: var(--danger);
    }


     /* Footer */
    .premium-footer {
      background: linear-gradient(135deg, var(--gray-900), var(--secondary-dark));
      color: var(--gray-300);
      padding: 60px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-col h4 {
      color: var(--white);
      margin-bottom: 20px;
    }
    .footer-col ul {
      list-style: none;
    }
    .footer-col ul li {
      margin-bottom: 12px;
    }
    .footer-col ul li a {
      color: var(--gray-400);
      text-decoration: none;
      transition: 0.3s;
    }
    .footer-col ul li a:hover {
      color: var(--primary);
      padding-left: 5px;
    }
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 20px;
    }
    .social-icons a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: 0.3s;
    }
    .social-icons a:hover {
      background: var(--primary);
      transform: translateY(-5px);
    }
    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

 
/* Chat Button */
.chat-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--secondary);
    border: none;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(15, 4, 175, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-btn:hover {
    background: var(--secondary-dark);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 15, 176, 0.6);
}
.chat-btn.rotate {
    transform: rotate(180deg) scale(1.1);
}
/* Chat Panel */
.chat-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 340px;
    max-height: 450px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 999;
    border: 1px solid var(--border);
}
.chat-panel.active {
    display: flex;
    animation: chatSlideUp 0.3s ease;
}
@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-header {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
}
.chat-header span {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
    font-weight: 500;
}
.chat-content {
    padding: 15px 20px;
    background: var(--white);
    flex: 1;
    overflow-y: auto;
}
.section {
    background: var(--light);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin: 12px 0;
    padding: 15px 18px;
    transition: transform 0.3s ease;
}
.section:hover {
    transform: translateY(-2px);
}
.section h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 600; }

.section p {
    margin: 8px 0;
    color: var(--text-dark);
    font-size: 14px;
}
.faq-item {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 10px;
    padding: 12px 15px;
    margin: 8px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}
.faq-item:hover {
    background: var(--light);
    transform: translateX(5px);
    border-color: var(--gray-800);
}
.faq-item .icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    margin-right: 12px;
    font-weight: 600;
}
.faq-item .text {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}
.icon.e { background: var(--success); }
.icon.p { background: var(--secondary); }
.icon.o { background: var(--accent); }
.icon.a { background: var( --gray-900); }
 
.chat-msg {
  margin: 10px 0;
  padding: 10px 14px;
  border-radius: 10px;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.4;
}
.chat-msg.user {
  background: var(--light);
  align-self: flex-end;
  margin-left: auto;
  color: var(--text-dark);
}
.chat-msg.bot {
  background: var(--gray-800);
  color: white;
  align-self: flex-start;
}


@media (max-width: 320px) {

    /* Chat Button */
    .chat-btn {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
        box-shadow: 0 4px 15px rgba(245,130,32,0.35);
    }

    /* Chat Panel */
    .chat-panel {
        bottom: 80px;
        right: 10px;
        width: 95%;            /* fits the 318px screen */
        max-height: 380px;     /* prevents overflow */
        border-radius: 12px;
    }

    .chat-header {
        padding: 15px;
        font-size: 16px;
    }

    .chat-header span {
        font-size: 12px;
    }

    .chat-content {
        padding: 12px 14px;
    }

    /* Sections inside chat */
    .section {
        padding: 12px 15px;
        margin: 10px 0;
    }

    .section h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .section p {
        font-size: 13px;
    }

    /* FAQ Items */
    .faq-item {
        padding: 10px 12px;
        margin: 6px 0;
    }

    .faq-item .icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
        margin-right: 10px;
        line-height: 24px;
    }

    .faq-item .text {
        font-size: 13px;
    }

    /* Messages */
    .chat-msg {
        font-size: 13px;
        padding: 8px 10px;
        max-width: 85%;
    }
}






