/* css/style.css */

/* General Styles */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333333;
}

/* Top Bar */
.top-bar {
  background-color: #003366;
  color: #FFFFFF;
  padding: 10px 0;
  font-size: 0.9rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .branding {
  font-weight: bold;
  font-size: 1rem;
}
.top-bar a {
  color: #FFCC00;
  text-decoration: none;
  margin-left: 15px;
}
.top-bar a:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar-brand img {
  height: 50px;
  width: auto;
}
.navbar-light .navbar-nav .nav-link {
  color: #666666;
  font-weight: 600;
  transition: color 0.3s;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #FFCC00;
}

/* Hero Section (Home Page) */
.hero {
  background: linear-gradient(135deg, #F0F4F8 0%, #003366 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: url('../images/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.1;
}
.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.btn-cta {
  background-color: #FFCC00;
  color: #003366;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
  display: inline-block;
  margin-bottom: 30px;
}
.btn-cta:hover {
  background-color: #e6b800;
  color: #ffffff;
  transform: scale(1.05);
}
.hero img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-top: 30px;
}

/* Why Choose Section (Home Page) */
.why-choose {
  background-color: #FFFFFF;
  padding: 60px 0;
}
.why-choose h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}
.why-choose .feature {
  text-align: center;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s, transform 0.3s;
  background-color: #f9f9f9;
}
.why-choose .feature:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transform: translateY(-5px);
}
.why-choose .feature-icon {
  font-size: 3rem;
  color: #FF9900;
  margin-bottom: 20px;
}
.why-choose .feature h3 {
  font-size: 1.5rem;
  color: #003366;
  margin-bottom: 10px;
}
.why-choose .feature p {
  color: #555555;
  font-size: 1rem;
  padding: 0 10px;
}

/* Contact Section (Home Page) */
.contact-section {
  background-color: #F9F9F9;
  padding: 60px 0;
}
.contact-section h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}
.contact-section p {
  color: #555555;
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px auto;
}
.contact-section .highlight {
  font-weight: bold;
  color: #FF9900;
}

