/* ==== 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);
  }
}

/* ==== DEMO SECTION ==== */
.demo-section {
  font-family: "Poppins", sans-serif;
  background: var(--gray);
  padding: 110px 0px;
  text-align: center;
}

/* Top Blue Bar */
.demo-section .header-bar {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
  font-size: 18px;
  padding: 14px 0;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* Form Container */
.demo-section .form-container {
  background: var(--light);
  max-width: 750px;
  margin: 0 auto;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 6px 20px var(--shadow);
  text-align: left;
}

.demo-section .form-container h2 {
  text-align: center;
  font-size: 26px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 35px;
}

/* Form Layout */
.demo-section .form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.demo-section .form-group input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.demo-section .form-group input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(252, 175, 30, 0.2);
}

/* Submit Button */
.demo-section .btn-submit {
  width: 100%;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.demo-section .btn-submit:hover {
  background: #ffbe3b;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .demo-section .form-group {
    flex-direction: column;
  }
  .demo-section .form-container {
    padding: 30px 25px;
  }
  .demo-section .form-container h2 {
    font-size: 22px;
  }
}

/* ==== 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;
  }
}

/***Faq Css****/

/*---------- Faq ----------*/

.faq-container {
        max-width: 700px;
        margin: auto;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        overflow: hidden;
        margin-top: 50px;
    }
    .faq-header {
        font-size: 24px;
        font-weight: 600;
        color: #007bff;
        padding: 20px;
        border-bottom: 2px solid #ff4d4d;
    }
    .faq-item {
        border-bottom: 1px solid #ddd;
    }
    .faq-question {
        padding: 15px 20px;
        cursor: pointer;
        position: relative;
        font-weight: 500;
    }
    .faq-question::after {
        content: '+';
        position: absolute;
        right: 20px;
        font-size: 18px;
        transition: transform 0.3s;
    }
    .faq-question.active::after {
        content: '-';
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        background: #f9f9f9;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-answer p {
        padding: 15px 0;
        margin: 0;
    }
    .view-all-btn {
        display: block;
        text-align: center;
        background: #007bff;
        color: #fff;
        padding: 10px 20px;
        margin: 20px auto;
        width: fit-content;
        border-radius: 5px;
        text-decoration: none;
        transition: background 0.3s;
    }
    .view-all-btn:hover {
        background: #0056b3;
    }

.navbar-toggle { display: none; }

/**Demo Page details**/

/* ===== BUSY DEMO SECTION ===== */

.demo-1{
  background-color: white;
}
.busy-demo-section {
  max-width: 1150px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: "Poppins", Arial, sans-serif;
  background-color: white;
}

/* Box */
.busy-demo-box {
  background: #ffffff;
  padding: 36px 34px;
  margin-bottom: 40px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #fbbf24; /* BUSY yellow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.busy-demo-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Title */
.busy-demo-title1 {
  font-size: 50px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
  text-align: center;
}

.busy-demo-title {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Subtitle */
.busy-demo-subtitle {
  font-size: 17px;
  font-weight: 500;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Text */
.busy-demo-text {
  font-size: 15.8px;
  color: #334155;
  line-height: 1.8;
  margin-top: 14px;
}

/* List */
.busy-demo-list {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}

.busy-demo-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15.6px;
  color: #1e293b;
  line-height: 1.6;
}

.busy-demo-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #16a34a;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .busy-demo-title {
    font-size: 24px;
  }

  .busy-demo-subtitle {
    font-size: 15.5px;
  }

  .busy-demo-box {
    padding: 26px 22px;
  }
}


/* ===== BUSY INSTALL – STEP BY STEP SEQUENCE ===== */
.busy-install-section{
  max-width:900px;
  margin:70px auto;
  padding:0 20px;
  font-family:Poppins, Arial, sans-serif;
}

/* Heading */
.busy-install-title{
  text-align:center;
  font-size:32px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:6px;
}

.busy-install-intro{
  text-align:center;
  font-size:16px;
  color:#475569;
  max-width:700px;
  margin:0 auto 50px;
}

/* Steps container */
.busy-install-steps{
  position:relative;
  padding-left:50px;
}

/* Vertical line */
.busy-install-steps::before{
  content:"";
  position:absolute;
  left:22px;
  top:0;
  bottom:0;
  width:3px;
  background:#fde68a;
}

/* Step item */
.busy-install-step{
  position:relative;
  padding:0 0 40px 0;
}

/* Step number */
.step-no{
  position:absolute;
  left:-50px;
  top:0;
  width:44px;
  height:44px;
  background:#fbbf24;
  color:#0f172a;
  font-weight:700;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  z-index:2;
}

/* Content */
.busy-install-step h3{
  font-size:18px;
  font-weight:600;
  color:#0f172a;
  margin-bottom:6px;
}

.busy-install-step p{
  font-size:15.5px;
  color:#334155;
  line-height:1.65;
  margin:0;
}

/* Last step spacing */
.busy-install-step:last-child{
  padding-bottom:0;
}

/* Mobile */
@media(max-width:768px){
  .busy-install-title{
    font-size:26px;
  }

  .busy-install-steps{
    padding-left:40px;
  }

  .step-no{
    left:-40px;
    width:36px;
    height:36px;
    font-size:14px;
  }
}
