* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #fff;
}

/* ===================== Header ===================== */
/* ===================== NAVBAR ===================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(70, 70, 70, 0.9);
    z-index: 999;
}

nav {
    max-width: 1340px;
    height: 100px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===================== LOGO ===================== */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo-img {
    height: 3rem;
    object-fit: contain;
}

/* ===================== NAV LINKS ===================== */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
}

/* Anchor Tags & Dropdown Button */
.nav-links a,
.dropdown-btn {
    text-decoration: none;
    color: black;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 1rem;
    background: transparent;
    border: none;
}

/* Active Capsule */
.nav-links a.active,
.dropdown-btn.active {
    background-color: #235097;
    color: white !important;
    font-weight: 600;
}

/* Hover Effect */
.nav-links a:hover,
.dropdown-btn:hover {
    color: #235097;
}

/* ===================== DROPDOWN ===================== */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    margin-left: 19px;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 10px rgba(70, 70, 70, 0.9);
    min-width: 200px;
    border-radius: 4px;
    z-index: 999;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: black;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

/* ===================== FOOTER ===================== */
footer {
    background-color: #161F2D;
    color: white;
    padding: 40px 20px 10px 20px;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
}

.footer-section {
    flex: 1 1 220px;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: white;
}

.footer-section a:hover {
    text-decoration: underline;
}

/* Icon Row Before Copyright */

.footer-divider-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: transparent;
    margin-bottom: 10px;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: #ccc;
    width: 90%;
    max-width: 1300px;
    opacity: 0.6;
}

.footer-icons-row {
    width: 100%;
    padding: 5px 0;
    margin-top: 30px;
    background-color: transparent;
    /* Keeps background see-through */
    display: flex;
    justify-content: center;
    /* Centers the icons horizontally */
    align-items: center;
    gap: 30px;
    /* Spacing between icons */
}

.footer-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-icon:hover {
    transform: scale(1.15);
    /* Slight zoom on hover */
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #ccc;
}

/* ============================== Busy Page Body Styling ==================================== */

/* Part 1 of Busy */

