/* ==== COLOR SYSTEM ==== */
:root {
  --primary: #002B5B;
  --secondary: #FCAF1E;
  --dark: #002B5B;
  --light: #fff;
  --gray: #f5f6fa;
  --text: #333;
}

/* ==== RESET AND BASE ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background: var(--gray);
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==== SOCIAL TOPBAR ==== */
.topbar {
  width: 100%;
  background: linear-gradient(90deg, var(--primary), #00418a);
  padding: 6px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  transition: top 0.4s ease;
}

/* CONTACT INFO */
.topbar .contact-info {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.topbar .contact-info::-webkit-scrollbar {
  display: none;
}

.topbar .contact-info a {
  color: var(--light);
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

/* SOCIAL ICONS */
.topbar .social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar .social-icons a {
  color: var(--light);
  font-size: 15px;
  transition: color 0.3s ease;
}

.topbar a:hover,
.topbar a:focus {
  color: #ffcc00;
  outline: none;
}

/* TABLET RESPONSIVE */
@media (max-width: 768px) {
  .topbar {
    padding: 6px 15px;
  }

  .topbar .contact-info {
    gap: 10px;
  }

  .topbar .contact-info a {
    font-size: 14px;
  }

  .topbar .social-icons a {
    font-size: 15px;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 480px) {
  .topbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
  }

  /* Contact info visible in same row */
  .topbar .contact-info {
    display: flex;
    gap: 8px;
  }

  .topbar .contact-info a {
    font-size: 8px;
  }

  .topbar .social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }

  .topbar .social-icons a {
    font-size: 15px;
  }
}

/* ==== MAIN HEADER ==== */
.header {
  width: 100%;
  padding: 14px 0;
  position: fixed;
  top: 32px; /* Below topbar */
  left: 0;
  background: var(--light);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: top 0.4s ease;
}

.header .container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ==== LOGO ==== */
.logo a {
  font-size: 35px;
  font-weight: 800;
  color: var(--primary);
}

.logo span:last-child {
  color: var(--secondary);
}

/* ==== NAVIGATION ==== */
.nav {
  display: flex; 
  gap: 25px;
  align-items: center;
}

/* Nav links and dropdown button */
.nav a,
.dropbtn {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  position: relative;
}

/* Underline on hover/focus */
.nav a::after,
.dropbtn::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #ffcc00;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.dropbtn:hover::after,
.dropbtn:focus-visible::after {
  width: 100%;
}

.nav a:hover,
.nav a:focus-visible,
.dropbtn:hover,
.dropbtn:focus-visible {
  color: #ffcc00;
  outline: none;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Arrow for dropdown */
.dropbtn::after {
  content: "▾";
  font-size: 0.6em;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

/* Dropdown menu hidden by default with smooth transition */
.dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background: linear-gradient(90deg, var(--primary), #00418a);
  min-width: 250px;
  border-radius: 8px;
  top: 110%;
  left: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  flex-direction: column;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
}

/* Dropdown links styling */
.dropdown-content a {
  color: #fff;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 6px;
}

.dropdown-content a:hover,
.dropdown-content a:focus {
  outline: none;
}

/* Show dropdown on hover and focus (desktop) */
@media (min-width: 901px) {
  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Rotate arrow when dropdown is active */
  .dropdown:hover > .dropbtn::after,
  .dropdown:focus-within > .dropbtn::after {
    transform: rotate(-180deg);
  }
}

.btn-yellow {
  background: var(--secondary);
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 12px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-yellow:hover {
  background: #e6b800;
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid #0076A5;
  color: #0076A5;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: #0076A5;
  color: #fff;
}

/* ===== MOBILE MENU STYLING ===== */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 80px 25px;
    transition: right 0.4s ease;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    z-index: 2000;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    color: #002B5B;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
  }

  /* Dropdown inside mobile menu */
  .dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 10px;
    background: #f9f9f9;
    border-left: 3px solid #FCAF1E;
    border-radius: 6px;
  }

  .dropdown.open .dropdown-content {
    display: flex;
  }

  .dropdown .dropbtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #002B5B;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
  }

  /* Hamburger button */
  .navbar-toggle {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 26px;
    color: #002B5B;
    margin-left: auto;
    z-index: 2100;
  }

  .navbar-toggle.active::before {
    content: "✖";
  }

  .navbar-toggle::before {
    content: "☰";
  }

  .navbar-toggle.active {
    color: #FCAF1E;
  }
}


/* ===== FIXES FOR MOBILE TOGGLE & DROPDOWN ===== */

/* Make sure toggle button is visible and clickable */
.navbar-toggle {
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--primary);
  margin-left: auto;
  z-index: 2100;
  position: relative;
  width: 40px;
  height: 40px;
}

