
html, body {
    height: 100%;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    display: block; /* ✅ remove flex */
    min-height: 100%;
    padding-top: 56px; /* if navbar is fixed */
    overflow-x: hidden; /* optional to prevent horizontal scroll */
}

        .navbar {
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .navbar-brand {
            color: #764ba2 !important;
        }

        .nav-link {
            padding: 8px 16px !important;
            margin: 0 5px;
            border-radius: 20px;
            color: #667eea !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background: #764ba2;
            color: white !important;
        }

        .nav-link.active {
            background: #667eea;
            color: white !important;
        }

        .navbar-toggler {
            border-color: #764ba2;
        }

        main {
            flex: 1;
            display: flex;
            flex-direction: column; /* 👈 stack items vertically */
            justify-content: flex-start; /* optional — aligns from top */
            align-items: center; /* centers horizontally only */
            padding: 40px 15px;
            text-align: center;
            background: linear-gradient(135deg, #f0f2f5, #ffffff);
            position: relative;
            overflow: hidden;
          }
          
        .coming-soon-container {
            animation: fadeIn 2s ease-in-out;
            margin: 100px;
            z-index: 1;
        }

        .coming-soon-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
            transition: transform 0.5s ease;
        }

        .coming-soon-image:hover {
            transform: scale(1.05);
        }

        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 40px 0;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Circle Effect */
        .circle {
            width: 60px;
            height: 60px;
            background-color: #146fd8;
            border-radius: 50%;
            position: absolute;
            z-index: 0;
            overflow: auto;
        }

        .exploding {
            background-color: red;
            /* transform: scale(2) rotate(20deg); */
            opacity: 0;
            transition: all 0.6s ease-out;
        }

        .coming-soon-container h1 {
            font-size: 3rem;
            font-weight: 700;
            color: #1a1a1a;
            /* dark text to match logo */
        }

        .coming-soon-container h2 {
            font-size: 1.75rem;
            font-weight: 600;
            color: #146fd8;
            /* matches blue from your logo */
        }
        .font {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 120px !important;
        }


    /* Privacy Policy Styles */
    .privacy-modal {
      border-radius: 15px;
      border: none;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
  
    .privacy-modal .modal-header {
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }
  
    .privacy-modal .modal-title {
      font-weight: 600;
      font-size: 1.25rem;
    }
  
    .privacy-modal .modal-body {
      padding: 25px;
      max-height: 70vh;
      overflow-y: auto;
      color: #333;
      font-size: 0.95rem;
      line-height: 1.6;
    }
  
    .privacy-modal h6 {
      color: #146fd8;
      margin-top: 20px;
      font-weight: 600;
    }
  
    .privacy-modal ul {
      padding-left: 20px;
    }
  
    .privacy-modal a {
      color: #146fd8;
      text-decoration: none;
    }
  
    .privacy-modal a:hover {
      text-decoration: underline;
    }
  
    .privacy-modal .modal-footer {
      background: #f8f9fa;
      border-top: 1px solid #e0e0e0;
    }
  
    .btn-secondary {
      background-color: #667eea;
      border: none;
    }
  
    .btn-secondary:hover {
      background-color: #764ba2;
    }
  

    /* General Inquiry Modal  */
#inquiryModal .modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#inquiryModal .modal-header {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#inquiryModal .modal-title {
  font-weight: 600;
  font-size: 1.25rem;
}

#inquiryModal .form-label {
  font-weight: 500;
  color: #333;
}

#inquiryModal .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#inquiryModal .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

#inquiryModal textarea.form-control {
  resize: none;
}

#inquiryModal .btn-primary {
  background-color: #667eea;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 500;
}

#inquiryModal .btn-primary:hover {
  background-color: #764ba2;
}

#inquiryModal .btn-outline-secondary {
  border-radius: 8px;
  font-weight: 500;
  color: #333;
  border-color: #ccc;
}

#inquiryModal .btn-outline-secondary:hover {
  background-color: #f8f9fa;
  color: #000;
}


/* Footer Layout Improvements */
.footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .footer-section p {
    margin: 0;
    font-size: 0.95rem;
  }
  
  .footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
  }
  
  .footer-links li {
    position: relative;
  }
  
  .footer-links li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background-color: #ffffff50;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #667eea;
  }
  

/* Center the coming soon text and give spacing below */
.coming-soon-container {
    text-align: center;
    padding: 100px 20px 40px;
  }
  
  /* Help section spacing and background */
  .help-section {
    background-color: #f8fafc;
    padding: 60px 20px;
  }
  
  /* Help cards styling */
  .help-card {
    background: #fff;
    transition: all 0.3s ease;
  }
  .help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  
  /* Icon background colors */
  .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .bg-light-primary {
    background-color: #e9f2ff;
  }
  .bg-light-success {
    background-color: #e8f9f1;
  }
  .bg-light-danger {
    background-color: #fdeaea;
  }
  
  /* Footer styling (optional for neat look) */
  .footer-section {
    background-color: #111;
    color: #fff;
    padding: 25px 0;
  }
  .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  




  