* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}


body {
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.header {
    background: #0d47a1;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.logo {
    font-size: 36px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 16px;
    margin-bottom: 20px;
}

.section {
    padding: 40px 0;
}

.light-bg {
    background: #f5f7fa;
}

h2 {
    margin-bottom: 15px;
    color: #0d47a1;
}

.services,
.why {
    list-style: none;
    margin-top: 15px;
}

.services li,
.why li {
    padding: 8px 0;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 25px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.pricing-table th {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: #fff;
    padding: 14px;
    font-size: 15px;
    text-align: left;
}

.pricing-table td {
    padding: 14px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table td:last-child {
    font-weight: bold;
    color: #0d47a1;
}

.pricing-table tr:hover {
    background: #f5f9ff;
}

.price-badge {
    float: right;
    background: #e3f2fd;
    color: #0d47a1;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
}


.notes {
    margin-top: 15px;
    font-size: 14px;
}

.contact {
    text-align: center;
}

.cta-buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.primary {
    background: #ff9800;
    color: #000;
}

.secondary {
    background: #25d366;
    color: #000;
}

.footer {
    background: #0d47a1;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* HERO SLIDER */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.enquiry {
    background: #0d47a1;
    color: #fff;
    border: none;
    cursor: pointer;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.popup-content h3 {
    margin-bottom: 10px;
}

.popup-content p {
    margin-bottom: 15px;
}

.close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.brand-title {
  font-size: 2rem;        
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.brand-icon {
  width: 1em;              
  height: 1em;
  vertical-align: middle;
  flex-shrink: 0;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card img {
    width: 60px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #0d47a1;
}

.service-card p {
    font-size: 14px;
    color: #555;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
}

.nav-brand {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffeb3b;
}

.nav-brand img {
    height: 32px;         
    width: auto;
    display: block;
}

.pricing-notes {
    margin-top: 25px;
    padding: 18px 22px;
    background: #f9fbfc;
    border-left: 5px solid #26c6da;
    border-radius: 6px;
}

.pricing-notes h4 {
    margin-bottom: 10px;
    color: #263238;
    font-size: 16px;
}

.pricing-notes ul {
    padding-left: 18px;
}

.pricing-notes li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card span {
    font-size: 28px;
}

.feature-card h3 {
    margin: 12px 0 8px;
    font-size: 17px;
}

.feature-card p {
    font-size: 14px;
    color: #555;
}

.service-area {
    background: #ffffff;
    text-align: center;
}

.contact-sub {
    text-align: center;
    margin-bottom: 25px;
    color: #555;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.contact-card {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.contact-card h4 {
    margin: 8px 0;
}

/* MOBILE NAVBAR FIX */
@media (max-width: 768px) {

  .navbar {
    padding: 12px 20px;
    position: fixed;
    transition: box-shadow 0.3s ease;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    display: none; /* hidden by default */
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
  }
}

.menu-toggle {
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  display: none;
}

/* show hamburger only on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

.nav-links a:focus,
.nav-links a:active {
  color: #fff;
  outline: none;
}

.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}