/* General Reset */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* 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: 15px;
  margin: 0;
  margin-top:-10px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
/* Contact Dropdown */
.contact-dropdown {
  position: relative;
}


.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 {
  text-align: center;
  padding: 100px 20px 60px;
  background: #eef2f7;
}

.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;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.4);
}

/* Services */
.services {
  padding: 60px 20px;
  text-align: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 250px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-card img {
  width: 60px;
  margin-bottom: 15px;
}
/* Upload Page Styling */
.upload-section {
  padding: 80px 20px;
  text-align: center;
}

.upload-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.upload-sub {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.upload-box {
  border: 2px dashed #0077cc;
  border-radius: 12px;
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto 30px;
  background-color: #f5faff;
  position: relative;
}

.upload-label {
  display: block;
  color: #0077cc;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
}

.upload-label span {
  display: inline-block;
  margin-bottom: 15px;
}

.upload-label input[type="file"] {
  display: none;
}

.upload-note {
  font-size: 0.95rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}



th, td {
  padding: 15px;
  border: 1px solid #ddd;
}

th {
  background-color: #0077cc;
  color: white;
}

/* Contact */
.contact {
  padding: 50px 20px;
  text-align: center;
}
.upload-instructions {
  background-color: #f4f4f4; /* light grey */
  border-left: 4px solid #0077cc;
  padding: 20px 25px;
  border-radius: 8px;
  margin: 30px auto 0;
  max-width: 700px;
  color: #333;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: left; /* ensure text isn't centered */
}

.upload-instructions h2 {
  margin-top: 0;
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-align: left;
}

.upload-instructions ol {
  padding-left: 20px;
  margin: 0 0 15px 0;
  list-style-position: inside; /* keeps numbers inside the block */
}

.upload-instructions li {
  margin-bottom: 8px;
  line-height: 1.6;
  text-align: left;
}

.upload-instructions .note {
  font-style: italic;
  color: #555;
  margin-top: 10px;
  text-align: left;
}
.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
}

}
@media (max-width: 460px) {
.contact-menu {
  top: 20px;
  right: -30px;
  min-width: 100px;
}
.contact-menu a {

  padding: 5px 10px;

}

.upload-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.upload-sub {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.upload-label {
  font-size: 1.2rem;
}

.upload-note {
  font-size: 0.75rem;
}
.upload-instructions h2 {
  font-size: 1.0rem;
}
.upload-instructions li {
font-size: 0.8rem;
}
.cta-button {
font-size: 0.6rem;
}
.upload-section h1 {
  font-size: 1.5rem;
}

.upload-sub {
  font-size: 0.6rem;
}
.upload-instructions .note {
font-size: 0.7rem;
}
footer {
  font-size: 0.5rem;
}
}