/* Page body background gradient */
body {
    background: linear-gradient(to bottom, #b8e2f4, #8dcfec);
    margin: 0;
    padding-top: 80px;
    /* Set this to your header height */
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.busy-hero {
  position: relative;
  background: url('image/cloud-background.webp') no-repeat center center/cover;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay for text readability */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 1350px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.hero-logo {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero-text {
  text-align: center;
  flex-grow: 1;
  padding: 0 40px;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
}

/* Support Button inside Hero */
.busy-support-btn {
  display: inline-block;
  background: #264993;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 35px;
  font-size: 16px;
}

.busy-support-btn:hover {
  background: #235097;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(15, 33, 71, 0.3);
}

/* Part 3 of Busy */

/* For Part 2 to Part 3 spacing */
section.busy-services-section {
    padding-bottom: 80px !important;
    /* Reduce bottom padding */
    margin-bottom: 0 !important;
    /* Remove any default margins */
}

/* For Part 3 to Part 4 spacing */
section.busy-features-section {
    padding-top: 100px !important;
    /* Reduce top padding */
    padding-bottom: 30px !important;
    /* Reduce bottom padding */
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.busy-features-section {
    padding: 100px 20px;
    background: transparent
}

.features-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Headings */
.section-heading {
    font-size: 2.2rem;
    background: linear-gradient(to right, #0f2147, #122e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.section-subheading {
    font-size: 1.2rem;
    color: #0f2147;
    margin-bottom: 40px;
}

/* Scrolling wrapper styles */
.features-scroller {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Scrolling content */
.features-track {
    display: flex;
    gap: 20px;
    animation: scrollFeatures 60s linear infinite;
    /* Change speed here */
    width: max-content;
}

/* Feature box */
.feature-box {
    flex: 0 0 auto;
    width: 300px;
    height: 180px;
    background-color: #ffffffcc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-box h4 {
    font-size: 1.1rem;
    color: #08519c;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    color: #333;
}

/* Optional hover effect */
.feature-box:hover {
    transform: translateY(-5px);
}

/* Keyframes for infinite horizontal scroll */
@keyframes scrollFeatures {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Will scroll full width - adjust if needed */
}

/* ================== PART 2: Our Services Section ================== */

/* ===== SERVICES SECTION ===== */
.busy-services-section {
    width: 100%;
    padding: 80px 0;
    background: transparent;
}

.services-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

/* Gradient Heading */
.services-content h1.gradient-heading {
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(to right, #0f2147, #122e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Card Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Service Cards */
.service-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(30, 70, 160, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    /* Adjusted for button */
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(20, 50, 120, 0.5);
}

/* Card Headings */
.service-card h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #0f2147;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(15, 33, 71, 0.1);
}

/* Card Lists */
.service-card ul {
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
    flex-grow: 1;
    text-align: left;
}

.service-card li {
    font-size: 0.95rem;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.5;
    padding-left: 5px;
}

/* Quote Buttons */
.service-card .quote-btn {
    display: block;
    background: #265073;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    margin-top: auto;
    transition: 0.3s;
}

.service-card .quote-btn:hover {
    background: #1a3a5c;
}

/* List Hover Effects */
.service-card:hover li {
    color: #0f2147;
}

.service-card li:hover {
    color: #0a1a3f;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }
}

/* ###################### Pricing Section Base ######################## */
.busy-pricing-section {
    padding: 80px 20px;
    background-color: transparent;
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.pricing-heading {
    font-size: 2.5rem;
    background: linear-gradient(to right, #0f2147, #122e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

/* Button Styling */
.pricing-category-buttons,
.sub-buttons,
.user-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.category-btn,
.sub-btn {
    padding: 10px 25px;
    border: none;
    background-color: #0f2147;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.category-btn.active,
.sub-btn.active {
    background-color: #16387c;
}

.user-toggle input[type="radio"] {
    margin-right: 10px;
}

/* Pricing Tables */
.pricing-tables {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1 1 30%;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 66, 138, 0.3);
    min-width: 300px;
}

.pricing-card h2 {
    margin-bottom: 10px;
}

.pricing-card h2.basic {
    color: #4682B4;
}

.pricing-card h2.standard {
    color: #DAA520;
    position: relative;
}

.pricing-card h2.standard::after {
    content: "Most Popular";
    font-size: 0.7rem;
    color: white;
    background-color: #DAA520;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

.pricing-card h2.enterprise {
    color: #2e8b57;
}

.pricing-card hr {
    border: none;
    border-top: 2px solid #eee;
    margin: 15px 0;
}

.pricing-price {
    font-weight: bold;
    font-size: 1.6rem;
    margin: 10px 0;
}

.pricing-subtitle {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #333;
}

.demo-btn {
    margin: 10px 0 15px;
    display: inline-block;
    background-color: #0f2147;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
}

/* Feature List */
.feature-group {
    text-align: left;
    margin-top: 15px;
}

.feature-group h4 {
    margin-bottom: 8px;
    color: #122e66;
}

.feature-group ul {
    padding-left: 20px;
}

.feature-group ul li {
    margin-bottom: 6px;
    transition: color 0.2s;
}

.feature-group ul li:hover {
    color: #0f2147;
}

/* Map Subscription headings to Perpetual color styles */
.pricing-card h2.blue {
    color: #4682B4;
}

/* Same as BASIC */
.pricing-card h2.saffron {
    color: #DAA520;
    /* Same as STANDARD */
    position: relative;
}

.pricing-card h2.saffron::after {
    content: "Most Popular";
    font-size: 0.7rem;
    color: white;
    background-color: #DAA520;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

.pricing-card h2.emerald {
    color: #2e8b57;
}

/* Perpetual AND Subscription BUTTON COLOUR */

/* Perpetual button default state */
.sub-btn[data-sub="perpetual"] {
    background-color: white;
    color: black;
}

/* Perpetual button when active */
.sub-btn[data-sub="perpetual"].active {
    background-color: #265073;
    color: white;
}

/* Subscription button default state */
.sub-btn[data-sub="subscription"] {
    background-color: #ffffff;
    color: black;
}

/* Subscription button when active */
.sub-btn[data-sub="subscription"].active {
    background-color: #265073;
    color: white;
}

/* mobile busy */

/* Hide by default */
#mobile-section {
    display: none;
    padding: 30px 0;
}

/* Flex container for mobile layout */
.mobile-inner {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
}

/* Mobile left (screenshot) */
.mobile-left {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.mobile-left img.mobile-screenshot {
    max-width: 100%;
    border-radius: 12px;
}

/* Mobile right (pricing cards) */
.mobile-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 280px;
}

/* Individual mobile card */
.mobile-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mobile-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.mobile-card .price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #005483;
}

.mobile-card .demo-btn {
    display: inline-block;
    background-color: #005483;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.mobile-card .demo-btn:hover {
    background-color: #0077a6;
}

/* busy online section*/

/* ===== MODIFIED TOGGLE SECTIONS ===== */
.online-toggles {
    display: flex;
    gap: 30px;
    /* Reduced from 50px */
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    /* Reduced from 30px */
    margin-top: 0;
    /* Reset -100px */
}

.toggle-buttons {
    display: flex;
    gap: 20px;
    /* Reduced from 50px */
}

.switch-toggle {
    display: flex;
    flex-direction: row;
    /* Changed from column */
    align-items: center;
    gap: 10px;
    /* Added for label spacing */
}

.switch-labels {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    /* Changed from 100% */
    gap: 15px;
    /* Space between labels and toggle */
    margin-top: 0;
    /* Removed 5px */
    font-size: 14px;
    /* Increased from 12px */
    font-weight: bold;
}

/* ===== KEEP ALL OTHER STYLES EXACTLY AS IS ===== */
/* ===== MAIN CONTAINER ===== */
.online-section {
    width: 100%;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== TOGGLE CONTAINER ===== */
.toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /* Space between button groups */
    margin-bottom: 30px;
    margin-top: -100px;
    /* Adjusted from -120px */
}

/* ===== ACCESS/SQL BUTTON GROUP ===== */
.button-group {
    display: flex;
    gap: 30px;
    /* Space between buttons */
    margin-left: 0;
    /* Removed fixed margin */
}

.online-btn {
    padding: 12px 24px;
    /* Slightly larger */
    border: none;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    /* Removed gap - use flex gap on parent instead */
}

.online-btn.active {
    background: #265073;
    color: white;
    transform: translateY(-2px);
}

/* ===== PERIOD TOGGLE GROUP ===== */
.period-toggle-group {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between elements */
}

.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: #265073;
    /* Permanently blue */
    transition: .4s;
    border-radius: 30px;
}

input:checked+.slider {
    background-color: #265073;
    /* Maintains blue when checked */
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    /* Circle stays 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, 0, 0, 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, 0, 0, 0.1);
    margin-left: 50px;
}

.main-price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.additional-price {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

/* ##############  Recom  ################# */

/* ===== BUSY RECOM SECTION ===== */
.recom-section {
    width: 100%;
    padding: 60px 20px;
    background: transparent;
    display: none;
    /* Hidden by default (activated via JS) */
}

.recom-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left Side - Features */
.recom-features {
    flex: 1;
    min-width: 300px;
}

.features-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(30, 70, 160, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 70, 160, 0.25);
}

.features-card h3 {
    color: #0f2147;
    font-size: 1.4rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(15, 33, 71, 0.1);
}

.features-card ul {
    list-style-type: none;
    margin-bottom: 25px;
}

.features-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #333;
}

.features-card li:before {
    content: "•";
    color: #265073;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Right Side - Pricing Boxes */
.recom-container {
    margin-top: -70px;
}

.recom-pricing {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-content: center;
    margin-top: -330px;
}

.pricing-box {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(30, 70, 160, 0.2);
}

.plan-name {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.pricing-box .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0f2147;
    margin-bottom: 20px;
}

.pricing-box .demo-btn {
    display: inline-block;
    background: #265073;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.pricing-box .demo-btn:hover {
    background: #1a3a5c;
}

/* GST Line */

/* Modern GST Notice Styling */
.gst-notice-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    max-width: 80%;
}

.gst-divider {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0f2147, transparent);
    margin: 0 15px;
}

.gst-notice {
    text-align: center;
    padding: 20px 20px;
}

.gst-text {
    color: #0f2147;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0 10px;
    background: white;
    /* Creates gap in the line */
}

/* Optional animation */
.gst-divider {
    transition: all 0.3s ease;
}

.gst-notice-container:hover .gst-divider {
    background: linear-gradient(90deg, transparent, #235097, transparent);
    height: 2px;
}

/* ========================== MOBILE RESPONSIVE of Busy Page =========================== */

/* ===================== NAVBAR - MOBILE RESPONSIVE ===================== */

@media (max-width: 992px) {
    nav {
        height: auto;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .logo {
        justify-content: left;
        margin-bottom: 1rem;
    }

    .logo-img {
        height: 4rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        display: none;
        /* Hidden by default, shown via hamburger */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a,
    .dropdown-btn {
        padding: 10px;
        border-radius: 5px;
        width: 100%;
        text-align: center;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        margin-left: 0;
        width: 100%;
        box-shadow: none;
    }

    /* Mobile menu toggle */
    .menu-toggle {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1rem;
        cursor: pointer;
        z-index: 1000;
        margin-top: 20px;
    }

    .hamburger {
        width: 30px;
        height: 3px;
        background: #235097;
        display: block;
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger:before,
    .hamburger:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #235097;
        transition: all 0.3s ease;
    }

    .hamburger:before {
        top: -8px;
    }

    .hamburger:after {
        top: 8px;
    }

    .menu-toggle.active .hamburger {
        background: transparent;
    }

    .menu-toggle.active .hamburger:before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-toggle.active .hamburger:after {
        top: 0;
        transform: rotate(-45deg);
    }
}

/* ===================== FOOTER - MOBILE RESPONSIVE ===================== */

@media (max-width: 936px) {
    footer {
        padding: 30px 15px 10px;
    }

    .footer-sections {
        flex-direction: column;
        gap: 25px;
    }

    .footer-section {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-section h4 {
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .footer-section a {
        margin-bottom: 6px;
        font-size: 0.9rem;
    }

    .footer-icons-row {
        gap: 15px;
        margin-top: 20px;
    }

    .footer-icon {
        width: 35px;
        height: 35px;
    }

    .copyright {
        margin-top: 20px;
        font-size: 0.8rem;
    }
}

/* ===================== Main Busy Section - MOBILE RESPONSIVE ===================== */

/* ================= BUSY PAGE FULL RESPONSIVE CSS ================= */

/* Large Desktop (1200px and below) */

/* Tablet View (992px and below) */
@media (max-width: 992px) {
    /* Original Busy Sections */

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .busy-features-section {
        padding: 80px 20px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .feature-box {
        width: 280px;
        height: 160px;
    }

    .pricing-card {
        min-width: 280px;
    }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {

    /* Original Busy Sections */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .section-subheading {
        font-size: 1.1rem;
    }

    .feature-box {
        width: 260px;
        height: 150px;
    }

    .pricing-heading {
        font-size: 2rem;
    }

    .pricing-category-buttons,
    .sub-buttons {
        gap: 10px;
    }

    .category-btn,
    .sub-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .mobile-inner {
        flex-direction: column;
        gap: 30px;
    }

    .mobile-left,
    .mobile-right {
        width: 100%;
    }

    .online-inner {
        flex-direction: column;
    }

    .online-features-card {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .online-price-card {
        margin-left: 0;
        width: 100%;
    }

    .recom-container {
        flex-direction: column;
    }

    .recom-pricing {
        margin-top: 30px;
        grid-template-columns: 1fr;
    }
}

/* Mobile Portrait (600px and below) */
@media (max-width: 600px) {

    /* Original Busy Sections */

    .services-content h1.gradient-heading {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .feature-box {
        width: 240px;
        height: 140px;
        padding: 15px;
    }

    .feature-box h4 {
        font-size: 1rem;
    }

    .feature-box p {
        font-size: 0.85rem;
    }

    .pricing-heading {
        font-size: 1.8rem;
    }

    .user-toggle {
        flex-direction: column;
        align-items: center;
    }

    .gst-text {
        font-size: 1rem;
    }
}

/* Small Mobile (400px and below) */
@media (max-width: 400px) {

    /* Original Busy Sections */

    .services-content h1.gradient-heading {
        font-size: 1.8rem;
    }

    .section-heading {
        font-size: 1.4rem;
    }

    .feature-box {
        width: 220px;
        height: 130px;
    }

    .pricing-heading {
        font-size: 1.6rem;
    }

    .pricing-card {
        min-width: 260px;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .online-btn {
        width: 100%;
    }
}

/* Busy Hero Section only Responsive Breakpoints */

/* Below 1200px */
@media (max-width: 1200px) {
   
    .busy-hero {
    height: 25rem;
  }
  
  .hero-content {
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 17px;
  }

  .busy-support-btn {
    font-size: 15px;
    padding: 13px 26px;
  }
}

/* Below 768px */
@media (max-width: 768px) {
  
    .busy-hero {
    height: 20rem;
  }

  .hero-logo {
    width: 140px;
    height: 140px;
    padding: 15px;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .busy-support-btn {
    font-size: 14px;
    padding: 12px 22px;
    margin-top: 20px;
  }
}

/* Below 600px */
@media (max-width: 600px) {
  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .busy-support-btn {
    font-size: 14px;
    padding: 11px 20px;
    margin-top: 25px;
  }
}

/* Below 400px */
@media (max-width: 400px) {
  .hero-logo {
    width: 100px;
    height: 100px;
    padding: 10px;
  }

  .hero-text h1 {
    font-size: 20px;
  }

  .hero-text p {
    font-size: 13px;
    margin-top: 25px;
  }

  .busy-support-btn {
    font-size: 13px;
    padding: 10px 18px;
    margin-top: 30px;
  }
}

/* Below 3750px */
@media (max-width: 375px) {
  .hero-logo {
    width: 100px;
    height: 100px;
    padding: 10px;
  }

  .hero-text h1 {
    font-size: 17px;
  }

  .hero-text p {
    font-size: 10px;
    margin-top: 25px;
  }

  .busy-support-btn {
    font-size: 13px;
    padding: 10px 18px;
    margin-top: 30px;
  }
}