
    /* Custom styles following Default Design Guidelines */
    :root {
      --color-bg: #ffffff;
      --color-text-primary: #111827;
      --color-text-secondary: #6b7280;
      --color-accent-bg: #000000;
      --color-accent-text: #ffffff;
      --border-radius: 0.75rem;
      --max-width: 1200px;
      --transition-speed: 0.3s;
    }

    body {
      background-color: var(--color-bg);
      color: var(--color-text-secondary);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
      font-size: 18px;
      line-height: 1.6;
      margin: 0;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      -webkit-text-size-adjust: 100%;
    }

    /* Container max width */
    .container {
      max-width: var(--max-width);
    }

    /* Reset link styles */
    a {
      text-decoration: none;
      color: inherit;
      transition: color var(--transition-speed) ease;
    }
    a:hover,
    a:focus {
      color: var(--color-text-primary);
      outline: none;
    }


    /* Hero Section */
    .hero {
      padding-top: 6rem;
      padding-bottom: 5rem;
      text-align: center;
      color: var(--color-text-primary);
      user-select: text;
    }

    .hero h1 {
      font-size: 3.75rem;
      font-weight: 800;
      line-height: 1.05;
      margin-bottom: 1rem;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero p {
      font-size: 1.25rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 3rem;
      color: var(--color-text-secondary);
    }

    /* Buttons */
    .btn-primary {
      background-color: var(--color-accent-bg);
      border: none;
      font-weight: 700;
      padding: 0.85rem 3rem;
      border-radius: var(--border-radius);
      font-size: 1.1rem;
      transition: background-color var(--transition-speed) ease,
        transform var(--transition-speed) ease;
      user-select: none;
      color: var(--color-accent-text);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      background-color: #222222;
      outline: none;
      transform: scale(1.05);
      box-shadow: 0 7px 25px rgba(0, 0, 0, 0.25);
    }

    .btn-secondary {
      background-color: #444444;
      color: var(--color-accent-text);
      border: none;
      font-weight: 700;
      padding: 0.85rem 3rem;
      border-radius: var(--border-radius);
      font-size: 1.1rem;
      transition: background-color var(--transition-speed) ease,
        transform var(--transition-speed) ease;
      user-select: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }
    .btn-secondary:hover,
    .btn-secondary:focus {
      background-color: #222222;
      color: var(--color-accent-text);
      outline: none;
      transform: scale(1.05);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    }

    .text-center{
    margin-bottom: 3.5rem;
    }
    /* Section Titles */
    section h2.section-title {
      font-weight: 700;
      font-size: 2.5rem;
      color: var(--color-text-primary);
      margin-top: 2.5rem;
      margin-bottom: 1.5rem;
      text-align: center;
      user-select: text;
    }

    /* Cards container */
    .cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
      margin-bottom: 6rem;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    /* Cards */
    .card {
      background-color: #f9fafb;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
      border-radius: var(--border-radius);
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: box-shadow var(--transition-speed) ease,
        transform var(--transition-speed) ease;
      user-select: text;
      cursor: default;
    }
    .card:hover,
    .card:focus-within {
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
      transform: translateY(-6px);
      outline: none;
    }
    .card h3 {
      font-weight: 700;
      font-size: 1.75rem;
      color: var(--color-text-primary);
      margin-bottom: 1.5rem;
      user-select: text;
    }
    .card p {
      color: var(--color-text-secondary);
      flex-grow: 1;
      margin-bottom: 2rem;
      font-size: 1rem;
      user-select: text;
      line-height: 1.5;
    }

    /* Contact form */
    form#contactForm {
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    form#contactForm label {
      font-weight: 600;
      color: var(--color-text-primary);
      user-select: none;
      font-size: 1rem;
    }
    form#contactForm .form-control {
      border-radius: var(--border-radius);
      border-color: #d1d5db;
      transition: border-color var(--transition-speed) ease;
      user-select: text;
      font-size: 1rem;
      padding: 0.75rem 1rem;
    }
    form#contactForm .form-control:focus {
      border-color: var(--color-accent-bg);
      box-shadow: 0 0 10px #00000044;
      outline: none;
    }

    /* Response message */
    #responseMessage {
      font-weight: 600;
      font-size: 1rem;
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 3rem 1rem;
      font-size: 0.9rem;
      color: var(--color-text-secondary);
      user-select: none;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .hero h1 {
        font-size: 2.75rem;
      }
      .cards-container {
        grid-template-columns: 1fr;
      }
    }



/* NAVBAR CSS  */

.navbar {
  transition: top 0.3s ease-in-out;
  /* background-color:#2F4156; */
}

.navbar-hidden {
  top: -80px !important;
}
.nav-item .nav-link{
  color: #2F4156;
  margin-left: 1rem;
  
}

/* Add in <style> tag or app.css */
.navbar-brand img {
  height: 60px !important;
  max-height: 60px  !important;
}
.navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}


/* Chatbot CSS */

#chatbot-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