/* About Section */
.about-section {
  background-color: #FFFFFF;
  padding: 60px 0;
}
.about-section h1 {
  color: #003366;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}
.about-section p {
  color: #555555;
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Owner Information */
.owner-info {
  background-color: #F9F9F9;
  padding: 60px 0;
}
.owner-info h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}
.owner-info p {
  color: #555555;
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}
.owner-info img {
  border-radius: 10px;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Contact Information (Contact Page) */
.contact-info {
  background-color: #FFFFFF;
  padding: 60px 0;
}
.contact-info h1 {
  color: #003366;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}
.contact-info p {
  color: #333333;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 10px;
}
.contact-info .contact-methods a {
  color: #003366;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
  transition: color 0.3s;
}
.contact-info .contact-methods a:hover {
  color: #FFCC00;
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background-color: #F0F4F8;
  padding: 60px 0;
}
.contact-form h2 {
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
}
.contact-form label {
  color: #003366;
}
.contact-form .form-control:focus {
  border-color: #003366;
  box-shadow: none;
}
.contact-form .btn-submit {
  background-color: #003366;
  color: #FFFFFF;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}
.contact-form .btn-submit:hover {
  background-color: #002244;
  transform: scale(1.05);
}

/* Additional Information */
.additional-info {
  background-color: #FFFFFF;
  padding: 30px 0;
  text-align: center;
}
.additional-info p {
  color: #555555;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Pricing Overview */
.pricing-overview {
  background-color: #FFFFFF;
  padding: 60px 0;
}
.pricing-overview h1 {
  color: #003366;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}
.pricing-overview p {
  color: #444444;
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Pricing Breakdown */
.pricing-breakdown {
  background-color: #F9F9F9;
  padding: 60px 0;
}
.pricing-card {
  background-color: #FFFFFF;
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.pricing-card h2 {
  color: #003366;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.pricing-card .price {
  color: #FF9900;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.pricing-card p {
  color: #333333;
  font-size: 1rem;
  margin-bottom: 15px;
}
.pricing-card .btn {
  margin-top: 20px;
  background-color: #003366;
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
}
.pricing-card .btn:hover {
  background-color: #002244;
}

/* Services Overview */
.services-overview {
  background-color: #FFFFFF;
  padding: 60px 0;
}
.services-overview h1 {
  color: #003366;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}
.services-overview p {
  color: #444444;
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Details */
.services-details {
  background-color: #F0F4F8;
  padding: 60px 0;
}
.service-card {
  background-color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.service-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
.service-card h2 {
  color: #003366;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.service-card p {
  color: #333333;
  font-size: 1rem;
  margin-bottom: 15px;
}
.service-card .price {
  color: #FF9900;
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 10px;
}

/* Important Notes */
.important-notes {
  background-color: #FFFFFF;
  padding: 30px 0;
}
.important-notes h3 {
  color: #003366;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
}
.important-notes p {
  color: #555555;
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: #003366;
  color: #FFFFFF;
  padding: 40px 0;
}
footer a {
  color: #FFFFFF;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}
footer a:hover {
  color: #FFCC00;
}
footer .social-icons a {
  font-size: 1.5rem;
  margin: 0 10px;
}
footer p {
  margin-bottom: 10px;
}
/* css/style.css */

/* General Styles */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333333;
}

/* Top Bar */
.top-bar {
  background-color: #003366;
  color: #FFFFFF;
  padding: 10px 0;
  font-size: 0.9rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .branding {
  font-weight: bold;
  font-size: 1rem;
}
.top-bar a {
  color: #FFCC00;
  text-decoration: none;
  margin-left: 15px;
}
.top-bar a:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar-brand img {
  height: 50px;
  width: auto;
}
.navbar-light .navbar-nav .nav-link {
  color: #666666;
  font-weight: 600;
  transition: color 0.3s;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #FFCC00;
}

/* Sidebar */
.sidebar {
  background-color: #f8f9fa;
  padding-top: 20px;
}
.sidebar .nav-link {
  color: #333;
  transition: background-color 0.3s, color 0.3s;
}
.sidebar .nav-link:hover,
.sidebar .nav-link.active {
  background-color: #003366;
  color: #FFFFFF;
  border-radius: 0.375rem;
}

/* Main Content */
.main-content {
  padding: 20px;
}

/* Cards */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Table Styles */
.table-hover tbody tr:hover {
  background-color: #f1f1f1;
}

/* Badges */
.badge {
  font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
  background-color: #003366;
  border: none;
  transition: background-color 0.3s, transform 0.3s;
}
.btn-primary:hover {
  background-color: #002244;
  transform: scale(1.05);
}
.btn-success {
  background-color: #28a745;
  border: none;
  transition: background-color 0.3s, transform 0.3s;
}
.btn-success:hover {
  background-color: #218838;
  transform: scale(1.05);
}
.btn-danger {
  background-color: #dc3545;
  border: none;
  transition: background-color 0.3s, transform 0.3s;
}
.btn-danger:hover {
  background-color: #c82333;
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .sidebar {
    display: none;
  }
  .main-content {
    padding: 10px;
  }
}

/* Additional Enhancements */

/* Table Head Styling */
.table-light th {
  background-color: #f8f9fa;
  color: #333333;
}

/* Active Link Styling */
.nav-link.active {
  border-radius: 0.375rem;
}

/* Hover Effects for Cards */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.bi {
  font-size: 1.2rem;
}

/* Ensuring Sidebar Height Matches Content */
.sidebar {
  min-height: calc(100vh - 70px); /* Adjust if header height changes */
}

/* Ensuring Main Content Scrolls Properly */
.main-content {
  overflow-y: auto;
}

/* Enhancing Dashboard Section Padding */
.dashboard-section {
  padding-top: 20px;
}
