/* General Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  margin-top:-10px;
}

.nav-links i {
  margin-right: 8px;
}


.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
/* Contact Dropdown */
.contact-dropdown {
  position: relative;
}

.contact-dropdown a {
  position: relative;
  display: block;
}

.contact-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  min-width: 160px;
  z-index: 999;
  flex-direction: column;
  padding: 10px 0;
}

.contact-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.95rem;
}

.contact-menu a:hover {
  background-color: #f0f0f0;
  color: #0077cc;
}

/* Show dropdown on hover */
.contact-dropdown:hover .contact-menu {
  display: flex;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(to right, #ffcc99, #ffffff);
  color: #333;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25; /* You control how faded the image looks */
  z-index: -1;
}


/* Text container styling */
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background: #0077cc;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}
.currency-toggle {
  text-align: right;
  margin-bottom: 15px;
  font-weight: bold;
}

.currency-toggle select {
  padding: 6px 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 1rem;
}

/* Pricing Page */
.pricing-hero {
  text-align: center;
  padding: 80px 20px 40px;
  background: #eef2f7;
}

.pricing-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.pricing-hero p {
  font-size: 1.2rem;
  color: #555;
}

.pricing-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.pricing-table th, .pricing-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
}

.pricing-table th {
  background-color: #0077cc;
  color: #fff;
}

.quote-call {
  text-align: center;
}

.quote-call p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  background: #0077cc;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}



th, td {
  padding: 15px;
  border: 1px solid #ddd;
}

th {
  background-color: #0077cc;
  color: white;
}

/* Contact */
.contact {
  padding: 50px 20px;
  text-align: center;
}
/* Services Detail Section */
.services-detail-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.services-detail-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.services-detail-section p {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.responsive-table {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background-color: #0077cc;
  color: white;
  font-weight: 600;
}

tr:hover {
  background-color: #f0f8ff;
}

.services-hero {
  background: linear-gradient(to right, #ddeeff, #ffffff);
  color: #333;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.quote-image-pulse {
  max-width: 250px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  animation: pulse 2s infinite ease-in-out;
}
.cursor-dot,
.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #0077cc;
  transition: transform 0.08s linear;
}

.cursor-trail {
  width: 20px;
  height: 20px;
  background-color: rgba(0, 119, 204, 0.2);
  transition: transform 0.2s ease-out;
}
/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #e0e0e0;
  font-size: 0.9rem;
}
@media (max-width: 660px) {
.logo img {
height: 15px;
}
.navbar {
  padding: 5px 20px;
}
.nav-links li a {
font-size:8px
}
.nav-links {
  gap: 10px;
  padding: 0px 0px;
}
	th, td {
  font-size:10px;
}
.hero h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 0.8rem;
  color: #555;
}

}
@media (max-width: 460px) {
	th, td {
  font-size:8px;
  padding: 8px 10px;
}

footer {
  font-size: 0.5rem;
}
.quote-call p {
  font-size: 0.6rem;
}

}