/* Global Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fdfdfd;
}

h1, h2, h3 {
  color: #004c99;
}

a {
  text-decoration: none;
  color: #004c99;
}

a:hover {
  color: #0073e6;
}

/* Navbar */
header {
  background: #004c99;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  background: #0073e6;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: white;
  list-style: none;
  border: 1px solid #ddd;
  padding: 10px 0;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: #004c99;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0, 76, 153, 0.7), rgba(0, 76, 153, 0.7)), url('https://source.unsplash.com/1600x900/?technology,nepal') no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  margin: 20px 0;
}

.btn {
  background: #ff9933;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1rem;
}

.btn:hover {
  background: #e68a00;
}

/* Services */
.services {
  padding: 50px 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: #f5faff;
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* About */
.about {
  padding: 50px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* Footer */
footer {
  background: #004c99;
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #ffcc66;
}

footer a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo img {
  height: 40px;
  width: auto;
}
/* Highlight Section */
.highlight {
  background: linear-gradient(135deg, #f0f8ff, #e6f0fa);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  align-items: center;
  gap: 40px;
}

.highlight-text {
  flex: 1;
  min-width: 300px;
}

.highlight-text h2 {
  color: #004080;
  font-size: 2rem;
  margin-bottom: 15px;
}

.highlight-text ul {
  margin: 15px 0;
  padding-left: 20px;
  color: #333;
}

.highlight-btn {
  background: #004080;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.highlight-btn:hover {
  background: #0066cc;
}

.highlight-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.highlight-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}
/* Pricing Page */
.pricing {
  text-align: center;
  padding: 60px 20px;
}

.pricing h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #004080;
}

.pricing p {
  color: #555;
  margin-bottom: 30px;
}

.pricing-table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 70%;
  background: #fff;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.pricing-table th, .pricing-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
}

.pricing-table th {
  background: #004080;
  color: #fff;
}

.pricing-table tr:nth-child(even) {
  background: #f9f9f9;
}

.back-btn {
  display: inline-block;
  margin-top: 30px;
  background: #004080;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
}

.back-btn:hover {
  background: #0066cc;
}
