/* ========== BASIC RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* ========== HEADER ========== */
.main-header {
    width: 100%;
    background-color: #e7e7e7;
    border-bottom: 2px solid #ccc;
    position: sticky;
    top: 0;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
     z-index: 999;
}



.popup-overlay {
  display: none; 
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 20px;
  max-width: 400px;
  margin: 100px auto;
  position: relative;
  border-radius: 8px;
}




.header-content {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.logo img {
    height: 30px;
}

.apply-btn {
    background: linear-gradient(90deg, #ed3024 0%, #ff6600 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    animation: shake 1.5s infinite;
    transition: transform 0.2s ease-in-out;
}

.apply-btn:hover {
    transform: scale(1.03);
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-3px);
    }

    40%,
    80% {
        transform: translateX(3px);
    }
}

/* ========== POPUP FORM STYLES ========== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-box {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    border: 2px solid #ed3024;
    position: relative;
}

.popup-box h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.popup-box input[type="text"],
.popup-box input[type="email"],
.popup-box input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-box .consent {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.popup-box .consent input {
    margin-right: 8px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #ed3024 0%, #ff6600 100%);
    border: none;
    padding: 12px;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.submit-btn:hover {
    transform: scale(1.03);
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #000;
}

@media (max-width: 768px) {
    .header-content {
        width: 90% !important;

    }
}

/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    height: 500px;
}

/* Banner Background Image */
.banner-background {
    background-image: url('https://online-manipal.in/online-mba/images/manipal__Banner.webp');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 600px;
}

/* Form Over Banner */
.banner-form-container {
    position: absolute;
    top: 59%;
    right: 5%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid #ed3024;
    border-radius: 10px;
}

.banner-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.banner-form h4 {
    color: #f16622;
}

.banner-input,
.banner-button {
    padding: 12px;
    font-size: 16px;
}