/* Fix dropdown visibility issue on mobile */
@media (max-width: 992px) {
  .dropdown-content {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    background: #f9f9f9 !important;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 8px 0;
    margin-top: 6px;
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) #f1f1f1;
  }

  .dropdown-content::-webkit-scrollbar {
    width: 6px;
  }
  .dropdown-content::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 4px;
  }
  .dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  /* Dropdown links - improved alignment */
  .dropdown-content a {
    display: block;
    padding: 12px 18px;
    font-size: 15px;
    color: var(--dark);
    text-align: left;
    border-radius: 6px;
    letter-spacing: 0.2px;
    line-height: 1.4;
    width: 100%;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  /* Slight indent to make it visually centered within box */
  .dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .dropdown-content a:hover {
    background: #fff3d4;
    color: var(--primary);
    padding-left: 24px;
  }

  /* Dropdown button text alignment fix */
  .dropdown .dropbtn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
  }

  /* Open dropdown effect */
  .dropdown.open .dropdown-content {
    display: flex !important;
    flex-direction: column;
  }

  /* Demo button polish */
  .btn-yellow {
    background: var(--secondary);
    color: var(--dark);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: block;
    margin: 16px auto 0;
    box-shadow: 0 4px 10px rgba(252, 175, 30, 0.25);
    width: 90%;
    transition: all 0.3s ease;
  }

  .btn-yellow:hover {
    background: #ffbb00;
    transform: translateY(-2px);
  }
}

/* ==== FOOTER ==== */
.vg-footer {
  background: var(--primary); /* unified footer bg color */
  color: #f1f1f1; /* main text color */
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.vg-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vg-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Logo & About */
.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.footer-logo span {
  color: var(--secondary); /* accent color */
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e5e5;
  margin-bottom: 20px;
}

/* Footer Links & Contact */
.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--secondary); /* highlight */
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  position: relative;
  display: inline-block;
  color: #f1f1f1;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover underline effect */
.footer-links a::after,
.footer-contact a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--secondary);
}
.footer-links a:hover::after,
.footer-contact a:hover::after {
  width: 100%;
}

.footer-contact p {
  font-size: 14px;
  margin: 8px 0;
  color: #e5e5e5;
  display: flex;
  align-items: center;
}

.footer-contact i {
  color: var(--secondary);
  margin-right: 8px;
}

/* Social Icons */
.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 16px;
  color: #f1f1f1;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  color: var(--secondary);
  transform: translateY(-3px);
}

/* Footer Map */
.footer-map {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.footer-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 13px;
  color: #ccc;
}

.footer-bottom a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: text-decoration 0.3s ease;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .vg-footer {
    padding: 40px 15px 15px;
  }
  .footer-map iframe {
    height: 200px;
  }
}

 /* ===================== BUSY - BUSY Plans & Pricing ===================== */

/* Section container */
.busy-pricing-section {
   padding: 80px 20px;
   
   margin-top: 80px;
}

.pricing-container {
   max-width: 1300px;
   margin: 0 auto;
   text-align: center;
} 