#chatbot-window {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  max-width: 90vw;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  padding: 0;
  overflow: hidden;
  font-family: inherit;
}
#chatbot-header {
  background: #2F4156;
  color: #fff;
  padding: .3rem;
  font-weight: bold;
  text-align: center;
}
#chatbot-messages {
  height: 320px;
  overflow-y: auto;
  padding: 1rem;
  background: #f8f9fa;
  font-size: 0.95rem;
}
.chatbot-msg {
  margin-bottom: 0.7rem;
  display: flex;
}
.chatbot-msg.bot {
  justify-content: flex-start;
}
.chatbot-msg.user {
  justify-content: flex-end;
}
.chatbot-msg .bubble {
  padding: 0.6rem 1rem;
  border-radius: 16px;
  max-width: 80%;
  word-break: break-word;
}
.chatbot-msg.bot .bubble {
  background: #e9ecef;
  color: #333;
  border-bottom-left-radius: 4px;
}
.chatbot-msg.user .bubble {
  background: #567C8D;
  color: #fff;
  border-bottom-right-radius: 4px;
}
#chatbot-input-area {
  display: flex;
  border-top: 1px solid #eee;
  background: #fff;
}
#chatbot-input {
  flex: 1;
  border: none;
  padding: 0.7rem;
  font-size: 1rem;
  outline: none;
  background: transparent;
}
#chatbot-send {
  background: none;
  border: none;
  color: #2F4156;
  font-size: 1.5rem;
  padding: 0 1rem;
  cursor: pointer;
}


.blue{
  background: #3652D9;
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}


.master{
  color:black;
  float:right;
}

@media (max-width:900px){
  .master{
    display:none
  }
}

.chatbot-msg.bot.typing .bubble {
  font-style: italic;
  opacity: 0.6;
}


    /* Fixed position toast in top-right corner */
    #responseToast {
      position: fixed;
      top: 1rem;
      right: 1rem;
      z-index: 1080; /* Above modal and nav */
    }


/* footer CSS  */
    @media (max-width: 640px) {
      footer > div {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      nav[aria-label="Footer legal navigation"] {
        justify-content: center;
      }
      nav[aria-label="Footer legal navigation"] a {
        font-size: 1rem;
      }
      div[aria-label="Social media links"] {
        justify-content: center;
        margin-top: 1rem;
      }
    }


    /* Terms and Conditions */

    /* Add this CSS to your stylesheet */
#modal {
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
  /* Modal Overlay */
  #modal {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    font-family: 'Segoe UI', sans-serif;
  }

  /* Centering Wrapper */
  #modal .modal-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  /* Modal Content */
  #modal-content {
    background: #fff;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    color: #2F4156;
  }

  #modal-content h2 {
    margin-top: 0;
    font-size: 1.75rem;
    color: #2F4156;
  }

  #modal-content p {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  /* Close Button */
  #modal-content button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #2F4156;
    cursor: pointer;
  }

  /* Responsive Fix */
  @media (max-width: 768px) {
    #modal-content {
      padding: 1.5rem;
    }
    #modal-content h2 {
      font-size: 1.5rem;
    }
  }

/* Add these styles to your existing CSS file or inside a scoped style block */

/* Import Inter font once globally if not already imported */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800&display=swap'); */

.paco-component {
  /* Scope root for the PACO component to prevent conflicts */
  font-family: 'Inter', sans-serif;
  color: #6b7280;
  background: #fff;
  padding: 2rem 1rem;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .paco-component {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 960px;
    padding: 4rem 3rem;
  }
}

.paco-container {
  display: contents; /* container inside component uses parent grid */
}

.paco-headline-section {
  user-select: none;
}

.paco-headline {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #111827;
  letter-spacing: 0.04em;
  margin: 0;
}

.paco-headline small {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: #6b7280;
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: monospace;
}

.paco-headline-icon {
  margin-top: 1.5rem;
  color: #4f46e5;
  width: 56px;
  height: 56px;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: currentColor;
  user-select: none;
}

.paco-acrostic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: #374151;
}

.paco-acrostic-item {
  display: flex;
  align-items: flex-start;
  font-weight: 600;
  font-size: 1.15rem;
  position: relative;
  cursor: default;
  padding-left: 2.5rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.paco-acrostic-item:hover {
  color: #4f46e5;
}

.paco-acrostic-letter {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.4rem;
  font-weight: 800;
  color: #4f46e5;
  font-family: 'Inter', monospace;
  line-height: 1;
  user-select: none;
  transition: color 0.3s ease;
}

.paco-acrostic-item:hover .paco-acrostic-letter {
  color: #4338ca;
}

/* Animate fade-up on load (optional) */
.paco-acrostic-item {
  opacity: 0;
  transform: translateY(12px);
  animation-fill-mode: forwards;
  animation-name: paco-fadeUp;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.paco-acrostic-item:nth-child(1) {
  animation-delay: 0.2s;
}
.paco-acrostic-item:nth-child(2) {
  animation-delay: 0.4s;
}
.paco-acrostic-item:nth-child(3) {
  animation-delay: 0.6s;
}
.paco-acrostic-item:nth-child(4) {
  animation-delay: 0.8s;
}
.paco-acrostic-item:nth-child(5) {
  animation-delay: 1s;
}
.paco-acrostic-item:nth-child(6) {
  animation-delay: 1.2s;
}

@keyframes paco-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