.banner-button {
    width: 100%;
    background: linear-gradient(90deg, #ed3024 0%, #ff6600 100%);
    border: none;
    padding: 12px;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-section {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .banner-background {
        background-image: url('images/MmanipalBanner.webp');
        height: 250px;
    }

    .banner-form-container {
        position: static;
        transform: none;
        max-width: 100%;
        padding: 20px;
        background: #fff;
        box-shadow: none;
        margin-top: 20px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* slider */

.rankings-accreditations-section {
  background-color: rgb(225, 229, 248);
  padding: 40px 0;
  text-align: center;
}

.section-heading {
  color: #03045e;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Remove bg and shadow from slides */
.swiper-slide {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
  padding: 0;
  text-align: center;
}

.swiper-slide img {
  max-width: 100%;
  height: auto;
  /* margin-bottom: 10px; */
  display: inline-block;
  width: 223px;
}

.swiper-slide p {
  font-size: 16px;
  font-weight: 500;
  color: #03045e;
  margin: 0;
}
/* program */

.programsection {
    padding: 30px 0;
    background: #f8f8f8;
}

.tab-btn {
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: #ff6600;
    color: #fff;
}

.tab-btn:hover {
    transform: scale(1.05);
    background-color: #ffcccc;
}

.card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 17px;
    width: 30%;
    min-width: 280px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeIn 0.5s ease forwards;
}

.card img {
    width: 100%;
    /*height: 180px;*/
    object-fit: cover;
}

.card h3 {
    background-color:#F3FAFF;
    color: #002049;
    /*text-align: center;*/
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #ff6600;
    font-weight:900;
}

.card p {
    padding: 10px;
    margin: 0;
    font-size: 16px;
    /*text-align: center;*/
    color:#002049;
    font-weight:700;
}
.card span{
    padding: 10px;
    margin: 0;
    font-size: 16px;
    /* text-align: center; */
    color: #002049;
    gap: 17px;
    display: flex;
    margin-top:-5px;
}
.card li {
    padding: 10px;
    margin: 0;
    font-size: 16px;
    color: #002049;
    margin-top:-5px;
}

.card .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 10px 10px; */
    font-size: 14px;
    padding: 13px 27px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.card .infolearn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 10px 10px; */
    font-size: 14px;
    padding: 13px 27px;
    background-color: #FEE8DA;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    /*margin-top:12px;*/
}

.card .info i {
    margin-right: 5px;
}

.card .infolearn i {
    margin-right: 5px;
}

.card button {
    margin: 8px 10px 15px;
    padding: 10px;
    background-color: #F06C1F;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width:33%;
}

.card:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.card button:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .card {
        width: 100%;
    }
}

/* advantage section */
/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.advantage-section {
    background-color: rgba(225, 229, 248);
    padding: 50px 20px;
    text-align: center;
}

.advantage-section h4 {
    color: #03045e;
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.advantage-section hr {
    width: 80px;
    margin: 0 auto 30px;
    border: 1px solid #03045e;
}

.advantage-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.adv-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.adv-card i {
    font-size: 30px;
    color: #03045e;
    margin-bottom: 15px;
    border: 1px solid #03045e;
    display: inline-block;
    padding: 15px;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
}

.adv-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #03045e;
}

.adv-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* Responsive animation on scroll */
.adv-card:nth-child(1) {
    animation-delay: 0.1s;
}

.adv-card:nth-child(2) {
    animation-delay: 0.2s;
}

.adv-card:nth-child(3) {
    animation-delay: 0.3s;
}

.adv-card:nth-child(4) {
    animation-delay: 0.4s;
}
/* hiring section */
.hiring-section {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.hiring-section h2 {
  font-size: 28px;
  color: #03045e;
  font-weight: 700;
  margin-bottom: 30px;
}

.hiring-image-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.hiring-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.hiring-image:hover {
  transform: scale(1.02);
}
.finance-section {
  background-color: rgba(225, 229, 248, 1);
  padding: 60px 20px;
}

.finance-container {
  width: 80%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.finance-box {
  flex: 1 1 45%;
  background: white;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: left;
  animation: fadeInUp 1s ease both;
}

.finance-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.finance-icon {
  font-size: 40px;
  color: #03045e;
  margin-bottom: 15px;
}

.finance-box h3 {
  font-size: 20px;
  color: #03045e;
  margin-bottom: 10px;
}

.finance-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .finance-container {
    flex-direction: column;
    width: 90%;
  }
  .finance-box {
    flex: 1 1 100%;
  }
  .programsection{
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .tabs{
    display: flex;
  }
}
/* Academic section */
.global-impact-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.impact-heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
}

.impact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-column {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.impact-image {
  flex: 1 1 400px;
  text-align: center;
}

.impact-image img {
  max-width: 100%;
  height: auto;
}

.impact-item h3 {
  font-size: 28px;
  color: #03045e;
  margin: 0;
  font-weight: bold;
  text-align: left;
}

.impact-item p {
  font-size: 16px;
  color: #333;
  margin: 5px 0 0;
  line-height: 1.5;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .impact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .impact-column {
    width: 100%;
    margin-bottom: 20px;
  }

  .impact-image {
    width: 80%;
    max-width: 400px;
    margin: 0 auto 20px auto; /* center the image */
    display: block;
    order: 2;
  }

  .impact-column.left {
    order: 1;
  }

  .impact-column.right {
    order: 3;
  }
  .impact-image{
    flex: auto;
  }
}
/* Admission Process */
.section-heading {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #222;
}

.steps-wrapper {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 50px;
  flex-wrap: wrap;
}

/* Dashed line between steps */
.step-connector {
  content: "";
  position: absolute;
  top: 20px;
  left: 11%;
  right: 11%;
  height: 2px;
  border-top: 2px dashed #ccc;
  z-index: 0;
}

/* Each step */
.step-box {
  text-align: center;
  width: 22%;
  min-width: 200px;
  position: relative;
  z-index: 1;
}

.step-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-badge {
  padding: 8px 16px;
  color: #fff;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  z-index: 2;
  position: relative;
}

.step1 { background-color: #00bcd4; }
.step2 { background-color: #4caf50; }
.step3 { background-color: #ffc107; color: #000; }
.step4 { background-color: #2196f3; }

.vertical-line {
  width: 2px;
  height: 40px;
  background: #ddd;
  margin-top: 5px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    border-bottom: none;
    padding-bottom: 0;
  }

  .step-connector {
    display: none;
  }

  .step-box {
    width: 100%;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
  }
}
.admission-button-wrapper {
  text-align: center;
  margin: 40px 0;
}

.admission-button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: linear-gradient(90deg, #ed3024 0%, #ff6600 100%);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseGlow 2s infinite;
}

/* Hover Effects */
.admission-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.6);
}

/* Pulse Animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
  }
}
/* Prestigious Degree */
.prestigious-degree-section {
  background-color: #F48945;
      padding: 36px 20px 0 18px;
  color: white;
}

.prestigious-degree-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.left-content {
  flex: 1 1 45%;
}

.left-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.left-content p {
  font-size: 18px;
  line-height: 1.6;
}

.right-content {
  flex: 1 1 45%;
  text-align: center;
}

.right-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .prestigious-degree-section .container {
    flex-direction: column;
    text-align: left;
  }

  .right-content {
    margin-top: 30px;
    text-align: left;
  }
}
/* footer */
.site-footer {
  background-color: #ca2128;
  color: white;
  text-align: center;
  padding: 15px 20px;
  font-size: 16px;
  margin-top: 0;  /* ensure no gap from above section */
  box-shadow: 0 -5px 10px rgba(0,0,0,0.1); /* subtle shadow to separate */
  font-family: 'Arial', sans-serif;
}

     /*chatbot css*/

        .send-box button{
    align-items: center;
    /*display: flex ;*/
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    /*background: none;*/
    text-decoration: none;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 15px;
    cursor:pointer;
    
    background: #F16622;
    border-radius: 16px;
    width: 89%;
 
}

.send-box button:hover{
    background-color:black;
}



.send-box {
    
    padding: 5px;
    /*background: #F16622;*/
    border-radius: 16px;
    width: 89%;
    margin: auto;
}

.chat-icon img{
    width:42px;
}





    .chat-icon {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background-color: #F16622;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      z-index: 1000;
    }

    .chat-icon:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .chat-popup {
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 350px;
      height: 455px;
      display: none;
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      z-index: 1000;
    }

    .chat-header {
      background-color: #F16622;
      color: white;
      padding: 15px;
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      position: relative;
    }

    .chat-header .close-btn {
      position: absolute;
      right: 15px;
      top: 15px;
      cursor: pointer;
      font-size: 20px;
      transition: color 0.2s ease;
    }

    .chat-header .close-btn:hover {
      color: #f0f0f0;
    }

    .chat-header .chat-icon-top {
         position: absolute;
    left: 15px;
    top: 10px;
    width: 35px;
    height: 35px;
    background:white;
    border-radius: 50%;
    }

    .chat-body {
      height: 330px;
      overflow-y: auto;
      padding: 15px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      background-color: #f9f9f9;
      border-top: 2px solid #f0f0f0;
    }

    .chat-message {
      padding: 12px 15px;
      border-radius: 20px;
      max-width: 75%;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.4;
      word-wrap: break-word;
    }

    .bot-message {
      background-color: #e8e8e8;
      align-self: flex-start;
      color: #333;
    }

    .user-message {
      background-color: #F16622;
      color: white;
      align-self: flex-end;
    }

    .chat-footer {
      padding: 15px;
      display: flex;
      gap: 10px;
      background-color: white;
      border-top: 2px solid #f0f0f0;
    }

    .chat-footer input {
      flex: 1;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s ease;
    }

    .chat-footer input:focus {
      border-color: #F16622;
    }

    .chat-footer button {
      padding: 10px 16px;
      background-color: #F16622;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .chat-footer button:hover {
      background-color: #a51824;
      transform: scale(1.05);
    }

    .success-message {
      text-align: center;
      font-size: 16px;
      color: #28a745;
      margin-top: 15px;
      font-weight: 700;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-thumb {
      background: #F16622;
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #a51824;
    }


    /* Mobile responsiveness */
    @media (max-width: 600px) {
        
        .chat-icon img{
    width:30px;
}

            .chatbot-container {
                width: 100%;
                bottom: 10px;
                right: 10px;
            }

            .chatbot-header {
                font-size: 14px;
            }

            .chatbox {
                height: 300px;
            }

            .message {
                max-width: 90%;
            }

            .input-container input {
                font-size: 14px;
            }

            .input-container button {
                font-size: 14px;
                padding: 7px 12px;
            }
          
        }

        @media (max-width: 400px) {
            .chatbot-header {
                font-size: 12px;
            }

            .message {
                max-width: 95%;
            }
        }
        
       /* Mobile responsiveness */
@media (max-width: 600px) {
  .chat-popup {
         width: 68%;
        bottom: 10px;
        right: 18px;
        height: 381px;
  }

  .chat-header {
    font-size: 16px;
    padding: 19px;
  }

  .chat-body {
    padding: 10px;
    gap: 10px;
    height: 270px;
    font-size: 14px;
  }

  .chat-footer {
    padding: 10px;
    display: flex;
    gap: 10px;
    justify-content: space-between; /* Added this to ensure button and input stay on one line */
  }

  .chat-footer input {
    flex: 1;
    font-size: 14px;
    padding: 8px;
  }

  .chat-footer button {
    font-size: 14px;
    padding: 8px 12px;
    background-color: #F16622;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .chat-footer button:hover {
    background-color: #a51824;
    transform: scale(1.05);
  }

  .chat-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .chat-header .close-btn {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .chat-popup {
         width: 253px !important;
        height: 338px;
  }

  .chat-header {
    font-size: 14px;
    padding: 19px;
  }

  .chat-body {
    height: 230px;
  }

  .chat-footer input {
    font-size: 13px;
    padding: 7px;
  }

  .chat-footer button {
    font-size: 13px;
    padding: 7px 10px;
  }

  .chat-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .chat-header .close-btn {
    font-size: 16px;
  }
}
 .options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  .option-circle {
    padding: 10px 15px;
    background: #ff4d4d;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
  }
  .option-circle:hover {
    background: #cc0000;
  }
 
 /* Chat Wrapper at Bottom-Right */
.chat-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Welcome Message */
.welcome-box {
  background: #e9ecef;
  border-radius: 10px;
  padding: 10px 15px;
  margin-bottom: 77px;
  font-size: 14px;
  color: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  display: none;
  max-width: 250px;
  text-align: center;
}

/* Shake animation */
@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}
.shake {
  animation: shake 1s ease-in-out 3;
}

 /*Chat Icon */
.chat-icon {
  /*position: relative;*/
  /*width: 60px;*/
  /*height: 60px;*/
  cursor: pointer;
  
}

.chat-icon img {
  /*width: 100%;*/
  height: auto;
}

/* Notification Bubble */
.chat-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  animation: pop 0.3s ease-out;
}

/* Notification Pop-in */
@keyframes pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* Chat popup box styling (basic) */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  z-index: 9999;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

 
 /*chatbot css ends*/

.disclaimer{
    width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
    margin-bottom: 12px;
}


 .sitemap-section {
    background-color:#ca2128; /* Red background */
    text-align: center;
    padding: 20px 10px;
    color:white;
  }

  .sitemap-section a {
    display: inline-block;
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .sitemap-section a:hover {
    color: #000;
    transform: scale(1.05);
    text-decoration: underline;
  }