/* Heading */
.pricing-heading {
   font-size: 2.8rem;
   font-weight: 800;
   text-align: center; 
   background: linear-gradient(90deg, var(--primary), #00418a);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   margin-bottom: 35px;
   position: relative;
   letter-spacing: 1px;
}
.pricing-heading::after {
   content: "";
   display: block;
   width: 80px;
   height: 3px;
   background: linear-gradient(90deg, var(--primary), #00418a);
   margin: 12px auto 0;
   border-radius: 2px;
}

/* Category Buttons */
.pricing-category-buttons,
.sub-buttons,
.user-toggle {
   display: flex;
   justify-content: center;
   gap: 15px;
   margin-bottom: 25px;
   flex-wrap: wrap;
}

.category-btn,
.sub-btn {
   padding: 10px 25px;
   border: none;
   background: #D9F0FA;
   color: #00418a;
   font-weight: 600;
   border-radius: 6px;
   cursor: pointer;
   transition: all 0.3s ease;
}

.category-btn:hover,
.sub-btn:hover {
   background: #00418a;
   color: #fff;
}

.category-btn.active,
.sub-btn.active {
   background: #FCAF1E;
   color: #00418a;
   box-shadow: 0 3px 8px rgba(0,116,162,0.4);
}

/* Subcategory Container */
.subcategory-container {
   background: white;
   padding: 12px 20px;
   border-radius: 12px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
   width: 100%;
   box-shadow: 0 4px 15px rgba(0, 116, 162, 0.15);
   margin: 20px 0;
}

/* Pricing Cards */
.pricing-tables {
   display: flex;
   justify-content: center;
   gap: 25px;
   flex-wrap: wrap;
}

.pricing-card {
   flex: 1 1 30%;
   background: #fff;
   border-radius: 15px;
   padding: 25px;
   box-shadow: 0 6px 20px rgba(0, 116, 162, 0.15);
   min-width: 300px;
   transition: transform 0.3s ease;
}

.pricing-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 10px 25px rgba(0, 116, 162, 0.25);
}

/* Card Headings */
.pricing-card h2 {
   margin-bottom: 10px;
   font-weight: 700;
   font-size: 1.5rem;
}

.pricing-card h2.basic {
   color: #00418a;
}

.pricing-card h2.standard {
   color: #FCAF1E;
   position: relative;
}

.pricing-card h2.standard::after {
   content: "Most Popular";
   font-size: 0.75rem;
   color: #fff;
   background-color: #00418a;
   padding: 3px 7px;
   border-radius: 4px;
   margin-left: 8px;
}

.pricing-card h2.enterprise {
   color: #005b80;
}

/* Price */
.pricing-price {
   font-weight: bold;
   font-size: 1.8rem;
   margin: 10px 0;
   color: #00418a;
}

/* Subtitle */
.pricing-subtitle {
   font-size: 0.95rem;
   margin-bottom: 15px;
   color: #555;
}

/* Demo Button */
.demo-btn {
   margin: 10px 0 15px;
   display: inline-block;
   background: #FCAF1E;
   color: #00418a;
   padding: 10px 20px;
   text-decoration: none;
   font-weight: 600;
   border-radius: 6px;
   transition: all 0.3s ease;
}

.demo-btn:hover {
   background: #00418a;
   color: #fff;
   box-shadow: 0 4px 12px rgba(0,116,162,0.3);
}

/* Feature List */
.feature-group {
   text-align: left;
   margin-top: 15px;
}

.feature-group h4 {
   margin-bottom: 8px;
   color: #00418a;
   font-weight: 600;
}

.feature-group ul {
   padding-left: 20px;
}

.feature-group ul li {
   margin-bottom: 6px;
   transition: color 0.2s;
}

.feature-group ul li:hover {
   color: #FFD200;
}


/* ================== MOBILE BUSY (Blue Theme) ================== */

/* Hide by default */
#mobile-section {
    display: none;
    padding: 30px 0;
}

.mobile-inner {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
}

.mobile-left {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.mobile-left img.mobile-screenshot {
    max-width: 100%;
    border-radius: 12px;
}

.mobile-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 280px;
}

.mobile-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 116, 162, 0.15);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mobile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 116, 162, 0.25);
}

.mobile-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #00418a;
}

.mobile-card .price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #00418a;
}

.mobile-card .demo-btn {
    display: inline-block;
    background-color: #FCAF1E;
    color: #00418a;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.mobile-card .demo-btn:hover {
    background-color: #002B5B;
    color: #fff;
}


/* ================= BUSY ONLINE SECTION ================= */

/* ===== MODIFIED TOGGLE SECTIONS ===== */
.online-toggles {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 0;
}

.toggle-buttons {
    display: flex;
    gap: 20px;
}

.switch-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.switch-labels {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    gap: 15px;
    font-size: 14px;
    font-weight: bold;
}

/* ===== MAIN CONTAINER ===== */
.online-section {
    width: 100%;
    padding: 40px 0;
    background: #f5f6fa;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== TOGGLE CONTAINER ===== */
.toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: -100px;
}

/* ===== ACCESS/SQL BUTTON GROUP ===== */
.button-group {
    display: flex;
    gap: 30px;
    margin-left: 0;
}

.online-btn {
    padding: 12px 24px;
    border: none;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    color: #002B5B;
}

.online-btn.active {
    background: #FCAF1E;
    color: #002B5B;
    transform: translateY(-2px);
}

/* ===== PERIOD TOGGLE GROUP ===== */
.period-toggle-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.period-label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* ===== TOGGLE SWITCH ===== */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #002B5B;
    transition: .4s;
    border-radius: 30px;
}

input:checked+.slider {
    background-color: #FCAF1E;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider:before {
    transform: translateX(30px);
}

.period-toggle-group {
    margin-top: 20px;
}

/* ===== CONTENT CARDS ===== */
.online-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.online-left,
.online-right {
    flex: 1;
    min-width: 300px;
}

.online-features-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-right: 50px;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 116, 162, 0.1);
}

.online-features-card:hover {
    transform: scale(1.02);
}

.online-price-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: 400px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 116, 162, 0.1);
    margin-left: 50px;
}

.main-price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #002B5B;
}

.additional-price {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}


/* ================== RECOM SECTION ================== */
.recom-section {
  width: 100%;
  padding: 80px 20px;
  background: #E6F4FA;
  display: none;
}

.recom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* ==== Features ==== */
.recom-features {
  flex: 1;
  min-width: 320px;
}

.features-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0,116,162,0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(0,116,162,0.15);
}

.features-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,116,162,0.25);
}

.features-card h3 {
  color: #002B5B;
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0,116,162,0.25);
  display: inline-block;
}

.features-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.features-card li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 1rem;
  color: #444;
}

.features-card li::before {
  content: "✔";
  color: #FCAF1E;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ==== Pricing ==== */
.recom-pricing {
  flex: 1;
  min-width: 320px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.pricing-box {
  background: linear-gradient(145deg, #fff, #f0f9fc);
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,116,162,0.12);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,116,162,0.15);
  max-width: 320px;
}

.pricing-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,116,162,0.25);
}

.pricing-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.pricing-box .price {
  font-size: 2rem;
  font-weight: bold;
  color: #002B5B;
  margin-bottom: 20px;
}

.pricing-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 25px;
}

.pricing-box .demo-btn {
  display: inline-block;
  background: #FCAF1E;
  color: #002B5B;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,116,162,0.25);
}

.pricing-box .demo-btn:hover {
  background: #002B5B;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,116,162,0.3);
}

/* ================= RESPONSIVE (Mobile) ================= */
@media (max-width: 768px) {
  .recom-container {
    flex-direction: column;
    gap: 30px;
  }

  .recom-features {
    width: 100%;
    min-width: auto;
  }

  .recom-pricing {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .pricing-box {
    max-width: 100%;
    width: 100%;
  }

  .features-card,
  .pricing-box {
    padding: 25px 20px;
  }

  .features-card h3 {
    font-size: 1.3rem;
  }

  .pricing-box .price {
    font-size: 1.6rem;
  }
}


/* ===================== GST Line (Blue Theme) ===================== */
.gst-notice-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    max-width: 85%;
}

.gst-divider {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #002B5B, transparent);
    margin: 0 20px;
    transition: all 0.3s ease;
}

.gst-notice {
    text-align: center;
    padding: 12px 30px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 3px 15px rgba(0,116,162,0.15);
    border: 1px solid rgba(0,116,162,0.2);
}

.gst-text {
    color: #002B5B;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    position: relative;
    background: white;
    text-transform: uppercase;
}

/* Hover Animation */
.gst-notice-container:hover .gst-divider {
    background: linear-gradient(90deg, transparent, #FCAF1E, transparent);
    height: 3px;
}
